2007. 12. 3. 21:45 Unix/HP-UX
'Unix/HP-UX'에 해당되는 글 34건
- 2007.12.03 FTP 명령어
- 2007.12.03 JFS
- 2007.12.03 PAM
- 2007.12.03 이곳은....
- 2007.11.28 HP-UX용 SW 다운로드 Site
- 2007.11.13 WARNING: modpath: DLKM is not initialized
- 2007.11.09 패치 설치
- 2007.11.03 HP 상에서 Mac 주소 찾기
- 2007.11.03 HP Unix에서 압축명령어
- 2007.11.01 Tape Backup 확인
2007. 12. 3. 21:35 Unix/HP-UX
JFS
2007. 12. 3. 21:14 Unix/HP-UX
PAM
2007. 12. 3. 20:17 Unix/HP-UX
이곳은....
2007. 11. 28. 16:35 Unix/HP-UX
HP-UX용 SW 다운로드 Site
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/
HP-UX 교육받을 때 알게된 사이트인데 인터넷 돌아다니다 보니 또 생각이 나서
2007. 11. 13. 10:39 Unix/HP-UX
WARNING: modpath: DLKM is not initialized
HP-UX에서 제목과 같은 메시지가 발생할 때
퍼옴..
kernel의 현재 버전과 /stand/dlkm/symtab에 있는
symbol table의 버전이 맞지 않아서 발생하는 문제 입니다.
아래와 같은 명령어로 확인하고 kernel을 아래처럼 다시 구성하십시오:
echo mod_initialized/D | adb -k /stand/vmunix /dev/mem
1. cd /stand/build
2. /usr/lbin/sysadm/system_prep -s system
3. mk_kernel -s system
4. kmupdate /stand/build/vmunix_test
5. shutdown -ry 0
주의: reboot command를 사용하지 마십시오.
http://hprc.co.kr/description.aspx?id=KBRC0000209285&type=제목&search=modpath:%20DLKM%20is%20not%20initializ&crit=All%20Words
2007. 11. 9. 10:08 Unix/HP-UX
패치 설치
Please review all instructions and the Hewlett-Packard
SupportLine User Guide or your Hewlett-Packard support terms
and conditions for precautions, scope of license,
restrictions, and, limitation of liability and warranties,
before installing this patch.
=> 패치를 설치하기 전에 모든 지침을 읽어보라는 뜻.. (ㅡ.ㅡ)
------------------------------------------------------------
1. 패치를 설치하기 전에 시스템을 백업한다.
2. root로 로그인한다.
3. 패치를 /tmp 디렉토리에 복사한다.
4. /tmp 디렉토리로 이동하여 패치를 푼다(unshare):
# cd /tmp
# sh PHSS_XXXXX
5. 패치를 설치하기 위해 swinstall을 실행한다:
# swinstall -x autoreboot=true -x patch_match_target=true \
-s /tmp/PHSS_XXXXX.depot
기본적으로 swinstall은 원본(Original) 소프트웨어를 /var/adm/sw/save/PHSS_XXXXX에
저장할 것이다. 원본 소프트웨어의 복사본을 보존하지 않으려면 patch_save_files 옵션을
위의 swinstall 명령에 포함시켜라:
-x patch_save_files=false
주의 : 만일 patch_save_files 옵션이 false로 주어진 채 패치가 설치되면, 그 패치는 제거할
수 없다. 이 기능을 사용할 때는 조심하기 바란다.
향후에 참고하고자 할 때 PHSS_XXXXX.text 파일의 내용은 product readme에서 이용할 수 있다.
# swlist -l product -a readme -d @ /tmp/PHSS_XXXXX.depot
이 패치를 자기 테잎에 넣고 테잎에서 설치를 하려면 다음의 명령을 사용하라:
# dd if=/tmp/PHSS_XXXXX.depot of=/dev/rmt/0m bs=2k
2007. 11. 3. 22:16 Unix/HP-UX
HP 상에서 Mac 주소 찾기
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2445 - September 11, 2006
http://www.ugu.com/sui/ugu
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
HP 상에서 MAC 주소 찾기
HP-UX 머신상의 LAN 카드의 MAC 또는 이더넷 주소를 알고 싶다면 다음의 명령을 사용하라:
lanscan
위 명령은 머신상에 설치된 모든 LAN 카드의 MAC 주소를 반환할 것이다.
@@@@@@@@@@@@@@@@@@@@[ 원문 ]@@@@@@@@@@@@@@@@@@@@
FINDING MAC ADDRESS ON HP
If you want to know the
MAC or eathernet address of
your lan card on an HP-UX
machine, then type:
lanscan
This will give you the mac
addresses of all the lan
cards installed on the
machine.
2007. 11. 3. 21:17 Unix/HP-UX
HP Unix에서 압축명령어
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2360 - June 18, 2006
http://www.ugu.com/sui/ugu
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
HP Unix에서 "compress" 명령은 약 50~60%를 압축한다. "gzip"은 80%까지 파일을
around 50 to 60%. "gzip" will compress the
file upto 80%. There is a command available
in HP's unix to convert a compress file to
a zip file. "znew" will automatically
convert compressed files(*.Z) to gunzip
files(*.gz).
Example:
$ znew test.Z
2007. 11. 1. 17:36 Unix/HP-UX