“0 개의 패키지를 업데이트 할 수있는 곳”은 어디입니까?


답변:


22

이 메시지는에서 온 것입니다 update-motd.

/etc/update-motd.d/updates-available스크립트에서이 특정 출력을 생성cat /var/lib/update-notifier/updates-available


0

모든 MOTD 메시지의 출처에 대한 대답으로 먼저 PAM 구성을 살펴보십시오.

 % grep -C1 motd /etc/pam.d/*
 /etc/pam.d/sshd:session optional pam_motd.so motd=/run/motd.dynamic

pam_motd.so가 실행되는 것을 확인하십시오.

 % strings /lib/x86_64-linux-gnu/security/pam_motd.so
 run-parts /etc/update-motd.d > /run/motd.dynamic.new

'run-parts'는 모든 스크립트를 순서대로 디렉토리에서 실행합니다.

 % ls /etc/update-motd.d/
 00-header*     80-esm*  91-release-upgrade*  98-reboot-required*
 10-help-text*  80-livepatch*          95-hwe-eol*
 50-motd-news*  90-updates-available*  98-fsck-at-reboot*

헬퍼 스크립트는 / usr / lib / update-notifier / update-motd *에 있습니다.

 /usr/lib/update-notifier/update-motd-fsck-at-reboot*
 /usr/lib/update-notifier/update-motd-hwe-eol*
 /usr/lib/update-notifier/update-motd-reboot-required*
 /usr/lib/update-notifier/update-motd-updates-available*

데이터 파일은 / var / lib / update-notifier에 있습니다.

 dpkg-run-stamp  hwe-eol                  updates-available
 fsck-at-reboot  package-data-downloads/  user.d/

명령 행에서 MOTD 정보를 출력하려면

$ ssh localhost

또는

# run-parts /etc/update-motd.d
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.