因此,我理解获取 Google Chrome 的“正确方法”是直接点击按钮从其网页下载并安装。尽管如此,我喜欢将所有基本设置要求都放在脚本中的想法,这样,如果我必须从全新安装的 Ubuntu 开始,我只需运行该脚本,即可获得所有我喜欢的软件。尽管如此,当我使用列出的 bash 命令时这里并将它们放入脚本中(如下所示)以 sudo 用户身份运行该脚本并没有导致 google-chrome-stable 安装...发生了什么?
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
apt-get update
apt-get install google-chrome-stable -y
我通过在终端中输入其完全限定的位置来运行该脚本。
答案1
尝试这个。
cd /tmp
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
如果出现错误,请使用sudo apt-get -f install