Displaying 20 results from an estimated 1000 matches similar to: "pruning old files"
2002 Oct 29
1
configuration question.
Your users have rsh access to the machine, and are getting wherever they
want, using the server:/path syntax.
if they were using the server::module syntax, they would be restricted to
only what's provided by the modules. If you don't want them getting
everything all over the system, you will need to prevent shell access.
Tim Conway
conway.tim@sphlihp.com reorder name and reverse
2002 Nov 15
0
RFE: using rsync as a backup tool (preserve access time & com press destination files) ?
The way gnutar "preserves" atime is by noting it before the read, and
setting it back after the read, thus wiping out a legitimate setting of
atime occuring during that interval.
Yeah, the netapps mess with unix times. Did you notice that mtime and
ctime always match?
Now that I know you're on a netapp, though, your problems are solved.
Snapshot and sync from the snapshot, then
2004 Jan 05
0
No subject
Unless told otherwise, rsync uses rsh to contact the remote system.=20
Another popular option is ssh. Both of these protocols use the logged-in=20
username, unless specified otherwise. What rsync really does is "rsh=20
remotehost rsync --server-and-other-undocumented-options". If you can't=20
"rsh server rsync --version", rsync won't work with rsh. Same with ssh. I
2002 Aug 27
0
Rsync question.
Tarun: I don't use rsync to windows - just too much trouble and no need,
but, I think the problem is the embedded colon in the path.
Administrator@USB-FLATUS ~
$ touch abc:def
Administrator@USB-FLATUS ~
$ ls -l abc*
-rw-r--r-- 1 Administ None 0 Aug 27 12:34 abc
Administrator@USB-FLATUS ~
$ rm abc:def
Administrator@USB-FLATUS ~
$ tar -tvf /n/a.tar
-rw-r--r-- tconway/Vlsieng 29
2002 Dec 20
1
goodbye
Since I get so many direct inquiries, I feel obligated to mention that I
just got laid off, so am losing this address.
Bye.
Tim Conway
conway.tim@spilihp.com reorder name and reverse domain
303.682.4917 office, 303.921.0301 cell
Philips Semiconductor - Longmont TC
1880 Industrial Circle, Suite D
Longmont, CO 80501
Available via SameTime Connect within Philips, caesupport2 on AIM
2002 Sep 18
0
rsync-2.5.5 hangs in client-server mode
Well, Robert, at least you're to a consistent state from which maybe the
more capable people on this list may be able to help you. I'm ccing the
list, as I don't see anything I can help with. You might try it again
with -vvv on the client side, to generate more detail. As it looks like
it's dying in connection setup, the output shouldn't be cluttered with a
mass of
2004 Dec 06
1
port and double-colon
double-colon mode doesn't work in CVS version.
-vv says port number is 0.
% rsync -vv host.domain::any
opening tcp connection to host.domain port 0
rsync: failed to connect to host.domain: Can't assign requested address (49)
rsync error: error in socket IO (code 10) at clientserver.c(94)
And --port=873 cannot be used in client mode now.
I made a small sample patch.
(Sorry, I
2002 Sep 17
2
'error in rsync protocol data stream' - Tim Conway
Tim,
I reported a protocol data stream error on 9/8/2002
Deatils are in my postes at that time
rsync still fails everytime I run it.
This time I added three v's as you just suggested and rsync just hung with
two tasks in execution thus:
root 3178 0.1 0.9 1796 868 pts/1 S 09:57 0:00
/usr/bin/rsync -vvva --delete --exclude=root/snapsh
root 3179 0.0 0.6 1628 632 pts/1
2000 Nov 29
0
Snapshot
I have just uploaded a new snapshot to
http://www.mindrot.org/misc/openssh/
Snapshot production is now automated - new snapshots will be made
at about 4:30 am (Australian Eastern time) and will be available from
the URL above.
This snapshot consists of mainly minor fixes over the previous.
The race when sshd exits which was causing data loss (as evidenced by
"ssh localhost dd
2005 Jul 26
1
last access file for 1.0-stable?
Hi,
I am almost ready to convert from UW-imap to dovecot 1.0 stable
for my imap use. I hacked UW-imap to touch a file in the user's
home directory so I can always tell the last time they used imap.
My hack looks something like this:
if(authenticated)
{
touchfile = (char *) malloc((strlen (home) + 15);
sprintf(touchfile,"%s/.imapd.last",homedir);
fd =
2002 Oct 21
4
Any work-around for very large number of files yet?
Yes, I've read the FAQ, just hoping for a boon...
I'm in the process of relocating a large amount of data from one nfs server
to another (Network Appliance filers). The process I've been using is to
nfs mount both source and destination to a server (solaris8) and simply use
rsync -a /source/ /dest . It works great except for the few that have > 10
million files. On these I get
2004 Feb 10
3
rsync 2.6.1cvs dumps core when preserve_hard_links and backup
I tried rsync 2.6.1cvs on my FreeBSD 4.X boxes.
It dumps core when preserve_hard_links and backup.
And SUPPORT_HARD_LINKS is true.
rsync -avH --delete --backup --backup-dir=/some/backup/dir \
srchost::dir/ dir/
The core says...
------------------------------------------------------------------------
Program terminated with signal 11, Segmentation fault.
#0 0x80536c0 in keep_backup
2004 Jan 05
0
No subject
see a copy of your rsyncd.conf?
Tim Conway
tim.conway@philips.com
303.682.4917
Philips Semiconductor - Longmont TC
1880 Industrial Circle, Suite D
Longmont, CO 80501
Available via SameTime Connect within Philips, n9hmg on AIM
perl -e 'print pack(nnnnnnnnnnnn,
19061,29556,8289,28271,29800,25970,8304,25970,27680,26721,25451,25970),
".\n" '
"There are some who call me....
2002 Jan 25
0
suid files and bsd - correction
it's in syscall.c, not generator.c
You'll have to save the status of the lstat, modify the mode in st, and
return the lstat status. I don't know how to do it, though.
#if SUPPORT_LINKS
int do_lstat(const char *fname, STRUCT_STAT *st)
{
#if HAVE_OFF64_T
return lstat64(fname, st);
#else
return lstat(fname, st);
#endif
}
#endif
Tim Conway
tim.conway@philips.com
2002 Mar 13
0
AW: ssh + permissions
The "-a" option (the "--links", "--perms", "--devices", and "--times" options are redundant, as
they, as well as "--owner", "--group", and "--recursive" are implied by
"-a" )does dictate that permissions on files being sent be brought over
from the source. Are all files losing permissions, or only files
2002 Feb 14
0
unexpected EOF in read_timeout (was Re[2]: [Fwd: Re: meaning of "IO Error: skipping the delete...."]])
I should have specified what i was replying to. This section seemed to be
in reference to what I had experienced before.
"
> Well, I'm stumped too. (Although I thought I'd read that the
> default timeout was not infinite when not otherwise specified,
> but I've got so much going on right now that I could easily be
> confused on that one!)
>
"
Tim Conway
2002 Apr 17
4
rsync HELP!!!
Sonu: I'm giving the whole history to the rsync list. If the tests i
subscribed passed, yet you get that error, it's more in depth than i can
go into. You've got 1 hour, let's hope somebody immediately recognizes
the problem. I've got some ideas, but no time to explore any more for
you.
Gentlemen: does anybody see a quick resolution for Sonu? Looks like he's
2002 Jul 25
0
non-interactive ssh connections (was Re: RSYNC ISSUE)
Gouri: close. Try "Ssh-keygen -p -P ''". You might argue that ssh should guess that -P imlplies -p, but that's
an issue for your ssh maintainer.
Also: you don't ordinarily distribute the private key. You need the
PUBLIC key in $HOME/.ssh/authorized_keys on any system you want to access
with the private key. Maybe i'm seing your application backward, and you
2008 Feb 27
2
Unix-like touch to update modification timestamp of file?
Hi,
is it possible to update the modification time stamp of a file using R
(on file systems supporting it)? It is sufficient to update the
modification time to the current time. The best I can do for now is:
touchFile <- function(pathname, ...) {
if (!file.exists(pathname))
stop("No such file: ", pathname);
info <- file.info(pathname);
if (info$isdir)
2001 Nov 20
3
Is anybody else gettting these?
I keep getting these smarmy sermons from somebody's mail account. I
include my response to it below, though from its message, it probably
won't be read.
Tim Conway
tim.conway@philips.com
303.682.4917
Philips Semiconductor - Longmont TC
1880 Industrial Circle, Suite D
Longmont, CO 80501
Available via SameTime Connect within Philips, n9hmg on AIM
perl -e 'print pack(nnnnnnnnnnnn,