LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions
User Name
Password
Linux - Distributions This forum is for Distribution specific questions.
Red Hat, Slackware, Debian, Novell, LFS, Mandriva, Ubuntu, Fedora - the list goes on and on... Note: An (*) indicates there is no official participation from that distribution here at LQ.

Notices


Reply
  Search this Thread
Old 11-26-2009, 10:48 PM   #1
littlegreywings
LQ Newbie
 
Registered: Aug 2008
Posts: 11

Rep: Reputation: 0
Question "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/
 
Old 11-27-2009, 05:41 AM   #2
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
And you did "dd" it onto the USB right?

Have you looked to see whats on the USB?
 
Old 11-27-2009, 01:47 PM   #3
littlegreywings
LQ Newbie
 
Registered: Aug 2008
Posts: 11

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by linus72 View Post
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
 
Old 11-27-2009, 05:59 PM   #4
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
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
 
Old 11-27-2009, 08:13 PM   #5
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Please see this post littlegreywings
http://www.linuxquestions.org/questi...please-772014/
 
Old 11-27-2009, 08:48 PM   #6
littlegreywings
LQ Newbie
 
Registered: Aug 2008
Posts: 11

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by linus72 View Post
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.
 
Old 11-27-2009, 08:50 PM   #7
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
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?
 
Old 11-28-2009, 05:27 PM   #8
littlegreywings
LQ Newbie
 
Registered: Aug 2008
Posts: 11

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by linus72 View Post
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.
 
Old 12-01-2009, 11:52 PM   #9
littlegreywings
LQ Newbie
 
Registered: Aug 2008
Posts: 11

Original Poster
Rep: Reputation: 0
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
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Dell 2950 w/ RHEL 5u3, "Missing Operating System" after OS load leepic Linux - Server 10 09-24-2009 10:41 AM
[SOLVED] Fedora Live USB Creator Question: Error comes up: "Missing Operating System" FedoraLinuxLover Linux - Laptop and Netbook 59 07-20-2009 02:56 PM
changed bios to USB hard drive as #1 option - boots "Missing operating system" Elendrael Linux - Newbie 4 09-12-2007 08:48 PM
error during Ubuntu install, now says "Missing Operating System" DJGCrusader Linux - Newbie 6 08-11-2007 07:12 PM
Booting from USB ExHD - "Missing Operating System" onethirteenmain Linux - Laptop and Netbook 1 06-11-2007 01:49 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions

All times are GMT -5. The time now is 11:07 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration