Xfceのインストール方法

各ディストリのXfceのインストール方法をまとめます。

GNOMEの削除が不要な場合はpurgeやremoveを飛ばしてください。


1 Ubuntu 14.04 / Ubuntu 16.04

sudo apt-get remove -y unity ubuntu-desktop
sudo apt-get install -y xubuntu-desktop
sudo reboot

0001_ubuntu14.04.png

2 Debian 8

purgeでsudoとnetwork-managerも消えるので注意。

sudo su -
aptitude purge -y `dpkg --get-selections | grep gnome | cut -f 1`
aptitude -f install -y
aptitude purge -y `dpkg --get-selections | grep deinstall | cut -f 1`
aptitude -f install -y
apt-get install -y xfce4 xfce4-goodies lightdm
apt-get install -y sudo network-manager
systemctl enable lightdm.service
reboot

0002_debian8.png

3 Fedora 22

sudo dnf remove -y gnome-desktop gnome-desktop3
sudo dnf groupinstall -y "Xfce Desktop"
sudo dnf install -y lightdm
sudo systemctl enable lightdm.service
sudo reboot

0003_fedora22.png

4 CentOS 7

sudo yum remove -y gnome-desktop gnome-desktop3
sudo yum install -y epel-release
sudo yum update -y
sudo yum --enablerepo=epel groupinstall -y "Xfce"
sudo yum install -y lightdm
sudo systemctl enable lightdm.service
sudo reboot

0004_centos7.png