Linux에서 NIM을 사용하여 aix71 클라이언트(NIMOL)를 설치하는 방법

Linux에서 NIM을 사용하여 aix71 클라이언트(NIMOL)를 설치하는 방법

nimol을 사용하여 aix71 클라이언트를 설치하고 싶습니다.어딘가에5.3 클라이언트만 지원

그런데 aix71 CD에서 이것을 찾았습니다. nimol을 사용하여 aix 7.1을 설치할 수 있습니까?

답변1

작동하지 않습니다. 누군가 조사하고 싶을 수도 있습니다. 처음에 제가 작성한 이 간단한 방법을 시도해 보았습니다. 감사합니다.링크명확한 설명을 위해 프로세스가 시작되지만 오류 BA010005가 발생합니다. 방화벽 없이 방화벽을 사용하면 tftp 전송이 제대로 작동하지만 "디스크 검색" 후에 오류 0c52가 발생하고 12%에서 멈춥니다. SElinux가 비활성화됩니다.

내 더럽고 빠른 방법은 다음과 같습니다.

#require
centos6,(centos7 is a lot of pain because switched from sysv init to systemd)
dhcpd server
tftp server 
fqdn hostname must resolve via /etc/hosts or dns
firewall: if use open  67:69 tcp e udp,514 udp(rsyslog)

#install those packages
epel-release    
libc-i386
tftp-server
tftp
rcpbind     #link /etc/rc.d/init.d/rpcbin to  /etc/rc.d/init.d/portmap
perl-xml    
dhcpd  server
nfs-utils
xinetd
perl-XML-LibXML
bind-utils
ssh

#install those rpms from aix dvd 71 dvd-1
for i in   nimol-1.0-4.noarch.rpm  osinstall-1.0-1.noarch.rpm;
do rpm -Uvh $i;done

#configure nimol
touch /etc/nimol.conf
nimol_config -m /usr/bin/ssh -C #configure nimol

#example nimol.conf
NIMOL_SERVER youserver.fqdn
PORTMAP_STARTED yes
REMOTE_ACCESS_METHOD /usr/bin/ssh
NIMOL_SUBNET 192.168.0.0
LABEL default /export/aix/default
NIMOL_SYSLOG_FACILITY local2

#run nimol
#insert dvd aix71 in /dev/cdrom
nimol_config


#edit dchpd.conf and enable boot
#boot
allow bootp;
use-host-decl-names on;

#check if nfs working
exportfs -v

#enable syslog remote(not required)
syslogd     #run with options -r -h
rsyslogd    #edit /etc/rsyslogd enable 514 udp remote

#create first client
nimol_install -c aix1 -g 192.168.0.203 -m 00:*:*:*:*:* -s 255.255.255.0 -L default
service dchpd restart

#if give error check tftp and dhcp conf files
#you can check if working with 
tftp yourserver
get /tftpboot/aix1

#to run client
#boot from aix(sms menu selected from asmi or serial console)
##configura ipl
#boot from network

#last warning: if softlink of tftp doesn't work use cp or hard link
ln default.chrp.mp.ent aix1

관련 정보