Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #! /bin/bash
- APT_INSTALL="apt-get install -y"
- # the most lightweight browser I know
- $APT_INSTALL chromium-browser lightdm
- # two lightweight IDEs
- $APT_INSTALL geany codeblocks
- # the standard build chain in Linux
- $APT_INSTALL make gcc g++ vim
- # free, lightweight virtual machine monitor
- $APT_INSTALL qemu-system-x86
- # software that enables several features in VMware products
- $APT_INSTALL open-vm-tools open-vm-tools-desktop
- # SASM (for 234118)
- wget http://download.opensuse.org/repositories/home:/Dman95/xUbuntu_18.04/amd64/sasm_3.10.1_amd64.deb
- apt install -y ./sasm_3.10.1_amd64.deb
- # GDB gui (for 234118)
- apt install -y python3-pip
- pip3 install gdbgui
- sudo rm /usr/share/lightdm/lightdm.conf.d/50-unity-greeter.con
- sudo printf "[SeatDefaults]\ngreeter-session=unity-greeter\nuser-session=xfce\n" > /usr/share/lightdm/lightdm.conf.d/50-xfce-greeter.con
- sudo reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement