内容一:系统环境要求
服务器系统配置好可用的软件源
内容二:如果系统中没有此命令,则需要先安装此命令
# yum -y install psmisc
(补充:这里以 CentOS&RHEL 安装 psmisc 为例)
内容三:使用此命令
# pstree
服务器系统配置好可用的软件源
# yum -y install psmisc
(补充:这里以 CentOS&RHEL 安装 psmisc 为例)
# pstree
# firefox&
按下 “ctrl” 键和 “z” 键
# jobs
# jobs %<background process number>
# jobs %<background process name>
(注意:只有后台进程名唯一时此操作才有效)
# bg %<background process number>
(注意:只有可以在后台启动的进程才能在后台启动)
# bg %<background process name>
(注意:只有可以在后台启动的进程才能在后台启动,且只有后台进程名唯一时此操作才有效)
# fg %<background process number>
# fg %<background process name>
(注意:只有后台进程名唯一时此操作才有效)
# kill %<background process number>
(补充:这里可以配合各种 kill 选项进行操作,例如 kill -9)
# kill %<background process name>
(注意:只有后台进程名唯一时此操作才有效)
(补充:这里可以配合各种 kill 选项进行操作,例如 kill -9)
?
*
[<character><character><character>]
或者:
{<character>,<character>,<character>}
[^<character><character><character>]
或者:
[!<character><character><character>]
{<head character>...<tail character>}
# touch {a..b}{1..3}.txt
# ls
a1.txt a2.txt a3.txt b1.txt b2.txt b3.txt
# cd /tmp
# tar -zcvf /home/zhumingyu/all.tar.gz .[!.]* *
# cd <directory>
# cd
或者:
# cd ~
# cd -
# cd .
# cd ..
1) # init 0
2) # poweroff
3) # system poweroff
4) # shutdown -h 0
1) # init6
2) # reboot
3) # systemctl reboot
4) # shutdown -r 0