본문 바로가기

욕심쟁이 공부방/AIX

boot image 생성하기 AIX boot image 생성하기 1) boot image가 있는 disk 확인 # lslv -m hd5 2) boot image 생성 # bosboot -ad /hdisk0 만일 boot image 생성 실패 시, 아래 방법 중 한가지 수행 1. hd5를 지운 후 다시 생성 # rmlv hd5 # mklv -t boot -y hd5 -ae rootvg 1 hdisk0 2. /dev/ipldevice 제거 후 rhdisk0과 ipldevice LINK 연결 # cd /dev # ls -l ipldevice # rm ipldevice # ln /dev/rhdisk0 /dev/ipldevice # bosboot -ad /dev/ipldevice 3. hdisk와 ipldevice의 major/minor n..
NM / 기존 Resource 해제하기 할당되어 있는 리소스 해제하기 # lsnim -a lpp_source # nim -o deallocate -a subclass=all Then you can remove the resource: # nim -Fo remove 위 방법으로 안된다면, 1) nim_db 백업 # smitty nim_backup_db 2) 클라이언트에 할당된 각각의 리소스에 대해 alloc_count=0 설정 # /usr/lpp/bos.sysmgt/nim/methods/m_chattr -a alloc_count=0 3) 리소스 해제 # nim -Fo remove
password algorithm 변경 password algorithm 변경하기 기본적으로 /etc/security/pwdalg.cfg에 정의된 값 중에 사용한다. =============================변경 방법 ====================================== # vi /etc/security/login.cfg usw: shells = /bin/sh,/bin/bsh,/bin/csh,/bin/ksh,/bin/tsh,/bin/ksh93,/usr/bin/sh,/usr/bin/bsh,/usr/bin/csh,/usr/bin/ksh,/usr/bin/tsh,/usr/bin/ksh93,/us r/bin/rksh,/usr/bin/rksh93,/usr/sbin/uucp/uucico,/usr/sbin/sliplogin,/us..
umask umask touch, mkdir 시 사용되는 masking 값 umask는 text file이나 shell script에 대해서는 execute(x) 권한을 결정하지 않고, 디렉토리에 대해서만 결정한다. 즉, umask 값은 디렉토리의 경우 777에서 원하는 permission을 빼고 파일의 경우 666에서 뺀다. umask가 000이면 디렉토리는 777, 파일은 666 permission을 갖게 된다. 777 - 000 = 777 (rwxrwxrwx) 666 - 000 = 666 (rw-rw-rw-) umask가 022라면 디렉토리는 755, 파일은 644 permission을 갖게 된다. 777 - 022 = 755 (rwxr-xr-x) 666 - 022 = 644 (rw-r--r--) umask가..
thread 상태 확인하는 커맨드 현재 thread의 상태를 확인하는 명령어 # ps -emo THREAD THREAD Indicates the following fields: * User name (the uname field) * Process and parent process IDs for processes (the pid and ppid fields) * Kernel thread ID for threads (the tid field) * The state of the process or kernel thread (the S field) * The CPU utilization of the process or kernel thread (the C field) * The priority of the process or kernel th..
no 파라미터 정리...ing 보호되어 있는 글입니다.
0301-153 bosboot: /unix not found. 0301-153 bosboot: /unix not found. mkszfile 커맨드 수행 시 위의 에러가 발생하는 경우, 1) /usr/lib/boot/unix_64 파일 사이즈가 0인지 체크해볼 것 이러한 경우 동일 버전의(TL&SP) 다른 서버에서 /usr/lib/boot/unix_64 파일을 그대로 copy해 오면 된다. 2) 정상적인 tape 백업본이 있다면 restore # tctl rewind # cd / # restore -s4 -xqvf /dev/rmt0.1 ./usr/lib/boot/unix_64
errpt / FCA_ERR6 보호되어 있는 글입니다.