Arch Linux shows a blinking cursor instead of a booting installer. I ran

sudo dd if=archlinux-2010.05-core-i686.iso of=/dev/sdb1

and checked the MD5 sums.

I tried to boot it on two different PCs and got the same result: instead of booting GRUB — or anything useful, for that matter — it just showed a blinking cursor at the top left corner of the screen.

The machines became unresponsive to any kind of input, the flash drive LED didn't seem to blink or shiver at all and there seemed to be no other activity whatsoever.

I tried using another flash drive, but the machine completely ignored it, booting Windows "normally."

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You are meant to copy it to the device itself not a partition, so it should have been

sudo dd if=archlinux-2010.05-core-i686.iso of=/dev/sdb

The problem is the computer is looking at /dev/sdb and seeing nothing there (grub would usually reside here on a normal partition) and either booting windows or doing nothing. You need to copy the install media into the root of the device so that you BIOS can find it.

Please see here for more information https://wiki.archlinux.org/index.php/Official_Arch_Linux_Install_Guide#Preparing_the_Installation_Media

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.