kali安装后要做的事情

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/fallfeather/article/details/82966120

参考自

http://www.mamicode.com/info-detail-2217723.html

一、更新

首先更换了更新源

  • vi /etc/apt/sources.list
  • apt-get update
  • apt-get dist-upgrade

更新源

     #中科大
     deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib
     deb-src http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib

     #阿里云
     deb http://mirrors.aliyun.com/kali kali-rolling main non-free contrib
     deb-src http://mirrors.aliyun.com/kali kali-rolling main non-free contrib

     #清华大学
     deb http://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main contrib non-free
     deb-src https://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main contrib non-free

     #浙大
     deb http://mirrors.zju.edu.cn/kali kali-rolling main contrib non-free
     deb-src http://mirrors.zju.edu.cn/kali kali-rolling main contrib non-free

     #东软大学
     deb http://mirrors.neusoft.edu.cn/kali kali-rolling/main non-free contrib
     deb-src http://mirrors.neusoft.edu.cn/kali kali-rolling/main non-free contrib

二、安装google-pinyin

  • apt install fcitx
  • apt install fcitx-googlepinyin
  • reboot

三、汉化火狐浏览器

  • apt-get install iceweasel-l10n-zh-cn

四、kali安装adobe flash

到官网下载tar包:

https://get.adobe.com/flashplayer/

解压到某一目录

之后:

  • tar zxf xxxxxxxxx.tar.gz
  • cp libflashplayer.so /usr/lib/mozilla/plugins/
  • cp -r usr/* /usr

重启浏览器

完成

五、安装网易云音乐

链接:http://music.163.com/#/download

  • dpkg -i netease-cloud-music_1.1.0_amd64_ubuntu.deb

如果出错就

  • apt-get –fix-broken install

之后继续上个步骤

之后发现启动不了

  • vim /usr/share/applications/netease-cloud-music.desktop

把其中的  Exec=netease-cloud-music %U  改为  Exec=netease-cloud-music %U –no-sandbox

(就是后面加个  –no-sandbox)

仍然无法使用,我猜是缺少某个运行库,之前也出现过这种情况,莫名其妙就好使了

留在这里以后填坑吧

终终于找到我自己的解决方法了:

其实在终端 :

  • sudo netease-cloud-music

就可以正常运行网易云音乐,所以我们按照这个思路:

  • vi /usr/share/applications/netease-cloud-music.desktop

把其中的  Exec=netease-cloud-music %U –no-sandbox  改为  Exec=sudo netease-cloud-music %U –no-sandbox

六、安装chrome

链接:https://www.chrome64bit.com/index.php/google-chrome-64-bit-for-linux

下载完成deb包后

  • gdebi google-chrome-stable_current_amd64.deb

自动解决依赖问题

无法用root用户使用,可以用文件资源管理器按照这个路径打开  /usr/share/applications/  如图所示,找到 google chrome 图标,鼠标右键打开属性,在命令哪行 /usr/bin/google-chrome-stable %U 的后面再加上这个语句

–no-sandbox –user-data-dir,加好之后,关闭这个这个标签,谷歌浏览器就可以打开使用了。

七、安装vmware workstation

链接:https://www.vmware.com/cn/products/workstation-pro/workstation-pro-evaluation.html

下载后然后cd到下载目录,输入:

  • sudo chmod +x *.bundle && sudo ./*.bundle

开始安装

安装成功之后打开VMware Workstation 10.0会提示/usr/src没有headers头文件,要求安装,很烦人!
解决vmware 安装出现的linux-headers问题只需要一条命令搞定,命令:

  • apt-get install linux-headers-$(uname -r)

失败的话,就参考下边链接

http://unix.stackexchange.com/questions/277740/installing-vmware-error-kernel-headers-for-version-4-3-0-kali1-amd64-were-not

之后就可以使用了

VMware Workstation Pro 14 许可证序列号:
AC5XK-0ZD4H-088HP-9NQZV-ZG2R4
FF590-2DX83-M81LZ-XDM7E-MKUT4
CG54H-D8D0H-H8DHY-C6X7X-N2KG6
ZC3WK-AFXEK-488JP-A7MQX-XL8YF
AA702-81D8N-0817Y-75PQT-Q70A4
YC592-8VF55-M81AZ-FWW5T-WVRV0
FC78K-FKED6-H88LZ-0QPEE-QP8X6
UV1H2-AKWD2-H8EJZ-GGMEE-PCATD
AC310-0VG0P-M88CQ-YWY5Z-QPRG0

本文长期更新

猜你喜欢

转载自blog.csdn.net/fallfeather/article/details/82966120
今日推荐