상황에 맞게 아래의 방법중 선택해서 booting

1. PA-RISC system
 
  LAN booting  => boot lan.n.n.n.n install ( n.n.n.n Ignite-UX server system IP )

  Tape drive or OS Install CD 로 booting

  Ignite-UX server 에서 client system 을 강제적으로 booting
     =>1) Ignite-UX server system 에서 ignite 명령을 실행
          2) client system list 에서 booting 할 client 선택
          3) 메뉴에서 Actions -> boot client -> confirm 메시지 창에서 OK -> Yes 


2. IA system

  Tape drive or OS Install CD 로 booting

  Ignite-UX server 에서 client system 을 강제적으로 booting 
    => 1) Ignite-UX server system 에서 ignite 명령을 실행
         2) client system list 에서 booting 할 client 선택
         3) 메뉴에서 Actions => boot client => confirm 메시지 창에서 OK => Yes


  LAN booting  ; EFI shell 에서 dbprofile 명령을 이용해서 booting
    => 1) Shell> dbprofile -dn bootprofile -sip 192.168.1.200 -cip 192.168.1.70 -gip 192.168.1.1
                                    -m 255.255.255.0 -b "/opt/ignite/boot/nbp.efi" 

                           
              Ignite-UX
서버 IP 주소(-sip)        192.168.1.200
  
              Ignite 클라이언트 IP 주소(-cip)    192.168.1.70
             
게이트웨이 IP 주소(-gip)             192.168.1.1
              네트워크 마스크(-m)                  255.255.255.0                            
              부팅 파일 이름
(-b)                     /opt/ignite/boot/nbp.efi


         2) Shell> dbprofile   =>  dbprofile 명령으로 현재의 dbprofile 설정을 확인
         3) Shell> lanboot select –dn bootprofile  => lanboot 명령으로 lan booting 하기  
                                                              위한 네트워크 카드를 선택후 Enter

Posted by 2540BE400

동시에 여러대의 system 에 DVD 로 OS 를 설치하고 싶을때

11.23에서

# mkdir /Depots
# mount /dev/dsk/cXtYdZ /cdrom
# swcopy -s /cdrom    ( /Depots 로 copy )
# cd /Depots
# make_config -s $PWD -c /var/opt/ignite/data/Rel_B.11.23/core_cfg 
                                        => make_config를 실행해 /Depots 디렉토리를 가리키게함
# manage_index -a -f /var/opt/ignite/data/Rel_B.11.23/core_cfg
                                        => /var/opt/ignite/INDEX 파일에 추가
# swreg -l depot /Depots       => Depots 서버에 등록
# vi /etc/exports                   

 ( anon=2 /etc/passwd 계정 UID : bin )

/var/opt/ignite/clients -anon=2
/Depots -anon=2

exportfs -av
=====================================================================

11.31 에서

# mkdir /Depots
# mount /dev/dsk/cXtYdZ /cdrom
# swcopy -s /cdrom    ( /Depots 로 copy )
# cd /Depots
# make_config -s $PWD -c /var/opt/ignite/data/Rel_B.11.31/core_cfg 
                                        => make_config를 실행해 /Depots 디렉토리를 가리키게함
# manage_index -a -f /var/opt/ignite/data/Rel_B.11.31/core_cfg
                                        => /var/opt/ignite/INDEX 파일에 추가
# swreg -l depot /Depots       => Depots 서버에 등록

# vi /etc/dfs/dfstab

share -F nfs -o anon=2 /var/opt/ignite/clients 

share -F nfs -o anon=2 /Depots


# /usr/sbin/shareall -F nfs                

=======================================================================

Posted by 2540BE400

ACC X.25 config

HPUX : 2008. 12. 8. 20:44

  #cd /opt/acc/cfg
  #vi zmasterd_list   ==> x25.tmem
  #cp x25_loop_answ x25.answ
  #vi x25.answ   ==>  rs232 -> V35  ,   Int -> Ext
  #ttgen -o x25.answ x25.tmem
  #zmasterd stop
  #zmasterd kill
  #zmasterd start
  #x25init -c /etc/x25/x25accmXpX
  #z25stat -d /dev/x25accmXpX

Posted by 2540BE400