Is there a way to back up and restore file ownership and permissions (the things that can be changed with chown and chmod)?
You can do this in Windows using icacls.
What about access control lists?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You can do this with the commands from the acl package (which should be available on all mainstream distributions, but might not be part of the base installation). They back up and restore ACL when ACL are present, but they also work for basic permissions even on systems that don’t support ACL.
To back up permissions in the current directory and its subdirectories recursively:
getfacl -R . >permissions.facl
To restore permissions:
setfacl --restore=permissions.facl
Method 2
I’m not aware of anything “off the shelf” that would do this. Here’s a starter script for you, though, that will handle basic permissions. It does not handle ACLs of any description – but your Question explicitly excludes those. (It will also fail on pathological filenames – those starting with whitespace, or containing non-printable characters.)
Save the permissions
find * -depth -exec stat --format '%a %u %g %n' {} + >/tmp/save-the-list
Restore the permissions
while read PERMS OWNER GROUP FILE
do
chmod "$PERMS" "$FILE"
chown "${OWNER}:${GROUP}" "$FILE"
done </tmp/save-the-list
Method 3
#!/bin/bash
# prepare files
home="/home/exchange"
cd $home
>acl
echo "#!/bin/bash">recovery_acl.sh
echo "cd $home">>recovery_acl.sh
f='./'
# create acl file sorted by dir_level
for i in `seq 0 15`;do
find . -mindepth $i -maxdepth $i -type d -exec getfacl {} +|grep -E '*UTS|file:'>>acl
done
sed -i 's/default:user/-dm u/g' acl
sed -i 's/default:group/-dm g/g' acl
sed -i 's/user/-m u/g' acl
sed -i 's/group/-m g/g' acl
sed -i 's/# file: /.//g' acl
sed -i 's,\,\\,g' acl
while IFS='' read -r line ; do
# grep dir name
if echo "$line" | grep -q "$f" ; then
dir="$line"
continue
fi
echo setfacl $line '"'$dir'"'>>recovery_acl.sh
# grep non def acl (for files)
if echo "$line" | grep -q '-m' ; then
echo setfacl $line '"'$dir'"'/*>>recovery_acl.sh
fi
done < "acl"
sed -i "s/\134/\\\134/g" recovery_acl.sh
sed -i "s/\40/\\ /g" recovery_acl.sh
This bash script get acl only dirs (in my case files acls = dir(parent) acl )
After execution of script, will creating another “recovery_acl.sh”.
While recovering Errors like “No such file or directory” means that dir is empty or dirname has two/more spaces together.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0