Fedora 12 Backup installed software
To make the txt with your files:
Quote:
|
rpm -qa | sort > /home/[user]/Desktop/installed-software.log
|
To reinstall everything from the txt:
Quote:
|
yum -y install $(cat /home/[user]/Desktop/installed-software.log)
|
To download all the packages without installing anything(to make a local repository perhaps)
Quote:
|
yumdownloader $(cat /home/[user]/Desktop/installed-software.log) --destdir="/home/[user]/Desktop/local_repository"
|
Addition:
To restore your configurations too you need to backup the /etc folder and maybe also the user folder. I don't really know because I don't care that much about the configuration files.