cross-posted from: https://lemmy.world/post/47127555
I installed Ubuntu 24.04 LTS about a year ago. Now that 26.04 is out, I was planning to upgrade, but instead I think I’m going to wipe and re-install from scratch. Does anyone have any tips or tweaks they recommend for new installs? Things like, do or don’t encrypt the drive during the install process, make an administrator account separate from your regular user account? I already plan to install the Flatpak repo and the Gnome Software Center.
Thanks!


I would say the following:
flatpak list --columns=applicationto output all the flatpaks you have installed. This way you dont have to try to remember what you had installedFor the flatpak output, i would recommend the following script to help download all automatically:
flatpak_packages=( com.calibre_ebook.calibre all flatpaks listed here ) flatpak_install(){ for i in "${flatpak_packages[@]}" do echo "Installing $i" flatpak install --user flathub "$i" -y done }This will go through each flatpak and install it for you, saying yes to all so you don’t have to do anything. Don’t forget to run:
sudo apt install flatpak -y flatpak remote-add --if-not-exists --user flathub https://flathub.org/repo/flathub.flatpakrepoThat’s my brain dump at the moment lol. Lmk if you have any questions.
Very helpful, thank you!