Per molti casi, il file di configurazione predefinito viene fornito direttamente da un pacchetto. In tali casi, è possibile estrarre il file specifico dal pacchetto, recuperando così facilmente il file.
Per verificare se un pacchetto fornisce il file, eseguire dpkg -S
il percorso completo del file. Per esempio:
$ 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
Fornito da un pacchetto
Come possiamo vedere, /etc/ssh/sshd_config
non è fornito direttamente da nessun pacchetto, ma gli altri due sono forniti rispettivamente da openssh-client
e sudo
. Quindi, se desideri ripristinare /etc/ssh/ssh_config
, prima procurati il pacchetto:
apt-get download openssh-client
Ora, è possibile estrarre il file direttamente nella posizione prevista o nella posizione prevista rispetto alla directory corrente anziché /
, se si desidera confrontare e contrastare, oppure unirli manualmente o qualcosa del genere. Per il primo:
dpkg-deb --fsys-tarfile openssh-client_*.deb | sudo tar x ./etc/ssh/ssh_config -C /
Il -C /
dice tar
di estrarre dopo essere cambiato in /
, il che significa che il file di destinazione verrà sostituito. Se lo rimuovi, tar
verrà estratto nella directory corrente, il significato ./etc/ssh/ssh_config
esisterà nella directory corrente.
Se per qualche motivo sudo
non funziona, utilizzare pkexec
invece. Se pkexec
non funziona neanche, riavviare in modalità di ripristino, montare /
come rw
. Se che non funziona ...
Creato da un pacchetto
Che dire /etc/ssh/sshd_config
? Non sembra essere fornito da nessun pacchetto, quindi come è apparso?
In questo caso (e in molti altri casi simili, un altro esempio /etc/modules
), il file è stato creato utilizzando uno script del manutentore del pacchetto durante l'installazione. Ciò avviene spesso quando il file di configurazione deve essere modificato a causa delle risposte degli utenti alle query. OpenSSH, ad esempio, chiede se , tra le altre cose , PermitRootLogin
debba essere modificato no
, nelle versioni più recenti.
Per identificare tali casi, prova a utilizzare gli script del manutentore. In genere dovresti solo guardare postinst
, ma se non hai fortuna postinst
, prova preinst
anche:
grep -l /etc/ssh/sshd_config /var/lib/dpkg/info/*.postinst
In questo caso, siamo fortunati:
$ grep /etc/ssh/sshd_config /var/lib/dpkg/info/*.postinst -l
/var/lib/dpkg/info/openssh-server.postinst
Corrisponde a un solo file e, per fortuna, contiene un codice per creare un file di configurazione predefinito :
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
In genere, questo è ciò che vedresti (un altro esempio, /etc/modules
dakmod
):
cat > /path/to/the/file <<EOF
# default contents
EOF
Quindi, puoi cercare questo codice e ottenere direttamente il contenuto dallo script.
Nessuna sceneggiatura del genere? Puoi ancora provare a sfogliare gli elenchi di file dei pacchetti correlati per vedere se qualcosa va a buon fine, ma a questo punto non vedo alcun metodo facilmente generalizzabile (a parte la reinstallazione in ambienti transitori, come un chroot o una VM o una USB live).
A lungo termine, mantieni la tua configurazione sotto il controllo della versione. Qualsiasi VCS degno di nota può salvare la giornata qui e l' etckeeper
utilità semplifica notevolmente il compito di conservare /etc
un VCS.