Method to save your favorite Linux apps for reinstall
Method to save your favorite Linux apps for reinstall
20+ years ago, Lindows had a great app store that let you create an "aisle" of your favorite apps so if/when you'd reinstall your OS, instead of searching and installing all your apps one-by-one, you'd just go to your aisle, click "install all" and boom.
Is there anything that exists like that today?
You can install all apps through the command line. Just write a shellscript with all the commands and run it when you're doing your reinstall.
And just update it with every package install and uninstall, on every device, forever.
dpkg --get-selections > package_list.txt
Or just generate a list before you reinstall. Other distros have similar commands.
Is there a nice way to check if something is already installed or do you just install it again and that just skips already installed stuff?
It skips already installed stuff.