I recently installed Samba and I messed up the /etc/samba/smb.conf file. How do I get the original configuration back?
- 1,581
- 1,301
7 Answers
Short answer: /usr/share/samba/smb.conf is the original version of the smb.conf file.
When faced with this situation for any package, what I do is one of the following:
Check for backup files of the original version from your editor. I use Emacs, which normally leaves
foo~files, and I've set the numerical version-control option so the original version is alwaysfoo.~1~. But maybe you did it some other way, or used some other editor. Consider checking your editor's configuration to turn this feature on if you haven't already; it's a good habit to get into.Reconfigure the package with
dpkg-reconfigure PACKAGENAME. Sometimes this does the trick. In my experience it rarely works; it depends on how the package is creating its configuration files.Purge and reinstall the package (with
apt-get purge packagenamefollowed byapt-get install packagename). This should always work.
In extreme cases you have to, after purging, manually hunt down and delete the config files before reinstalling the package, but this is rare. However, this will eliminate any other data and/or config files for the package, and that is not always acceptable.Download the source code for the package (
apt-get source foo) and see if the original config file exist as a file there. However, it may be that the config file does not exist beforehand, but is created at installation by the package's post-install script.Check the postinst script for the package (
/var/lib/dpkg/info/foo.postinst) to find out where it creates the config file and how it does it. Then try to repeat the process manually. This is a bit of work, and not always easy.
- 43,504
- 7,218
Edited:
Spotted this on a serverfault question. If the dpkg-reconfigure foo doesn't work, use this:
Remove or rename the broken configuration file.
sudo mv /etc/samba/smb.conf /etc/samba/smb.conf.brokenRequest replacements from
dpkg.sudo dpkg -i --force-confmiss /path/to/samba-common.deb
This tells dpkg to replace missing configuration files with those from the .deb. You might find the original package .deb in /var/cache/apt/archives, or you can use a fresh copy of the same version from your distribution's repositories.
dpkg -i --force-confnew foo.deb
This tells dpkg to overwrite existing configuration files with those from the .deb. You might find the original package .deb in /var/cache/apt/archives, or you can use a fresh copy of the same version from your distribution's repositories.
- 43,504
You can restore the original smb.conf configuration file like this:
# cp /usr/share/samba/smb.conf /etc/samba/smb.conf
# dpkg-reconfigure samba-common
This is basically what the original package installation process does (on Debian Squeeze).
This will overwrite you current smb.conf, so make a backup first if you don't want to lose it.
- 1,581
dpkg-reconfigure <package> will not modify changed conf files by default.
Probably the easiest way to do this, if you still have the package in the apt cache is to run
dpgk -i --force-confask /var/cache/apt/archives/<package file name>
where the package file name is usually something like <package name>_<version>.deb (just use tab completion). This will run through the same process as an apt-upgrade, and ask you what you want to do when ever it finds a changed conf file. Just enter N at every prompt. dpkg will install the package version of the conf file with .dpkg-dist at the end of the file name. You can then use vimdiff or some other merge tool to compare differences, and modify the read conf file.
- 1,503
The best way (gotten from #ubuntu) is to do this:
dpkg-reconfigure <package>
In this case that means
dpkg-reconfigure samba-common
- 1,301
You can extract the deb and grab the original file:
ar p packagename.deb data.tar.gz | tar zx
$ sudo cp /usr/share/samba/smb.conf /etc/samba/smb.conf
and
$ sudo dpkg --configure -a
will do the job.
- 162,382