Ubuntu with snaps disabled is my daily driver…
- 0 Posts
- 2 Comments
Joined 2 months ago
Cake day: June 13th, 2025
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
Ubuntu with snaps disabled is my daily driver…
Assuming you are using an apt/dpkg distro:
Save the list of packages on your reference system:
dpkg --get-selections > packages.lst
Then install packages based on that list on your target system, after updating the list of available packages:
dpkg --merge-avail <(apt-cache dumpavail) dpkg --clear-selections dpkg --set-selections < packages.lst apt-get dselect-upgrade