9 lines
327 B
Bash
Executable File
9 lines
327 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# copy a get-selections from the livecd (install your prefered programs beforehand)
|
|
## Backup:
|
|
dpkg --get-selections > /var/tmp/packages.list
|
|
debconf-get-selections > /var/tmp/debconf-settings.list
|
|
/usr/bin/apt-mark showauto > /var/tmp/pkgs_auto.lst
|
|
/usr/bin/apt-mark showmanual > /var/tmp/pkgs_manual.lst
|
|
|