ASSISTANCE/ You are free to investigate about my family background, especially my father wealth, but Treat this matter with utmost confidentiality and if for personal reasons this proposal does not meet your approval, please keep my confident and disregard this mail. I look forward to your quick response.

2002-09-24 Thread MR REUBEN SAVIMBI
My Dear I am MR REUBEN SAVIMBI one of the favorite sons of Mr. JONAS SAVIMBI (The Rebel leader) and also the head of the Unita Forces of Angola who was killed in the Struggle between Angolan arm forces and his Unita rebels On Friday the 22nd of February 2002. I am from Angola but currently I

hi

2002-09-24 Thread Steffan Merlin
Title: . 1- First-F*CK http://chat.erotism.com/Camlolita/carla004.mpg 2- Rape !!! http://chat.erotism.com/Camlolita/download.asx 6 Preview Video -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting,

Re: rsync to a symlink directory

2002-09-24 Thread Gwendal Stevanazzi
On Tue, 24 Sep 2002, jw schultz wrote: > [edited] > On Tue, Sep 24, 2002 at 12:52:58PM -0700, Gwendal Stevanazzi wrote: > > On Tue, 24 Sep 2002 [EMAIL PROTECTED] wrote: > > > Here's the script: > > > rsync dira/file dirc > > > > This script runs ok > > But here is a script which doesn't work for

rsync bugs

2002-09-24 Thread Nicholas Henke
I may be nuts, but... I would appear that rsync is not setting the exit code properly when it fails. Below are 2 cases where that seems obvious, the line with the '0' after the output is 'echo $?' from bash -- aka the exit code for the last command. Let me know if these are bugs, or I need to so

Re: rsync to a symlink directory

2002-09-24 Thread jw schultz
[edited] On Tue, Sep 24, 2002 at 12:52:58PM -0700, Gwendal Stevanazzi wrote: > On Tue, 24 Sep 2002 [EMAIL PROTECTED] wrote: > > Here's the script: > > rsync dira/file dirc > > This script runs ok > But here is a script which doesn't work for me: > rsync -R dira/file ../dest/ The culprit appears t

Re: 2.5.5-1 rsync hangs

2002-09-24 Thread jw schultz
On Tue, Sep 24, 2002 at 07:29:40PM +0900, Anthony Heading wrote: > On Mon, Sep 23, 2002 at 01:06:22PM -0700, Sudheer Tumuluru wrote: > > > > I am having the same problem with rsync 2.5.5-1. I am > > trying to rsync a couple of short text files between a linux server and > > Win2k Professional

Re: rsync to a symlink directory

2002-09-24 Thread Gwendal Stevanazzi
On Tue, 24 Sep 2002 [EMAIL PROTECTED] wrote: > Here's the script: > > #!/bin/sh > > { > echo starting on `uname -a` > rm -rf dira dirb dirc > mkdir dira > mkdir dirb > ln -s dirb dirc > date >dira/file > rsync dira/file dirc > ls -ld `find dirb

Re: rsync to a symlink directory

2002-09-24 Thread tim . conway
Here's the script: #!/bin/sh { echo starting on `uname -a` rm -rf dira dirb dirc mkdir dira mkdir dirb ln -s dirb dirc date >dira/file rsync dira/file dirc ls -ld `find dirb -print` echo finished on `uname -a` } >> $HOME/netapp/rsyncsymlinktest

Re: rsync to a symlink directory

2002-09-24 Thread Sriram Ramkrishna
I've always tried just appending a trailing slash to the destination that always worked for me. sri On Tue, Sep 24, 2002 at 12:28:02AM -0700, Gwendal Stevanazzi wrote: > On Mon, 23 Sep 2002, jw schultz wrote: > > > On Mon, Sep 23, 2002 at 06:03:12PM -0700, Gwendal Stevanazzi wrote: > > > > > >

²»¿´°×²»¿´,¿´Á˲»°×¿´! :-£©

2002-09-24 Thread СÂìÒÏ
ÎÒÕæ³ÏµØÏòÄúÍÆ¼öÒ»¸öÄÜ׬ǮµÄÍøÕ¾£¡ ÊÇÕæÊǼÙ,Äú¿´Á˾ÍÖªµÀÁË£º http://www.dirshop.com/mall/index.php?user=luckboy (×¢£ºÄ¿Ç°ÕýÔÚÓòÃûÕûºÏ£¬26ºÅºóÖØÐ¿ª·Å£¡) µ«Ô¸ÎÒÄܸøÄú´øÀ´ºÃÔË£¡ -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.tux

Re: off site backup with rsync

2002-09-24 Thread tim . conway
Of course you can. It's done all the time. Set up your rsyncd.conf in /etc under cygwin, start the server (rsync --daemon), and read from it. If you've already done this, send more details (your rsync.conf, output of "ps ax" after starting the server, "rsync localhost::" output, etc.). Tim Con

Re: 2.5.5-1 rsync hangs

2002-09-24 Thread Igor Pechtchanski
On Tue, 24 Sep 2002, Anthony Heading wrote: > On Mon, Sep 23, 2002 at 01:06:22PM -0700, Sudheer Tumuluru wrote: > > > > I am having the same problem with rsync 2.5.5-1. I am > > trying to rsync a couple of short text files between a linux server and > > Win2k Professional boxes with cygwin. A

off site backup with rsync

2002-09-24 Thread wrnash
Can anyone help me with rsync. I'm trying to set up rsync on a windows nt 4.0 box so i can do off site backup with linux. I followed the instruction from rsync.samba.org and i have rsync working on windows nt. when i tried to use rsync with linux to connect to the windows box i get a error inval

Re: 2.5.5-1 rsync hangs

2002-09-24 Thread Anthony Heading
On Mon, Sep 23, 2002 at 01:06:22PM -0700, Sudheer Tumuluru wrote: > > I am having the same problem with rsync 2.5.5-1. I am > trying to rsync a couple of short text files between a linux server and > Win2k Professional boxes with cygwin. About 20% of the time, rsync freezes > at the end of th

Re: rsync to a symlink directory

2002-09-24 Thread jw schultz
On Tue, Sep 24, 2002 at 12:28:02AM -0700, Gwendal Stevanazzi wrote: > On Mon, 23 Sep 2002, jw schultz wrote: > > On Mon, Sep 23, 2002 at 06:03:12PM -0700, Gwendal Stevanazzi wrote: > > > > > > Now I want to update file1. > > > If I run the command > > > rsync -aRz file1 destination:/home/test2/lin

Re: rsync to a symlink directory

2002-09-24 Thread Gwendal Stevanazzi
On Mon, 23 Sep 2002, jw schultz wrote: > On Mon, Sep 23, 2002 at 06:03:12PM -0700, Gwendal Stevanazzi wrote: > > > > Here is the structure of my servers : > > > > Source : > > > > /home/test1/link_dir > > sub_dir1 > > file1 > > file2 > >