Skip to content

Instantly share code, notes, and snippets.

@nawawi
Created August 3, 2015 06:19
Show Gist options
  • Save nawawi/62776c475246664d2118 to your computer and use it in GitHub Desktop.
Save nawawi/62776c475246664d2118 to your computer and use it in GitHub Desktop.
clean yum cache and fix rpm database
#!/bin/bash
yum -y clean all
rm -f /var/lib/rpm/__db*
rpm --rebuilddb
yum -y update
exit 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment