Created
June 30, 2017 19:56
-
-
Save sushyad/48200a4b30547c0e3b40d5a966023afc to your computer and use it in GitHub Desktop.
Minimal linux desktop installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#based on https://askubuntu.com/questions/786062/install-desktop-on-server | |
sudo apt install xorg | |
#Install lightdm-gtk-greeter first or it will install unity-greeter as dependency: | |
sudo apt install lightdm-gtk-greeter | |
sudo apt install lightdm | |
sudo apt install lxde-core | |
sudo apt install lxpolkit #(pkexec can't run without it) | |
sudo apt install lxsession-logout #(logout button doesn't work without it) | |
#A full lightweight desktop environment | |
#sudo apt install lubuntu-core |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment