Displaying 20 results from an estimated 81 matches for "somedir".
Did you mean:
homedir
2017 Apr 26
2
tempdir() may be deleted during long-running R session
...sion keeps an open handle on the tempdir it creates,
> * whatever tempdir harvesting cron job the user has be made sensitive enough not to delete open files (including open directories)
Good suggestion but doesn't work with the (increasingly popular)
"Systemd":
$ mkdir /tmp/somedir
$ touch -d "12 days ago" /tmp/somedir/
$ cd /tmp/somedir/
$ sudo systemd-tmpfiles --clean
$ ls /tmp/somedir/
ls: cannot access '/tmp/somedir/': No such file or directory
I would advocate just changing 'tempfile()' so that it recreates the
directory whe...
2004 Jun 22
1
Multiple --compare-dest args again
...h a patch at all?
Below is the usage example i outlined back then;
--start--
[...] Its primary usage is to do incremental
backups on top of eachother. (My current backup system stores each
incremental as a set of files that differ from the latest full.)
Example:
First full backup:
rsync -a somedir full-20040415/
First incremental:
rsync -a --compare-dest=../full-20040415 \
somedir incr-20040416/
Second incremental, on top of first:
rsync -a --compare-dest=../incr-20040416 --compare-dest=../full-20040415
somedir incr-20040417/
(The args must be given in the correct...
2013 Dec 12
2
Size detection/replair does not work with zlib
...ssage but here dovecot
doesn't recognize/repair the size of the message.
When I access this folder via IMAP the connection is diconnected and
in dovecot logs I see the following error messages:
Error: Cached message size smaller than expected (805 < 2666)
Error: Corrupted index cache file /somedir/dovecot.index.cache: Broken physical size for mail UID 23
Error: read() failed: Input/output error (FETCH for mailbox INBOX UID 23)
Disconnected: Internal error occurred. Refer to server log for more information. [2013-12-12 10:54:18] in=321 out=1977
As you can see in the first line, dovecot does...
2012 Dec 18
2
Bug or strange behaviour or --output-prefix
...me file to another directory than the
current. The man page says I should use --output-prefix for that, but
that doesn't seem to work correctly. For example
flac -d --output-prefix ../ somefile.flac
seems to work fine, just as expected. However, the next example
flac -d --output-prefix ../ somedir/somefile.flac
doesn't work as expected. the FLAC utility seems to try to decode to the
directory ../somedir which doesn't exist. Even using absolute paths do
not work. For example
flac -d --output-prefix /home/someuser/ /home/someuser/somedir/somefile.flac
it seems that it is trying to...
2003 Jan 24
2
opendir(somedir/somefile): Not enough space -- why?
I am attempting to use rsync to copy a large filesystem from an
HP-UX server to a Linux server with more than enough filespace.
This operation fails. A small directory from the same HP-UX server
can be transfered just as expected.
The HP-UX server is the source. It has 1Gb RAM - the output of bdf for
the volume the source files is on is:
Filesystem kbytes used avail %used Mounted
2006 Dec 11
3
rsync /somedir work@backups::somearchive/ gets stuck in huge maildirs, rsync /somedir root@backups:/some/path/ works
hi,
i hope i'm not reporting something well-known; i tried to
understand the available bug tracking information. please excuse
me if my problem report should not meet your standards, but i
want to direct your attention to the following:
http://koffein.org/av/rsync-bugreport/
problem report for rsync 2.6.9 on linux/IA32, 09 Dec 2006
Herwig Wittmann
2002 Dec 22
1
weird stat()
hei everyone,
I have a weird problem: if I do a
# cd /somedir; stat somesubdir |grep Modify
where /somedir is some directory on an SMB-mounted filesystem I get one
datetime... but I I do:
# cd /somedir; stat * |grep Modify
for the same directory I get a Modify time which consistently differs by 1
second. As I'm writing a perl module to detect differen...
2005 Feb 25
1
Feature request: Being able specify that the destination should follow source directory structure.
Greetings.
If I do this:
rsync --hard-links
one.server.com::"module/somedir/images/redhat/3.0WS/en/os/i386
module/someotherdir/1.0/images/redhat/3.0WS/en/os/i386" /export/distros
I get:
/export/distros/i386/... and a conflict between the two sources.
I want for destination:
/export/distros/images/redhat/3.0WS/en/os/i386
/export/distros/1.0/images/redhat/3.0WS/en/o...
2013 Jan 02
0
Bug or strange behaviour or --output-prefix
...saying that the behavior you see is
by design - it's intended - and you'll find that all Unix utilities
work the same way. There is nothing to fix here, although some new
features might get you what you want.
For example, --input-prefix would allow you to use
flac -d --input-prefix somedir --output-prefix ../ somefile.flac
or
flac -d --input-prefix /home/someuser/somedir --output-prefix /home/
someuser somefile.flac
(and don't forget that all variations and combinations of options
must continue to work predictably when more than one FLAC file is
given. I often process *.f...
2016 Feb 03
2
[PATCH 1/2] daemon: glob: do not return directories with trailing slash
...T_RHBZ1293271_SH" ]; then
+ echo "$0: test skipped because environment variable is set."
+ exit 77
+fi
+
+rm -f rhbz1293271.img rhbz1293271.out
+
+guestfish -N rhbz1293271.img=fs -m /dev/sda1 > rhbz1293271.out <<EOF
+touch /hello
+touch /test-file
+touch /world
+mkdir /somedir
+touch /somedir/file
+ln-s somedir /test-link
+
+ls / | sort
+
+echo -----
+
+glob rm-rf /*test*
+
+ls / | sort
+
+echo ----- END
+
+EOF
+
+if [ "$(cat rhbz1293271.out)" != "hello
+lost+found
+somedir
+test-file
+test-link
+world
+-----
+hello
+lost+found
+somedir
+world
+----- END&q...
2017 Apr 26
0
tempdir() may be deleted during long-running R session
...vesting cron job the user has be made sensitive enough not to delete open files (including open directories)
I also agree that the above would be ideal - if possible.
> Good suggestion but doesn't work with the (increasingly popular)
> "Systemd":
> $ mkdir /tmp/somedir
> $ touch -d "12 days ago" /tmp/somedir/
> $ cd /tmp/somedir/
> $ sudo systemd-tmpfiles --clean
> $ ls /tmp/somedir/
> ls: cannot access '/tmp/somedir/': No such file or directory
Some thing like your example is what I'd expect is always a
p...
2017 Apr 26
6
tempdir() may be deleted during long-running R session
...made sensitive enough not to delete open files (including open directories)
>
> I also agree that the above would be ideal - if possible.
>
> > Good suggestion but doesn't work with the (increasingly popular)
> > "Systemd":
>
> > $ mkdir /tmp/somedir
> > $ touch -d "12 days ago" /tmp/somedir/
> > $ cd /tmp/somedir/
> > $ sudo systemd-tmpfiles --clean
> > $ ls /tmp/somedir/
> > ls: cannot access '/tmp/somedir/': No such file or directory
>
> Some thing like your example is...
2009 Apr 10
3
Local disk rsync
...the source to the
destination takes perhaps 5 minutes. (~24G, 80K files) However using
rsync takes a very long time. (I've never let it finish, but it's
still running an hour later or more...)
Here's how I run it:
rsync --recursive --delete --verbose --stats --perms --super
/cygdrive/e/somedir/ /cygdrive/f/somedir/
Thoughts?
I'm mainly using rsync 'cause I know it, and use it. If there's some
alternative I'd be glad for a pointer. I don't know of any other good
sync tools like rsync. (Unison I guess...though I only need one way
sync.) [Whole file copy is fine if nee...
2005 Apr 03
1
NFS over ssh problems
...n working like a charm on suse, mandrake, redhat 7-9 etc, but I've been
unable to get it to work on CentOS.
First I set up ssh portforwarding using:
/usr/bin/ssh root@<remotehost> -L 250:irc.dynip.no:2049 -f sleep 60d &
Then I mount using the following params in fstab:
localhost:/somedir /somedir nfs
rw,tcp,hard,intr,port=250,mountport=251 0 0
I can telnet to port 250/251 and it answers like expected. I can also see
the packets travelling through the tunnel using tcpdump.
However, if I try to mount the dir (mount -a), I get this error:
mount to NFS server 'localhos...
2003 Dec 01
0
No subject
share -
xcopy /d /e c:\somedir w:\somedir
xcopy /d /e w:\somedir c:\somedir
This should have the behavior of making the two directory
structures identical, with newer files on one overwriting older
or missing files on the other.
This only behaves as expected for about half the files. For some
files, Windows always wants to re-...
2020 Sep 27
1
rsync 3.1.3 dry run bug?
...cal) the rsync option -n (Dry Run) is not working
correctly.
---
rsync --version
rsync? version 3.1.3? protocol version 31
----
I used this command for about ten years without mayor issues:
---
rsync -vaHEiuzn --skip-compress=jpg,JPG,mov,MOV,mp4,MP4,m4v,avi,png
--exclude=*.pyc --exclude='somedir/**/.gps.cnf'
--exclude='somedir/**/clonezilla' --stats --delete /home/myuser/Datadir/
myuser at remotehost:/home/myuser/Datadir
sending incremental file list
.d.....g...
somedir/Ubuntu/New_Ubuntu/scripts/focal_myuser/configfiles/myuser/
.f.....g...
somedir/Ubuntu/New_Ubuntu/scripts/...
2012 Jul 27
1
Rsync like Time Machine
...or the --link-dest parameter. I can accomplish
those tasks via remote ssh commands, but I was hoping there was a better
way. For example, is there any circumstance where you can coax rsync into
creating a target directory that's not there already?
% rsync <source> user at nas::module/<somedir-exists>/<newdir-with-date>
So, newdir-with-date doesn't exist (yet). I would like to have rsync create
it for me. Is that even possible?
Thanks,
-Clint
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.samba.org/pipermail/rsync/attachme...
2017 Apr 26
0
tempdir() may be deleted during long-running R session
...o delete open files (including open directories)
>>
>> I also agree that the above would be ideal - if possible.
>>
>> > Good suggestion but doesn't work with the (increasingly popular)
>> > "Systemd":
>>
>> > $ mkdir /tmp/somedir
>> > $ touch -d "12 days ago" /tmp/somedir/
>> > $ cd /tmp/somedir/
>> > $ sudo systemd-tmpfiles --clean
>> > $ ls /tmp/somedir/
>> > ls: cannot access '/tmp/somedir/': No such file or directory
>>
>> Som...
2017 Apr 26
1
tempdir() may be deleted during long-running R session
...ng open directories)
>>>
>>> I also agree that the above would be ideal - if possible.
>>>
>>> > Good suggestion but doesn't work with the (increasingly popular)
>>> > "Systemd":
>>>
>>> > $ mkdir /tmp/somedir
>>> > $ touch -d "12 days ago" /tmp/somedir/
>>> > $ cd /tmp/somedir/
>>> > $ sudo systemd-tmpfiles --clean
>>> > $ ls /tmp/somedir/
>>> > ls: cannot access '/tmp/somedir/': No such file or directory
&...
2016 Mar 25
4
Memory consumption for rsync -axv --delete
...h memory? Is there a way to tell rsync to use a tempfile
instead of RAM for keeping tracking of whatever it does?
And would it be useful to add ignores for the subdirectories I know have
many files and back them up separately? Is --delete safe to use in this
case, as in does --delete with --ignore somedir/ not delete files in other
target dirs that are not in the ignore path?
Thanks,
/jl
--
ASCII ribbon campaign ( ) Powered by Lemote Fuloong
against HTML e-mail X Loongson MIPS and OpenBSD
and proprietary / \ http://www.mutt.org
attachments / \ Code Blue or Go Home!
Encr...