A note on single user mode: usually single user mode does not start the network, rather it's a rescue mode which usually just mounts the root filesystem as read only. So there are a few things to do to get the network up like remounting the root filesystem as read write, for example:it sounds like you got it to install but just will not boot.
I do not think the intel iris GPU will be an issue. most intel is supported out of box.
You said it was running but stopped?
when you see that option as to what to boot. hit "E" key... then go to the linux line (longest one) and add the word "single" without the quotes to the end of the line. it will start you in single user mode. Once in there at the terminal type in...
sudo dnf update -y
make sure you are plugged into internet. this will update everything and hopefully fix it.
mount -o remount,rw /, and then set multi-user mode in systemd to get a full networking environment, for example: systemctl isolate multi-user-target, and then start the network for example: systemctl start NetworkManager. It depends on which networking management the installation is using. If systemd-resolved is the default resolver, one needs to make sure it's running.
Last edited:

