访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

linux 常用命令及实例

时间:2019-10-28

linux命令windows命令_linux压缩命令zip命令_linux常用命令

在linux中,绝大多数命令都参照命令 选项 参数

选项:适用于调整命令的功能的

参数:指的是命令的操作对象linux常用命令,如果省略参数linux常用命令,是由于有默认参数的

ls 显示目录下的内容

# ls 
[root@localhost ~]# ls
anaconda-ks.cfg  install.log  install.log.syslog
# ls --color=never  不显示颜色的显示目录下的文件名
[root@localhost ~]# ls --color=never
anaconda-ks.cfg  install.log  install.log.syslog
# ls -a 显示所有文件(包含隐藏文件)
[root@localhost ~]# ls -a
.  ..  anaconda-ks.cfg  .bash_logout  .bash_profile  .bashrc  .cshrc  install.log  install.log.syslog  .pki  .tcshrc
# ls -l 以长格式显示文件
[root@localhost ~]# ls -l
总用量 16
-rw-------. 1 root root 1098 6月   8 19:38 anaconda-ks.cfg
-rw-r--r--. 1 root root 8025 6月   8 19:38 install.log
-rw-r--r--. 1 root root 3384 6月   8 19:38 install.log.syslog
# ls -d 只显示目录
[root@localhost ~]# ls -l
总用量 16
-rw-------. 1 root root 1098 6月   8 19:38 anaconda-ks.cfg
-rw-r--r--. 1 root root 8025 6月   8 19:38 install.log
-rw-r--r--. 1 root root 3384 6月   8 19:38 install.log.syslog
# ls -i 查看inode节点号
[root@localhost ~]# ls -i
260965 anaconda-ks.cfg  260611 install.log  260612 install.log.syslog

cd 切换所在目录

# cd
[root@localhost ~]# cd /tmp/
[root@localhost tmp]# 
# 进入相对路径
[root@localhost /]# cd /tmp/
[root@localhost tmp]# cd ../etc/yum.repos.d/
# 进入绝对路径
[root@localhost yum.repos.d]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# ll
总用量 36
drwxr-xr-x. 2 root root 4096 6月   8 19:58 backup
-rw-r--r--. 1 root root 1991 3月  28 2017 CentOS-Base.repo
-rw-r--r--. 1 root root  647 3月  28 2017 CentOS-Debuginfo.repo
-rw-r--r--. 1 root root  289 3月  28 2017 CentOS-fasttrack.repo
-rw-r--r--. 1 root root  630 3月  28 2017 CentOS-Media.repo
-rw-r--r--. 1 root root 7989 3月  28 2017 CentOS-Vault.repo
-rw-r--r--. 1 root root  957 11月  5 2012 epel.repo
-rw-r--r--. 1 root root 1056 11月  5 2012 epel-testing.repo
# cd -  返回上次所在目录
[root@localhost yum.repos.d]# pwd
/etc/yum.repos.d
[root@localhost yum.repos.d]# cd /
[root@localhost /]# cd -
/etc/yum.repos.d
[root@localhost yum.repos.d]# 
# cd ~  进入当前用户的家目录
[root@localhost yum.repos.d]# cd ~
[root@localhost ~]# 
# cd .. 进入上一级目录
[root@localhost ~]# cd /tmp/
[root@localhost tmp]# pwd
/tmp
[root@localhost tmp]# cd ..
[root@localhost /]# pwd
/