一、基本命令的学习
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的命令格式:
命令选项命令的对象
输入命令后以回车执行
ctrl+c的组合键取消
Linux的命令严格区分大小写
[root@localhost ~]# ls /etc/sysconfig/
/etc/sysconfig 是ls这个命令的对象
[root@localhost ~]# ls -l /etc/sysconfig/
-l 在这里是ls命令的选项,选项作用是启用命令的一些特定的功能(非默认)。
[root@localhost ~]# ls -l
总计 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
总计 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
#####################################
在系统中获得命令使用帮助的方法:
1)ls --help
获得ls命令的常用帮助
[root@localhost ~]# ls -a
[root@localhost ~]# ls --all
通过命令的帮助获得-a 和--all的作用相同。
2)通过man命令来获得帮助
[root@localhost ~]# man ls
#####################################
Linux命令行中常用的快捷键:
Tab键 ====>命令和路径自动补全;
[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/ 。
按照你输入的字符为开头自动补全linux命令,如果结果不唯一,按两下Tab键,例有可能的结果,如果唯一,就自动补全。
ctrl+l(这是L键) ====>清屏linux命令,等同于命令clear