CentOS Linux命令

前端之家收集整理的这篇文章主要介绍了CentOS Linux命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

关机

  1. init 0 (不推荐)
  2. halt 立刻关机
  3. poweroff 立刻关机,并且电源也会断掉
  4. shutdown -h 10 10分钟后自动关机
  5. shutdown -h now 立刻关机(root用户使用)
  6. shutdown +2 "The machine will shutdown" # 2min后关机,并通知在线者
  7. shutdown -c 取消重启,取消由shutdown命令设置的关机或重启命令

重启

  1. init 6 (不推荐)
  2. reboot
  3. shutdown -r now 立刻重启(root使用)
  4. shutdown -r 10 过10分钟自动重启(root使用)
  5. shutdown -r 20:35 在时间为20:35时重启(root使用)

运行级别(Runlevel)

# cat或tail /etc/inittab

  • 0 - halt (Do NOT set initdefault to this) 系统停机状态
  • 1 - Single user mode 单用户模式,root权限,用于系统维护,禁止远程登陆,一般用来破解密码等
  • 2 - Multiuser,without NFS(The same as 3,if you do not have networking)
  • 3 - Full multiuser mode 完全的多用户状态(有NFS),登陆后进入控制台命令行模式
  • 4 - unused 系统未使用,保留
  • 5 - X11 X11控制台,登陆后进入图形GUI模式
  • 6 - reboot (Do NOT set initdefault to this) 系统正常关闭并重启。不能被设为默认运行级别,否则不能正常启动

查看当前运行级别:runlevel --> N 3

进入其他运行级别: init N

特殊注意:init 0 则为关机,init 6为重启系统 (不推荐使用此命令)

其他命令

[root@localhost ~]# who #谁在线

[root@localhost ~]# ps -aux #后台执行的程序

原文链接:https://www.f2er.com/centos/376091.html

猜你在找的CentOS相关文章