欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

centos7常用命令

程序员文章站 2022-03-11 22:28:54
...

1.重启计算机

shutdown -r now

更多

shutdown -h 10          #计算机将于10分钟后关闭,且会显示在登录用户的当前屏幕中
shutdown -h now       #计算机会立刻关机
shutdown -h 22:22     #计算机会在这个时刻关机
shutdown -r now        #计算机会立刻重启
shutdown -r +10         #计算机会将于10分钟后重启
reboot                           #重启
alt                                #关机

2.后台运行jar文件

nohup java -jar xxx.jar &
相关标签: centos