Plaatsingsdatum: Oct 15, 2010 1:25:53 PM
To find files that contain exented attributed: find / -xattr -print
To list the attributes : runat <filename> ls -l
To remove the attribute : runat <filename> rm <attribute>
Script to remove all extended attributes:
!/usr/bin/ksh
REmoving xattributes
cd
for i in `find / -xattr -print`
do
runat $i rm SUNWattr_ro SUNWattr_rw
done