2swan
AIX 배너 설정 본문
▷ 로그인 시 배너의 화면들이 출력되는 것을 볼 수 있다.
▷ /etc/motd에 login 시도시 출력되는 메세지가 있는 것을 확인 할 수 있다.
여기는 출력물이 텍스트로만 인식되기 때문에 shell을 실행 시킬 수 없다.
# cat /etc/motd
▷ banner 폴더 생성후 시스템상에서 출력 해주고 싶은 내용들을 systembanner라는 파일로 ksh을 통해 작성해주고 저장
# mkdir banner
# cd banner
# vi systembanner
> #!/bin/ksh
(banner "COMPANY"; \
print "Date: %s\nLocale: %s\nUptime: %s\nUser: %s\nAIX: %s\nHW: %s\nHostname: %s\n" \
"$(date)" "$(locale | grep LANG)" "$(uptime)" "$(who)" "$(oslevel -s)" "$(uname -uM)" "$(hostname -s)")
▷ 파일의 권한을 775로 변경
# chmod 775 systembanner
▷ .profile에 아래의 내용을 입력 후 /banner/systembanner의 경로를 넣어준다.
PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:.
PS1="[$LOGNAME@`hostname`:\$PWD]# "
TERM=vt100
export PATH PS1 TERM
set -o vi
stty erase ^?
if [ -s "$MAIL" ] # This is at Shell startup. In normal
then echo "$MAILMSG" # operation, the Shell checks
fi # periodically
/banner/systembanner
▷ 로그인 하여 확인
# login
> ID :
> PW :
'AIX' 카테고리의 다른 글
AIX JAVA 설치 (0) | 2024.07.01 |
---|---|
mirror disk 교체 (0) | 2024.07.01 |
nmon log 수집 (0) | 2024.06.27 |
Login 오류 (잠김 현상) (0) | 2024.06.21 |
CPU 및 Core 수 확인 (0) | 2024.06.21 |