I do not have a flash drive or a CD that I can burn, what are some other ways that I could install Ubuntu on my computer (dell latitude d620)?
Asked
Active
Viewed 434 times
0
-
1you can use do a PXE Boot but you need another computer – Neil Nov 20 '15 at 03:51
-
You may be better off waiting until you're in a condition where you can use a DVD or USB drive. PXE boot, like @Neil suggested, is a possibility, but it's tricky and (like he said) needs another computer to work. – TheWanderer Nov 20 '15 at 04:26
-
If you have a running linux system already on the computer, you can chroot into and build ubuntu that way, there are tutorials on how to do this for Kali linux and arch linux as well. Also, you can actually transfer the hard drive to another computer, install ubuntu, switch the hard drive back and it should boot up fine. – mchid Nov 20 '15 at 04:49
-
If you have GRUB bootloader installed or can install it from Windows, you can set it up to boot directly from the Ubuntu installation iso image located somewhere on the HDD. @cl-netbox can tell you how this works, I'll call him... – Byte Commander Nov 20 '15 at 08:45
1 Answers
0
In case you have a running Ubuntu system ... You can add the Ubuntu install ISO file to the GRUB boot menu and install Ubuntu without having to create an installation media (DVD or USB drive).
Open a terminal and execute :
sudo apt-get install gksu
gksudo gedit /etc/grub.d/40_custom
Insert the following into the file :
menuentry "ubuntu install media" {
set isofile="/…/XXX.iso"
loopback loop (hdX,XX)$isofile
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile noprompt noeject toram
initrd (loop)/casper/initrd.lz
}
Note : ... = ISO file path | X = disk | XX = partition | XXX = ISO file name )
Save the file and execute :
sudo update-grub
Now reboot - choose the new entry from the GRUB boot menu and proceed installation as usual.
You will find some alternatives here -> Is it possible to install Ubuntu without a CD or USB drive ?