Yes I had no luck with GUI (via VNC) either. Trying text install instead.
The problem is caused by the kickstart file on the root of the Rockstor ISO: ks.conf. Line 13 (unlucky for some) is:
ignoredisk --only-use=sda
I’ve tried commenting this out or replacing with xvda, and then saving into the ISO (using WinISO), but then the installer says:
dracut-initqueue[585]: Warning: failed to fetch kickstart from hd:LABEL=Rockstor\x203\x20x86_64:/ks.cfg
and eventually boots to a command prompt (no web UI). I’m guessing that my changing the ISO has broken some checksum, so it no longer sees this as a valid ISO image, and “fails to fetch”.
I’ve just used the text installer instead of VNC, and it seems to have completed the install okay, and I’m now in the webui. I’m concerned that I’m missing something crucial in the kickstart file that wasn’t loaded. This is below for reference. Is there any way to post-instate these kickstart options? Eg "services --enabled=“chronyd”? I have prefixed the commented lines with a ’ because hashes are made into titles in this forum editor:
‘#version=RHEL7
’# System authorization information
auth --enableshadow --passalgo=sha512
‘# Use CDROM installation media
cdrom
’#text
’# Run the Setup Agent on first boot
’#this may not be necessary. look at rockstor vm’s anaconda and decide.
firstboot --enable
‘# probably not necessary. this can be upto the user to decide.
ignoredisk --only-use=sda
’# Keyboard layouts
keyboard --vckeymap=us --xlayouts=‘us’
'# System language
lang en_US.UTF-8
‘# Network information
’# probably not necessary. users can configure interactively. Or should we leave dhcp as the default?
network --bootproto=dhcp --onboot=yes --hostname=Rockstor
‘# Root password
’#rootpw --iscrypted $6$F3v.RAjU…pGqpAf$ItkRJpJdKjZExy0rMG/ZDotQdAn65LO59iG/CPF/ql9MFHiMl1RzUW0aQXRHO94IgdBMBUrJ7mzJBv2rx1zPY1
’# System services
services --enabled=“chronyd”
’# System timezone
’#timezone America/Los_Angeles --isUtc
’# X Window System configuration information
xconfig --startxonboot
’# System bootloader configuration
bootloader --location=mbr --boot-drive=sda
autopart --type=btrfs
’# Partition clearing information
clearpart --none --initlabel
firewall --disabled
selinux --disabled
%packages
@core
%end