Displaying 5 results from an estimated 5 matches for "rltp".
Did you mean:
ltp
2011 Sep 15
1
Group "None" after synching to a windows machine?
...are all in
group policy keys like:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group
Policy\GroupMembership]
"Group0"="S-1-5-21-3080689651-386630603-1536007245-513"
The source permissions for that file are:
Everyone with full control
My rsync options are: -v -rltp -z -P -h
but I tried -a | or -rlt (instead of the -rltp) as well but the results for
this "None" entry didn't change.
Google stated that it was possible (a few years ago) to use SET
CYGWIN=nontsec to avoid such a behavior but this seems deprecated.
Any hints how I can avoid the addi...
2009 Mar 31
2
Help With File transfer of files named "Apple*" + Lacie 5Big RAID
...1
if [ -d /Volumes/Backup ]
then
umount "/Volumes/Backup"
sleep 2
fi
if [ ! -d /Volumes/Backup ]
then
mkdir /Volumes/Backup
mount_afp afp://backup:backup@stBackup.example.com/Backup /Volumes/
Backup
fi
mkdir -p /Volumes/Backup/Staff_Backup
date=`date "+%Y-%m-%d"`
rsync -rltP --exclude-from /main_backup_excludes.txt --link-dest=/
Volumes/Backup/Staff_Backup/current /Volumes/st1/Staff/ /Volumes/
Backup/Staff_Backup/back-$date
rm /Volumes/Backup/Staff_Backup/current
ln -s /Volumes/Backup/Staff_Backup/back-$date /Volumes/Backup/
Staff_Backup/current
--------------------...
2023 Mar 28
1
windows acls
On 28/03/2023 21:33, Peter Carlson via samba wrote:
>>
> root at filesvr:/data# mkdir Accounting2
> root at filesvr:/data# chmod 0770 Accounting2
> root at filesvr:/data# chown root:"SDCP\\domain admins" Accounting2
> root at filesvr:/data# smbcontrol all reload-config
>
> on Windows, Computer Management, connect to remote server, System
> Tools->Shared
2011 Aug 02
2
[Bug 8342] New: rsync can't handle populate dirs without u+rx permissions
...ssible to end up
wanting to transfer directories with 'strange' permissions. At present, it the
destination doesn't have root access too, these directories cannot be
populated.
For example:
# mkdir source
# mkdir source/dir
# touch source/dir/file
# chmod 400 source/dir
# sudo rsync -rltp source user at host:destination
rsync: recv_generator: failed to stat ".../destination/source/dir/file":
Permission denied (13)
In order to create files in a directory without root, it needs to have u=rwx
permissions. There is currently a workaround to temporarily add u+w write
permissi...
2009 Mar 19
4
DO NOT REPLY [Bug 6197] New: Perms/owner/group modifiers for "show" filters
...table exception, the /private dir is 711. I applied the desired permissions
manually, but I want to make sure they don't get messed up. With this
enhancement, I could add p(...) modifiers to the rsync filters to have it apply
the permissions automatically on every build. For example:
rsync -rltp --filter='Sp(u=rwX,go=X) /private' --filter='Sp(u=rwX,go=rX) *' \
build/ /var/www/html/
More generally, this enhancement could be used to implement any "make
install"-like step with a single rsync run, which I feel would be a significant
advance over install(1). With...