上一篇在講 VirtualBox 增強包安裝的時候,因為沒有在 CentOS 7 mini 沒有圖形介面元件,會出現一些錯誤,這篇講講如何在 mini 的基礎上,把圖形桌面安裝上去。
給 CentOS 安裝圖形介面
通過上篇操作,virtualbox 上的 CentOS 和宿主機之間已支援資料夾共享,還是無法滑鼠自由切換,主要是因為 CentOS mini 安裝只有字元介面,不支援滑鼠。還需對系統安裝桌面系統。
首先列出以下當前已安裝和支援安裝的包組
yum grouplist
可能會看到如下的顯示:
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
* base: mirrors.zju.edu.cn
* extras: mirrors.aliyun.com
* updates: mirrors.163.com
Installed Environment Groups:
GNOME Desktop
Available Environment Groups:
Minimal Install
Compute Node
Infrastructure Server
File and Print Server
Basic Web Server
Virtualization Host
Server with GUI
KDE Plasma Workspaces
Development and Creative Workstation
Available Groups:
Compatibility Libraries
Console Internet Tools
Development Tools
Graphical Administration Tools
Legacy UNIX Compatibility
Scientific Support
Security Tools
Smart Card Support
System Administration Tools
System Management
Done
這個命令列出來的實際上是centos7安裝時提供的安裝型別選項。Installed Environment Groups
為已安裝的包組。
如果已安裝包組裡面沒有GNOME Desktop
,直接執行下面命令
yum groupinstall ‘GNOME Desktop’
即可安裝圖形介面。
安裝完畢,執行
startx
啟動圖形介面。
如果安裝不成功,也可以嘗試先進行 X 系統安裝。如下:
If CentOS has already been installed without a graphical interface,
you can install this with the following commands:
yum groupinstall "X Window System"
yum install gdm
If you would like this to be the default runlevel, you can edit
/etc/inittab and set the default level to 5 instead of 3:
vi /etc/inittab
Change:
id:3:initdefault:
To:
id:5:initdefault:
圖形介面安裝成功後,reboot 機器,並重灌virtualbox 增強包
cd /media/cdrom
./VBoxLinuxAdditions.run
本來本文還介紹了 VNC 的安裝配置,鑑於這個內容和本篇文章不是很搭,所以單獨出來了。
若有興趣的,點選《CentOS 上安裝配置 VNC 服務》穿越。
到這裡,我的《CentOS7 在 VirtualBox 上的安裝配置》系列暫告一段落。辛辛苦苦截圖碼字很不容易哦,這也是我發在 SF 上的第一個系列文章,喜歡的朋友記得推薦點贊哦。? ?
順便放出寫本系列文章的時候,Google 到的一些參考文章。