Skip to content

Instantly share code, notes, and snippets.

@n1lux
Last active August 15, 2022 14:49
Show Gist options
  • Save n1lux/1994d493badc7ad7ff5ea236c856ad0a to your computer and use it in GitHub Desktop.
Save n1lux/1994d493badc7ad7ff5ea236c856ad0a to your computer and use it in GitHub Desktop.
Backup/Retore rpm packages
#Backup
rpm -qa --qf "%{NAME}\n" | sort > /backup/packages-installed.log
#restore
LIST=$(cat /backup/packages-installed.log)
for s in $LIST; do yum -y install $s; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment