您现在的位置是:网站首页> 编程资料编程资料
Centos纯命令行文本界面下如何安装桌面?_RedHat/Centos_操作系统_
2023-03-24
898人已围观
简介 Centos纯命令行文本界面下如何安装桌面?_RedHat/Centos_操作系统_
一.配置yum本地安装源:
su - root mkdir /mnt/cdrom mount -t iso9660 /dev/sr0 /mnt/cdrom cd /etc/yum.repos.d
查看目录是否有.repo后缀文件,没有则创建一个.repo文件,文件名随意。
vi local.repo [LOCAL] name=local baseurl=file:///mnt/cdrom enable=1 gpgcheck=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如何增加swap分区文件?Centos增加swap分区文件的方法_RedHat/Centos_操作系统_
- 如何解决Centos口令周期设置生效问题?_RedHat/Centos_操作系统_
- Centos下为程序如何设置超时?Centos下为程序设置超时的方法_RedHat/Centos_操作系统_
- Centos下如何为进程绑定CPU?Centos下为进程绑定CPU的方法_RedHat/Centos_操作系统_
- Centos下rpm包如何制作?Centos下rpm包制作的方法_RedHat/Centos_操作系统_
- Centos中如何临时禁用用户?Centos中临时禁用用户的方法_RedHat/Centos_操作系统_
- CentOS中文件夹基本操作命令的讲解_RedHat/Centos_操作系统_
- CentOS系统如何添加用户操作日志?CentOS系统添加用户操作日志的方法_RedHat/Centos_操作系统_
- Centos进程状态详解_RedHat/Centos_操作系统_
- CentOS EXT4文件系统的详解_RedHat/Centos_操作系统_
