デスクトップ環境のXfceをインストールする手順を記載します。
Table of Contents
1 Xfceのインストール
以下のコマンドでXfceをインストールします。
$ sudo apt install -y expect $ cat <<EOF | expect set timeout -1 spawn sudo apt install -y task-xfce-desktop expect "Default display manager: " send "2\n" expect eof EOF $ sudo reboot
2 Xfceへのログイン
再起動後、lightdm-gtk-greeterが起動します。他のデスクトップ環境も選択可能です。
Xfceへログインすると以下のデスクトップが表示されます。
3 Xfceのアンインストール
以下のコマンドでXfceをアンインストールします。
$ sudo apt remove -y task-xfce-desktop xfdesktop4 xfce4-* libxfce4-* $ sudo apt autoremove -y $ sudo apt install --reinstall -y gdm3 $ sudo reboot