1,Linux設置自動登陸:緩存
/etc/gdm/custom.conf文件中增長代碼:bash
[daemon] AutomaticLoginEnable=true AutomaticLogin=root
2,登陸提示:學習
/etc/motd文件中增長文本內容便可;spa
3,經常使用命令:code
init 3 #切換字符界面 init 5 #切換圖形界面 help #查看bash內部命令。 ## Linux系統查找命令邏輯:內部 -> hash表 -> $PATH -> 命令找不到 ## enable #查看內部命令列表。 enable -n #查看被禁用的內部命令列表。 type #判斷是否是bash內部命令,顯示帶路徑的爲外部命令,例如type pwd; enable #管理bash命令,例如: enable -n pwd #禁用bash內部命令pwd enable pwd #啓用bash內部命令pwd enable -a pwd #列出全部pwd命令(內部,外部) echo #回顯 which #查看外部命令路徑,例如:which init whereis #查看外部命令路徑,而且查出對應文檔的路徑,例如:whereis init hash -d cat #清理hash表裏的cat命令緩存 hash -p path name #將命令全路徑path取別名 hash -r #刪除hash表裏所有外部命令(緩存) hash #查看hash表裏的外部命令(緩存) hash -l #查看hash表裏的外部命令和別名 hash -t cat #顯示hash表裏命令cat的路徑