मैं नीचे दिए गए उदाहरण के रूप में अपने डेबियन जेसी 8.2 होस्ट पर भाग्य के उदाहरण के साथ सरल गतिशील-गति का परीक्षण करने में सक्षम हूं और इस मुद्दे को छोटी गाड़ी के व्यवहार से संबंधित पाया।
mkdir /etc/update-motd.d
cd /etc/update-motd.d
नीचे के रूप में दो परीक्षण फ़ाइलों को बनाया और उन्हें निष्पादन योग्य बनाया
root@debian:/# cd /etc/update-motd.d/
root@debian:/etc/update-motd.d# ls -l
total 8
-rwxr-xr-x 1 root root 58 Dec 1 23:21 00-header
-rwxr-xr-x 1 root root 41 Dec 1 22:52 90-fortune
root@debian:/etc/update-motd.d# cat 00-header
#!/bin/bash
echo
echo 'Welcome !! This is a header'
echo
root@debian:/etc/update-motd.d# cat 90-fortune
#!/bin/bash
echo
/usr/games/fortune
echo
हालांकि इस समय, मोट में कोई बदलाव नहीं हुआ था। इसलिए मैं sshd प्रक्रिया को स्ट्रीम करूंगा। उस ट्रेस (नीचे दिखाए गए दिलचस्प भाग) से, आप देख सकते हैं कि नई बनाई गई motd.new फ़ाइल का नाम बदलकर / var / run / motd कर दिया गया है। हालाँकि यह बाद में /run/motd.dynamic से पढ़ने की कोशिश कर रहा है - जो कभी नहीं बना था
20318 rename("/var/run/motd.new", "/var/run/motd") = 0
20318 open("/run/motd.dynamic", O_RDONLY) = -1 ENOENT (No such file or directory)
20318 open("/etc/motd", O_RDONLY) = 8
समस्या pam_motd मॉड्यूल के साथ विसंगतियों से संबंधित लगती है। बग रिपोर्ट देखें https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=743286&msg=2
सीधे शब्दों में से motd फ़ाइल स्थान बदलने /run/motd.dynamic
के लिए /run/motd
में /etc/pam.d/sshd
है - यह मेरे लिए काम करता है
root@debian:/etc/pam.d# grep pam_motd sshd
#session optional pam_motd.so motd=/run/motd.dynamic
session optional pam_motd.so motd=/run/motd
session optional pam_motd.so noupdate
यहाँ नमूना लॉगिन ssh लॉगिन के दौरान देखा गया है ...
Welcome !! This is a header
* Culus fears perl - the language with optional errors
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
You have new mail.
Last login: Tue Dec 1 23:49:57 2015 from x.x.x.x
pam_motd.so noupdate
वहाँ समस्या नहीं होगी ?