O mesmo problema que eu estava enfrentando há alguns dias. Este é um bug relatado no Ubuntu 16.
Para solução alternativa, você precisa editar o arquivo bin / fetch-url localizado em initrd.gz
passos para editar o arquivo e descompactar novamente:
1. gunzip initrd.gz
2. cdrom initrd
3. cpio -id < ../initrd
4. # ls
bin dev etc init modules proc sbin selinux sys tmp var
5. Now edit your file bin/fetch-url
add the following lines before the proto= line near the bottom:
prefix="/cdrom"
url=${url#$prefix}
6. save and close the file.
7. Now pack the directory again-
find . | cpio --create --format='newc' > /tmp/initrd
8. gzip initrd
9. Now move the file to the specified location where it was actually located.
Meu problema foi resolvido depois de seguir todas as etapas acima. Espero que isso ajude você: -)