ฉันจะกู้คืนไฟล์การกำหนดค่าได้อย่างไร


98

ฉันต้องการกู้คืน LightDM กลับสู่สถานะเริ่มต้นเพราะ
/etc/lightdm/unity-greeter.confตอนนี้บางไฟล์ว่างเปล่า

การลบ/etc/lightdm/unity-greeter.confและเรียกใช้sudo apt-get install --reinstall unity-greeterไม่ได้สร้างไฟล์กำหนดค่าใหม่ตามที่คุณคาดหวัง

ฉันจะคืนค่าไฟล์กำหนดค่าที่ขาดไปได้อย่างไร

คำตอบ:


144
  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. รันคำสั่งต่อไปนี้แทนที่<package-name>ด้วยชื่อของแพ็กเกจ:

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

    และสำหรับการกู้คืนไดเร็กทอรี:

    sudo apt install --reinstall -o Dpkg::Options::="--force-confask,confnew,confmiss" $(dpkg -S /etc/some/directory | sed 's/,//g; s/:.*//')
    
  3. หากทุกอย่างทำงานตามที่คาดไว้คุณควรได้รับข้อความ:

    Configuration file `/etc/lightdm/unity-greeter.conf', does not exist on system. 
    Installing new config file as you requested.
    
  4. ตัวอย่างที่ใช้งานได้จริงเมื่อต้องการติดตั้งไฟล์การกำหนดค่า PulseAudio ทั้งหมดใหม่:

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

3
ขอขอบคุณ; ฉันสงสัยมานานหลายปีแล้ว มันควรจะง่ายกว่าในการระบุแม้ว่า - มีข้อผิดพลาดเปิดที่ไหนสักแห่งสำหรับที่?
Glyph

4
ฉันแปลงคำตอบนี้เป็นสคริปต์ตัวน้อย: gist.github.com/jameshfisher/10547691
jameshfisher

5
ประโยชน์พิเศษของการ--force-confaskไม่ลบคือมันเสนอให้แสดงความแตกต่างระหว่างการเปลี่ยนแปลงของคุณและต้นฉบับ
anps

4
ไม่ได้ทดสอบกับอูบุนตู แต่ภายใต้ Debian ที่จะเรียกคืน config ไฟล์ที่มีการจัดการโดยตัวเลือกที่จะไม่ทำงานคุณต้องใช้ ucf--force-confmisssudo UCF_FORCE_CONFFMISS=1 apt-get --reinstall install [pkgname]
Skippy le Grand Gourou

แปลกมากที่เมื่อฉันใช้-oฉันได้รับข้อผิดพลาด "dpkg: error: unknown option -o" แต่เมื่อฉันใช้--optionแทนมันก็ใช้งานได้ ฉันใช้ Ubuntu 16.04.1
Ryan H.

27

สำหรับหลาย ๆ กรณีไฟล์การกำหนดค่าเริ่มต้นให้บริการโดยแพคเกจโดยตรง ในกรณีเช่นนี้คุณสามารถแตกไฟล์เฉพาะจากแพ็คเกจได้ดังนั้นจึงสามารถกู้คืนไฟล์ได้อย่างง่ายดาย

ในการตรวจสอบว่าแพ็คเกจมีไฟล์หรือไม่ให้รัน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


3

ตามกระทู้นี้ในฟอรั่มอูบุนตูมันง่ายเหมือนการรันสิ่งต่อไปนี้ในเทอร์มินัล:

sudo dpkg-reconfigure lightdm

1
ฉันรันคำสั่งนั้นแล้วนี่คือผลลัพธ์: dpkg-maintscript-helper: warning: environment variable DPKG_MAINTSCRIPT_NAME missing dpkg-maintscript-helper: warning: environment variable DPKG_MAINTSCRIPT_PACKAGE missing. LightDM ไม่ได้ถูกกู้คืนสู่การกำหนดค่าดั้งเดิมเช่นกัน
อิสยาห์

@DoR: อืม ... มันแปลกนะ กำลังติดตั้งแพ็คเกจใหม่เป็นตัวเลือก
นาธานออสมัน

ฉันติดตั้งใหม่ ( sudo apt-get --reinstall install lightdm) และยังคง/etc/lightdm/unity-greeter.confว่างเปล่า
อิสยาห์

1
นี่เป็นคำแนะนำทั่วไป แต่มันผิดอย่างแน่นอน มันไม่ได้ผลสำหรับกรณีส่วนใหญ่ที่ฉันได้ลองทำ
ร่ายมนตร์

2

ค้นหาแพ็คเกจที่เป็นเจ้าของไฟล์กำหนดค่า:

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

1
หากคุณเพียงแค่กู้คืนมันกลับไปอยู่ในที่เดิมให้ทำdpkg-deb --fsys-tarfile unity-greeter_version-0ubuntu1_amd64.deb | sudo tar x -C / ./etc/lightdm/unity-greeter.confเช่นtarนั้น cd จะไป/ก่อนที่จะแตกไฟล์
muru

@muru เพิ่มเป็นทางเลือก;)
Ravexina

แสดงความคิดเห็นเสมอเมื่อลงคะแนน ...
Ravexina

1

ฉันมีปัญหาเดียวกันบน Ubuntu 17.04 postinstall /usr/share/openssh/ใช้แม่แบบจาก มันจะตรวจสอบถ้า rootlogin /etc/sshถูกเปิดใช้งานหรือไม่กำหนดตัวเลือกนี้และคัดลอกไป หลังจากนั้นก็เรียก ucf และ ucfr (ฉันไม่รู้ว่ามันคืออะไร)

เพียงคัดลอก/usr/share/openssh/sshd_configไปที่/etc/ssh/sshd_config:

sudo cp /usr/share/openssh/sshd_config /etc/ssh/sshd_config

ตอนนี้ปรับของคุณsshd_configตามที่คุณต้องการ


0

สิ่งนี้ใช้ไม่ได้กับไฟล์การกำหนดค่าทั้งหมด สำหรับการ/etc/nsswitch.confดูวิธีการคืน / สร้าง ฯลฯ / ไฟล์ ดูเหมือนว่าจะไม่สามารถสร้างไฟล์dpkg-reconfigureนั้นใหม่ได้


ฉันรู้ว่าคำถามเดิมคือประมาณ lightdm แต่เห็นได้ชัดว่าผู้ดูแลระบบได้ตัดสินใจว่าคำถามนี้เป็นข้อมูลเกี่ยวกับแฟ้มการกำหนดค่า
แบ Geron

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.