AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题 / 984080
Accepted
Internet User
Internet User
Asked: 2017-12-08 03:35:35 +0800 CST2017-12-08 03:35:35 +0800 CST 2017-12-08 03:35:35 +0800 CST

如何为 32 位 lubuntu 16.04 安装 Brave 网络浏览器?

  • 772

尝试按指示安装,我的终端输出包含以下内容:

user@user-computer:~$ snap install brave --beta
The program 'snap' is currently not installed. You can install it by typing:
sudo apt install snapd
user@user-computer:~$ sudo apt install snapd
[sudo] password for user: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  ibus-mozc libllvm3.8 libmircommon5 linux-headers-4.4.0-21
  linux-headers-4.4.0-21-generic linux-headers-4.4.0-93
  linux-headers-4.4.0-93-generic linux-headers-4.4.0-96
  linux-headers-4.4.0-96-generic linux-image-4.4.0-21-generic
  linux-image-4.4.0-93-generic linux-image-4.4.0-96-generic
  linux-image-extra-4.4.0-21-generic linux-image-extra-4.4.0-93-generic
  linux-image-extra-4.4.0-96-generic
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  squashfs-tools
The following NEW packages will be installed:
  snapd squashfs-tools
0 upgraded, 2 newly installed, 0 to remove and 4 not upgraded.
Need to get 8,625 kB of archives.
After this operation, 41.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://ftp.riken.jp/Linux/ubuntu xenial/main i386 squashfs-tools i386 1:4.3-3ubuntu2 [111 kB]
Get:2 http://ftp.riken.jp/Linux/ubuntu xenial-updates/main i386 snapd i386 2.28.5 [8,514 kB]
Fetched 8,625 kB in 2s (4,261 kB/s) 
Selecting previously unselected package squashfs-tools.
(Reading database ... 265067 files and directories currently installed.)
Preparing to unpack .../squashfs-tools_1%3a4.3-3ubuntu2_i386.deb ...
Unpacking squashfs-tools (1:4.3-3ubuntu2) ...
Selecting previously unselected package snapd.
Preparing to unpack .../archives/snapd_2.28.5_i386.deb ...
Unpacking snapd (2.28.5) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up squashfs-tools (1:4.3-3ubuntu2) ...
Setting up snapd (2.28.5) ...
user@user-computer:~$ snap install brave --beta
error: snap "brave" not found (at least in channel "beta")
user@user-computer:~$ 
(/usr/lib/firefox/firefox:3115): dconf-WARNING **: Unable to open /var/lib/menu-xdg/dconf/profile/user: Permission denied

问题是我的笔记本电脑是 32 位的,而这个软件是 64 位的吗?我应该将服务器更改为其他国家/地区吗?(我该怎么做?)

我怀疑答案是没有可用的 32 位版本,快照会自动考虑我的处理器类型,因此 32 位通道中没有安装文件。

16.04
  • 3 3 个回答
  • 16146 Views

3 个回答

  • Voted
  1. Best Answer
    karel
    2017-12-08T03:50:01+08:002017-12-08T03:50:01+08:00

    Brave 浏览器快照包已暂时停产。目前从 Brave 浏览器官方网站在 Ubuntu 中安装 Brave 浏览器的说明如下。打开终端并输入:

    sudo apt install apt-transport-https curl
    curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add -
    echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main" | sudo tee /etc/apt/sources.list.d/brave-browser-release.list
    sudo apt update
    sudo apt install brave-browser
    

    更新

    勇敢的浏览器 snap 包已重新提交到 Snap Store,可以使用以下命令安装在所有当前支持的 Ubuntu 版本中:

    sudo snap install brave
    

    新的 Brave 浏览器会自动阻止广告和跟踪器,使其比您当前的浏览器更快、更安全。这个包是官方的。

    • 3
  2. exe2bin
    2019-04-16T09:02:49+08:002019-04-16T09:02:49+08:00

    我怀疑使用 snap 是否是在 Ubuntu 上安装 Brave 的最佳方法,因为我在遵循该方法后遇到了更新问题。

    由于https://snapcraft.io/brave上的建议,我卸载了 snap 版本:

    我们建议使用https://brave-browser.readthedocs.io/en/latest/installing-brave.html上的说明下载 Brave 。此 Snap 由社区维护,可能不在最新的 Brave 版本中。

    他们在那里推荐:

    发布渠道安装

    Ubuntu 16.04+ 和 Mint 18+

    sudo apt install apt-transport-https curl
    curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add -
    source /etc/os-release
    echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ $UBUNTU_CODENAME main" | sudo tee /etc/apt/sources.list.d/brave-browser-release-${UBUNTU_CODENAME}.list
    sudo apt update
    sudo apt install brave-browser
    
    • 0
  3. Newton Triumphant
    2020-08-11T12:47:15+08:002020-08-11T12:47:15+08:00

    对我来说,在使用勇敢的网页(https://brave-browser.readthedocs.io/en/latest/installing-brave.html#linux)安装勇敢的浏览器后,我需要运行:

    root@localhost# sudo apt 安装勇敢浏览器:amd64

    代替:

    root@localhost# sudo apt 安装勇敢浏览器

    • 0

相关问题

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Martin Hope
    Flimm 如何在没有 sudo 的情况下使用 docker? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve