Skip to content

Instantly share code, notes, and snippets.

@tomcbe
Last active June 11, 2022 14:59
Show Gist options
  • Save tomcbe/60c1d39a03a9898de006fec04f4852c5 to your computer and use it in GitHub Desktop.
Save tomcbe/60c1d39a03a9898de006fec04f4852c5 to your computer and use it in GitHub Desktop.
Restoring config files with apt

Find out what package installed the config file:

$ dpkg -S unity-greeter.conf
unity-greeter: /etc/lightdm/unity-greeter.conf

As you can see, the name of the package is unity-greeter.

If you deleted a directory, like /etc/pam.d, you can list every package that added to it by using the directory path:

$ dpkg -S /etc/pam.d
 login, sudo, libpam-runtime, cups-daemon, openssh-server, cron, policykit-1, at, samba-common, ppp, accountsservice, dovecot-core, passwd: /etc/pam.d

Run the following command, replacing with the name of the package:

sudo apt install --reinstall -o Dpkg::Options::="--force-confask,confnew,confmiss" <package-name>

And for restoring the directory:

sudo apt install --reinstall -o Dpkg::Options::="--force-confask,confnew,confmiss" $(dpkg -S /etc/some/directory | sed 's/,//g; s/:.*//')

If everything worked as expected, you should get a message:

Configuration file `/etc/lightdm/unity-greeter.conf', does not exist on system. 
Installing new config file as you requested.

A Practical example when needing to reinstall all of the PulseAudio configuration files:

apt-cache pkgnames pulse |xargs -n 1 apt-get -o Dpkg::Options::="--force-confmiss" install --reinstall

Big thanks go to Jeremy Bicha who provided this answer on askubuntu: https://askubuntu.com/a/67028

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment