当前位置: 首页>>技术问答>>正文


我怎样才能恢复配置文件?

, , ,

问题描述

我想将LightDM恢复到默认状态,因为由于某种原因,/etc/lightdm/unity-greeter.conf现在是一个空文件。

删除/etc/lightdm/unity-greeter.conf,然后运行sudo apt-get install --reinstall unity-greeter不会像您期望的那样创建新的配置文件。

我怎样才能恢复丢失的配置文件?

最佳解决思路

  1. 找出我如何找到提供文件的软件包?

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

    如您所见,包名称为unity-greeter

    如果您删除了一个目录,如/etc/pam.d,则可以使用目录路径列出添加到其中的每个软件包:

    $ 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
    
  2. 重命名(或删除)您想要恢复的配置文件:

    sudo mv -i /etc/lightdm/unity-greeter.conf /etc/lightdm/unity-greeter.conf.bak 
    
  3. 运行以下命令,用软件包的名称替换<package-name>

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

    并恢复目录:

    sudo apt-get -o Dpkg::Options::="--force-confmiss" install --reinstall $(dpkg -S /etc/some/directory | sed 's/,//g; s/:.*//')
    
  4. 如果一切按预期工作,您应该会收到以下消息:

    Configuration file `/etc/lightdm/unity-greeter.conf', does not exist on system. 
    Installing new config file as you requested.
    
  5. 一个需要重新安装所有PulseAudio配置文件的实例:

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

次佳解决思路

对于许多情况,默认配置文件是由包直接提供的。在这种情况下,您可以从软件包中提取特定文件,从而轻松恢复文件。

要检查程序包是否提供该文件,请在文件的完整路径上运行dpkg -S。例如:

$ dpkg -S /etc/ssh/sshd_config /etc/ssh/ssh_config /etc/sudoers
dpkg-query: no path found matching pattern /etc/ssh/sshd_config
openssh-client: /etc/ssh/ssh_config
sudo: /etc/sudoers

由套餐提供

正如我们所看到的,/etc/ssh/sshd_config不是由任何包直接提供的,而另外两个则分别由openssh-clientsudo提供。所以,如果你想恢复/etc/ssh/ssh_config,首先获取包:

apt-get download openssh-client

现在,您可以将文件直接提取到预期的位置,或者相对于当前目录而不是/的预期位置,如果您希望进行比较和对比,或者手动合并它们或其他东西。对于前者:

dpkg-deb --fsys-tarfile openssh-client_*.deb | sudo tar x ./etc/ssh/ssh_config -C /

-C /在更改为/后告诉tar提取,这意味着目标文件将被替换。如果删除它,tar将解压到当前目录,这意味着./etc/ssh/ssh_config将存在于当前目录中。

如果由于某种原因sudo不起作用,请改为使用pkexec。如果pkexec也不起作用,请重新启动到恢复模式,将/安装为rw。如果这不起作用…


由一个包创建

那么/etc/ssh/sshd_config呢?它似乎没有提供任何包,所以它是如何出现的?

在这种情况下(在许多其他情况下,另一个例子是/etc/modules),该文件在安装时使用package maintainer script创建。这通常是在配置文件需要由于用户对查询的响应而改变时完成的。例如,OpenSSH询问PermitRootLogin是否应更改为no,以及更新的版本等等。

要识别这种情况,请尝试通过维护人员脚本进行调用。通常,您只需查看postinst,但如果您对postinst没有任何好运,请尝试使用preinst

grep -l /etc/ssh/sshd_config /var/lib/dpkg/info/*.postinst

在这种情况下,我们很幸运:

$ grep /etc/ssh/sshd_config /var/lib/dpkg/info/*.postinst -l
/var/lib/dpkg/info/openssh-server.postinst

只有一个文件匹配,并且幸运的是,它包含创建default configuration file的代码:

    cat <<EOF > /etc/ssh/sshd_config
# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication.  Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes
EOF

通常情况下,您会看到(另一个示例,kmod中的/etc/modules):

cat > /path/to/the/file <<EOF
# default contents
EOF

因此,您可以查找此代码并直接从脚本获取内容。


没有这样的脚本?您仍然可以尝试浏览相关软件包的文件列表以查看是否有任何命中,但是在这一点上,我看不到任何简单可普遍使用的方法(短暂重新安装在临时环境上,例如chroot或VM或实时USB)。


从长远来看,请将您的配置保持在版本控制之下。任何值得其盐的VCS都可以节省一天的时间,etckeeper实用程序大大简化了将/etc保存在VCS中的任务。

第三种解决思路

根据Ubuntu论坛上的this线程,它就像在终端中运行以下代码一样简单:

sudo dpkg-reconfigure lightdm

第四种思路

找到拥有配置文件的软件包:

dpkg --search /etc/path/to/config

它会输出类似于:

unity-greeter: /etc/lightdm/unity-greeter.conf

因此软件包名称为”unity-greeter”,请下载软件包:

apt-get download unity-greeter

然后将其文件系统树数据提取到tar文件中:

dpkg-deb --fsys-tarfile unity-greeter_version-0ubuntu1_amd64.deb > pkg.tar

最后只在你想要的任何地方提取精确的配置:

tar -Oxf pkg.tar ./etc/lightdm/unity-greeter.conf |
sudo tee /etc/lightdm/unity-greeter.conf 
  • ./etc/lightdm/unity-greeter.conf是我们档案中的文件名。

  • /etc/lightdm/unity-greeter.conf是我发送它存储的地方。


或者像@Muru建议的那样,我们可以在一个班轮中完成:

dpkg-deb --fsys-tarfile unity-greeter_version-0ubuntu1_amd64.deb |
sudo tar -x -C / ./etc/lightdm/unity-greeter.conf

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/793.html,未经允许,请勿转载。