一、賬戶操作
#啟用root賬戶
sudo passwd root
#鎖定root賬戶
sudo passwd -l root
#解鎖root賬戶
sudo passwd -u root
二、新增環境變數
#該方法修改系統配置,需要root許可權或者對該檔案的寫入許可權
chmod 777 /etc/profile
vim /etc/profile
export path="需新增路徑$path"
source /etc/profile
三、更新軟體源
vim /etc/apt/sources.list
#注釋掉kali官方的軟體源,新增國內軟體源
#中科大
#deb kali-rolling main non-free contrib
#deb-src kali-rolling main non-free contrib
#阿里雲
#deb kali-rolling main non-free contrib
#deb-src kali-rolling main non-free contrib
#清華大學
#deb kali-rolling main contrib non-free
#deb-src kali-rolling main contrib non-free
#儲存後進行軟體公升級
apt-get update
apt-get upgrade
apt-get autoclean
硬碟空間不大的話,可定期清理安裝包
#把已安裝的軟體包的安裝包也刪除掉
apt-get clean
#刪除為了滿足其他軟體包的依賴而安裝的,但現在不再需要的軟體包
apt-get autoremove
#刪除已安裝的軟體包(保留配置檔案)
apt-get remove 軟體包名
四、安裝谷歌拼音輸入法
sudo apt install fcitx
sudo apt install fcitx-googlepinyin
sudo reboot*
完成後可以直接在開始選單搜尋fcitx配置項,進行各項配置。
五、將root使用者終端顏色替換為非root使用者
#使用root使用者登入
cd /home/kali #切換到非root使用者的目錄
cp .bashrc /root #將kali使用者的.bashrc複製到root使用者目錄下
cd /root #回到root使用者目錄下
cat .bashrc #檢視.bashrc檔案是否被替換,若已替換則說明成功
source .bashrc #終端顏色替換成功
六、設定共享資料夾
首先安裝vmware tools,可以先cd到/mnt資料夾下檢視是否有hgfs資料夾,如果有,則無需再安裝vmware tools。
vmhgfs-fuse .host:/vmshare /mnt/hgfs #vmshare是共享資料夾名,/mnt/hgfs是掛載目錄名。
Linux Ubuntu 筆記(長期更新)
前者相當於快捷方式,後者則相當於重新拷貝了一次。ln s home sb a home sb b 注意!刪除軟鏈結時,注意rm a 和 rm r a 的區別,後者會將源資料夾也刪除,血的教訓。du h du h max depth 1 sudo find name tmp xargs sudo rm...
Mysql使用筆記(隨時更新)
簡述 記錄mysql使用過程中實際遇到的問題及解決方式 1.由於insert的時候發生同時兩條相同的記錄寫入 為了解決這個問題,同時結合本身記錄發現,u id 和 room id,的組合在該表中是唯一的,所以出於這個業務約束,新增unique欄位可以達到避免重複寫入的bug 建表語句 unique ...
LaTex使用筆記(持續更新)
眾所周知,要在latex中加入jpg,必須要借助graphicx包的幫助。在導言區加上 usepackage import figures然後在你想插入的地方加上 begin centering includegraphics height 4.5cm,width 9.5cm caption lab...