Subject: | /path does not contain |
/path does not contain /home/thelma/mp01/foo at
/usr/local/lib/perl5/site_perl/5.8.7/File/Attribute.pm line 123.
ls of /home/thelma/mp01/foo shows that the file is there
ls -ali of home/thelma/mp01/foo shows:
302261 -rwxrwxrwx 1 nobody nobody 0 Jan 19 09:15 /home/thelma/mp01/foo
mount | grep mp01 shows:
172.23.100.142:/vol/v0l_stuff on /home/thelma/mp01 type nfs4
(rw,addr=172.23.100.142)
Note the type of mnfs4.
The OS is fedora core 4 (linux kernal 2.6) and was update today.
Subject: | telnet_to_trenton_c.pl |
#!/usr/local/bin/perl -w
use File::Attribute;
#
# First we unmount the ~/mp02 file system.
#
`umount /home/thelma/mp01`;
#
# (Will need to add a check at some point in the development process to
# assure that the file system was unmounted. But, for now ...)
#
# We mount the flex volume to the ~/mp02 mount point as nfs vers4
#
`mount -t nfs4 172.23.100.142:/vol/v0l_stuff /home/thelma/mp01`;
#
# Try for the change of attributes.
#
my $lang = read_attribute({path=>'/home/thelma/mp01/foo',
attribute=>"language",
top=>"/path"} ) ;