一、下载Google Chrome .deb包
使用wget下载最新Google Chrome软件包到Debian Linux系统:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
如果你的系统上没有wget,请使用以下命令安装:
sudo apt -y install wget
参考:在Linux系统中安装Wget、Htop、Nano、Lynx、Fzf、Pydf的方法。
二、在Debian 10/9上安装Google Chrome浏览器
下载后,使用apt install命令安装软件包,你需要sudo来完成这个操作:
sudo apt install ./google-chrome-stable_current_amd64.deb
此命令将在Debian上安装Google Chrome,在此过程中,它还会添加Google存储库,以便你的系统自动更新Google Chrome:
$ cat /etc/apt/sources.list.d/google-chrome.list
注1:这个文件是自动配置的。
注2:可以注释掉此条目,但任何其他修改可能会丢失。
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
原文:https://www.cnblogs.com/666gang/p/13245818.html