로그인 시에 환영 메시지로 패키지 업데이트 갯수라던가를 알려주다 보니
/etc/ssh/sshd_config 에서 UseDNS no를 해주어도 지연되는 문제가 발생한다.
물론.. 업데이트 잘 해주고 그러면 문제 없겠지만 안되어 있다면.. 꺼주는 수 밖에?
login as: minimonk minimonk@192.168.1.14's password: Welcome to Ubuntu 12.04.4 LTS (GNU/Linux 3.11.0-15-generic i686) * Documentation: https://help.ubuntu.com/ 261 packages can be updated. 150 updates are security updates. Last login: Wed Dec 24 12:15:49 2014 |
$ sudo vi /etc/pam.d/sshd # Print the message of the day upon successful login. #session optional pam_motd.so # [1] |
[링크 : https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674]
+
위의 무식(!) 한 방법을 제외하면
로그인 쉘이라던가 여러곳에서 motd를 갱신할때 90번과 91번에 대해서 제거를 해주면 될 듯 하다.
cpu 부하는 90번만 삭제해도 된다.
단, .90 이라던가 이렇게 이름만 바꾸어도 실행은 되니(디렉토리 전체 실행으로 보임)
#으로 주석처리하는걸 추천한다.
/etc/update-motd.d$ cat 90-updates-available #!/bin/sh if [ -x /usr/lib/update-notifier/update-motd-updates-available ]; then exec /usr/lib/update-notifier/update-motd-updates-available fi |
/etc/update-motd.d$ cat 91-release-upgrade #!/bin/sh if [ -x /usr/lib/update-manager/release-upgrade-motd ]; then exec /usr/lib/update-manager/release-upgrade-motd fi |
'Linux > Ubuntu' 카테고리의 다른 글
ld.so ? (0) | 2015.02.11 |
---|---|
bash: ./arm-linux-gcc: No such file or directory (0) | 2015.01.12 |
manpath (0) | 2014.12.07 |
ctrl - alt - t 로 터미널 실행 (0) | 2014.09.04 |
우분투에서 특정 패키지의 업데이트 금지하기 (0) | 2014.09.03 |