码迷,mamicode.com
首页 > 其他好文 > 详细

运行级别

时间:2017-01-13 01:45:30      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:运行级别

如果我们默认装了minimal这样系统的话,它会启动3级别。

1、怎么看运行级别?

[root@wy ~]# runlevel

N 3


2、系统有7个运行级别

[root@wy ~]# cat /etc/inittab

# Default runlevel. The runlevels used are:

#   0 - halt (Do NOT set initdefault to this)

#   1 - Single user mode

#   2 - Multiuser, without NFS (The same as 3, if you do not have networking)

#   3 - Full multiuser mode

#   4 - unused

#   5 - X11

#   6 - reboot (Do NOT set initdefault to this)

0:关机(init 0==shutdown -h now)

1:单用户(不用输入密码就可以进入,可以修改root的密码,假如忘记密码,就可以使用这种模式进入修改密码)

2:多用户(没有NFS,和3级别挺像的)

3:多用户(比较完整的)

4:保留

5:图形界面

6:重启(init 6==reboot==shutdown -r now)


3、若想要启动图形界面,需要安装相关图形支持

先用yum grouplist查看一下(首次使用有点慢)

      [root@wy ~]# yum grouplist

    Java 平台

      Milkymist

      MySQL 数据库客户端

      Perl 支持

      PostgreSQL 数据库客户端

    图形管理工具

      基本

   但是要想安装的话,不支持中文,先将其变为英文

[root@wy ~]# LANG=en

[root@wy ~]# yum grouplist

Additional Development

  Base

Development tools

E-mail server

安装图形套件:

[root@wy ~]# yum groupinstall -y "Desktop"

[root@wy ~]# yum groupinstall -y "X Window System"

  安装完后开户图形化界面

[root@wy ~]# init 5

或者

[root@wy ~]# startx


本文出自 “linux” 博客,转载请与作者联系!

运行级别

标签:运行级别

原文地址:http://warm51fun.blog.51cto.com/3884274/1891492

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!