Re: [lfs-support] EXT3-fs (sda4): error: couldn't mount because of unsupported optional features (240) , during kernel boot

2014-04-04 Thread akhiezer
 From lfs-support-boun...@linuxfromscratch.org Fri Apr  4 15:34:19 2014
 Date: Fri, 4 Apr 2014 07:31:51 -0700 (PDT)
 From: Golam Md. Shibly shiblyd...@yahoo.com
 To: lfs-support@linuxfromscratch.org lfs-support@linuxfromscratch.org
 Subject: [lfs-support] EXT3-fs (sda4): error: couldn't mount because of
   unsupported optional features (240) , during kernel boot



 Hi,

 EXT3-fs (sda4): error: couldn't mount because of unsupported optional 
 features (240)
 EXT4-fs (sda4): couldn't mount as ext2 due to feature incompatibilities

 What can be the reason for this error?



Usually it's when you've used create-filesystem flags that conflict with
how you're wanting to mount the filesystem.


What filesystem type/format do you _think_ should be on /dev/sda4 ?

How did you create that filesystem: with a gui, or command-line; and did
you use any 'extra', non-default options?


And how are you trying to mount the filesystem: e.g. what is in your
/etc/fstab for /dev/sda4 ?


Does the log give any indication, nearby to the above lines that you post,
of what the conflicting features are?



rgds,
akh




 Answers will be appreciated.

 Thanks.


--
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page


Re: [lfs-support] EXT3-fs (sda4): error: couldn't mount because of unsupported optional features (240) , during kernel boot

2014-04-04 Thread akhiezer
 Date: Fri, 04 Apr 2014 15:44:18 +0100
 From: lf...@cruziero.com (akhiezer)
 To: LFS Support List lfs-support@linuxfromscratch.org
 Subject: Re: [lfs-support] EXT3-fs (sda4): error: couldn't mount because of
  unsupported optional features (240) , during kernel boot

  From lfs-support-boun...@linuxfromscratch.org Fri Apr  4 15:34:19 2014
  Date: Fri, 4 Apr 2014 07:31:51 -0700 (PDT)
  From: Golam Md. Shibly shiblyd...@yahoo.com
  To: lfs-support@linuxfromscratch.org lfs-support@linuxfromscratch.org
  Subject: [lfs-support] EXT3-fs (sda4): error: couldn't mount because of
  unsupported optional features (240) , during kernel boot
 
 
 
  Hi,
 
  EXT3-fs (sda4): error: couldn't mount because of unsupported optional 
  features (240)
  EXT4-fs (sda4): couldn't mount as ext2 due to feature incompatibilities
 
  What can be the reason for this error?
 


 Usually it's when you've used create-filesystem flags that conflict with
 how you're wanting to mount the filesystem.


 What filesystem type/format do you _think_ should be on /dev/sda4 ?

 How did you create that filesystem: with a gui, or command-line; and did
 you use any 'extra', non-default options?


 And how are you trying to mount the filesystem: e.g. what is in your
 /etc/fstab for /dev/sda4 ?


 Does the log give any indication, nearby to the above lines that you post,
 of what the conflicting features are?



 - sorry, meant to add, that you might want to look at your grub/lilo config
 in case it's specifying wrong fstype, or picking up a default that you'll
 need to override with 'rootfstype=...' or similar.


akh.





--
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page


Re: [lfs-support] EXT3-fs (sda4): error: couldn't mount because of unsupported optional features (240) , during kernel boot

2014-04-04 Thread Ken Moffat
On Fri, Apr 04, 2014 at 07:31:51AM -0700, Golam Md. Shibly wrote:
 Hi,
 
 EXT3-fs (sda4): error: couldn't mount because of unsupported optional 
 features (240)
 EXT4-fs (sda4): couldn't mount as ext2 due to feature incompatibilities
 
 What can be the reason for this error?
 
 
 Answers will be appreciated.
 
 Thanks.

 This looks perfectly normal.  There is a kernel option to allow
ext4 to handle ext2 and ext3 filesystems.  I think you probably made
an ext4 filesystem on sda4, and after this it should get mounted as
ext4.  I see something like these messages on every boot.

 So, do you have a problem [ i.e. it failed to boot ] or are you
