您的位置:首页 > 运维架构 > Linux

CENTOS GUI

2016-07-13 11:04 926 查看
http://unix.stackexchange.com/questions/181503/how-to-install-desktop-environments-on-centos-7

How to install Desktop Environments on CentOS 7?



up vote56down votefavorite
48

I have recently installed CentOS 7 (Minimal Install without GUI) and now I want to install a GUI environment in it.

How can I install Desktop Environments on previously installed CentOS7 without reinstalling it?

centos gui desktop-environment
shareimprove this question
edited Jul 6 at 3:36



slm
156k36270444

asked Jan 28 '15 at 7:02



Afshin Hamedi
2,74331027

add a comment

2 Answers

activeoldestvotes

up vote99down voteaccepted

1. Installing GNOME-Desktop:

Install GNOME Desktop Environment on here.

# yum -y groups install "GNOME Desktop"


Input a command like below after finishing installation:

# startx


GNOME Desktop Environment will start. For first booting, initial setup runs and you have to configure it for first time.

Select System language first.

Select your keyboard type.

Add online accounts if you'd like to.

Finally click "Start using CentOS Linux".

GNOME Desktop Environments starts like follows.



How to use GNOME Shell?

The default GNOME Desktop of CentOS 7 starts with classic mode but if you'd like to use GNOME Shell, set like follows:

Option A: If you start GNOME with
startx
, set like follows.

# echo "exec gnome-session" >> ~/.xinitrc
# startx

Option B: set the system graphical login
systemctl set-default graphical.target
and reboot the system. After system starts

Click the button which is located next to the "Sign In" button.

Select "GNOME" on the list. (The default is GNOME Classic)

Click "Sign In" and log in with GNOME Shell.



GNOME shell starts like follows:



2. Installing KDE-Desktop:

Install KDE Desktop Environment on here.

# yum -y groups install "KDE Plasma Workspaces"


Input a command like below after finishing installation:

# echo "exec startkde" >> ~/.xinitrc
# startx


KDE Desktop Environment starts like follows:



3. Installing Cinnamon Desktop Environment:

Install Cinnamon Desktop Environment on here.

First Add the EPEL Repository (EPEL Repository which is provided from Fedora project.)
Extra Packages for Enterprise Linux (EPEL)

How to add EPEL Repository?

# yum -y install epel-release

# sed -i -e "s/\]$/\]\npriority=5/g" /etc/yum.repos.d/epel.repo # set [priority=5]
# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/epel.repo # for another way, change to [enabled=0] and use it only when needed
# yum --enablerepo=epel install [Package] # if [enabled=0], input a command to use the repository


And now install the Cinnamon Desktop Environment from EPEL Repository:

# yum --enablerepo=epel -y install cinnamon*


Input a command like below after finishing installation:

# echo "exec /usr/bin/cinnamon-session" >> ~/.xinitrc
# startx


Cinnamon Desktop Environment will start. For first booting, initial setup runs and you have to configure it for first time.

Select System language first.

Select your keyboard type.

Add online accounts if you'd like to.

Finally click "Start using CentOS Linux".

Cinnamon Desktop Environment starts like follows.



4. Installing MATE Desktop Environment:

Install MATE Desktop Environment on here.

# yum --enablerepo=epel -y groups install "MATE Desktop"


Input a command like below after finishing installation:

# echo "exec /usr/bin/mate-session" >> ~/.xinitrc
# startx


MATE Desktop Environment starts.



5. Installing Xfce Desktop Environment:

Install Xfce Desktop Environment on here.

# yum --enablerepo=epel -y groups install "Xfce"


Input a command like below after finishing installation:

# echo "exec /usr/bin/xfce4-session" >> ~/.xinitrc
# startx


Xfce Desktop Environment starts.



shareimprove this answer
edited Jul 6 at 3:38



slm
156k36270444

answered Jan 28 '15 at 7:02



Afshin Hamedi
2,74331027

I tried installing mate following your example. Got an error on groups in the yum command but continued to install. Copy/pasted your commands so there weren't any typos. xinit is giving up and not starting mate... what is happening? $ startx xauth: file /home/***/.serverauth.12401 does not exist – Jakke Dec 8 '15 at 1:53
I downloaded the 7GB version of CentOS 7 and installed it on VirtualBox, and surprisingly, there is no GUI. 7GB as compared to Ubuntu's 1GB with GUI. And the step 1 in the answer gave me error "Cannot find a valid baseurl for repo"... oh well... P.S. I just found that it is defaulted to "Minimal installation" during the installation -- you just have to change it to GNOME or something else – 太極者無極而生 Dec 12 '15 at 17:02
add a comment


up vote5down vote
Rather than make use of the hacking of a
startx
command into a
.xinitrc
file, it's probably better to tell Systemd that you want to boot into a graphical GUI vs. the terminal.

To accomplish this simply do the following:

$ sudo yum groupinstall "GNOME Desktop"
$ ln -sf /lib/systemd/system/runlevel5.target /etc/systemd/system/default.target

Then simply reboot.

The last bit will associate the runlevel 5 target as your default with respect to Systemd.

Doing it with Systemd

You can also use Systemd to accomplish this. This is arguably the better method since you're managing the state of the system directly through Systemd and its CLIs.

You can see what your current default target is:

$ sudo systemctl get-default
multi-user.target

And then change it to graphical:

$ sudo systemctl set-default
graphical.target

Targets

In Systemd the targets runlevel5.target and graphical.target are identical. So too are runlevel2.target and multi-user.target.

Runlevel    Target Units                          Description
0           runlevel0.target, poweroff.target     Shut down and power off the system.
1           runlevel1.target, rescue.target       Set up a rescue shell.
2           runlevel2.target, multi-user.target   Set up a non-graphical multi-user system.
3           runlevel3.target, multi-user.target   Set up a non-graphical multi-user system.
4           runlevel4.target, multi-user.target   Set up a non-graphical multi-user system.
5           runlevel5.target, graphical.target    Set up a graphical multi-user system.
6           runlevel6.target, reboot.target       Shut down and reboot the system.

References

Install Gnome GUI on CentOS 7 / RHEL 7

8.3. WORKING WITH SYSTEMD TARGETS

shareimprove this answer
edited Feb 20 at 14:12

answered Feb 18 at 14:55



slm
156k36270444

Isn't it better to use Systemd commands to enable graphical mode rather than manually creating a symlink? See the Red Hat Systemd Targets DocumentationMark Edington Feb 20 at 11:54
1
@MarkEdington - agreed, updated. Thanks for pointing this out. Figured it was possible but hadn't dug deep enough to see how. – slm♦ Feb 20 at 14:05
add a comment

protected by Community♦ Feb 10 at 1:03

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).

Would you like to answer one of these unanswered questions instead?

Not the answer you're looking for? Browse other questions tagged centos gui desktop-environment or ask your own question.

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: