similar to: replacing permissions on uploaded windows files

Displaying 20 results from an estimated 10000 matches similar to: "replacing permissions on uploaded windows files"

2009 Oct 05
2
gnu --target-dir, how to fake with rsync?
Is this in rsync and I just can't find it, or if not, is there a way to fake this OR, third possibility, is anyone working to add it? For those who've never used this option - for the GNU cp & mv type commands they have the --target-dir="dir" option. It lets you put the destination directory as the first argument to cp and mv instead of the last argument. They added the
2011 Feb 24
4
ls returns file doesn't exist, find finds it??
Howdy, I am getting some errors with find and ls command - such that find is able to see a file whereas ls says the file doesn't exist. Initially I was trying find and ls together as: # find ./ -type f -mtime +15 | xargs ls Similar behavior is seen even when I execute both commands separately. Any thoughts on what might be wrong here? -- thanks, neubyr
2006 Jan 13
2
"find" statement: 64bit related??
hi! 3 machines all run this same test script. 2 -i386, 1 x-64bit machine. this line: if find / -mount -type f -mtime -1 -print0 | xargs -0 clamscan -l \ $CLAMDAILY $CLAMEXCLUDES -r --no-summary | cut -d: -f1 > $CHANGEDLOG; \ then the $CHANGEDLOG file... on the 32 bit boxes...oh, probably 220 files. On the 64bit box 177,999 files lol (Centos 64bit w/everything installed)! it seems to me
2015 Mar 20
1
Centos 6: setfacl: .: Argument list too long
On 20.03.2015 02:14, muiz wrote: > Dear all, > > > I have a Centos 6 (64bit) server used for samba and ACL control. > There has a folder which a lot of user can access, when I add a new user's ACL, but failed, do you know how to resolve this problem? use xargs like in: |find . -name "*.pdf" -print0 | xargs -0 RUNACOMMAND robert | > > > [root at s1
2007 Mar 23
2
Command not running in crontab
Hi, Can anoyone tell me why this command is not executed (or it is without success) from crontab, but works perfectly from the command line ? (yes, i've restarted crontab service) # clean up postmaster 00 30 * * * root /usr/bin/find /var/qmail/maildirs/postmaster at telbit.pt/Maildir/new -type f -print0 | xargs -0 -n 50 rm The mind boggles... Any help would be appreciated. Warm
2007 Nov 20
2
manipulating files and directories with spaces
Hi, This might be a little O.t. so private responses please. I've got apache and samba running on a CentOS5 box enabling windows users to add web content. My issue is i've had to restore some backup data that was previously archived. The permissions aren't matching up so i'm wanting to use find and xargs to change them appropriately. Normally i do: find . -type type
2014 Feb 11
2
Public folder doesn't work
Hey, I have some issues with dovecot, because the public folder won't show up in Mail accounts. Dovecot is installed via zentyal 3.3. I tried several settings, but I dont get it running. What I tried is adding this to my dovecot.conf file # User's private mail location mail_location = maildir:~/Maildir # When creating any namespaces, you must also have a private namespace: namespace {
2006 Aug 22
1
rsync performance
We're using rsync 2.6.3 to sync two DELL PowerEdge servers with both Redhat-EL4 and otherwise nearly identical hardware (2.8/3GHz, 1GB RAM each). The source machine has a SCSI-RAID1, the destination a SATA-RAID1 disk attached. There are 5 filesystems which are rsynced via ssh. On the smaller filesystems with ~200.000 files/7GB, rsync takes 1-3 minutes: lion:/atg/ ========= Tue Aug 22
2002 Oct 10
1
Specific directory permissions
I need a quick rundown on creating directories that get group access. I have a folder that I want everyone in the blswin32 group to be able to read and write. I set force group to blswin32 for the samba share, but it still gives me a n error opening the database. It is because I don't have read and write access to the database file. What settings do I need to make to get this to work
2011 Aug 03
1
PDC forgot it was part of domain... "official" (ha!) samba hack around to fix...
Among various problems since I upgraded to 3.6 (none of which got answered really, -- so I backgraded to 3.5.10 and started debugging from there, considering 3.6.0 too unstable/too incompatible for 'whatever' reason... One of the probs I had was 'root' couldn't use "net rpc" <anything> -- kept getting auth failures. Wasn't the passwd, -- could reset it via
2009 Mar 10
4
rm user:group
I want to remove files but only if they are owned by a certain user and group. Basically I have this: find /var/spool/greylist -mmin +363 -exec rm -f {} \; I want to make sure it only deletes files owned by mail. Basically no matter what weird characters are in the file names I want to make sure it does not delete anything outside of /var/spool/greylist. I can add 'sudo -u' to it but
2015 Feb 04
3
Resubmission after N days
Am 04.02.2015 um 07:49 schrieb Steffen Kaiser: > On Wed, 4 Feb 2015, Thomas G?ttler wrote: > >> I would like to implement a 43Folder system[1] with dovecot and a mail user agent. > >> Use case: > >> - I have a new mail in my inbox. I read it and see that I can't handle it now. I want to handle this mail in 5 days. >> - Now I want to have some sort of
2011 Apr 02
3
Trouble with 2.0.11 debian package
I wonder if somebody could help me. If I try clean install of dovecot-common dovecot-imapd dovecot-pop3d from deb http://xi.rename-it.nl/debian stable-auto/dovecot-2.0 main I got: Starting IMAP/POP3 mail server: dovecotdoveconf: Fatal: Error in configuration file /etc/dovecot/dovecot.conf: service(managesieve-login): executable is empty failed! Setting up dovecot-imapd
2006 Jun 22
9
OT -- BASH
Can someone explain why this: find . -depth -print0 | cpio --null -pmd /tmp/test will copy all files in and below the current directory -and- this: find . -depth -print | grep -v .iso$ | wc -l will count all the non-iso files -and- this: find . -depth -print | grep .iso$ | wc -l will count *only* the iso files -but- this: find . -depth -print0 | grep -v .iso$ | cpio --null -pmd /tmp/test
2006 Aug 03
2
(no subject)
On Thu, August 3, 2006 15:28, David Jonas wrote: > On Thu, 2006-08-03 at 15:07 -0400, Scott Zahn wrote: >> Hey everyone, I'm trying version 1.0rc2, via the rpm at ATrpms. I'm running on CentOS >> 4.3 on an Opteron system. I have this running stably on a 32 bit system, but I'm >> crashing constantly on a 64 bit system. >> >> Here's what I'm
2008 Jun 09
4
Copying files from specific date.
Dear all, Does anyone aware of any utility to copy files which are created or modify form a specific date ?. Thanks Rajeev R. Veedu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20080609/ae761b2c/attachment-0002.html>
2004 Oct 12
2
vorbis 1.1.0
Good day. I don't know if anyone cares, but I just noticed the new vorbis 1.1.0 isn't showing itself to be 1.1.0 in the created streams. The previous releases did: $ find -name "*.ogg" -print0 | xargs -0 ogginfo | grep ^Vendor | sort | uniq Vendor: Xiph.Org libVorbis I 20020717 (1.0) Vendor: Xiph.Org libVorbis I 20030909 (1.0.1) Vendor: Xiph.Org libVorbis I 20040629 That
2005 Aug 12
4
Remote archiving with tar over ssh
I am trying to create a one line command that will: 1. Find all files ending in .conf 2. tar these over ssh to a remote server. I have reached this point in my trials. a. I can find the files. b. I can tar them locally. c. I can get a simple fileset tar'ed to a remote server over ssh using tar -zvcf - /some/fileset | ssh host.domain.tld "cat > /backup/tarfile.tar.gz d. I cannot
2008 Dec 01
4
chmod for directories only
I want to change the permissions on directories, recursively to: drwxr-xr-x but keep the files within the directory tree as: -rw-r--r-- But I can't find an option for chmod to only affect directories. I suppose it won't hurt (in this case) to set the x for the files, but I want some consistancy.
2011 Mar 24
1
2.6.38 defragment compression oops...
I found that I''m able to provoke undefined behaviour with 2.6.38 with extent defragmenting + recompression, eg: mkfs.btrfs /dev/sdb mount /dev/sdb /mnt cp -xa / /mnt find /mnt -print0 | xargs -0 btrfs filesystem defragment -vc After a short time, I was seeing what looked like a secondary effect [1]. Reproducing with lock instrumentation reported recursive spinlock acquisition, probably