Advertisement
rabbitfighter007

20 Things You MUST DO After Installing Ubuntu

Dec 22nd, 2024
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | Source Code | 0 0
  1. Commands and Links:
  2.  
  3. # Update & Upgrade:
  4. sudo apt update; sudo apt upgrade
  5.  
  6. # Install Favorite Apps:
  7. sudo apt install vlc gimp gparted synaptic
  8.  
  9. # Install Ubuntu Restricted Extras (Media Codecs):
  10. sudo apt install ubuntu-restricted-extras
  11.  
  12. # Install Timeshift Backup Tool:
  13. sudo apt install timeshift
  14.  
  15. # Install Preload:
  16. sudo apt install preload
  17.  
  18. # Improve Laptop Battery:
  19. sudo apt install tlp tlp-rdw
  20. Just run the above command and you don’t need to do anything else. It’ll make your laptop battery last longer by implementing some power-saving protocols.
  21.  
  22. # Firefox Tweaks:
  23. about:config
  24. layers.acceleration.force-enabled
  25. gfx.webrender.all
  26.  
  27. # Change DNS:
  28. 8.8.8.8,8.8.4.4
  29. 2001:4860:4860::8888,2001:4860:4860::8844
  30.  
  31. # Install Tweak Tool:
  32. sudo apt install gnome-tweak-tool
  33.  
  34. # GNOME Extensions:
  35. sudo apt-get install gnome-browser-connector
  36. https://extensions.gnome.org/
  37.  
  38. # Numix Icons:
  39. sudo add-apt-repository ppa:numix/ppa
  40. sudo apt-get update; sudo apt-get install numix-icon-theme-circle
  41.  
  42. # Papirus Icons:
  43. sudo add-apt-repository ppa:papirus/papirus
  44. sudo apt update && sudo apt install papirus-icon-theme
  45.  
  46. # Synaptic Package Manager:
  47. sudo apt install synaptic:
  48.  
  49. # Bleachbit:
  50. sudo apt install bleachbit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement