LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Distributions (https://www.linuxquestions.org/questions/linux-distributions-5/)
-   -   "missing operating system" when trying to boot Chromium OS from USB (https://www.linuxquestions.org/questions/linux-distributions-5/missing-operating-system-when-trying-to-boot-chromium-os-from-usb-771825/)

littlegreywings 11-26-2009 10:48 PM

"missing operating system" when trying to boot Chromium OS from USB
 
I've followed Hexxeh's instructions (see links) on how to get his build onto a USB thumb drive, but I get the error, "missing operating system" upon booting from it.

I've tried flagging it "boot" in gparted, unncompressing the .tar.gr it multiple times (in case of corruption), using multiple, brand-new thumb drives, using UNetbootin, etc, etc.

It's a .img file, and I know it's worked for others with the same hardware (apart from USB thumb stick brand).

Are some thumb drives just not bootable?

Any advice highly appreciated.

Links:
http://carbon.hexxeh.net/chromiumos/
http://carbon.hexxeh.net/chromiumos/linux.txt
http://www.makeuseof.com/tag/downloa...real-computer/

linus72 11-27-2009 05:41 AM

And you did "dd" it onto the USB right?

Have you looked to see whats on the USB?

littlegreywings 11-27-2009 01:47 PM

Quote:

Originally Posted by linus72 (Post 3771248)
And you did "dd" it onto the USB right?

Have you looked to see whats on the USB?


Yepp, that's what I did. I cannot browse to the USB drive, but opening up gparted shows it as "unknown" filesystem. I also tried dcfldd.

Today I also tried downloading the file again, but the result is the same.

Here's proof that it should work on my netbook just fine:

http://digiex.net/computer-discussio...-msi-wind.html

linus72 11-27-2009 05:59 PM

I would suggest you imitate whats going on in regards to dd'ing the .img to USB
Meaning; mount the .img file and copy its contents to your USB in lieu of actually doing the dd process

I dont prefer to dd my usb just to test a distro, so I mount the .img and copy it to a folder(to check it out)
or directly to USB.

I'm assuming Chromium OS is a Debian based system or no??

For example; earlier I downloaded UNR (ubuntu-netbook-remix), which is a .img file made to be dd'd
to USB

Because I often test distro's from my 2 usb's, I dont want to dd anything
as I will have to reformat it later

So, I mount the .img file and copy to folder or usb:
cd into the folder wherever the .img is
assuming its on Desktop, and folder name is "newusb"
become root too:

Code:

cd Desktop/newusb
for me, UNR.img is in the newusb folder
so gotta make a folder to mount the .img on, any name is good
I'll use "mnt"
and a folder to copy the contents of .img file to
I'll name that folder "copy"
Code:

mkdir mnt
mkdir copy

Now mount the .img file on "mnt" folder
and copy to "copy" folder
Code:

mount -o loop ubuntu-9.04-netbook-remix-i386.img mnt
Code:

cp -a mnt/* copy
there may be a hidden file/folder in there too so make sure to copy any of those too
Code:

cp -a mnt/.* copy
Now, unmount the folder mnt and see whats in the "copy" folder
Code:

umount mnt
Your USB needs to be reformatted
and fixed before you do anything

linus72 11-27-2009 08:13 PM

Please see this post littlegreywings
http://www.linuxquestions.org/questi...please-772014/

littlegreywings 11-27-2009 08:48 PM

Quote:

Originally Posted by linus72 (Post 3771882)
I would suggest you imitate whats going on in regards to dd'ing the .img to USB
Meaning; mount the .img file and copy its contents to your USB in lieu of actually doing the dd process

...

Thanks a lot for your reply, but I get the message

Code:

mount: you must specify the filesystem type
I've tried adding "-t ntfs", "ext3" and "ext2", but no joy.

linus72 11-27-2009 08:50 PM

I got it
read the final post in that other thread

I also just installed chromiumos.img to a qemu-img
and am trying to get it to boot...

You want portable-qemu to check it out?

littlegreywings 11-28-2009 05:27 PM

Quote:

Originally Posted by linus72 (Post 3771949)
I got it
read the final post in that other thread

I also just installed chromiumos.img to a qemu-img
and am trying to get it to boot...

You want portable-qemu to check it out?

Hi, thanks again for your help.

I followed your instructions and mounted the 2 partitions. I created two partitions on my usb, one ext3 and one ntfs. I moved the files from the on mounted partition to the ext3 partition on my USB drive and gave it the boot flag in gparted. But when I boot from it it still says missing operating system. Are the other two partitions needed?

Also, I'd still like to know why the dd method works for everyone but me.

As for the qemu, I'm not really sure what the has to do with this, but thanks.

littlegreywings 12-01-2009 11:52 PM

The problem was that I did

Code:

sudo dd if=chromium.img of=/dev/sdc1 bs=4M
instead of

Code:

sudo dd if=chromium.img of=/dev/sdc bs=4M


All times are GMT -5. The time now is 05:48 PM.