|
|
|
|
|
|
|
|
|
|
xen-users
[Xen-users] DomU boot EXT2-fs warning question
I'm new to Xen-users, not sure if I'm sending this to the right place...
Re: [Xen-users] DomU boot EXT2-fs warning question
> Simon wrote:
> > Hi There, We have a debian domU that is using LVM-backed VBD's as
> > drives. When i formatted the LVM partitions, im pretty(!) sure that i
> > formatted them as ext3 drives. They mount OK as a ext3 drive under the
> > dom0... but when booting the domU, i get this:
> >
> > EXT2-fs warning (device hda1): ext2_fill_super: mounting ext3 filesystem
as
> > ext2
> > VFS: Mounted root (ext2 filesystem).
> >
> > Still works OK tho. Any ideas?
> >
> > Simon
> >
>
> Does it say ext3 or ext2 in /etc/fstab?
/dev/hda1 / ext3 defaults,errors=remount-ro 0 1
Any more thoughts here?
Simon
**********************************
I had the same warning message...
turned out my kernel was compiled with EXT3 as a module.
Check the config file for your kernel, eg. cd to your kernel sources dir,
usually /usr/src/linux
type:> grep -in ext3 .config
if the result looks something like this...
2140:CONFIG_EXT3_FS=m
it means support for file system type EXT3 has been compiled as a module (m)
The root file system (/) must be mounted before any modules can be loaded,
so (/) will be mounted as ext2 even if it's ext3, because ext3 support is
not available until the module is loaded.
You need to reconfigure the kernel (eg. make xconfig),
select (y) for EXT3 under "File systems" and then recompile.
Now "grep -in ext3 .config" should return something like this...
2135:CONFIG_EXT3_FS=y
Hope this helps solve your problem.
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|