Hi,

I created a LiveCD for my own personal use (with openbox) in Fedora 30. I have created such a live cd for the past several cycles (I think

In the past, I have the SLiM (slim) screen show up with username (that I say is liveuser) and does not prompt me for a password. However, in Fedora 30, I am prompted for password from the created LiveCD. So I can not get in.

Here are the lines in my kickstart file:


sed '
/#default_user/a\
default_user  liveuser
' /etc/slim.conf
sed '
/#auto_login/a\
autologin  yes
' /etc/slim.conf


sed '
/sessions/ c\
sessions      openbox
' /etc/slim.conf


# Show harddisk install on the desktop
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
mkdir /home/liveuser/Desktop
cp /usr/share/applications/liveinst.desktop /home/liveuser/Desktop

# this goes at the end after all other changes.
chown -R liveuser:liveuser /home/liveuser
restorecon -R /home/liveuser

EOF


So, I was wondering what to do in this case, or at the very least, try and provide a password for the livecd which can be used to login.

Thanks for any suggestions!