Ubuntu环境下更新chrome
w2xi Lv2

我使用的操作系统是 Ubuntu 20.04,chrome 无法自动更新,需要手动更新。

更新 Chrome

方式一: 终端命令

在终端输入以下命令:

1
2
$ sudo apt-get update
$ sudo apt-get --only-upgrade install google-chrome-stable

更新完毕,Chrome 浏览器网址中输入: chrome://version,版本从原来的 97 更新到了 99。

方式二: 重新安装.deb包更新Chrome

下载

1
2
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.
deb

测试发现,无论开不开代理下载速度都非常快。

安装:

1
dpkg -i ./google-chrome-stable_current_amd64.deb

更新 VSCode

1
2
3
$ sudo add-apt-repository -y "deb https://packages.microsoft.com/repos/vscode stable main "
$ sudo apt update
$ sudo apt -y install code

参考

How to update Chrome in Ubuntu 20.04

How to upgrade Visual Studio Code editor

  • Post title:Ubuntu环境下更新chrome
  • Post author:w2xi
  • Create time:2022-03-13 12:11:41
  • Post link:https://w2xi.github.io/2022/03/13/Ubuntu环境下更新chrome/
  • Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.