Kali2.0安裝後配置

1.更新源

備份軟件源sources.list文件,然後修改sources.list文件,在終端輸入:

gedit /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 

#阿里源
deb http://mirrors.aliyun.com/kali kali main non-free contrib
deb-src http://mirrors.aliyun.com/kali kali main non-free contrib
deb http://mirrors.aliyun.com/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 
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-getupdate#刷新系統
apt-get upgrade#安裝更新


2.主題管理軟件(gnome-tweak-tool ),執行:

apt-getinstall gnome-tweak-tool#安裝
gnome-tweak-tool#打開Gnome

在http://gnome-look.org下載解壓複製到主題存放的文件夾下:/usr/share/themes。

 

3.中文輸入法

Ibus:apt-get install ibusibus-pinyin
fcitx:apt-get install fcitxfcitx-pinyin fcitx-module-cloudpinyin fcitx-googlepinyin

im-config 設置ibus(fctix)爲默認輸入法。

重啓有效!

 

4.安裝最新iceweasel,並漢化iceweasel瀏覽器

如何更新到最新版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.創建普通用戶

adduser用戶名 

vi sudo按i之後進入編輯模式(插入),然後在文件的 root ALL=(ALL:ALL) ALL 的下方添加一個新的sudo用戶例如XXX用戶:XXX   ALL=(ALL:ALL)

完成後按Esc鍵進入命令行模式,鍵入:wq來保存推出。保存之後新建立就可以使用sudo命令了,重啓或者註銷來切換成新建立的用戶即可。(注意:使用普通用戶時,默認的權限是比較低的,以至於一些程序無法正常運行,這是需要使用sudo命令來執行,比如sudo apt-get update,或者使用su命令在終端中切換至root用戶之後執行)

把原有/root/目錄下的配置文件複製到新建立的用戶目錄下(/home/新建立的用戶名)

cp-rf /root/.*  /home/新用戶名
chown -R 新用戶名:新用戶名  /home/新用戶名

 

6. 一些常用軟件:

apt-get install  gdebi

提供圖形化軟件安裝方式

apt-get install flashplugin-nonfree

瀏覽器flash插件

apt-getinstall synaptic

新立得軟件包管理器

apt-getinstall file-roller

壓縮文件管理工具

apt-getinstall amule

電騾

apt-getinstall remmina

遠程桌面+擴展

apt-get install  geany

一個輕巧的IDE,如果您喜歡折騰emacs或者VIM就不用安裝這個了

apt-get install bluefish

一個強大的Web編輯器

apt-get install audacious
一個輕量級音樂播放器

發佈了31 篇原創文章 · 獲贊 21 · 訪問量 6萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章