0 Mitglieder und 1 Gast betrachten dieses Thema.
sudo dpkg --get-selections > mypackages.txtsudo dpkg --set-selections < mypackages.txtsudo apt-get dselect-upgrade
Also zum Thema \"Wie bekomm ich ich meine extra installierten Pakete ohne viel Aufwand\" kann ich was beitragen.Auszug aus dem Forum von Linuxmint.com:Combining APT and dpkg to \"backup\"Not really a back up, but more exporting the list of installed packages to a file, then import it again. You could also use APTOnCD for this, but if you got to configure a ton of machines with different hardware setup, this can be just as useful (I.e. open the file and remove packages you don't need after a stock install).Code: [Auswählen]sudo dpkg --get-selections > mypackages.txtsudo dpkg --set-selections < mypackages.txtsudo apt-get dselect-upgradeBe careful with this, it can be extremely useful, but can potentially break a system. For instance, generating the list in Daryna and importing in Elyssa is not recommended unless you know what you are doing. Also note that this lists ALL installed packages, not just the ones you have installed after a fresh install, it could be a good idea to go through the list and remove some of the packages.