henrydenhengst

ubuntu-16-3rd-party-install.sh

Sep 21st, 2017
399
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.29 KB | None | 0 0
  1.  
  2. #!/bin/bash
  3. # Script to install third party apps on Ubuntu 16.04.
  4. # The following commands will test for required packages install them.
  5. dpkg -l | grep -qw gdebi || sudo apt-get install -yyq gdebi
  6. dpkg -l | grep -qw synaptic || sudo apt-get install -yyq synaptic
  7. dpkg -l | grep -qw htop || sudo apt-get install -yyq htop
  8. # Install Ocenaudio from .deb file.
  9. wget https://www.ocenaudio.com/downloads/index.php/ocenaudio_debian64.deb
  10. sudo gdebi -n ocenaudio_debian64.deb
  11. rm ocenaudio_debian64.deb
  12. # Remove Firefox and replace with Google Chrome.
  13. sudo apt-get purge -yyqq firefox firefox-locale-en
  14. wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
  15. sudo gdebi -n google-chrome-stable_current_amd64.deb
  16. rm google-chrome-stable_current_amd64.deb
  17. # Install SSR and Spotify from their repositories.
  18. sudo apt-add-repository -y ppa:maarten-baert/simplescreenrecorder
  19. sudo apt-add-repository -y “deb http://repository.spotify.com stable non-free”
  20. sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys D2C19886
  21. sudo apt-get update -qq
  22. sudo apt-get install -yyq simplescreenrecorder spotify-client
  23. # Remove Fluendo mp3 codec if installed.
  24. sudo apt-get purge -yyqq gstreamer1.0-fluendo-mp3
  25. echo “——————–
  26. – Done!
  27. ——————–
Advertisement
Add Comment
Please, Sign In to add comment