千家信息网

Centos纯命令行文本界面下怎么安装桌面

发表于:2025-01-24 作者:千家信息网编辑
千家信息网最后更新 2025年01月24日,这篇文章主要介绍"Centos纯命令行文本界面下怎么安装桌面",在日常操作中,相信很多人在Centos纯命令行文本界面下怎么安装桌面问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对
千家信息网最后更新 2025年01月24日Centos纯命令行文本界面下怎么安装桌面

这篇文章主要介绍"Centos纯命令行文本界面下怎么安装桌面",在日常操作中,相信很多人在Centos纯命令行文本界面下怎么安装桌面问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"Centos纯命令行文本界面下怎么安装桌面"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

一.配置yum本地安装源:

su - rootmkdir /mnt/cdrommount -t iso9660 /dev/sr0 /mnt/cdromcd /etc/yum.repos.d

查看目录是否有.repo后缀文件,没有则创建一个.repo文件,文件名随意。

vi local.repo [LOCAL]name=localbaseurl=file:///mnt/cdromenable=1gpgcheck=0

保存退出

yum clean all

二. 安装默认系统桌面(适于之前安装系统时未选中桌面安装)

1.安装桌面包

 yum groupinstall "X Window System" yum groupinstall "Desktop"

2.启动桌面

 init 5

3.更改启动模式

 vi /etc/inittab# System initialization is started by /etc/init/rcS.conf## Individual runlevels are started by /etc/init/rc.conf## Ctrl-Alt-Delete is handled by /etc/init/control-alt-delete.conf## Terminal gettys are handled by /etc/init/tty.conf and /etc/init/serial.conf,# with configuration in /etc/sysconfig/init.## For information on how to write upstart event handlers, or how# upstart works, see init(5), init(8), and initctl(8).## 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)#

id:3:initdefault:

将上面红字部分的 3改成5 3为命令行界面 5为X window图形界面

4.安装桌面右键终端:

 yum install nautilus-open-terminal

到此,关于"Centos纯命令行文本界面下怎么安装桌面"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!

0