于装好的kali linux中只有一个默认的官方的kali.org的源,但是这个源由于是在美国,在国内更新的时候速度比较慢,所以大家可以替换成国内的,中科大的源,我自己测试了一下,速度还不错。不差。 方法: 1、打开终端:输入:
vim /etc/apt/sources.list
kali2.0源 deb http://mirrors.ustc.edu.cn/kali sana main non-free contrib deb-src http://mirrors.ustc.edu.cn/kali sana main non-free contrib deb http://mirrors.ustc.edu.cn/kali-security/ sana/updates main contrib non-free deb-src http://mirrors.ustc.edu.cn/kali-security/ sana/updates main contrib non-free
1.kali-linux安装中文输入法(以下任意选择一种安装):
apt-get install fcitx-table-wbpy ttf-wqy-microhei ttf-wqy-zenhei #拼音五笔 apt-get install ibus ibus-pinyin #经典的ibus apt-get install fcitx fcitx-googlepinyin fcitx-pinyin fcitx-module-cloudpinyin #fcitx拼音
2.安装vpn
apt-get install -y network-manager-openvpn-gnome network-manager-pptp network-manager-pptp-gnome network-manager-vpnc network-manager-vpnc-gnome
3.安装有道划词翻译
看链接http://openyoudao.org/
4.安装火狐浏览器 打开终端 第一步:
apt-get remove iceweasel 第二步: echo -e "\ndeb http://downloads.sourceforge.net/project/ubuntuzilla/mozilla/apt all main" | tee -a /etc/apt/sources.list > /dev/null 第三步: apt-key adv --recv-keys --keyserver keyserver.ubuntu.com C1289A29 第四步: apt-get update 第五步 apt-get install firefox-mozilla-build
5.解决有线网络的"设备无法托管"错误 如果你希望NetworkManager(网络管理器)处理在/etc/network/interfaces中启用的接口,只要在/etc /NetworkManager/NetworkManager.conf中设置managed=true。所以,该文件看起来就像:
[main] plugins=ifupdown,keyfile [ifupdown] managed=true
6.安装内核头文件 apt-get install linux-headers- `uname -r` 7. 设置字体:dpkg-reconfigure locales
a)将zh-CN 和 en-US开头的支持语音选项选中,点击OK b)默认语言选择zh-CN.UTF-8, 点击OK c)运行完该命令后,运行locale 查看当前语言是否是 LANG=zh-CN.UTF-8
解决vlc播放器在root下打不开的问题: 1.下载16进制编辑器 apt-get install bvi 2.输入 bvi /usr/bin/vlc 3.进入命令模式(shift+;) 4.用getppid替换geteuid输入 s/geteuid\0/getppid\0/ 保存退出