Como o element os os luna deriva do Ubuntu 12.04 LTS, são duas versões por trás do seu xubuntu 13.10 e, portanto, não é provável que tenha sucesso:
you@eos:~# dpkg --get-selections > /some/share/selections.txt
you@xubuntu:~# cat /some/share/selections.txt | dpkg --set-selections
Isso também selecionará pacotes que estão apenas no Luna, então você deve editar o arquivo selections.txt antes de aplicá-lo no xubuntu.
No entanto, os dois sistemas são semelhantes o suficiente para reparar elementar como root no xubuntu:
root@xubuntu:~# mkdir -p /tmp/eos root@xubuntu:~# mount -t auto /dev/disk/by-label/yourEosPartitionLabel /tmp/eos root@xubuntu:~# mount --bind /dev /tmp/eos/dev root@xubuntu:~# mount --bind /proc /tmp/eos/proc root@xubuntu:~# chroot /tmp/eos # now we are in a running eos with internet access from xubuntu root@eos:~# apt-get install -f linux-image-generic # plus other fixes you may try root@eos:~# exit root@xubuntu:~# umount /tmp/eos/dev root@xubuntu:~# umount /tmp/eos/proc
Isso instalaria o antigo kernel 12.04 genérico com maior probabilidade de inicializar.