Michael Müller wrote: > Now the question is if it is a perl or a JFS problem. I have no free > partition to check it with different read-only mounted filesystems to > find out if JFS behaves the same.
Not sure who is to blame, but maybe perl only looks at the file permission flags, not how the file-system is mounted: mount -o ro /dev/sda1 /mnt pl1:/mnt # ls -l /mnt total 0 drwxr-xr-x 6 root root 32 Apr 25 09:22 stress pl1:/mnt # touch stress/klop touch: cannot touch `stress/klop': Read-only file system pl1:/mnt # perl -e 'my $dir="/mnt/stress"; -d $dir && -w $dir && print "writable\n"' writable /Per Jessen, Zürich ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642 _______________________________________________ Jfs-discussion mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jfs-discussion
