Displaying 20 results from an estimated 2000 matches similar to: "Deletion of destination files"
2016 Jun 05
4
Deletion of destination files
Hi to all rsync users.
rsync's `--delete' option works fine in the following example: I'm sending all
the content of /home/rodolfo from machine1 to /home/rodolfo in machine2:
$ rsync --dry-run -vrtul --delete --exclude='/.*' . 192.168.0.2:/home/rodolfo
, and --delete works perfectly. Instead, in this other example:
$ rsync --dry-run -vrt --delete --modify-window=1 file1
2016 Jun 05
0
Deletion of destination files
See --delete-missing-args (a fairly new feature)
On 06/05/2016 06:40 AM, Rodolfo Medina wrote:
> Hi to all rsync users.
>
> rsync's `--delete' option works fine in the following example: I'm sending all
> the content of /home/rodolfo from machine1 to /home/rodolfo in machine2:
>
> $ rsync --dry-run -vrtul --delete --exclude='/.*' .
2017 Jun 06
0
Share USB pendrive in ADSL router
Rowland Penny via samba <samba at lists.samba.org> writes:
> On Tue, 06 Jun 2017 18:45:38 +0100
> Rodolfo Medina via samba <samba at lists.samba.org> wrote:
>
>> Rodolfo Medina <rodolfo.medina at gmail.com> writes:
>>
>> > I'm new to use of Samba. I plugged a USB pendrive into router but
>> > don't know how to mount it. Please
2017 Jun 06
2
Share USB pendrive in ADSL router
On Tue, 06 Jun 2017 18:45:38 +0100
Rodolfo Medina via samba <samba at lists.samba.org> wrote:
> Rodolfo Medina <rodolfo.medina at gmail.com> writes:
>
> > I'm new to use of Samba. I plugged a USB pendrive into router but
> > don't know how to mount it. Please help whoevere can.
>
>
> I did:
>
> $ smbclient -L 192.168.1.1
> WARNING: The
2017 Jun 09
0
Accented letters in shared USB drive (was: Share USB pendrive in ADSL router)
Rodolfo Medina <rodolfo.medina at gmail.com> writes:
> I'm new to use of Samba. I plugged a USB pendrive into router but don't know
> how to mount it. Please help whoevere can.
Finally I solved it.
First of all, I had to set the USB drive as a `Managed partition' from the
router web GUI. Secondly, its right address was `//192.168.1.2/Shared' and not
2017 Jun 06
4
Share USB pendrive in ADSL router
Hi all.
I'm new to use of Samba. I plugged a USB pendrive into router but don't know
how to mount it. Please help whoevere can.
Thanks in advance,
Rodolfo
2017 Jun 07
1
Share USB pendrive in ADSL router
On Tue, 06 Jun 2017 22:34:06 +0100
Rodolfo Medina <rodolfo.medina at gmail.com> wrote:
> Rowland Penny via samba <samba at lists.samba.org> writes:
>
> > On Tue, 06 Jun 2017 21:53:00 +0100
> > Rodolfo Medina <rodolfo.medina at gmail.com> wrote:
> >
> >> Rowland Penny via samba <samba at lists.samba.org> writes:
> >> > This is
2017 Jun 06
0
Share USB pendrive in ADSL router
Rowland Penny via samba <samba at lists.samba.org> writes:
> On Tue, 06 Jun 2017 21:53:00 +0100
> Rodolfo Medina <rodolfo.medina at gmail.com> wrote:
>
>> Rowland Penny via samba <samba at lists.samba.org> writes:
>> > This is with my router:
>> >
>> > rowland at devstation:~$ sudo mount.cifs //192.168.0.1/USB1 /mnt/cifs
>> >
2017 Jun 06
2
Share USB pendrive in ADSL router
On Tue, 06 Jun 2017 21:53:00 +0100
Rodolfo Medina <rodolfo.medina at gmail.com> wrote:
> Rowland Penny via samba <samba at lists.samba.org> writes:
> > This is with my router:
> >
> > rowland at devstation:~$ sudo mount.cifs //192.168.0.1/USB1 /mnt/cifs
> > Password for root@//192.168.0.1/USB1: <-- I just pressed 'Enter'
> > rowland at
2016 Jun 09
0
rsync keeps writing files over
the T means that the timestamp is wrong and rsync is not fixing it
because you don't have --times or --archive in your command line.
On 06/08/2016 08:17 PM, McDowell, Blake wrote:
> Hi Steven,
>
> Yes, both file systems are the same.
>
> rsync -nri --modify-window=1 <src> <dest>
>
> Gives me the following for most files >f..T.......
>
2017 Jun 06
2
Share USB pendrive in ADSL router
On Tue, 06 Jun 2017 21:00:25 +0100
Rodolfo Medina <rodolfo.medina at gmail.com> wrote:
> Thanks. I gave the latter command as root, but it asks for a
> password: it isn't the root's password, neither my normal user
> password and neither router's web GUI password. So I don't know what
> it may ever be:
>
> # mount.cifs //192.168.1.1/USB_Storage
2017 Jun 12
1
Accented letters in shared USB drive (was: Share USB pendrive in ADSL router)
Hi Rodolfo (sorry for dup email),
Rodolfo Medina via samba <samba at lists.samba.org> writes:
> ...For example, when I copy the ~/università to /mnt/shared, I get:
>
> universit\ �/
>
> Or, if in /mnt/shared I do: `touch affinché', I get:
>
> affinch\ �
>
> I've never had this problem before, in my Linux home directory. Please suggest
> whoever can
2012 Aug 29
1
Destination file is larger than source file
We are using the standard -av switch. And both filesystems are the same -
UFS.
/opt/rsync/bin/rsync -av -e "ssh -l root" --delete
--exclude-from=/var/scripts/exclude
--password-file=/var/scripts/transfer.passwd <username>@<source
host>::<source dir>/ /<destination dir>
Source system
<source host>:<source dir># du -sh *
1K nohup.out
20G
2011 Nov 26
0
rsync Digest, Vol 107, Issue 24
Hi,
Some explanations regarding cwRsync:
cwRync installers (both client and server) are now available as a paid
download bundle. Installer sources, however, are still available as free
upon contact.
Please keep in mind that installer sources are not enough to build cwRsync
installers: You need to build up a complete Cygwin environment,
compile/copy binaries in the package. It may be time
2016 Jun 09
4
rsync keeps writing files over
Hi Steven,
Yes, both file systems are the same.
rsync -nri --modify-window=1 <src> <dest>
Gives me the following for most files >f..T.......
2015_167_1_1__Boy_What_A_Girl_R2/2015_167_1_1__Boy_What_A_Girl__UHD_DPX_R2/
BWAG_R2_00138428.dpx
Although a few have >f..T......n
2015_167_1_1__Boy_What_A_Girl_R2/2015_167_1_1__Boy_What_A_Girl__UHD_DPX_R2/
BWAG_R2_00135909.dpx
2016 Jun 24
2
Operation not supported (95)
On Thu, Jun 23, 2016 at 04:09:43PM -0700, Steven Levine wrote:
> In <20160623205843.GB6633 at kw.merryville>, on 06/23/16
> at 11:58 PM, Albert Berger <nbdspcl at gmail.com> said:
>
> Hi,
>
> >I did some search about this error before asking this question, and in
> >other case unsupported ACLs were indeed the cause. But btrfs supports
> >ACLs:
>
2016 May 03
1
filename_convert_internal: checkname failed NT_STATUS_INVALID_PARAMETER
Dear All
I have a PCBSD machine with /media shared using samba.
Any microsoft clients can successfully connect to /media and browse directories I have created there.
When I plug in a usb device, I mount it into /media eg: one labelled "PENDRIVE" becomes /media/PENDRIVE
Some clients can successfully read /media/PENDRIVE, others cannot. Although the clients that cannot view the
2016 Mar 31
0
rsync with overlay tree
In <B4E1EC5D-5E46-4A98-9018-C5E4C4441712 at equalit.ie>, on 03/31/16
at 03:40 PM, tomr <tom at equalit.ie> said:
Hi,
>Then I'd run an rsync like:
> rsync -av --overlay /path/to/sync/groupN \
> /path/to/sync/common remotehost:
>Thinking in terms of a list of files to be transferred, I would like: -
>Anything present in common/ added to the file list;
2016 Jun 02
0
rsync keeps writing files over
In <D3762D63.17A7%mcdowellh at si.edu>, on 06/02/16
at 10:42 PM, "McDowell, Blake" <McDowellH at si.edu> said:
Hi Blake,
>The storage is just an regular HDD in a mac pro tower. I can t imagine
>why it wouldn t handle timestamps. Also of note - this problem doesn t
>exist for every file, just the vast majority. So, that just makes it more
>confusing.
Are the
2016 Jun 11
0
rsync keeps writing files over
In <D37E24FA.120D%mcdowellh at si.edu>, on 06/09/16
at 12:17 AM, "McDowell, Blake" <McDowellH at si.edu> said:
Hi Blake,
Please reply to the list.
>rsync -nri --modify-window=1 <src> <dest>
As others mentioned, you need need to use --times. This is needed so that
we can see use output from --itemize-changes.
>Gives me the following for most files