添加谷歌源(大陆需翻墙)
leafpad /etc/apt/sources.list
#谷歌软件源
deb http://dl.google.com/linux/chrome/deb/ stable main
添加后依次执行下面的命令
wget https://dl-ssl.google.com/linux/linux_signing_key.pub
apt-key add linux_signing_key.pub
apt-get update
apt-get install google-chrome-stable
如果你要安装Chrome-Beta或者是Chrome-Unstable,则将上面最后一个安装命令换成
apt-get install google-chrome-beta
apt-get install google-chrome-unstable
解决不能使用根用户(root用户)运行chrome的问题
安装十六进制编辑器hexedit
apt-get install hexedit
使用hexedit修改chrome
hexedit /opt/google/chrome/chrome
按Tab键切换到ACSII码模式
按ctrl+s打开搜索功能
输入geteuid搜索
搜索到geteuid后修改为getppid
修改完后crtl+x保存退出 问题解决