69

My friend's laptop was in a car accident (he's fine!). However the laptop is very old its an Acer Aspire 1520 the CD-rom drive is broken and there is no floppy drive.

I made him a USB boot before I took a look at it and found that his BIOS cannot boot from USB. The only thing I have is a GRUB console but he is keen to just install XP (on USB) and use it just for Movies.

Is it possible using the GRUB console to get access to the USB and start the windows install? It's a tall order but I think this may be the way, or trying to install via LAN which I don't think will be achievable.

user685590
  • 789
  • 1
  • 6
  • 5

6 Answers6

58

Here is a quick example of grub commands that might just work, explanations and caveats below.

grub2

Most likely for post-2010 installs.

set root=(hd1,1)
chainloader +1
boot

grub

Most likely for pre-2005 installs.

root (hd1,0)
chainloader +1
boot

For the 2005-2010 period, your guess is as good as mine, but if you use the command for the wrong version, you only get a harmless syntax error on the first command.

Choosing the right root

At startup, grub will probe for your devices and assign numbers to them. All devices that are partitioned (hard disks and flash drives) will also have numbers assigned. The format is (<deviceName>,<partitionIndex>). In grub2, partition indexes changed, so the two examples above have the same effect despite looking to use different roots.

Your first device (hd0) is whichever device grub just loaded from. After that, you can usually assume that all the internal devices will come before your external devices. They will most likely be in the form of hd and a number.

After the comma is the partition index. Hard disks and thumb drives will almost always be partitioned, so you must choose the right (and most likely only) partition. CD-ROMs are usually not partitioned.

More documentation: http://www.gnu.org/software/grub/manual/html_node/Device-syntax.html

When choosing your root partition, you can use the Tab key to probe for device names and partition indexes. Just open parenthesis and start pressing Tab to see the list. Alternatively, newer versions provide the ls or find command.

Liz
  • 843
15

The chainloader +1 thing might not work if the BIOS isn't good at booting from a USB key (which was why I was wanting to use Grub anyways).

In this case, there's some deep magic at https://help.ubuntu.com/community/Grub2/ISOBoot that works, at least for Ubuntu. The crucial bit is mucking with the grub command that identifies the vmlinuz file, passing the iso-scan/filename argument. Somehow, that helps it figure out that the entire boot filesystem is stuck in an ISO file. I don't know how the heck it works, but it does. These are (approximately) the Grub 2 commands I used:

loopback loop (fd0,msdos1)/path/to/iso/file
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/path/to/iso/file noprompt noeject
initrd (loop)/casper/initrd.lz
boot

The /path/to/iso/file should be the path to the ISO file on the USB key. The (fd0,msdos1) identifies the USB key. Tab-completion is super-helpful on the loopback line, and not useful for the arguments to vmlinuz.

14

To elaborate on new123456's comment:

The USB device should be detected as a mass storage device and treated just like a hard drive. So, in grub, type root (hd (don't press Enter yet) and then hit tab once or twice to see what hard drives Grub can see. The USB device, if it's recognized, will probably be hd1. Don't specify a partition number; just add a closing parenthesis. So the line will be root (hd1). Then after that, type the following:

chainloader +1
boot

If that doesn't work, change root (hd1) to root (hd1,0) and try it again.

If for some reason Grub can't see the USB drive, try plugging in a USB CDROM and booting off that.

Jonathan
  • 291
  • 1
  • 3
8

I was going to leave this as a comment on either @Ekevoo or @Jonathan post, but I'm not allowed to, so here's my use case+solution for anyone that may also encounter this:

The USB contained a GPart Live CD Install, but my BIOS wasn't booting from it for some reason, despite it working previously (the previous time it worked I installed the CD via windows, this time I did it via Ubuntu). In Grub, I ran the following commands and it worked

set root=(hd0)

This may be different for different devices, I'm not sure if it's even necessary.

Then I ran

chainloader (hd0)/efi/boot/grubx64.efi
boot

The chainloader path will probably be different for other OS, but a similar file should be there. Tab around and look for it, or use the ls command if you can.

And that was enough for it to work.

9 Guy
  • 205
  • 2
  • 8
3

This isn't going to be terribly helpful in your friend's case (unless there's a way I'm unaware of to get plop on the device in the first place -- maybe a usb cd-rom, or usb floppy drive?), but this is a terrific little application, which has helped me rig a number of old machines to boot off of usbs when their bios wouldn't allow it.

Plop Boot Manager

Nifle
  • 34,998
-2

You can't boot from usb in grub if the bios doesn't allow for it itself. I once had to setup a sort of recovery partition on a hard disk containing the win7 setup disk contents, install grub, and then used that to boot the win7 setup partition to install it to the rest of the hard drive.

hanetzer
  • 258