just concerned about reported errors ?

ĸen
-- 
das eine Mal als Tragödie, dieses Mal als Farce
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page


Re: [lfs-support] EXT3-fs (sda4): error: couldn't mount because of unsupported optional features (240) , during kernel boot

2014-04-04 Thread Golam Md. Shibly
cat /etc/fstab =
# Begin /etc/fstab

# file system  mount-point  type options dump  fsck
#  order

/dev/sda4  /    ext4 defaults    1 1
/dev/sda6  swap swap pri=1   0 0
proc   /proc    proc nosuid,noexec,nodev 0 0
sysfs  /sys sysfs    nosuid,noexec,nodev 0 0
devpts /dev/pts devpts   gid=5,mode=620  0 0
tmpfs  /run tmpfs    defaults    0 0
devtmpfs   /dev devtmpfs mode=0755,nosuid    0 0


On Friday, April 4, 2014 9:39 PM, Ken Moffat zarniwh...@ntlworld.com wrote:
 
On Fri, Apr 04, 2014 at 07:31:51AM -0700, Golam Md. Shibly wrote:

 Hi,
 
 EXT3-fs (sda4): error: couldn't mount because of unsupported optional 
 features (240)
 EXT4-fs (sda4): couldn't mount as ext2 due to feature incompatibilities
 
 What can be the reason for this error?
 
 
 Answers will be appreciated.
 
 Thanks.

This looks perfectly normal.  There is a kernel option to allow
ext4 to handle ext2 and ext3 filesystems.  I think you probably made
an ext4 filesystem on sda4, and after this it should get mounted as
ext4.  I see something like these messages on every boot.

So, do you have a problem [ i.e. it failed to boot ] or are you
just concerned about reported errors ?

ĸen
-- 
das eine Mal als Tragödie, dieses Mal als Farce
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page


Re: [lfs-support] EXT3-fs (sda4): error: couldn't mount because of unsupported optional features (240) , during kernel boot

2014-04-04 Thread akhiezer
 Date: Fri, 4 Apr 2014 16:39:19 +0100
 From: Ken Moffat zarniwh...@ntlworld.com
 To: LFS Support List lfs-support@linuxfromscratch.org
 Subject: Re: [lfs-support] EXT3-fs (sda4): error: couldn't mount because of
  unsupported optional features (240) , during kernel boot

 On Fri, Apr 04, 2014 at 07:31:51AM -0700, Golam Md. Shibly wrote:
  Hi,
  
  EXT3-fs (sda4): error: couldn't mount because of unsupported optional 
  features (240)
  EXT4-fs (sda4): couldn't mount as ext2 due to feature incompatibilities
  
  What can be the reason for this error?
  
  
  Answers will be appreciated.
  
  Thanks.

  This looks perfectly normal.  There is a kernel option to allow
 ext4 to handle ext2 and ext3 filesystems.  I think you probably made
 an ext4 filesystem on sda4, and after this it should get mounted as
 ext4.  I see something like these messages on every boot.


(( - thought you didn't like auto - at least automounting - stuff being
done to your disks? ;)  Why let it d*ck about when you can tell it, it's $__.
 ))



  So, do you have a problem [ i.e. it failed to boot ] or are you
 just concerned about reported errors ?

 ??en


--
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page


Re: [lfs-support] EXT3-fs (sda4): error: couldn't mount because of unsupported optional features (240) , during kernel boot

2014-04-04 Thread Ken Moffat
On Fri, Apr 04, 2014 at 09:01:56AM -0700, Golam Md. Shibly wrote:
 cat /etc/fstab =
 # Begin /etc/fstab
 
 # file system  mount-point  type options dump  fsck
 #  order
 
 /dev/sda4  /    ext4 defaults    1 1
[...]
 
 On Friday, April 4, 2014 9:39 PM, Ken Moffat zarniwh...@ntlworld.com wrote:
  
 So, do you have a problem [ i.e. it failed to boot ] or are you
 just concerned about reported errors ?
 
 You didn't answer the question, so I assume you are just concerned
about reported errors.  You seem to have been able to log in to the
LFS system to run that 'cat'.  So this is nothing to worry
about.

ĸen
-- 
das eine Mal als Tragödie, dieses Mal als Farce
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page