如何在 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

相关内容