On Mon Mar 24 09:26:17 2008, eszett wrote:
Show quoted text> trying install with
> cpan> install File::ExtAttr
> I got errors
> failed: Operation not supported - perhaps the extended attribute's name
> needs a "user." prefix? at
> /home/user/.cpan/build/File-ExtAttr-1.07/blib/lib/File/ExtAttr.pm line
266.
Show quoted text>
> Perl v5.8.8 built for i486-linux-gnu-thread-multi
> Linux ubuntu 2.6.22-14-generic
This isn't the build failing. This is the test suite failing. The test
suite currently assumes that it can set extended attributes on the
filesystem. This is a bug in the test suite -- it should check whether
it can create extended attributes and SKIP the tests if it can't.
Perhaps there is a way of getting "cpan install" to skip the test suite?
Another option is to mount with the user_xattr option. You would need to
mount the filesystem containing /home/user with this option. You can
either edit /etc/fstab to make that change permanently, or make it
temporarily by remounting with -o user_xattr (e.g.: mount -o
remount,user_xattr /home/user).