สำหรับหลาย ๆ กรณีไฟล์การกำหนดค่าเริ่มต้นให้บริการโดยแพคเกจโดยตรง ในกรณีเช่นนี้คุณสามารถแตกไฟล์เฉพาะจากแพ็คเกจได้ดังนั้นจึงสามารถกู้คืนไฟล์ได้อย่างง่ายดาย
ในการตรวจสอบว่าแพ็คเกจมีไฟล์หรือไม่ให้รัน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-client
และsudo
ตามลำดับ ดังนั้นหากคุณต้องการกู้คืน/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
) ไฟล์ถูกสร้างขึ้นโดยใช้สคริปต์ผู้ดูแลแพคเกจขณะติดตั้ง สิ่งนี้มักจะทำเมื่อจำเป็นต้องเปลี่ยนไฟล์การกำหนดค่าเนื่องจากผู้ใช้ตอบกลับการสืบค้น ยกตัวอย่างเช่น OpenSSH ถามว่าPermitRootLogin
ควรจะเปลี่ยนเป็นno
รุ่นใหม่เหนือสิ่งอื่นใด
หากต้องการระบุกรณีดังกล่าวให้ลอง greping ผ่านสคริปต์ผู้ดูแล โดยทั่วไปแล้วคุณจะต้องดู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
จับคู่ไฟล์เดียวเท่านั้นและโชคดีที่มันมีรหัสเพื่อสร้างไฟล์กำหนดค่าเริ่มต้น :
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
โดยทั่วไปนี่คือสิ่งที่คุณจะเห็น (อีกตัวอย่าง/etc/modules
จากkmod
):
cat > /path/to/the/file <<EOF
# default contents
EOF
ดังนั้นคุณสามารถค้นหารหัสนี้และรับเนื้อหาจากสคริปต์โดยตรง
ไม่มีสคริปต์ดังกล่าวหรือ คุณยังสามารถลอง poking ผ่าน filelists ของแพ็คเกจที่เกี่ยวข้องเพื่อดูว่ามีอะไรฮิต แต่ ณ จุดนี้ฉันไม่เห็นวิธี generalizable ได้อย่างง่ายดาย (ขาดการติดตั้งใหม่ในสภาพแวดล้อมชั่วคราวเช่น chroot หรือ VM หรือ USB สด)
ในระยะยาวให้กำหนดค่าของคุณภายใต้การควบคุมเวอร์ชัน VCS มูลค่าเกลือใด ๆ สามารถบันทึกวันที่นี่และยูทิลิตี้มากช่วยลดงานของการรักษาใน VCSetckeeper
/etc