On 07/04/2010 06:56 PM, Saxon Landers wrote:
no, it isnt, i checked. everything is mounted as sdb, without a
partition number (i have checked dmesg and df, both give the same answer)
What's "the same answer?" Can you post the results of df?
List of all partitions:
0800 321571224 sda driver: sd
0801 1228800 sda1
0802 211340376 sda2
0b00 1048575 sr0 driver: sr
No filesystem could mount root, tried: ext3 vfat msdos iso9660
Kernal Panic - not syncing VFS: unable to mount root fs on
unknown-block(8,0)
Pid: 1, comm: swapper not tainted 2.6.32.8 #1
call trace:
[<ffffffff8150bf40>]panic+0x75/0x123
[<ffffffff81855122>]mount_block_root+0x1ce/0x1e5
[<ffffffff818551a4>]mount_root+0x6b/0x86
[<ffffffff81855334>]prepare_namespace+0x170/0x19d
[<ffffffff818546ac>]kernal_init+0x19f/0x1af
[<ffffffff8100ca1a>]child_rip+0xa/0x20
[<ffffffff8185450d>]? kernal_init+0x0/0x1af
[<ffffffff8100ca10>]? child_rip+0x0/0x20
In my memory, when I got messages like this I didn't have the partition
or the drive names properly. If you post the results of `df`, we can
see what sda[1,2] are. In Ubuntu, run `mtab` and see what is mounted.
If you post those results, please indicate which is your "sdb."
The easiest thing to do is to in Ubuntu `System --> Administration -->
Disk Utility` and set up a partition on your sdb. This may involve a
format command which would wipe everything out. Back it up first!
There's an easy way to do that. Make a directory in Ubuntu with enough
space to hold your LFS system. Then use `find` piped to `cpio` Let's
say you call the directory in Ubuntu ~/backup--in your home directory.
Here's the sequence:
mkdir ~/backup
cd <to whatever your sdb is>
find ./ -xdev -print0 | cpio -pa0v ~/backup
find runs through your sdb and ignores other filesystems--<-xdev>--and
passes what it finds to cpio which just "passes them through" preserving
all permissions, symlinks and other stuff.
After you've set up the sdb you can run the "find | cpio" combination
again from ~/backup to what ever the new thing is-- /dev/something
Good luck.
Dan
--
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page