2016-08-05 9 views
0

Ich versuche, die CentOS zu installieren NetBoot auf ppc64le Plattform installieren, aber Automatisierungsanlage (Kickstart-) schlägt mit dem folgenden Fehler:CentOS automatische Installation wird mit „Installation Destination“ Fehler

Starting installer, one moment... 
find_file: stat /proc/device-tree/chosen/bootpath, No such file or directory 
anaconda 21.48.22.56-1 for CentOS AltArch 7 started. 
* installation log files are stored in /tmp during the installation 
* shell is available on TTY2 
* when reporting a bug add logs from /tmp as separate text/plain attachments 
Starting automated install.......... 
Generating updated storage configuration 
storage configuration failed: failed to find a suitable stage1 device 
================================================================================ 
================================================================================ 
Installation 

1) [x] Language settings     2) [x] Timezone settings 
     (English (United States))    (UTC timezone) 
3) [x] Installation source    4) [x] Software selection 
     (http://mirror.centos.org/altar   (Custom software selected) 
     ch/7/os/ppc64le/)     6) [x] Kdump 
5) [!] Installation Destination     (Kdump is enabled)b | Help: F1 
     (Error checking storage configu 
     ration) 
7) [x] Network configuration 
     (Wired (enp0s1) connected) 

** (anaconda:1253): WARNING **: Could not open X display 

The installation was stopped due to incomplete spokes detected while running in non-interactive cmdline mode. Since there cannot be any questions in cmdline mode, edit your kickstart file and retry installation. 
The exact error message is: 

The following mandatory spokes are not completed: 
Installation Destination. 

The installer will now terminate. 

[[email protected] qemu]# 

Und Kickstart-Datei sieht aus wie :

url --url="http://mirror.centos.org/altarch/7/os/ppc64le/" 
install 
keyboard us 
rootpw --lock --iscrypted locked 
timezone --isUtc --nontp UTC 
selinux --enforcing 
firewall --disabled 
network --bootproto=dhcp --device=link --activate --onboot=on 
reboot 
bootloader --disable 
lang en_US 

# Repositories to use 
repo --name="CentOS" --baseurl=http://mirror.centos.org/altarch/7/os/ppc64le/ --cost=100 
## Uncomment for rolling builds 
repo --name="Updates" --baseurl=http://mirror.centos.org/altarch/7/updates/ppc64le/ --cost=100 

# Disk setup 
zerombr 
clearpart --all --initlabel 
part/--fstype ext4 --size=3000 

Suchen Sie nach der Option, das Installationsziel durch Kickstart-Datei auszuwählen.

Antwort

0

Dieses Problem wurde gelöst, indem eine weitere Partition hinzugefügt wurde, die für ppc64le pltform spezifisch ist.

Update und Arbeitskickstart-Datei wie folgt aussieht:

url --url="http://mirror.centos.org/altarch/7/os/ppc64le/" 
install 
keyboard us 
rootpw --lock --iscrypted locked 
timezone --isUtc --nontp UTC 
selinux --enforcing 
firewall --disabled 
network --bootproto=dhcp --device=link --activate --onboot=on 
reboot 
bootloader --disable 
lang en_US 

# Repositories to use 
repo --name="CentOS" --baseurl=http://mirror.centos.org/altarch/7/os/ppc64le/ --cost=100 
## Uncomment for rolling builds 
repo --name="Updates" --baseurl=http://mirror.centos.org/altarch/7/updates/ppc64le/ --cost=100 

# Disk setup 
zerombr 
clearpart --all --initlabel 
part/--fstype ext4 --size=3000 
part prepboot --fstype "PPC PReP Boot" --size=10 
+0

Ich sehe nicht, was in Kickstart- aktualisiert wurde ... – Tomek

+0

ich die fehlende Partition auf die Antwort gegeben. –