kevinjohnson7890

22 Things to do After Installing Ubuntu 22.04

Apr 22nd, 2022
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. ----------------------------------------------------------------------
  2. 22 Things to do After Installing Ubuntu 22.04 'Jelly Jellyfish'
  3. -----------------------------------------------------------------------
  4. 1-Enable the nonfree repositories
  5. (software and updates)
  6.  
  7. 2-Install Proprietary Drivers (If needed)
  8.  
  9. 3-Install Media Codecs
  10. (ubuntu-restricted-extras)
  11. (ubuntu-restricted-addons)
  12.  
  13. 4-Install Microsoft Fonts
  14. (ttf-mscorefonts-installer)
  15.  
  16. 5-Preload
  17. (it will load in ram your most used apps instead of from the hard disk)
  18.  
  19. 6-Decrease Swap usage to optimize Ram utilization
  20. cat /proc/sys/vm/swappiness
  21. (the value will be 60)
  22. sudo gedit /etc/sysctl.conf
  23. add at the end
  24. vm.swappiness=10
  25. --exit and reboot
  26.  
  27. 7-Decrease SSD writes to extend SSD lifespan
  28. sudo gedit /etc/fstab
  29. add the option noatime in root before errors,
  30.  
  31. 8-Setup the firewall
  32. sudo apt install ufw gufw
  33. Enable the firewall in office profile
  34.  
  35. 9-Use custom DNS to improve Internet Speed and Privacy
  36. https://www.quad9.net/service/service-addresses-and-features/
  37.  
  38. 10-Check Startup Applications
  39. (Remove the not needed ones)
  40.  
  41. 11-Enable Dark mode and Accent colors
  42.  
  43. 12-Enable fractional scaling in Display Settings (for laptops)
  44.  
  45. 13-Enable Night Light in Display Settings
  46.  
  47. 14-Check Privacy Settings (Turn off what you prefer)
  48.  
  49. 15-Change user image
  50.  
  51. 16-Change the default application to open file types
  52.  
  53. 17-Tweak firefox settings for privacy
  54.  
  55. 18-Enable flatpak repository
  56. https://www.flatpak.org/setup/Ubuntu
  57.  
  58. 19-Install your favourite applications
  59.  
  60. 20-Install Winehq
  61. https://wiki.winehq.org/Ubuntu
  62. https://wiki.winehq.org/Winetricks
  63.  
  64. 21-Install steam and mangohud,
  65. enable Proton in Steam --> Settings -->Steam Play
  66.  
  67. 22-Change Shell to Fish (If you want to)
  68. sudo apt install fish
  69. sudo chsh -s /usr/bin/fish username
  70. ----------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment