标签:style blog http color 使用 strong
1.更新软件源:
先备份软件源文件
cp /etc/apt/sources.list /etc/apt/sources.list.bak
修改sources.list文件:
leafpad /etc/apt/sources.list
然后选择添加以下较快的源:
#官方源
deb http://http.kali.org/kali kali main non-free contrib
deb-src http://http.kali.org/kali kali main non-free contrib
deb http://security.kali.org/kali-security kali/updates main contrib non-free
#中科大kali源
deb http://mirrors.ustc.edu.cn/kali kali main non-free contrib
deb-src http://mirrors.ustc.edu.cn/kali kali main non-free contrib
deb http://mirrors.ustc.edu.cn/kali-security kali/updates main contrib non-free
#新加坡kali源
deb http://mirror.nus.edu.sg/kali/kali/ kali main non-free contrib
deb-src http://mirror.nus.edu.sg/kali/kali/ kali main non-free contrib
deb http://security.kali.org/kali-security kali/updates main contrib non-free
deb http://mirror.nus.edu.sg/kali/kali-security kali/updates main contrib non-free
deb-src http://mirror.nus.edu.sg/kali/kali-security kali/updates main contrib non-free
#debian_wheezy国内源
deb http://ftp.sjtu.edu.cn/debian wheezy main non-free contrib
deb-src http://ftp.sjtu.edu.cn/debian wheezy main non-free contrib
deb http://ftp.sjtu.edu.cn/debian wheezy-proposed-updates main non-free contrib
deb-src http://ftp.sjtu.edu.cn/debian wheezy-proposed-updates main non-free contrib
deb http://ftp.sjtu.edu.cn/debian-security wheezy/updates main non-free contrib
deb-src http://ftp.sjtu.edu.cn/debian-security wheezy/updates main non-free contrib
# 163 源
deb http://mirrors.163.com/debian wheezy main non-free contrib
deb-src http://mirrors.163.com/debian wheezy main non-free contrib
deb http://mirrors.163.com/debian wheezy-proposed-updates main non-free contrib
deb-src http://mirrors.163.com/debian wheezy-proposed-updates main non-free contrib
deb-src http://mirrors.163.com/debian-security wheezy/updates main non-free contrib
deb http://mirrors.163.com/debian-security wheezy/updates main non-free contrib
保存之后运行:
apt-get update && apt-get dist-upgrade
2.kali-linux安装中文输入法(以下任意选择一种安装):
#拼音五笔
apt-get install fcitx-table-wbpy ttf-wqy-microhei ttf-wqy-zenhei
#经典的ibus
apt-get install ibus ibus-pinyin
#fcitx拼音,个人推荐用这个
apt-get install fcitx fcitx-googlepinyin fcitx-pinyin fcitx-module-cloudpinyin
输入法安装完成后需要注销当前用户重新登录之后才能使用
3.kali-linux安装flash player:
apt-get install flashplugin-nonfree
update-flashplugin-nonfree --install
或者参看:ubuntu下安装flash
4.kali_linux安装最新iceweasel,并汉化
在软件源中添加
deb http://mozilla.debian.net/ wheezy-backports iceweasel-release
然后在终端执行以下代码
apt-get install pkg-mozilla-archive-keyring #导入PGP KEY
gpg --check-sigs --fingerprint --keyring /etc/apt/trusted.gpg.d/pkg-mozilla-archive-keyring.gpg --keyring /usr/share/keyrings/debian-keyring.gpg pkg-mozilla-maintainers #新建钥匙环
apt-get update && apt-get install -t wheezy-backports iceweasel && apt-get install iceweasel-l10n-zh-cn
5.安装一些工具:
6.Kali-linux设置vpn代理:
apt-get install network-manager-openvpn-gnome
apt-get install network-manager-pptp
apt-get install network-manager-pptp-gnome
apt-get install network-manager-strongswan
apt-get install network-manager-vpnc
apt-get install network-manager-vpnc-gnome
/etc/init.d/network-manager restart
在高级设置中勾选所有选项(这里是个人尝试方式)
7.运行 Metasploit Framework
Kali-linux安装之后的简单设置(转),布布扣,bubuko.com
标签:style blog http color 使用 strong
原文地址:http://www.cnblogs.com/xunbu7/p/3853608.html