Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. ### This script will install lxde with minimal capabilities for lower-end hardware
  4.  
  5. if [ $(id -u) -ne 0 ]; then
  6. echo Execute as root
  7. exit 1
  8. fi
  9.  
  10. apt-get update
  11. apt-get install xorg-server -y
  12. apt-get install lxde-core -y
  13. apt-get install firefox-esr
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement