我是 Ubuntu(16.04 LTS)的新用户。我想更新我的 Opera 浏览器,但是遇到了这个问题:
我的 Opera 版本是 46.0.2597.57,新版本 47.0.2631.55 可用,但是当我想要更新我的 Opera 时,它说:opera-stable 已经是最新版本 (46.0.2597.57),但事实并非如此!
我这样做了:
sudo add-apt-repository 'deb https://deb.opera.com/opera-stable/stable non-free'
wget -O - http://deb.opera.com/archive.key | apt-key add -
apt-get update
apt-get install opera-stable
答复是:
Reading package lists... Done
Building dependency tree
Reading state information... Done
opera-stable is already the newest version (46.0.2597.57).
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
它有什么问题?
先感谢您 :-)
注意:我已经下载opera-stable_47.0.2631.55_amd64.deb并尝试通过 Ubuntu 软件安装它,但是没有成功!
答案1
如果你已经下载了.deb
软件包,只需单击它即可开始安装。或者在终端中执行以下操作:
sudo dpkg -i opera-stable_47.0.2631.55_amd64.deb
您想要的方式当然也有效,但您忘记了第一步。但是,如果您直接安装包,这完全没有必要.deb
,因为它会自动添加存储库。
添加存储库:
sudo add-apt-repository 'deb https://deb.opera.com/opera-stable/ stable non-free'
添加密钥:
wget -qO- https://deb.opera.com/archive.key | sudo apt-key add -
更新您的来源:
sudo apt update
安装包:
sudo apt install opera-stable