I want to install OpenSUSE 11.2 on my Acer TimeLine 3810TZ which has no DVD Drive. So I followed the Live USB guide and crat my Live USB Stick with the following command:
So I go to my laptop, enter the BIOS to give priority boot to the USB (It has Three USB entries, USB-CDROM, USB-HDD, USB-FDD, so I just put them all before any HDDs, figuring it’d cycle through them) and reboot with my stick in one of the USB slots.
And then it hangs on the BIOS. It lights up my USB Stick’s activity light like crazy, but it never actually leaves the BIOS screen (POST screen).
Any idea what’s going on? I’m kind of stuck with Windows Vista, and we all know how bad that is
No, it is not normal.
Also, I have a doubt that the image was not correctly copied. See if you can do it again. It should not be mounted while executing the dd command.
Also, execute sync a couple of times before you remove the stick.
syampillai, I have a feeling that the problem lies with the DD command itself. It results in the file system being iso9900 or something like that, instead of being a vfat.
So I’ve tried mounting the iso elsewhere, formatting the USB stick to vfat myself, and then copying the files over, but so far I’m not having much luck. It can’t find the boot image on the USB stick. BUT! The good news is it does pass the BIOS screen
I’ll try your suggestion in a minute, if my newest try doesn’t work haha. And then of course, I’ll post back. Thanks!
(Are you available on MSN or IRC to have a more fluid conversation with?)
EDIT: Okay, I tried the above again, but this time without running sudo syslinux -f /dev/sde, but when I don’t do that it DOES get by the BIOS, but says “This is not a bootable floppy” but when I DO run sudo syslinux -f /dev/sde it’ll get past the BIOS, but it will say that it can’t find the kernel.
matt@Matt:~> sudo /sbin/mkfs.vfat -I -n Matt /dev/sde
mkfs.vfat 2.11 (12 Mar 2005)
matt@Matt:~> sudo umount /dev/sde
umount: /dev/sde: not mounted
matt@Matt:~> sudo dd bs=4M if=/home/matt/Other/openSUSE-11.2-KDE4-LiveCD-x86_64-iso/openSUSE-11.2-KDE4-LiveCD-x86_64.iso of=/dev/sde
172+1 records in
172+1 records out
722468864 bytes (722 MB) copied, 214.466 s, 3.4 MB/s
matt@Matt:~> sync
matt@Matt:~> sync
matt@Matt:~> sync
And then if I plug it back into my PC it shows up as a “CDROM” device, and not a USB Device (Which I guess means it’s filesystem is now ISO9960 or whathaveyou.) So when I plug it into my laptop we’re back at square one, with it hanging on the BIOS screen.
The procedure is correct but you have to complete it with the rest of the steps. Please see the following link: Live USB stick - openSUSE
(You can have any kind of file system, including iso9660, on the stick (for that matter, on any media). It doesn’t have to be vfat!)
Unfortunately, I have to leave now. It is 2am here and I am already feeling very sleepy!
I am sure you will succeed with this and if you have any issues, others are alive here anyway. All the best.
I know that my bios will not read a flash drive. Now my computer is older than yours, but i don’t know how the bios on Acer works. I was also wondering if that acer is a netbook or a notebook?
It’s a notebook. It’s not super powerful, so I’d actually call it somewhere between a notebook and a netbook. But it does support booting from the USB Stick, as it’s in the BIOS.
Haha, yes, I did. It’s a brand new laptop. 4GB of DDR3 ram, 320GB HDD, Intel SU2700 proc. It’s not that that’s the problem, it’s the way my files are being arranged. (And I’m definitely NOT interested in Windows 7 :P)
Anyway, I’ve managed to get it to load the kernel, but then on the bootsplash screen it gives me the error that no CD-ROM/USB Devices are found, then it sets itself to reboot in 120seconds…
No I don’t. But I might have to pick up a cheap one if this keeps giving me headaches…
Anyway, I just don’t want Windows 7 for this PC. It’s not the most powerful machine, so I want to run Linux on it. I run Linux on everything, and (once it’s going) I never have any problems.
when you create the usb drive using dd I noticed that you did not use the direct device link.
You need to verify what device the usb drive is by doing
ll /dev/disk/by-id/usb
you will get output that has “-> …/…/sdb” or something similar the sdb part at the end is important because that is where you send the iso. If the output is like above (sdb) you would then
dd if=/path_to_openSUSE_112.iso of=dev/sdb bs=4M
the by-id is a sym link to the device file, not sure if that will have an effect, but dd to the device directly is probably important?