I am working with a VirtualBox headless virtual machine (Mininet VM running Ubuntu 20.04) and I want to install a desktop environment, is that possible? if so, how?
Asked
Active
Viewed 237 times
1
-
`sudo apt install ubuntu-desktop` will install the default Ubuntu Desktop (eg. GNOME). You can also install other DEs; eg. `sudo apt install lubuntu-desktop` will install the Lubuntu (LXQt) desktop... (etc.. applies for all [flavors](https://ubuntu.com/download/flavours) too; I just used Lubuntu as example) – guiverc Dec 11 '21 at 10:08
-
@guiverc yes, this answers my question, thank you. – Hasan Aga Dec 11 '21 at 12:10
1 Answers
1
the answer is straight forward as @guiverc commented:
sudo apt install ubuntu-desktopwill install the default Ubuntu Desktop (eg. GNOME). You can also install other DEs; eg.sudo apt install lubuntu-desktopwill install the Lubuntu (LXQt) desktop... (etc.. applies for all flavors too; I just used Lubuntu as example) – guiverc
note: the terminal does not work by default even though there is an app called "terminal" installed, so I used Xterm instead (you can install GNOME terminal using Xterm).
Hasan Aga
- 215
- 2
- 14