Kali linux 安装chrome

kali自带的浏览器不好使,windows下习惯使用chrome,所以在kali上也安装了chrome,以下是安装方法

1.访问chrome主页下载对应系统版本的deb安装包 www.google.com/chrome

2.用以下命令安装:

dpkg -i google-chrome-stable_current_i386.deb

3.添加到启动菜单

打开Applications -> Accessories -> Main Menu

然后点击右侧的 New Item 按钮,输入一下信息

Name: Google Chrome
Command: google-chrome

OK

然后通过刚才添加的菜单启动Chrome时会弹窗提示错误

提示chrome不能再root权限下使用,怎么办呢?

到以下路径用编辑器打开google-chrome

File System -> opt -> google -> chrome

在文件末尾处的代码

exec -a "$0" "$HERE/chrome"  "$@"

后面添加

--user-data-dir

保存 退出

然后重新启动chrome,就会看到可爱的chrome界面

转自:http://www.malayke.org/installing-google-chrome-on-kali-linux.html

你可能感兴趣的:(Linux相关)