본문 바로가기

분류 전체보기57

[Linux]linux Crontab 설정 1. crontab 수정 crontab -e 분 시 일 월 요일 경로 00 00 00 00 00 / 2. crontab 등록 확인 crontab -l ex ) - 매 분마다 실행 tmp.sh 실행 * * * * * /tmp/tmp.sh - 매주 금요일 오전 1시 10분에 tmp.sh 를 실행 10 1 * * 5 /tmp/tmp.sh - 매일 매시간 0분, 20분, 40분에 tmp.sh 를 실행 0,20,40 * * * * /tmp/tmp.sh - 매일 1시 10분부터 40분까지 매분 tmp.sh 를 실행 10-40 1 * * * /tmp/tmp.sh - 매 10분마다 tmp.sh 를 실행 */10 * * * * /tmp/tmp.sh 11일에서 15일까지 1시,2시,3시에 매 10분마다 tmp.sh 를 실.. 2021. 3. 2.
[HP-UX]Tape Scan , Device Rescan 1. Scan for new devices: # ioscan -fnC tape 2. List tape drives currently recognized by the OS (without performing an actual hardware scan) # ioscan -fnkC tape 3. remove all the special files used by the tape drives # rmsf /dev/rmt/* 4. Recreate the specil files for the tape drives # insf -C tape -e 5. Remove a tape drive (that has a NO_HW state) # rmsf -H 0/7/1/0.1.24.255.5.5.0 2021. 3. 2.
[AIX]호환성 라이브러리 확인 ldd(List Dynamic Dependencies)는 프로그램이나 공유 라이브러리들이 요구하는 공유 라이브러리(shared libraries)를 출력하는 명령 행(Command Line)프로그램이다. --version : ldd의 버전을 출력한다. -v, --verbose : 심볼 버전 정도등 모든 정보를 출력한다. -d, --data-relocs -r, --function-relocs --help : 사용방법을 출력한다. root@ave182:~/#: ldd /usr/bin/postmaster linux-vdso.so.1 => (0x00007fff32086000) libxml2.so.2 => /usr/lib64/libxml2.so.2 (0x00007f032e290000) libpam.so.0 => .. 2021. 3. 2.
[AIX]Tape Scan , Device Rescan Configure the tape device: cfgmgr -v (-v is not required but will show where it hangs if it does) Verify the new devices are Available: lsdev -Cc tape 2021. 3. 2.