similar to: [Bug 11523] New: Request: Add option to unlink hard links when permissions change

Displaying 20 results from an estimated 30000 matches similar to: "[Bug 11523] New: Request: Add option to unlink hard links when permissions change"

2015 Sep 21
0
[Bug 11523] New: Request: Add option to unlink hard links when permissions change
Folks, bugs at stupidkitties.com wrote: " I was wondering if it'd be feasible to add an option (or multiple options, depending on the desired granularity) to cause rsync to treat changes in file attributes the same way it treats changes to the file's contents when it encounters hard links at the destination. Maybe something like --relink-p or something?" One of colleagues has
2009 Mar 21
1
unlink fails to remove symbolic links
unlink fails to remove symbolic links. This is more prominent now -- when a package creates symbolic links during installation, 00LOCK is not removed. Martin > setwd(tempdir()) > fl <- tempfile(); file.create(fl) [1] TRUE > lnFile <- tempfile(); system(paste("ln -s", fl, lnFile)) > list.files() [1] "file19495cff" "file74b0dc51" > unlink(fl);
2010 Jun 11
1
hardlink unlink-before-save?
Hello list On my server almost half of files are duplicated, and there are almost 100GB of data which is growing fast. I'm using weekly script to find duplicated files and replace them with hardlinks. Everything is fine as long as users aren't trying to edit and save some documents which have hardlinks. With samba 3.3 it seems that hardlinks aren't unlinked before file is saved.
2000 Dec 20
0
unlink() is not synchronized with existing connections (PR#785)
On Wed, 20 Dec 2000 joehl@web.de wrote: > > # creating a file > > cat("sddfasdf", file="tempfile") > > showConnections() > class description mode text isopen can read can write > > con <- file("tempfile", "r") > > readLines(con) > [1] "sddfasdf" > Warning message: > incomplete final line in:
2019 Sep 06
3
[Bug 3067] New: Fails to unlink ControlMaster socket early enough, confuses other clients
https://bugzilla.mindrot.org/show_bug.cgi?id=3067 Bug ID: 3067 Summary: Fails to unlink ControlMaster socket early enough, confuses other clients Product: Portable OpenSSH Version: 7.9p1 Hardware: Other OS: Linux Status: NEW Severity: normal Priority: P5 Component:
2002 Oct 29
0
Fwd: Re: Fwd: rsync and unlink permission
> On Mon, Oct 28, 2002 at 03:12:53PM +0800, Patrick Hsieh wrote: > > Since "foo" has no write permission under /var/www, he cannot rsync > > from remote server to the local filesystem because rsync will try to > > make temp file and unlink the original file before writing over it. Is > > there any solution to this problem? > > See the -T (--temp-dir)
2010 May 28
0
FW: smbd *not* breaking hard links when saving files
Hi Tim et al., Yes, I can see that the new behaviour would seem like an 'optimization', possibly especially for large files, in that it saves the unlink operation. was (quasi): unlink, open(write), write data, close now is (quasi): open(write, truncate), write data, close However, this old behaviour enabled my rather nice hard link copy (cheap!) local backup. The question is, is the
2008 Jan 13
2
DO NOT REPLY [Bug 5190] New: rsyncd can't unlink dir structure when only the group has write permission
https://bugzilla.samba.org/show_bug.cgi?id=5190 Summary: rsyncd can't unlink dir structure when only the group has write permission Product: rsync Version: 2.6.9 Platform: x86 OS/Version: Linux Status: NEW Severity: major Priority: P3 Component: core AssignedTo:
2002 Oct 28
2
Fwd: rsync and unlink permission
Hello list, I have a apache documentroot with ownership root.www-data and mode 755 Now I have a /var/www/index.html and chown'd that file to user "foo". Sincen "foo" has no write permission under /var/www, he cannot rsync from remote server to the local filesystem because rsync will try to make temp file and unlink the original file before writing over it. Is there any
2000 Dec 20
1
unlink() is not synchronized with existing connections (PR#783)
> # creating a file > cat("sddfasdf", file="tempfile") > showConnections() class description mode text isopen can read can write > con <- file("tempfile", "r") > readLines(con) [1] "sddfasdf" Warning message: incomplete final line in: readLines(con, n, ok) > showConnections() class description mode text isopen
2012 Nov 21
2
[LLVMdev] linking individual functions in execution module
Hi, JIT does not allow functions to call others in different modules, so all modules need to be statically linked in a big fat module. If a module needs to be recompiled, all the others need to as well as relinked. there are two ways i intend to approach this problem: 1) forget about JITing, build each module into a .bc, call gcc to generate .soname libraries, dynamically load with dlopen()
2010 Jul 19
1
btrfs: unlinked X orphans messages
Hi, I am using btrfs for remote backups (via rsync), with daily and weekly snapshots. I see these messages in kern.log: Jul 18 07:09:43 backup1 kernel: [3437126.458374] btrfs: unlinked 9 orphans Jul 18 12:01:01 backup1 kernel: [3454604.905856] btrfs: unlinked 1 orphans Jul 18 13:01:51 backup1 kernel: [3458254.990199] btrfs: unlinked 1 orphans Jul 19 04:01:41 backup1 kernel: [3512244.236347]
2010 Jan 13
1
cannot backup to external disk with rsync, create hard links of add w permissions
Dear rsync users, I want to backup my Documents directory and instead of copying everything to my external disk I tried to use this command line to create an incremental backup with rsync on my external disk: $cd /media/My\ Passport $rsync -a --delete --link-dest=../BackUp08.2009_Ubuntu/ /home/thomas2/Documents/ BackUp01.2010_Ubuntu/ but I get the following output: rsync: chgrp
2020 Mar 23
0
unlink() on "~" removes the home directory
To clarify, these issues are about deleting the contents of the home directory, not the directory itself, which cannot be deleted by ordinary users on today's systems. Unfortunately this has to be fixed in the code that calls unlink(), such code must be aware of the expansions. The "R CMD build" case as you write has been fixed, if anyone finds any other instance of this problem
2007 Dec 07
0
regression tests for unlink and wildcards fail - Solaris 10 SPARC / Sun Studio 12 (PR#10501)
Full_Name: Jim Brown Version: 2.6.0 / 2.6.1 OS: Solaris 10 (SPARC) Submission from: (NULL) (35.8.15.102) I have been able to successfully compile version 2.5.1 using the Sun Studio 12 compilers on Sun Solaris 10 (SPARC). All tests using "make check" pass with a status of OK. However, the following section of "reg-tests-1.R" fails when I attempt to test after a build of
2012 Nov 22
0
[LLVMdev] linking individual functions in execution module
Hi Charles, Are you using the old JIT engine or the newer MCJIT? In either case, external functions are resolved through the getPointerToNamedFunction method in the JIT Memory Manager. If you provide your own memory manager implementation, you should be able to link multiple modules together. If you re-JIT a module that you have previously linked to that will obviously cause some problems, but
2008 Apr 11
0
Adding Ethernet alias (why 3 hard links for an ifcfg-eth file?)
I need to add eth0:1 with a new IP address to my C5-based router. Does a design document exist for the ifcfg family of scripts that explains how they're to be used? Before I go digging through the script hierarchy I'm hoping someone can point me to documentation to make the process easier. One confusing issue is that the ifcfg-eth* files in /etc/sysconfig/network-scripts are
2006 Nov 28
3
delete content of directory - unlink doesn't work as expected
Hi, I try to delete the files in a directory. While the command invisible(lapply( list.files( "DeleteThis" ), function(x) file.remove(paste("DeleteThis", x, sep="/" )) )) works, I keep thinking that there should be a more direct command. "unlink" looks like a good candidate but whith this I only arrive to either delete the whole directory or nothing
2007 Apr 25
2
R-2.5.0 and unlink/wildcards
It seems unlink doesn't work with wildcards in 2.5.0. I've tried R-2.5.0 under gnu/linux from source and the Mac binary from att research. Example: > dir() [1] "bgx.Rnw" "bgx.pdf" "run.1" > unlink("run.*",recursive=T) > dir() [1] "bgx.Rnw" "bgx.pdf" "run.1" > unlink("run.1",recursive=T)
2006 Aug 17
1
unlink disables help?
I was hoping that someone could try to reproduce an error that I am getting. The R Site Search keeps timing out on me, so apologies of this has already come up. I'm using > R.version _ platform i386-pc-mingw32 arch i386 os mingw32 system i386, mingw32