Advertisement
gur111

Technion - Operating Systems setup_tools.sh

Apr 6th, 2021
889
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.88 KB | None | 0 0
  1. #! /bin/bash
  2.  
  3. APT_INSTALL="apt-get install -y"
  4.  
  5. # the most lightweight browser I know
  6. $APT_INSTALL chromium-browser lightdm
  7. # two lightweight IDEs
  8. $APT_INSTALL geany codeblocks
  9. # the standard build chain in Linux
  10. $APT_INSTALL make gcc g++ vim
  11. # free, lightweight virtual machine monitor
  12. $APT_INSTALL qemu-system-x86
  13. # software that enables several features in VMware products
  14. $APT_INSTALL open-vm-tools open-vm-tools-desktop
  15.  
  16. # SASM (for 234118)
  17. wget http://download.opensuse.org/repositories/home:/Dman95/xUbuntu_18.04/amd64/sasm_3.10.1_amd64.deb
  18. apt install -y ./sasm_3.10.1_amd64.deb
  19.  
  20. # GDB gui (for 234118)
  21. apt install -y python3-pip
  22. pip3 install gdbgui
  23.  
  24. sudo rm /usr/share/lightdm/lightdm.conf.d/50-unity-greeter.con
  25. sudo printf "[SeatDefaults]\ngreeter-session=unity-greeter\nuser-session=xfce\n" > /usr/share/lightdm/lightdm.conf.d/50-xfce-greeter.con
  26. sudo reboot
  27.  
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement