一、基本命令的學(xué)習(xí)
ls 的命令
[root@localhost ~]# ls
anaconda-ks.cfg install.log install.log.syslog test。anaconda-ks.cfg install.log install.log.syslog vnc-4.0-x86_linux.tar.gz。anaconda-ks.cfg install.log.syslog vnc-4.0-x86_linux.tar.gz。
Linux的命令格式:
命令選項(xiàng)命令的對(duì)象
輸入命令后以回車執(zhí)行
ctrl+c的組合鍵取消
Linux的命令嚴(yán)格區(qū)分大小寫
[root@localhost ~]# ls /etc/sysconfig/
/etc/sysconfig 是ls這個(gè)命令的對(duì)象
[root@localhost ~]# ls -l /etc/sysconfig/
-l 在這里是ls命令的選項(xiàng),選項(xiàng)作用是啟用命令的一些特定的功能(非默認(rèn))。
[root@localhost ~]# ls -l
總計(jì) 52
-rw------- 1 root root 960 04-03 20:02 anaconda-ks.cfg
drwxr-xr-x 2 root root 4096 04-03 22:14 Desktop
-rw-r--r-- 1 root root 25841 04-03 20:02 install.log
-rw-r--r-- 1 root root 3671 04-03 20:01 install.log.syslog
[root@localhost ~]# ls -l -h
總計(jì) 52K
-rw------- 1 root root 960 04-03 20:02 anaconda-ks.cfg
drwxr-xr-x 2 root root 4.0K 04-03 22:14 Desktop
-rw-r--r-- 1 root root 26K 04-03 20:02 install.log
-rw-r--r-- 1 root root 3.6K 04-03 20:01 install.log.syslog
[root@localhost ~]# ls -lh
#####################################
在系統(tǒng)中獲得命令使用幫助的方法:
1)ls --help
獲得ls命令的常用幫助
[root@localhost ~]# ls -a
[root@localhost ~]# ls --all
通過(guò)命令的幫助獲得-a 和--all的作用相同。
2)通過(guò)man命令來(lái)獲得幫助
[root@localhost ~]# man ls
#####################################
Linux命令行中常用的快捷鍵:
Tab鍵 ====>命令和路徑自動(dòng)補(bǔ)全;
[root@localhost ~]# system-config-display
[root@localhost~]#ls/etc/samba/。[root@localhost src]# ls //etc/yum.repos.d。[root@localhost ~]# ls -al /etc/httpd/conf.d/ 。
按照你輸入的字符為開(kāi)頭自動(dòng)補(bǔ)全linux命令,如果結(jié)果不唯一,按兩下Tab鍵,例有可能的結(jié)果,如果唯一,就自動(dòng)補(bǔ)全。
ctrl+l(這是L鍵) ====>清屏linux命令,等同于命令clear