If networkmanager gives you long network interface names return to eth0 & wlan0
Edit your /etc/default/grub change GRUB_CMDLINE_LINUX="" to :
GRUB_CMDLINE_LINUX="net.ifnames=0"
If the biosdevname is installed you need to add :
GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
$ update-grub
This creates a new /boot/grub/grub.cfg and for each entry in the line that starts with Linux there is a net.ifnames=0 usually after rw and the uuid address, so you can even add it manually there and reboot to see if the longnames have vanished and eth0 and wlan0 have re-established themselves.