ctrl + alt + f1~f6 :字元介面登入tty1-tty6
alt + f7 :切換到徒刑介面
alt + fn :切換到其它字元介面
偽字元終端:右擊桌面-terminal
基礎命令:
[root@white!~]$ date +%y%m%d
[root@white!~]$ date +%h:%m
顯示日曆:cal;
[root@white!~]$ cal 2016
[root@white!~]$ cal 7 2016
檢視幫助:man
空格鍵翻頁,q退出
[root@white!~]$ man ls
檢視主機名:
[root@white!~]$ uname -a | uname -r
[root@white!~]$ hostname
檢視ip:
[root@white!~]$ ifconfig
關機重啟:
[root@white!~]$ shutdown -h now | init 0 | shutdown -h 20:25 | shutdown -h +10
[root@white!~]$ shutdown -r now | reboot | init 6
目錄: [root@white!~]$ pwd
[root@white!~]$ cd ~ | cd - | cd . | cd /root/desktop | cd ..
[root@white!~]$ mkdir test | mkdir -p dark/1/2/3 | mkdir -m 711 test2
[root@white!~]$ rm -r test
[root@white!~]$ ls /root | ls -alh /root | ll /tmp
ls -l == ll
[root@white!~]$ cp source destination
[root@white!~]$ cp [options] source1 source2 source3 ... directory 1:
[root@white!~]$ cp ~/.bashrc /tmp/bashrc
[root@white!~]$ cp -i ~/.bashrs /tmp/bashrc 2:
[root@white!~]$ cd /tmp
[root@white!~]$ cp /var/log/wtmp .
[root@white!~]$ ls -l /var/log/wtmp wtmp
[root@white!~]$ cp -a /var/log/wtmp wtmp_2
[root@white!~]$ ls -l /var/log/wtmp wtmp_2 3:
[root@white!~]$ cp -r /etc/ /tmp
[root@white!~]$ rm 檔案或者目錄
[root@white!~]$ rm -i white.txt | rm -f bashrc*
[root@white!~]$ rm -r /tmp/etc
[root@white!~]$ mv source destination
[root@white!~]$ mv [option] source1 source2 ... direcory
[root@white!~]$ mv passed /root/desktop/aaa.txt
[root@white!~]$ cat /etc/issue
[root@white!~]$ cat -n /etc/passwd
[root@white!~]$ more | less /etc/passwd
[root@white!~]$ head [-n number] filename | head -n 1 /etc/passwd
[root@white!~]$ tail -5 /etc/passwd
[root@white!~]$ head -20 /etc/man.config | tail -10
[root@white!~]$ touch filename | touch a.txt
[root@white!~]$ wc -l /etc/passwd | -l -w -c
gzip,bzip2
[root@white! tmp]$ gzip -v man.config | gzip -d man.config.gz
[root@white! tmp]$ bzip2 man.config | bzip2 -d man.config.bz2
tar[root@white!~]$ tar [-j|-z] [cv] [-f newfilename] filename
[root@white!~]$ tar [-j|-z] [xv] [-f newfilename] [-c 目錄]
[root@white!~]$ tar -jcv -f filename.tar.bz2 壓縮目錄
[root@white!~]$ tar -jxv -f filename.tar.bz2 -c 解壓目錄
[root@white!~]$ tar zcf dark.tar.gz /etc/ | tar zxf dark.tar.gz -c 指定目錄
[root@white!~]$ tar jcf dark.tar.bz2 /etc/ | tar jxf dark.tar.bz2 -c 指定目錄
重新啟動程式,讀秒的時候按下任意鍵,看選單說明,按e進入grup的編輯模式;
游標移動到kernel那一行,再按下e進入kernel該行到編輯介面,然後在出現的介面當中,最後輸入single;
按下enter確認,再按下b鍵進入單使用者維護模式,此模式有root許可權,用passwd命令修改密碼。
Linux學習筆記(一)
一 基礎知識 整個unix體系結構包括這麼幾個部分 1 登入 系統的口令檔案存放在 etc passwd下面,每行是一條記錄。每條記錄以 分隔包含7個字段 但是現在所有的系統都將這些資訊放在其他檔案 which file linux預設是bourne again shell bash 2 檔案和目錄...
linux學習筆記一
gnu general public license 奇數發展中版本,偶數穩定版本 linux的兩種操作方式 圖形介面 x windows system 僅是linux上的一套軟體 文字介面 command line 網路伺服器 www,mail server,file server,ftp ser...
Linux學習筆記(一)
一 磁碟分割槽 第一步 檔案系統型別 ext3 掛載點 固定大小 10000mb 第二步 檔案系統型別 ext3 掛載點 boot 強制為主分割槽 100mb 第三步 檔案系統型別 swap 固定大小 1000mb 第四步 檔案系統型別 ext3 掛載點 home 固定大小 5000mb 二 圖形介...