Thanks! good to know. I’ll keep that in mind.
Harisfromcyber
Tinkerer. Website: https://www.harisqazi.com/.
- 1 Post
- 4 Comments
Joined 2 days ago
Cake day: May 21st, 2026
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
I wasn’t aware of the full impact of
-z. Thanks for clarifying that for me (thanks to @hades@feddit.uk as well!). I’ll definitely keep an eye on the speed with-zvs without it when I do my next dry run.
Thanks for sharing! glad to see the
--deleteitem being the key.


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.