aquaballoon

Ubuntu Configuration

Oct 24th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.00 KB | None | 0 0
  1. ### Install missing drivers
  2. sudo apt-get install linux-firmware-nonfree
  3.  
  4. ### Install some useful tools
  5. sudo apt-get install synaptic dconf-tools gdebi
  6.  
  7. ### Decrease the swap use (very important!)
  8. cat /proc/sys/vm/swappiness  
  9. ### Swap default 60 change to 10
  10. sudo gedit /etc/sysctl.conf
  11. # Decrease swap usage to a more reasonable level
  12. vm.swappiness=10
  13.  
  14. ### Install Multimedia support
  15. sudo apt-get install ubuntu-restricted-extras ubuntu-restricted-addons
  16.  
  17. ### Install Oracle JDK ###
  18. sudo add-apt-repository ppa:webupd8team/java
  19. sudo apt-get update
  20. sudo apt-get install oracle-java8-installer oracle-java8-set-default
  21.  
  22. ### Install some apps
  23. sudo apt-get install xfburn vlc chromium-browser pidgin gimp
  24.  
  25. ## everpad (evernote)
  26. sudo add-apt-repository ppa:nvbn-rm/ppa
  27. sudo apt-get update
  28. sudo apt-get install everpad
  29.  
  30. ## touchpad indicator
  31. sudo add-apt-repository ppa:atareao/atareao
  32. sudo apt-get update
  33. sudo apt-get install touchpad-indicator
  34.  
  35. ## numix theme
  36. sudo apt-add-repository ppa:numix/ppa
  37. sudo apt-get update
  38. sudo apt-get install numix-icon-theme numix-icon-theme-circle numix-gtk-theme
  39.  
  40. ## moka theme
  41. sudo add-apt-repository ppa:moka/stable
  42. sudo apt-get update
  43. sudo apt-get install moka-icon-theme moka-gtk-theme
  44.  
  45. ## ubuntu tweak tool
  46. sudo add-apt-repository ppa:tualatrix/ppa
  47. sudo apt-get update
  48. sudo apt-get install ubuntu-tweak
  49.  
  50. ## google gdrive
  51. sudo add-apt-repository ppa:thefanclub/grive-tools
  52. sudo apt-get update
  53. sudo apt-get install grive-tools
  54.  
  55. ## Install some extras
  56. sudo apt-get install android-tools-adb ibus-hangul sqlite3 sqlitebrowser nautilus-dropbox xournal chromium-browser xpad gparted dia
  57.  
  58. ## Install lamp
  59. sudo apt-get install lamp-server^
  60.  
  61. ## SSD config
  62. sudo gedit /etc/fstab  
  63. ## add "noatime" to the line for root partition
  64. UUID=f0ae2c59-83d2-42e7-81c4-2e870b6b255d   /   ext4 noatime,errors=remount-ro   0   1
  65.  
  66. sudo gedit  /etc/rc.local
  67. #!/bin/sh -e
  68. # rc.local
  69. fstrim -v /
  70. fstrim -v /home
  71. exit 0
  72.  
  73. sudo mv -v /etc/cron.weekly/fstrim /fstrim
Advertisement
Add Comment
Please, Sign In to add comment