Ctrl键+c #终止当前的操作
Ctrl键+d #退出当前所登录的用户
Ctrl键+l #清屏
Ctrl键+a #将当前光标所在位置移动到命令行的行首
Ctrl键+e #将当前光标所在位置移动到命令行的行尾
Ctrl键+u #删除当前光标所在位置向前的所有字符
Ctrl键+k #删除当前光标所在位置向后的所有字符
Ctrl键+y #粘贴剪切板上面的内容
Ctrl键+w #删除当前光标所在位置向前的一组字符串
Ctrl键+方向键 #向左或者向右移动一组字符串
delete #从前往后删除一个字符
Ctrl键+r #搜索历史命令
Ctrl键+z #把当前的任务放到后台运行
Ctrl键+s #锁屏
Ctrl键+q #解锁
esc键+. #使用上一条命令的最后的参数
!! #执行上一条命令
!ls #执行最近的一次以ls开头的命令
历史记录history
选项:
-c #清空的历史命令
-d #指定删除历史命令,id
-w #命令写入到文件中
别名 alias
[root@qls ~]# alias tong='ping baidu.com'
#系统自带的别名
[root@qls ~]# alias
alias cp='cp -i'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l.='ls -d .* --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls --color=auto'
alias mv='mv -i'
alias rm='rm -i'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
关机
shutdown -h 0 #立刻关机 或者 now
shutdown -h 1 #1分钟之后进行关机,是以分钟为级别的
shutdown -h 11:00 #在11:00的时候会执行关机的命令
shutdown -c #取消当前的关机操作
poweroff #关机
halt #关机,只会关闭系统,不会关闭电源
-p #关闭电源
init 0 #切换运行级别进行关机
重启
shutdown -r 0 #立刻重启 或者 now
shutdown -r 1 #1分钟之后进行重启,是以分钟为级别的
shutdown -r 11:00 #在11:00的时候会执行重启的命令
reboot #重启
init 6 #重启
注销
logout #注销
Ctrl键+d #快捷键注销
exit #退出当前用户
ifconfig
功能说明:显示或设置网络设备
eth0,eth1,eth2……代表网卡一,网卡二,网卡三……
lo代表127.0.0.1,即localhost
ip #显示ip地址
[root@qls ~]# ip address #显示所有的ip地址
[root@qls ~]# ip a
[root@qls ~]# ip address show eth0 #显示某块网卡的ip地址
[root@qls ~]# ip a s eth0
ifconfig #查看ip地址的命令
[root@qls ~]# ifconfig #查看所有的ip地址
[root@qls ~]# ifconfig eth0 #显示某块网卡的ip地址
hostname #本身显示主机名的命令
[root@qls ~]# hostname -i
fe80::52f8:a673:eea3:dc47%eth0 fe80::e6c7:9516:7898:2bcb%eth1 10.0.0.100 172.16.1.100
(注:fe80::52f8:a673:eea3:dc47%eth0显示的是ipv6的地址)
[root@qls ~]# hostname -I
10.0.0.100 172.16.1.100
pwd显示当前位置