similar to: Detection of permission changes

Displaying 20 results from an estimated 1000 matches similar to: "Detection of permission changes"

2013 Sep 27
3
duda
#Imagino que hay un camino más corto para resolver mi duda #Adjunto unos datos en csv library (epicalc) #Gráficos exploratorios #este comando no se ejecuta porque no ve las variables summ(IMC, by=escolaridad ) ##?porqué no ve las variables? #tuve que hacer esto que me parece que se podría hacer de manera más sencilla IMC <- (sanda[,c(1)]) escolaridad <-
2013 Sep 27
1
RV: cronbach
rm(list = ls()) #borra todo lo anterior en memoria setwd("G:/Public/Documents/R/EPICALC/") #como se llama la data desde su path sanda<-read.csv("sandavid2.csv",header=TRUE, sep=",", dec=".") use(sanda) attach (sanda) library (MASS) label.cronbach <- label.var(p01, "¿Consume mucho pan? ") ####¿Hay alguna manera de nombrarlos
2013 Sep 27
2
RV: cronbach
¿existe algún método en el cual no sea necesario hacer este trabajo y que aparezcan los nombres de las preguntas? label.cronbach <- label.var(p01, "¿Le agrada el programa que se le ha mostrado? ") label.cronbach <- label.var(p02, "¿Cree que ayuda en el aprendizaje?") label.cronbach <- label.var(p03, "¿Propicia el trabajo en el equipo?") label.cronbach
2012 Jan 10
4
A small bug and a question about CONTEXT=SEARCH
Hi, I have been looking at search and sorting with dovecot and have run into some things. The first one I think may be a minor bug because a set of commands result in the socket connection being closed without warning: UID SEARCH RETURN (SAVE COUNT) CHARSET UTF-8 (UNDELETED TEXT "foo") UID SEARCH RETURN (COUNT MIN) CHARSET UTF-8 () $ The empty paranthesis before the
2013 Mar 19
1
unexpected 'reinitialize disk?' prompt form anaconda during kickstart with zerombr
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Anyone have any thoughts on why anaconda might be prompting me to reinitialize the disk during the kickstart of a Centos6.4 install on hyperV when a) the kickstart file contains "zerombr" as referred to in the installation guide[1] b) installation proceeds with no prompt on KVM hypervisors and succeeds? I have read the release notes[2]/tech
2012 Dec 09
3
IAX2 over OpenVPN connection.... working but
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 So a friend of mine and I setup a static key based point to point OpenVPN connection from my box to his for the express intent of carrying IAX traffic encrypted. His network on his lan is 172.30.1.0/24 and mine is 10.0.30.0/24. His PBX is located at 172.30.1.48 and mine is at 10.0.30.2. We had an existing working IAX trunk in place prior to the VPN,
2012 Jul 21
1
top on host and guest
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I have a 6.3 guest running on a 6.3 host and the output from top seems strange to me. At least I did not expect this. While in the guest on core is busy with i/o the host seems idle. Does anyone know why it is this way? See the output from top below, first the one from guest, then host. top - 14:12:35 up 12 min, 1 user, load average: 2.76,
2011 Feb 16
1
BIND 9.7.3 -- TCP DoS in SO_ACCEPTFILTER
The release notes for BIND 9.7.3 contain this: * A bug in NetBSD and FreeBSD kernels with SO_ACCEPTFILTER enabled allows for a TCP DoS attack. Until there is a kernel fix, ISC is disabling SO_ACCEPTFILTER support in BIND. [RT #22589] The CHANGES file also says: 2996. [security] Temporarily disable SO_ACCEPTFILTER support. [RT #22589]
2011 Aug 19
1
rsync'ing an rdiff-backup repository
I'm rsync'ing an rdiff-backup repository to a different machine and I have a few questions I'm hoping you guys can help me out with. Should I use --archive? Or maybe -rlD instead? Can I restrict an SSH key to rsync? I can do it with rdiff-backup with command="rdiff-backup --server" but I can't figure out how to do it with rsync. The rdiff-backup repository I'm
2011 Mar 14
3
any tutorial/how to for su-exec php under selinux on centos 5?
Hi, Any good tutorial how to setup su-exec php unders selinux on centos 5? -- Eero
2011 Jul 29
1
Using Dovecot with ZFS
Hi all, I'm testing Dovecot version 1.2.17 on FreeBSD 8.2-RELEASE using ZFS as filesystem. Searching on google I've ridden about some problem concerning indexes and mmap. I wold like to know if this problem persists on the latest releases. Thanks in advance. Roberto Giuliani.
2011 Aug 11
1
rsync, trailing slash, and --delete
I'm trying to rsync a folder like so - rsync -aP --delete /home/share_20110801 /lastbackup/ share Under the /lastbackup folder there is a "share" folder. I'd like to rsync all the contents of the "share _20110801" folder directly under the the "share" folder under /lastbackup. I know I can add the trailing slash to the source directory to accomplish this,
2011 Aug 20
1
Copying using a parallel directory.
I work at a remote site, and I often use rsync to copy Unix application directories from the corporate site, to my own. Often these directories are minor revisions of previous installations. (ie: /base/app/1.1, /base/app/1.2 /base/app/1.2.1 ) I can make a copy of the previous directory under the new name, and then do a checksum transfer, but that may waste a lot of time, up front, in
2011 Aug 24
1
--delete option
Hi all, I was wondering if it's possible to make the --delete option to not delete files that have been newly created on the destination site but which do not yet exist on the source side. However it should still delete files that did exist on the source side but were subsequently deleted. Many Thanks, Saman
2011 Sep 30
1
performance with huge files
Hi all, I'm working with some very large files, 500GB or thereabouts, using rsync 3.0.7. I'm not familiar with the internal operation of the rsync protocol, but I've read a few old posts that suggest there may be ways to improve performance. Can anyone give me pointers to config changes or patches that might help reduce the CPU burden when working with such large files ? Thanks in
2011 Oct 07
1
Permissions option
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, rsync v3.0.7 I am backing up data to a USB memory drive that is formatted FAT32, which does not comprehend linux permissions. I added the "--no-perms" option to the option set. rsync still attempts to change the permissions. OPTS = "--no-perms --archive --stats --delete --itemize-changes - --quiet
2011 Oct 21
1
With rsync --link-dest, is it possible to determine which files are new?
Hi, I posted the following question on Stack Overflow and got no response. I'm hoping this list might provide some answers. http://stackoverflow.com/q/7629550/597864 I'm using rsync --link-dest to differentially back up my computer every day. After each backup, I'd like to save out a log of the new/changed files and ignore the linked files. Is this possible? If so, how would I do
2012 Jan 01
1
rsync is skipping some files, permission problem
Hello! Happy New Year! I came across a small problem a few minutes ago while I was comparing a sync'ed folder to its source, the home-directory of my user, "administrator". I noticed that not all files had been copied and I recognized that the missing files/folders have permission rwx------ or drwx------ and are owned by administrator. My rsync script being run using sudo and I
2012 Feb 17
1
Just delete extraneous files, without updating other changes?
Hello all, I thought --recursive and --delete-before might be an option and I can quit rsync when it begins the updates, but the incremental recursive scanning is disabled and this will certainly crash rsync as it was before moving to v3.x (too many files). I have no experience with --write-batch but I wonder if it's safe/sane to edit the resulting batch output file, or by doing a
2012 Feb 26
1
Problem with excludes and includes
Hi Folks, I can't get the syntax of --include-from right, nothing at all gets transferred. The rsync command: # do the backup nice -n 15 rsync -av \ --include-from="/home/bob/backup_includes" \ --exclude-from="/home/bob/backup_excludes" \ $fromdir $todir The excludes file: .* *~ Videos/ Downloads/ Dropbox/ The includes file: .vimrc .gitconfig .bash_aliases .bashrc