^ Interesting issues with the installer Snap, let's get to the bottom of it
First the old installer is always there just not on the menu and can be run this way in terminal
remsu /usr/bin/remastersys-installer gui
The installer works but it does not apply the net.ifnames=0 during the installation of grub... You can do that post install by booting to the new install and editing /etc/default/grub and adding it here:
GRUB_CMDLINE_LINUX_DEFAULT="net.ifnames=0 quiet"
and then upg or sudo update-grub ... Just remember that if this is not the master grub from sda already, it may not apply ... you can always run
sudo grub-install /dev/sda
to apply it to the master (sda)
Let's also troubleshoot the new installer to see what is happening... Are you running expert mode? The questions are different during the hostname username and user Real name portion and I made mistakes on the first couple of installs getting them backwards
You can also run this from terminal during the livecd session
remsu /usr/bin/refractainstaller-yad -d
This runs the installer in debug mode and leaves a log that we can look at. This should give us an idea of all the issues you are having with the installer and I can forward anything onto fsmithred over on the refracta forums to discuss and troubleshoot
FYI this puts a refractainstaller_error.log that is actually copied to the new install so when it reboots to the new install you can go into /var/log/ and retrieve the information ... or during the install BEFORE you hit OK or close the last yad screen saying the install is good, you can go into spacefm and under /TARGET/var/log and /var/log you will have the information
Thanks for the input, let's solve this