/etc/rc.d/rc.local파일을 열어보면 아래와 같은 부분이 있습니다.
# This will overwrite /etc/issue at every boot. So, make any changes you
#
want to make to /etc/issue here or you will lose them when you reboot.
echo
"" > /etc/issue
echo "$R" >> /etc/issue
echo "Kernel $(uname -r)
on $a $SMP$(uname -m)" >> /etc/issue
# This will make issue.net in a more secure way
echo "" >
/etc/issue.net
echo "$R" >> /etc/issue.net
기본적으로 레드햇은 부팅시마다 커널버전과 배포판이름을 /etc/issue라는파일로
매번갱신합니다. 텔넷로그인시의 메세지는
/etc/issue.net입니다.
두파일을 편집한뒤에 echo부분을 모두 주석처리(#)하면 편집한내용을
계속유지하겠죠. 주석처리를
안하고 파일만 수정하면 다음부팅시
또 같은메세지가 나옵니다. 두파일을 이뿌게 꾸며보세요^^;;
아래와 같이 주석처리하시면 됩니다.
# This will overwrite /etc/issue at every boot. So,
make any changes you
# want to make to /etc/issue here or you will lose them
when you reboot.
# echo "" > /etc/issue
# echo "$R" >>
/etc/issue
# echo "Kernel $(uname -r) on $a $SMP$(uname -m)" >>
/etc/issue
# This will make issue.net in a more secure way
# echo "" >
/etc/issue.net
# echo "$R" >> /etc/issue.net
'Server' 카테고리의 다른 글
이사이트는 어떤os와 웹서버를 쓸까? (0) | 2001.08.08 |
---|---|
ssh접속시 메세지 보이기 (0) | 2001.08.08 |
ssh데몬을 inetd으로 운영 (0) | 2001.08.08 |
proftpd 이어올리기 설정 (0) | 2001.08.08 |
proftpd 환영메세지 (0) | 2001.08.08 |