22
submitted 2 days ago by Ep1cFac3pa1m@lemmy.world to c/linux@lemmy.ml

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!

top 4 comments
sorted by: hot top controversial new old
[-] Harisfromcyber@lemmy.ml 1 points 11 minutes ago

I would say the following:

  • Encrypt with a strong password 3+ word (your password manager should help you with this) for FDE
  • for admin account (root), if there is a way to disable it in the setup configuration menu, disable it. Its recommended to use sudo when you need elevated perms rather than su root.
  • backup all your files to an external drive, you can use rsync,rclone sync, or other items to do this. FreefileSync as well.
  • before you switch over, run a flatpak list --columns=application to output all the flatpaks you have installed. This way you dont have to try to remember what you had installed
  • Gnome software center is a bit slow and laggy, at least my experience on Pop! and Debian. I would recommend just using cli for apt installs and/or dpkg installs.

For 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.flatpakrepo

That's my brain dump at the moment lol. Lmk if you have any questions.

[-] stardustsystem@lemmy.world 9 points 2 days ago

Keep a list of any packages you install for your hardware, just in case you need to reinstall down the road

[-] monovergent@lemmy.ml 8 points 2 days ago

As long as you have a strong backup strategy, I would recommend full disk encryption during installation, especially if for a laptop. Peace of mind with negligible cost on modern hardware. Even accessing the encrypted disk from a live USB takes only two extra commands compared to an unencrypted disk. As long as the LUKS header doesn't corrupt, hence the need for good backups.

[-] Ep1cFac3pa1m@lemmy.world 3 points 2 days ago

It’s on a desktop, not a laptop, which is why I didn’t encrypt it this time. But, the more I thought about it, the more it worried me that someone could just pop out my drive and get instant access. I live in the US and it’s starting to feel like they’re going to start breaking into houses looking for banned material any day now.

this post was submitted on 21 May 2026
22 points (95.8% liked)

Linux

65400 readers
420 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 7 years ago
MODERATORS