hi
Ich hab grad n Debian neu installiert, da fehlen jetzt allerdings ne ganze reihe an paketen...
meine frage dazu:
kann ich apt irgentwie ne liste übergeben in der alle paketnamen aufgelistet sind
die installiert/deinstalliert wedern sollen?
in der man-page von apt-get hab ich nichts dazu gefunden...
gruß rocket
Mehrere Pakete auf einmal installieren?
wenn du die packetnamen in einer datei stehen hast, funktioniert das folgendermassen:
Code: Alles auswählen
cat <datei> | xargs apt-get install
[..] Linux is not a code base. Or a distro. Or a kernel. It's an attitude. And it's not about Open Source. It's about a bunch of people who still think vi is a good config UI. - Matt's reply on ESR's cups/ui rant
@chimaera
jo sowas meinte ich.
xargs ist dann praktisch ne variable, in der das was von der pipe kommt als argument gespeichert wird?
hättest du vielleicht ne quelle wo mehr darüber steht?
ich hab das inzwischen so gelöst: (allerdings zum deinstallieren)
einfach in ne datei geschrieben und ausführbar gemacht...
gruß rocket
jo sowas meinte ich.
xargs ist dann praktisch ne variable, in der das was von der pipe kommt als argument gespeichert wird?
hättest du vielleicht ne quelle wo mehr darüber steht?
ich hab das inzwischen so gelöst: (allerdings zum deinstallieren)
einfach
Code: Alles auswählen
apt-get remove packet1 packet2......
gruß rocket
Code: Alles auswählen
man xarg
[..] Linux is not a code base. Or a distro. Or a kernel. It's an attitude. And it's not about Open Source. It's about a bunch of people who still think vi is a good config UI. - Matt's reply on ESR's cups/ui rant