Re: rsync problem

2018-09-27 Thread Michael
thanks Matt. I ignored the squirrel this time!
disk not plugged in. there is a seagate expansion drive directory in /media.
after further investigation it seems rsync backed the seagate expansion
drive  to /media and not to /media/Seagate\ Expansion\ Drive. Would you say
rmdir and things should function normally? how should I do it? ' rmdir -r
/media/Seagate\ Expansion\ Drive'?

On Thu, Sep 27, 2018 at 6:38 PM Matt Graham  wrote:

> >>> mount
> >>> /dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
> >>> bmike1@MikesBeast ~ $ ls -l /media/bmike1
> >>> drwxr-xr-x 3 root   root   4096 Sep 25 19:16 Seagate Expansion Drive
> >>> drwxrwxrwx 1 bmike1 bmike1 4096 Sep 25 19:57 Seagate Expansion
> >>> Drive1
>
> On 2018-09-27 15:06, Bob Elzer wrote:
> > what about running the rsync command [as] root?
>
> Bob, the problem as shown in the parts of the message above marked with
>  >>> is that the automounter put the disk /dev/sdc1 on
> "/media/bmike1/Seagate Expansion Drive1" instead of
> "/media/bmike1/Seagate Expansion Drive".  The OP was expecting the disk
> to be on the mountpoint without the 1 at the end.  Running the rsync
> command as root would *work*, but it wouldn't do anything useful, since
> the OP wanted to rsync a bunch of stuff to that external disk.
>
> (Sometimes, I think people don't read the stuff I write... is it
> horrible mail clients, spam filtering, short attention spans,
> or--SQUIRREL!
>
> --
> Crow202 Blog: http://crow202.org/wordpress
> There is no Darkness in Eternity
> But only Light too dim for us to see.
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

ADD? NO! not me!!! (was RE: rsync problem)

2018-09-27 Thread Carruth, Rusty
Well, my Dr says I have ADD, but I think he's wrong because - HEY, look at that 
rabbit!

-Original Message-
Subject: Re: rsync problem
...
 (Sometimes, I think people don't read the stuff I write... is it horrible mail 
clients, spam filtering, short attention spans, or--SQUIRREL!

-- 
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-27 Thread Matt Graham

mount
/dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
bmike1@MikesBeast ~ $ ls -l /media/bmike1
drwxr-xr-x 3 root   root   4096 Sep 25 19:16 Seagate Expansion Drive
drwxrwxrwx 1 bmike1 bmike1 4096 Sep 25 19:57 Seagate Expansion 
Drive1


On 2018-09-27 15:06, Bob Elzer wrote:

what about running the rsync command [as] root?


Bob, the problem as shown in the parts of the message above marked with 
>>> is that the automounter put the disk /dev/sdc1 on 
"/media/bmike1/Seagate Expansion Drive1" instead of 
"/media/bmike1/Seagate Expansion Drive".  The OP was expecting the disk 
to be on the mountpoint without the 1 at the end.  Running the rsync 
command as root would *work*, but it wouldn't do anything useful, since 
the OP wanted to rsync a bunch of stuff to that external disk.


(Sometimes, I think people don't read the stuff I write... is it 
horrible mail clients, spam filtering, short attention spans, 
or--SQUIRREL!


--
Crow202 Blog: http://crow202.org/wordpress
There is no Darkness in Eternity
But only Light too dim for us to see.
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-27 Thread Bob Elzer
what about running the rsync command from root?

if you know the root password, you can sudo to root and run the rsync
command and it should be able to accomplish any reads and writes


On Thu, Sep 27, 2018, 3:01 PM Matt Graham  wrote:

>  /dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
>  bmike1@MikesBeast ~ $ ls -l /media/bmike1
>  drwxr-xr-x 3 root   root   4096 Sep 25 19:16 Seagate Expansion
>  Drive
>  drwxrwxrwx 1 bmike1 bmike1 4096 Sep 25 19:57 Seagate Expansion
>  Drive1
> >>> Have a good look at the ls -l output and the output from mount.
> >>> This
> >>> is a problem people run into with automounters and sometimes
> >>> mounting by
> >>> device identifiers.
>
> > On Wed, Sep 26, 2018 at 8:34 PM Bob Elzer  wrote:
> >> my guess would be you are not unmounting it correctly. if you yank it
> >> out before unmounting it, you could be interrupting some write
> >> operations. which could corrupt something.
> >> Questions would be are you unmounting before you remove it.
> On 2018-09-27 01:07, Michael wrote:
> > yes
>
> The way the problem is showing up makes me think it's the automounter
> doing something dumb.  2 directories in /media/bmike1 , one named with
> the filesystem label of the disk, one named that label+"1" is a classic
> programmer solution to the problem of having two filesystems with the
> same label present at the same time.  Something somewhere forgot to
> clean up the old mountpoint, the automounter thinks the device is still
> there, and your backup fails because the device is mounted to a
> mountpoint that's not what you expect.
>
> So:  Go in to whatever's doing your automounting, gnome-mount or
> whatever, and umount all the removable media devices it thinks are
> mounted.  Unplug the disk.  After that, there should be no directories
> in /media/bmike1/ .  If there are, rmdir them.  Then plug the disk back
> in.  If you're lucky, the automounter will then put the disk on the
> right mountpoint.
>
> --
> Crow202 Blog: http://crow202.org/wordpress
> There is no Darkness in Eternity
> But only Light too dim for us to see.
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-27 Thread Matt Graham

/dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
bmike1@MikesBeast ~ $ ls -l /media/bmike1
drwxr-xr-x 3 root   root   4096 Sep 25 19:16 Seagate Expansion 
Drive
drwxrwxrwx 1 bmike1 bmike1 4096 Sep 25 19:57 Seagate Expansion 
Drive1
Have a good look at the ls -l output and the output from mount.  
This
is a problem people run into with automounters and sometimes 
mounting by

device identifiers.



On Wed, Sep 26, 2018 at 8:34 PM Bob Elzer  wrote:

my guess would be you are not unmounting it correctly. if you yank it
out before unmounting it, you could be interrupting some write
operations. which could corrupt something.
Questions would be are you unmounting before you remove it.

On 2018-09-27 01:07, Michael wrote:

yes


The way the problem is showing up makes me think it's the automounter 
doing something dumb.  2 directories in /media/bmike1 , one named with 
the filesystem label of the disk, one named that label+"1" is a classic 
programmer solution to the problem of having two filesystems with the 
same label present at the same time.  Something somewhere forgot to 
clean up the old mountpoint, the automounter thinks the device is still 
there, and your backup fails because the device is mounted to a 
mountpoint that's not what you expect.


So:  Go in to whatever's doing your automounting, gnome-mount or 
whatever, and umount all the removable media devices it thinks are 
mounted.  Unplug the disk.  After that, there should be no directories 
in /media/bmike1/ .  If there are, rmdir them.  Then plug the disk back 
in.  If you're lucky, the automounter will then put the disk on the 
right mountpoint.


--
Crow202 Blog: http://crow202.org/wordpress
There is no Darkness in Eternity
But only Light too dim for us to see.
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-27 Thread Michael
Questions would be are you unmounting before you remove it.
yes
where do you keep it and how do you treat it.
it sits on top of the computer
do you keep it you glove compartment and go off roading everyday?
not at all
my guess would be you are not unmounting it correctly. if you yank it out
before unmounting it, you could be interrupting some write operations.
which could corrupt something.

was this a new drive or a refurbished drive, or maybe an old used drive?
it was new from amazon

On Wed, Sep 26, 2018 at 9:35 PM Bob Elzer  wrote:

> yes I know it's a flash drive, thats why I asked those questions, they all
> apply to hard drives.
>
>
> On Wed, Sep 26, 2018, 5:36 PM Michael  wrote:
>
>> it isn't a flash drive. it is an external hard drive.
>>
>> On Wed, Sep 26, 2018 at 8:34 PM Bob Elzer  wrote:
>>
>>> I think the real question might be how do you remove the drive from the
>>> system.
>>>
>>> you have had a lot of problems with flash drives doing the same thing
>>> and we always thought it was the flash going bad, so we recommended a
>>> external hard drive.
>>>
>>> Questions would be are you unmounting before you remove it.
>>>
>>> where do you keep it and how do you treat it.
>>>
>>> do you keep it you glove compartment and go off roading everyday?
>>>
>>> my guess would be you are not unmounting it correctly. if you yank it
>>> out before unmounting it, you could be interrupting some write operations.
>>> which could corrupt something.
>>>
>>> was this a new drive or a refurbished drive, or maybe an old used drive?
>>>
>>> I would only recommend using a new drive to store backups on.
>>>
>>>
>>>
>>> On Wed, Sep 26, 2018, 3:04 PM Matt Graham  wrote:
>>>
 On 2018-09-26 14:41, Michael wrote:
 >> On Wed, Sep 26, 2018 at 5:27 PM Matt Graham 
 >> wrote:
  On Tue, Sep 25, 2018 at 4:20 PM Michael  wrote:
 >>> bmike1@MikesBeast ~ $ rsync -aWuq --delete-before
 >>> /home/bmike1/Documents /media/bmike1/"Seagate Expansion Drive"
 >>> rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed:
 >>> Permission denied (13)
 >> Post the output of "mount | grep bmike1" and "ls -l
 >> /media/bmike1" and "dmesg | tail".

 > /dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
 > bmike1@MikesBeast ~ $ ls -l /media/bmike1
 > drwxr-xr-x 3 root   root   4096 Sep 25 19:16 Seagate Expansion Drive
 > drwxrwxrwx 1 bmike1 bmike1 4096 Sep 25 19:57 Seagate Expansion Drive1

 Have a good look at the ls -l output and the output from mount.  This
 is a problem people run into with automounters and sometimes mounting
 by
 device identifiers.  I had an older removable drive that would
 sometimes
 show up with a /dev/disk/by-id/ unique string that ended in
 "1870-0:0-part1" and sometimes "187-0:0-part1", which might confuse an
 automounter in a very similar way.

 Or you have multiple disks with identical volume labels.  That's always
 a recipe for disaster, kind of like putting a moose in a blender.

 --
 Crow202 Blog: http://crow202.org/wordpress
 There is no Darkness in Eternity
 But only Light too dim for us to see.
 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-26 Thread Bob Elzer
yes I know it's a flash drive, thats why I asked those questions, they all
apply to hard drives.


On Wed, Sep 26, 2018, 5:36 PM Michael  wrote:

> it isn't a flash drive. it is an external hard drive.
>
> On Wed, Sep 26, 2018 at 8:34 PM Bob Elzer  wrote:
>
>> I think the real question might be how do you remove the drive from the
>> system.
>>
>> you have had a lot of problems with flash drives doing the same thing and
>> we always thought it was the flash going bad, so we recommended a external
>> hard drive.
>>
>> Questions would be are you unmounting before you remove it.
>>
>> where do you keep it and how do you treat it.
>>
>> do you keep it you glove compartment and go off roading everyday?
>>
>> my guess would be you are not unmounting it correctly. if you yank it out
>> before unmounting it, you could be interrupting some write operations.
>> which could corrupt something.
>>
>> was this a new drive or a refurbished drive, or maybe an old used drive?
>>
>> I would only recommend using a new drive to store backups on.
>>
>>
>>
>> On Wed, Sep 26, 2018, 3:04 PM Matt Graham  wrote:
>>
>>> On 2018-09-26 14:41, Michael wrote:
>>> >> On Wed, Sep 26, 2018 at 5:27 PM Matt Graham 
>>> >> wrote:
>>>  On Tue, Sep 25, 2018 at 4:20 PM Michael  wrote:
>>> >>> bmike1@MikesBeast ~ $ rsync -aWuq --delete-before
>>> >>> /home/bmike1/Documents /media/bmike1/"Seagate Expansion Drive"
>>> >>> rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed:
>>> >>> Permission denied (13)
>>> >> Post the output of "mount | grep bmike1" and "ls -l
>>> >> /media/bmike1" and "dmesg | tail".
>>>
>>> > /dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
>>> > bmike1@MikesBeast ~ $ ls -l /media/bmike1
>>> > drwxr-xr-x 3 root   root   4096 Sep 25 19:16 Seagate Expansion Drive
>>> > drwxrwxrwx 1 bmike1 bmike1 4096 Sep 25 19:57 Seagate Expansion Drive1
>>>
>>> Have a good look at the ls -l output and the output from mount.  This
>>> is a problem people run into with automounters and sometimes mounting by
>>> device identifiers.  I had an older removable drive that would sometimes
>>> show up with a /dev/disk/by-id/ unique string that ended in
>>> "1870-0:0-part1" and sometimes "187-0:0-part1", which might confuse an
>>> automounter in a very similar way.
>>>
>>> Or you have multiple disks with identical volume labels.  That's always
>>> a recipe for disaster, kind of like putting a moose in a blender.
>>>
>>> --
>>> Crow202 Blog: http://crow202.org/wordpress
>>> There is no Darkness in Eternity
>>> But only Light too dim for us to see.
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
>
>
> --
> :-)~MIKE~(-:
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-26 Thread Michael
it isn't a flash drive. it is an external hard drive.

On Wed, Sep 26, 2018 at 8:34 PM Bob Elzer  wrote:

> I think the real question might be how do you remove the drive from the
> system.
>
> you have had a lot of problems with flash drives doing the same thing and
> we always thought it was the flash going bad, so we recommended a external
> hard drive.
>
> Questions would be are you unmounting before you remove it.
>
> where do you keep it and how do you treat it.
>
> do you keep it you glove compartment and go off roading everyday?
>
> my guess would be you are not unmounting it correctly. if you yank it out
> before unmounting it, you could be interrupting some write operations.
> which could corrupt something.
>
> was this a new drive or a refurbished drive, or maybe an old used drive?
>
> I would only recommend using a new drive to store backups on.
>
>
>
> On Wed, Sep 26, 2018, 3:04 PM Matt Graham  wrote:
>
>> On 2018-09-26 14:41, Michael wrote:
>> >> On Wed, Sep 26, 2018 at 5:27 PM Matt Graham 
>> >> wrote:
>>  On Tue, Sep 25, 2018 at 4:20 PM Michael  wrote:
>> >>> bmike1@MikesBeast ~ $ rsync -aWuq --delete-before
>> >>> /home/bmike1/Documents /media/bmike1/"Seagate Expansion Drive"
>> >>> rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed:
>> >>> Permission denied (13)
>> >> Post the output of "mount | grep bmike1" and "ls -l
>> >> /media/bmike1" and "dmesg | tail".
>>
>> > /dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
>> > bmike1@MikesBeast ~ $ ls -l /media/bmike1
>> > drwxr-xr-x 3 root   root   4096 Sep 25 19:16 Seagate Expansion Drive
>> > drwxrwxrwx 1 bmike1 bmike1 4096 Sep 25 19:57 Seagate Expansion Drive1
>>
>> Have a good look at the ls -l output and the output from mount.  This
>> is a problem people run into with automounters and sometimes mounting by
>> device identifiers.  I had an older removable drive that would sometimes
>> show up with a /dev/disk/by-id/ unique string that ended in
>> "1870-0:0-part1" and sometimes "187-0:0-part1", which might confuse an
>> automounter in a very similar way.
>>
>> Or you have multiple disks with identical volume labels.  That's always
>> a recipe for disaster, kind of like putting a moose in a blender.
>>
>> --
>> Crow202 Blog: http://crow202.org/wordpress
>> There is no Darkness in Eternity
>> But only Light too dim for us to see.
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-26 Thread Bob Elzer
I think the real question might be how do you remove the drive from the
system.

you have had a lot of problems with flash drives doing the same thing and
we always thought it was the flash going bad, so we recommended a external
hard drive.

Questions would be are you unmounting before you remove it.

where do you keep it and how do you treat it.

do you keep it you glove compartment and go off roading everyday?

my guess would be you are not unmounting it correctly. if you yank it out
before unmounting it, you could be interrupting some write operations.
which could corrupt something.

was this a new drive or a refurbished drive, or maybe an old used drive?

I would only recommend using a new drive to store backups on.



On Wed, Sep 26, 2018, 3:04 PM Matt Graham  wrote:

> On 2018-09-26 14:41, Michael wrote:
> >> On Wed, Sep 26, 2018 at 5:27 PM Matt Graham 
> >> wrote:
>  On Tue, Sep 25, 2018 at 4:20 PM Michael  wrote:
> >>> bmike1@MikesBeast ~ $ rsync -aWuq --delete-before
> >>> /home/bmike1/Documents /media/bmike1/"Seagate Expansion Drive"
> >>> rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed:
> >>> Permission denied (13)
> >> Post the output of "mount | grep bmike1" and "ls -l
> >> /media/bmike1" and "dmesg | tail".
>
> > /dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
> > bmike1@MikesBeast ~ $ ls -l /media/bmike1
> > drwxr-xr-x 3 root   root   4096 Sep 25 19:16 Seagate Expansion Drive
> > drwxrwxrwx 1 bmike1 bmike1 4096 Sep 25 19:57 Seagate Expansion Drive1
>
> Have a good look at the ls -l output and the output from mount.  This
> is a problem people run into with automounters and sometimes mounting by
> device identifiers.  I had an older removable drive that would sometimes
> show up with a /dev/disk/by-id/ unique string that ended in
> "1870-0:0-part1" and sometimes "187-0:0-part1", which might confuse an
> automounter in a very similar way.
>
> Or you have multiple disks with identical volume labels.  That's always
> a recipe for disaster, kind of like putting a moose in a blender.
>
> --
> Crow202 Blog: http://crow202.org/wordpress
> There is no Darkness in Eternity
> But only Light too dim for us to see.
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-26 Thread Matt Graham

On 2018-09-26 14:41, Michael wrote:
On Wed, Sep 26, 2018 at 5:27 PM Matt Graham  
wrote:

On Tue, Sep 25, 2018 at 4:20 PM Michael  wrote:

bmike1@MikesBeast ~ $ rsync -aWuq --delete-before
/home/bmike1/Documents /media/bmike1/"Seagate Expansion Drive"
rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed:
Permission denied (13)

Post the output of "mount | grep bmike1" and "ls -l
/media/bmike1" and "dmesg | tail".



/dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
bmike1@MikesBeast ~ $ ls -l /media/bmike1
drwxr-xr-x 3 root   root   4096 Sep 25 19:16 Seagate Expansion Drive
drwxrwxrwx 1 bmike1 bmike1 4096 Sep 25 19:57 Seagate Expansion Drive1


Have a good look at the ls -l output and the output from mount.  This 
is a problem people run into with automounters and sometimes mounting by 
device identifiers.  I had an older removable drive that would sometimes 
show up with a /dev/disk/by-id/ unique string that ended in 
"1870-0:0-part1" and sometimes "187-0:0-part1", which might confuse an 
automounter in a very similar way.


Or you have multiple disks with identical volume labels.  That's always 
a recipe for disaster, kind of like putting a moose in a blender.


--
Crow202 Blog: http://crow202.org/wordpress
There is no Darkness in Eternity
But only Light too dim for us to see.
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-26 Thread Michael
Sorry messed up on the last message

bmike1@MikesBeast ~ $ mount | grep bmike1
/dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
(rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)

bmike1@MikesBeast ~ $ ls -l /media/bmike1
total 8
drwxr-xr-x 3 root   root   4096 Sep 25 19:16 Seagate Expansion Drive
drwxrwxrwx 1 bmike1 bmike1 4096 Sep 25 19:57 Seagate Expansion Drive1
bmike1@MikesBeast ~ $
bmike1@MikesBeast ~ $ dmesg | tail
[109944.653416] sd 7:0:0:0: [sdc] Mode Sense: 4f 00 00 00
[109944.654087] sd 7:0:0:0: [sdc] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[109944.681906]  sdc: sdc1
[109944.686092] sd 7:0:0:0: [sdc] Attached SCSI disk
[109961.270107] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.0.1 DST=224.0.0.1
LEN=28 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
[109961.270335] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.0.1 DST=224.0.0.1
LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
[109961.270487] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.1.1 DST=224.0.0.1
LEN=28 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
[109961.270638] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.1.1 DST=224.0.0.1
LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
[109961.270790] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.2.1 DST=224.0.0.1
LEN=28 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
[109961.270941] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.2.1 DST=224.0.0.1
LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
bmike1@MikesBeast ~ $

On Wed, Sep 26, 2018 at 5:36 PM Michael  wrote:

> bmike1@MikesBeast ~ $ mount | grep bmike1
> /dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
> (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)
> bmike1@MikesBeast ~ $ ls -l
> total 433884
> drwxr-x---  2 bmike1 bmike1  4096 Jun  5 10:44 4checks
> -rw-r-  1 bmike1 bmike1360547 May  9 18:24 4checks.pdf
> drwxr-xr-x  2 bmike1 bmike1  4096 Jul 14 10:54 Desktop
> -rw-rw-r--  1 bmike1 bmike1 442936608 Sep 12 09:36 DNGConverter_10_5.exe
> drwxrwxrwx 32 bmike1 bmike1  4096 Sep 12 13:07 Documents
> drwxr-xr-x  2 bmike1 bmike1  4096 Sep 12 13:06 Downloads
> drwxr-x---  2 bmike1 bmike1  4096 Jun  5 10:51 habitatdenial
> -rw-r-  1 bmike1 bmike1236937 Jun  5 10:51 habitatdenial.pdf
> drwxrwxr-x  2 bmike1 bmike1 12288 Sep 12 10:42 lensprofiles
> -rw-r-  1 bmike1 bmike1 36759 May  9 18:26 Milistatement.pdf
> drwxr-x---  2 bmike1 bmike1  4096 May  9 17:32 multipageproject
> drwxr-xr-x  2 bmike1 bmike1  4096 Apr 12 21:43 Music
> drwxrwxrwx 32 bmike1 bmike1  4096 May  4 18:44 Pictures
> drwxr-xr-x  2 bmike1 bmike1  4096 Apr 12 21:43 Public
> -rw-r-  1 bmike1 bmike1649194 May  9 17:39 taxreturn2017.pdf
> drwxr-xr-x  2 bmike1 bmike1  4096 Apr 12 21:43 Templates
> drwxr-xr-x  2 bmike1 bmike1  4096 Apr 12 21:43 Videos
> drwxrwxr-x  4 bmike1 bmike1  4096 Sep 12 09:55 wine-dng
> bmike1@MikesBeast ~ $ dmesg | tail
> [109944.653416] sd 7:0:0:0: [sdc] Mode Sense: 4f 00 00 00
> [109944.654087] sd 7:0:0:0: [sdc] Write cache: enabled, read cache:
> enabled, doesn't support DPO or FUA
> [109944.681906]  sdc: sdc1
> [109944.686092] sd 7:0:0:0: [sdc] Attached SCSI disk
> [109961.270107] [UFW BLOCK] IN=enp2s0 OUT=
> MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.0.1 DST=224.0.0.1
> LEN=28 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
> [109961.270335] [UFW BLOCK] IN=enp2s0 OUT=
> MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.0.1 DST=224.0.0.1
> LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
> [109961.270487] [UFW BLOCK] IN=enp2s0 OUT=
> MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.1.1 DST=224.0.0.1
> LEN=28 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
> [109961.270638] [UFW BLOCK] IN=enp2s0 OUT=
> MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.1.1 DST=224.0.0.1
> LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
> [109961.270790] [UFW BLOCK] IN=enp2s0 OUT=
> MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.2.1 DST=224.0.0.1
> LEN=28 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
> [109961.270941] [UFW BLOCK] IN=enp2s0 OUT=
> MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.2.1 DST=224.0.0.1
> LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
> bmike1@MikesBeast ~ $
>
>
> On Wed, Sep 26, 2018 at 5:27 PM Matt Graham  wrote:
>
>> > On Tue, Sep 25, 2018 at 4:20 PM Michael  wrote:
>> >> bmike1@MikesBeast ~ $ rsync -aWuq --delete-before
>> >> /home/bmike1/Documents
>> >> /media/bmike1/"Seagate Expansion Drive"
>> >> rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed:
>> >> Permission denied (13)
>> >> I never had this problem before. What does it mean?
>> On 2018-09-25 16:22, 

Re: rsync problem

2018-09-26 Thread Michael
bmike1@MikesBeast ~ $ mount | grep bmike1
/dev/sdc1 on /media/bmike1/Seagate Expansion Drive1 type fuseblk
(rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)
bmike1@MikesBeast ~ $ ls -l
total 433884
drwxr-x---  2 bmike1 bmike1  4096 Jun  5 10:44 4checks
-rw-r-  1 bmike1 bmike1360547 May  9 18:24 4checks.pdf
drwxr-xr-x  2 bmike1 bmike1  4096 Jul 14 10:54 Desktop
-rw-rw-r--  1 bmike1 bmike1 442936608 Sep 12 09:36 DNGConverter_10_5.exe
drwxrwxrwx 32 bmike1 bmike1  4096 Sep 12 13:07 Documents
drwxr-xr-x  2 bmike1 bmike1  4096 Sep 12 13:06 Downloads
drwxr-x---  2 bmike1 bmike1  4096 Jun  5 10:51 habitatdenial
-rw-r-  1 bmike1 bmike1236937 Jun  5 10:51 habitatdenial.pdf
drwxrwxr-x  2 bmike1 bmike1 12288 Sep 12 10:42 lensprofiles
-rw-r-  1 bmike1 bmike1 36759 May  9 18:26 Milistatement.pdf
drwxr-x---  2 bmike1 bmike1  4096 May  9 17:32 multipageproject
drwxr-xr-x  2 bmike1 bmike1  4096 Apr 12 21:43 Music
drwxrwxrwx 32 bmike1 bmike1  4096 May  4 18:44 Pictures
drwxr-xr-x  2 bmike1 bmike1  4096 Apr 12 21:43 Public
-rw-r-  1 bmike1 bmike1649194 May  9 17:39 taxreturn2017.pdf
drwxr-xr-x  2 bmike1 bmike1  4096 Apr 12 21:43 Templates
drwxr-xr-x  2 bmike1 bmike1  4096 Apr 12 21:43 Videos
drwxrwxr-x  4 bmike1 bmike1  4096 Sep 12 09:55 wine-dng
bmike1@MikesBeast ~ $ dmesg | tail
[109944.653416] sd 7:0:0:0: [sdc] Mode Sense: 4f 00 00 00
[109944.654087] sd 7:0:0:0: [sdc] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[109944.681906]  sdc: sdc1
[109944.686092] sd 7:0:0:0: [sdc] Attached SCSI disk
[109961.270107] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.0.1 DST=224.0.0.1
LEN=28 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
[109961.270335] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.0.1 DST=224.0.0.1
LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
[109961.270487] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.1.1 DST=224.0.0.1
LEN=28 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
[109961.270638] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.1.1 DST=224.0.0.1
LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
[109961.270790] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.2.1 DST=224.0.0.1
LEN=28 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
[109961.270941] [UFW BLOCK] IN=enp2s0 OUT=
MAC=01:00:5e:00:00:01:b0:93:5b:2d:f4:28:08:00 SRC=192.168.2.1 DST=224.0.0.1
LEN=32 TOS=0x00 PREC=0x00 TTL=1 ID=0 PROTO=2
bmike1@MikesBeast ~ $


On Wed, Sep 26, 2018 at 5:27 PM Matt Graham  wrote:

> > On Tue, Sep 25, 2018 at 4:20 PM Michael  wrote:
> >> bmike1@MikesBeast ~ $ rsync -aWuq --delete-before
> >> /home/bmike1/Documents
> >> /media/bmike1/"Seagate Expansion Drive"
> >> rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed:
> >> Permission denied (13)
> >> I never had this problem before. What does it mean?
> On 2018-09-25 16:22, Anthony Radzykewycz wrote:
> > Maybe the owner of the drive is root
>
> More explicitly, the root directory of the removable device mounted on
> /media/bmike1 could be owned by root and not writable by group/other.
> This is why if you have a removable medium that's not FAT, you usually
> have several subdirectories in that device's root dir that can be
> chowned to whoever.  If you're using this device to back up more than
> one machine, you may be running into UIDs being different on different
> machines.  Post the output of "mount | grep bmike1" and "ls -l
> /media/bmike1" and "dmesg | tail".
>
> --
> Crow202 Blog: http://crow202.org/wordpress
> There is no Darkness in Eternity
> But only Light too dim for us to see.
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-26 Thread Matt Graham

On Tue, Sep 25, 2018 at 4:20 PM Michael  wrote:
bmike1@MikesBeast ~ $ rsync -aWuq --delete-before 
/home/bmike1/Documents

/media/bmike1/"Seagate Expansion Drive"
rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed: 
Permission denied (13)

I never had this problem before. What does it mean?

On 2018-09-25 16:22, Anthony Radzykewycz wrote:

Maybe the owner of the drive is root 


More explicitly, the root directory of the removable device mounted on 
/media/bmike1 could be owned by root and not writable by group/other.  
This is why if you have a removable medium that's not FAT, you usually 
have several subdirectories in that device's root dir that can be 
chowned to whoever.  If you're using this device to back up more than 
one machine, you may be running into UIDs being different on different 
machines.  Post the output of "mount | grep bmike1" and "ls -l 
/media/bmike1" and "dmesg | tail".


--
Crow202 Blog: http://crow202.org/wordpress
There is no Darkness in Eternity
But only Light too dim for us to see.
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-25 Thread Michael
but I've run the command multiple times before with no problems


On Tue, Sep 25, 2018 at 7:36 PM Kevin Fries  wrote:

> Probably means you dont have the permissions to do a delete on the source
> file
>
> Kevin
>
> Sent from BlueMail 
> On Sep 25, 2018, at 5:20 PM, Michael  wrote:
>>
>> I never had this problem before. What does it mean?
>>
>> bmike1@MikesBeast ~ $ rsync -aWuq --delete-before /home/bmike1/Documents
>> /media/bmike1/"Seagate Expansion Drive"
>> rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed: Permission
>> denied (13)
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>> --
>>
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-25 Thread Kevin Fries
Probably means you dont have the permissions to do a delete on the source file

Kevin

⁣Sent from BlueMail ​

On Sep 25, 2018, 5:20 PM, at 5:20 PM, Michael  wrote:
>I never had this problem before. What does it mean?
>
>bmike1@MikesBeast ~ $ rsync -aWuq --delete-before
>/home/bmike1/Documents
>/media/bmike1/"Seagate Expansion Drive"
>rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed: Permission
>denied (13)
>
>
>--
>:-)~MIKE~(-:
>
>
>
>
>---
>PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>To subscribe, unsubscribe, or to change your mail settings:
>http://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-25 Thread Michael
never had the problem before


On Tue, Sep 25, 2018 at 7:22 PM, Anthony Radzykewycz <
anthony.radzykew...@gatewaycc.edu> wrote:

> Maybe the owner of the drive is root
>
> On Tue, Sep 25, 2018 at 4:20 PM Michael  wrote:
>
>> I never had this problem before. What does it mean?
>>
>> bmike1@MikesBeast ~ $ rsync -aWuq --delete-before /home/bmike1/Documents
>> /media/bmike1/"Seagate Expansion Drive"
>> rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed: Permission
>> denied (13)
>>
>>
>> --
>> :-)~MIKE~(-:
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-25 Thread Michael
could it mean my drive is dieing?

On Tue, Sep 25, 2018 at 7:19 PM, Michael  wrote:

> I never had this problem before. What does it mean?
>
> bmike1@MikesBeast ~ $ rsync -aWuq --delete-before /home/bmike1/Documents
> /media/bmike1/"Seagate Expansion Drive"
> rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed: Permission
> denied (13)
>
>
> --
> :-)~MIKE~(-:
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2018-09-25 Thread Anthony Radzykewycz
Maybe the owner of the drive is root

On Tue, Sep 25, 2018 at 4:20 PM Michael  wrote:

> I never had this problem before. What does it mean?
>
> bmike1@MikesBeast ~ $ rsync -aWuq --delete-before /home/bmike1/Documents
> /media/bmike1/"Seagate Expansion Drive"
> rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed: Permission
> denied (13)
>
>
> --
> :-)~MIKE~(-:
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

rsync problem

2018-09-25 Thread Michael
I never had this problem before. What does it mean?

bmike1@MikesBeast ~ $ rsync -aWuq --delete-before /home/bmike1/Documents
/media/bmike1/"Seagate Expansion Drive"
rsync: mkdir "/media/bmike1/Seagate Expansion Drive" failed: Permission
denied (13)


-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-10 Thread James Mcphee
Something to also pay attention to, some filesystems don't support all the
options that rsync tries to set, like users and permissions.  In that case,
it's necessary to do rsync with a flag besides "-a" and pull the
unsupported bits out of the "-rlptgoD".  This is suboptimal, since a lot of
those fields are also part of the matching for changes, but 

Anyway, something to think about.

On Tue, May 10, 2016 at 7:39 AM, Brien Dieterle  wrote:

> Well it is formatted for Windows vfat but it is mounted RW so there was
> probably an error that caused it to remount read only.  I'd backup any data
> you need off that drive and run
> sudo umount /dev/sdd1
> sudo fsck.vfat -a /dev/sdd1
> to check and repair filesystem errors.
> On May 10, 2016 3:39 AM, "Michael"  wrote:
>
>> /dev/sdd1 on /media/bmike1/RedSanDisk type vfat
>> (rw,nosuid,nodev,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1,showexec,flush,uhelper=udisks2)
>>
>>
>> On Tue, May 10, 2016 at 12:18 AM, James Mcphee  wrote:
>>
>>> Plug it in, run "mount", just the command, no options, to print mount
>>> options, and show us the filesystem and options?
>>>
>>> On Mon, May 9, 2016 at 8:28 PM, Michael  wrote:
>>>
 df says it is 85% full with 5 G left of 30. I sure hope it isn't
 dying I bought it less than a year ago. I only write to it around 8
 times a month. as for how it is mounted this is the first time it has
 messed up on me since I bought it.

 On Mon, May 9, 2016 at 11:01 PM, Bob Elzer  wrote:

> I have a feeling that your USB drive may be dying.
>
> If it is flash, how many times have you copied to it? A lot?
>
> What size is it? Is it near full?
> On May 9, 2016 7:21 PM, "Michael"  wrote:
>
>> what about this:
>> "read only file system" thing?
>>
>> On Mon, May 9, 2016 at 10:15 PM, Sesso  wrote:
>>
>>> Try using just --delete instead of --delete-before
>>>
>>> Sent from my iPhone
>>>
>>> On May 9, 2016, at 7:09 PM, Michael  wrote:
>>>
>>> well, I just ran it with the trailing slash and it gave me the same
>>> output as before except it happened immediately. The USB drive wasn't
>>> accessd for five minutes.
>>>
>>> On Mon, May 9, 2016 at 10:04 PM, Bob Elzer 
>>> wrote:
>>>
 My syncs look like this

 Rsync -rauh  --delete  /frompath/fromdir   /topath/todir

 This copies the fromdir into the todir directory and copies all
 files and directories below fromdir

 -r   recursive
 -a  archive - which is synonymous to -rlptgoD
 -u  update :don't over write newer files
 -W  copy whole files (don't do delta)
 -h  human readable numbers

 This backs up my stuff to an external drive, thus I don't need to
 do a delta or compression because it is all local
 --delete  Any files that were removed from the source will be
 removed from the destination

 If I were copying across a network, I add -z  and remove -W
 Which will compress the transfer and only send changes when
 possible.

 Normally I use --quiet and change it to --verbose or --progress
 when I want to monitor it
 On May 9, 2016 4:05 PM, "Michael"  wrote:

> When I run rsync one file (a directory) will not sync and the
> files in that file. I was wondering why. I thought that maybe if the 
> file
> was in there to start that would fix it and it does so if only 
> temporarily.
> Upon the next run of rsync the directory in question is deleted.
> the command that is run:
>  $ rsync -aWuq --delete-before /home/bmike1/Documents
> /media/bmike1/RedSanDisk
>
>
>
> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>>
>>>
>>> --
>>> :-)~MIKE~(-:
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, 

Re: rsync problem

2016-05-10 Thread Brien Dieterle
Well it is formatted for Windows vfat but it is mounted RW so there was
probably an error that caused it to remount read only.  I'd backup any data
you need off that drive and run
sudo umount /dev/sdd1
sudo fsck.vfat -a /dev/sdd1
to check and repair filesystem errors.
On May 10, 2016 3:39 AM, "Michael"  wrote:

> /dev/sdd1 on /media/bmike1/RedSanDisk type vfat
> (rw,nosuid,nodev,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1,showexec,flush,uhelper=udisks2)
>
>
> On Tue, May 10, 2016 at 12:18 AM, James Mcphee  wrote:
>
>> Plug it in, run "mount", just the command, no options, to print mount
>> options, and show us the filesystem and options?
>>
>> On Mon, May 9, 2016 at 8:28 PM, Michael  wrote:
>>
>>> df says it is 85% full with 5 G left of 30. I sure hope it isn't
>>> dying I bought it less than a year ago. I only write to it around 8
>>> times a month. as for how it is mounted this is the first time it has
>>> messed up on me since I bought it.
>>>
>>> On Mon, May 9, 2016 at 11:01 PM, Bob Elzer  wrote:
>>>
 I have a feeling that your USB drive may be dying.

 If it is flash, how many times have you copied to it? A lot?

 What size is it? Is it near full?
 On May 9, 2016 7:21 PM, "Michael"  wrote:

> what about this:
> "read only file system" thing?
>
> On Mon, May 9, 2016 at 10:15 PM, Sesso  wrote:
>
>> Try using just --delete instead of --delete-before
>>
>> Sent from my iPhone
>>
>> On May 9, 2016, at 7:09 PM, Michael  wrote:
>>
>> well, I just ran it with the trailing slash and it gave me the same
>> output as before except it happened immediately. The USB drive wasn't
>> accessd for five minutes.
>>
>> On Mon, May 9, 2016 at 10:04 PM, Bob Elzer 
>> wrote:
>>
>>> My syncs look like this
>>>
>>> Rsync -rauh  --delete  /frompath/fromdir   /topath/todir
>>>
>>> This copies the fromdir into the todir directory and copies all
>>> files and directories below fromdir
>>>
>>> -r   recursive
>>> -a  archive - which is synonymous to -rlptgoD
>>> -u  update :don't over write newer files
>>> -W  copy whole files (don't do delta)
>>> -h  human readable numbers
>>>
>>> This backs up my stuff to an external drive, thus I don't need to do
>>> a delta or compression because it is all local
>>> --delete  Any files that were removed from the source will be
>>> removed from the destination
>>>
>>> If I were copying across a network, I add -z  and remove -W
>>> Which will compress the transfer and only send changes when possible.
>>>
>>> Normally I use --quiet and change it to --verbose or --progress when
>>> I want to monitor it
>>> On May 9, 2016 4:05 PM, "Michael"  wrote:
>>>
 When I run rsync one file (a directory) will not sync and the files
 in that file. I was wondering why. I thought that maybe if the file 
 was in
 there to start that would fix it and it does so if only temporarily. 
 Upon
 the next run of rsync the directory in question is deleted.
 the command that is run:
  $ rsync -aWuq --delete-before /home/bmike1/Documents
 /media/bmike1/RedSanDisk



 https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing

 --
 :-)~MIKE~(-:

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
>
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change 

Re: rsync problem

2016-05-10 Thread Michael
/dev/sdd1 on /media/bmike1/RedSanDisk type vfat
(rw,nosuid,nodev,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1,showexec,flush,uhelper=udisks2)


On Tue, May 10, 2016 at 12:18 AM, James Mcphee  wrote:

> Plug it in, run "mount", just the command, no options, to print mount
> options, and show us the filesystem and options?
>
> On Mon, May 9, 2016 at 8:28 PM, Michael  wrote:
>
>> df says it is 85% full with 5 G left of 30. I sure hope it isn't
>> dying I bought it less than a year ago. I only write to it around 8
>> times a month. as for how it is mounted this is the first time it has
>> messed up on me since I bought it.
>>
>> On Mon, May 9, 2016 at 11:01 PM, Bob Elzer  wrote:
>>
>>> I have a feeling that your USB drive may be dying.
>>>
>>> If it is flash, how many times have you copied to it? A lot?
>>>
>>> What size is it? Is it near full?
>>> On May 9, 2016 7:21 PM, "Michael"  wrote:
>>>
 what about this:
 "read only file system" thing?

 On Mon, May 9, 2016 at 10:15 PM, Sesso  wrote:

> Try using just --delete instead of --delete-before
>
> Sent from my iPhone
>
> On May 9, 2016, at 7:09 PM, Michael  wrote:
>
> well, I just ran it with the trailing slash and it gave me the same
> output as before except it happened immediately. The USB drive wasn't
> accessd for five minutes.
>
> On Mon, May 9, 2016 at 10:04 PM, Bob Elzer 
> wrote:
>
>> My syncs look like this
>>
>> Rsync -rauh  --delete  /frompath/fromdir   /topath/todir
>>
>> This copies the fromdir into the todir directory and copies all files
>> and directories below fromdir
>>
>> -r   recursive
>> -a  archive - which is synonymous to -rlptgoD
>> -u  update :don't over write newer files
>> -W  copy whole files (don't do delta)
>> -h  human readable numbers
>>
>> This backs up my stuff to an external drive, thus I don't need to do
>> a delta or compression because it is all local
>> --delete  Any files that were removed from the source will be removed
>> from the destination
>>
>> If I were copying across a network, I add -z  and remove -W
>> Which will compress the transfer and only send changes when possible.
>>
>> Normally I use --quiet and change it to --verbose or --progress when
>> I want to monitor it
>> On May 9, 2016 4:05 PM, "Michael"  wrote:
>>
>>> When I run rsync one file (a directory) will not sync and the files
>>> in that file. I was wondering why. I thought that maybe if the file was 
>>> in
>>> there to start that would fix it and it does so if only temporarily. 
>>> Upon
>>> the next run of rsync the directory in question is deleted.
>>> the command that is run:
>>>  $ rsync -aWuq --delete-before /home/bmike1/Documents
>>> /media/bmike1/RedSanDisk
>>>
>>>
>>>
>>> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>>>
>>> --
>>> :-)~MIKE~(-:
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
>
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



 --
 :-)~MIKE~(-:

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list 

Re: rsync problem

2016-05-09 Thread James Mcphee
Plug it in, run "mount", just the command, no options, to print mount
options, and show us the filesystem and options?

On Mon, May 9, 2016 at 8:28 PM, Michael  wrote:

> df says it is 85% full with 5 G left of 30. I sure hope it isn't dying
> I bought it less than a year ago. I only write to it around 8 times a
> month. as for how it is mounted this is the first time it has messed up on
> me since I bought it.
>
> On Mon, May 9, 2016 at 11:01 PM, Bob Elzer  wrote:
>
>> I have a feeling that your USB drive may be dying.
>>
>> If it is flash, how many times have you copied to it? A lot?
>>
>> What size is it? Is it near full?
>> On May 9, 2016 7:21 PM, "Michael"  wrote:
>>
>>> what about this:
>>> "read only file system" thing?
>>>
>>> On Mon, May 9, 2016 at 10:15 PM, Sesso  wrote:
>>>
 Try using just --delete instead of --delete-before

 Sent from my iPhone

 On May 9, 2016, at 7:09 PM, Michael  wrote:

 well, I just ran it with the trailing slash and it gave me the same
 output as before except it happened immediately. The USB drive wasn't
 accessd for five minutes.

 On Mon, May 9, 2016 at 10:04 PM, Bob Elzer  wrote:

> My syncs look like this
>
> Rsync -rauh  --delete  /frompath/fromdir   /topath/todir
>
> This copies the fromdir into the todir directory and copies all files
> and directories below fromdir
>
> -r   recursive
> -a  archive - which is synonymous to -rlptgoD
> -u  update :don't over write newer files
> -W  copy whole files (don't do delta)
> -h  human readable numbers
>
> This backs up my stuff to an external drive, thus I don't need to do a
> delta or compression because it is all local
> --delete  Any files that were removed from the source will be removed
> from the destination
>
> If I were copying across a network, I add -z  and remove -W
> Which will compress the transfer and only send changes when possible.
>
> Normally I use --quiet and change it to --verbose or --progress when I
> want to monitor it
> On May 9, 2016 4:05 PM, "Michael"  wrote:
>
>> When I run rsync one file (a directory) will not sync and the files
>> in that file. I was wondering why. I thought that maybe if the file was 
>> in
>> there to start that would fix it and it does so if only temporarily. Upon
>> the next run of rsync the directory in question is deleted.
>> the command that is run:
>>  $ rsync -aWuq --delete-before /home/bmike1/Documents
>> /media/bmike1/RedSanDisk
>>
>>
>>
>> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



 --
 :-)~MIKE~(-:

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss


 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>>
>>>
>>> --
>>> :-)~MIKE~(-:
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
>
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



-- 
James McPhee
jmc...@gmail.com
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:

Re: rsync problem

2016-05-09 Thread Michael
df says it is 85% full with 5 G left of 30. I sure hope it isn't dying
I bought it less than a year ago. I only write to it around 8 times a
month. as for how it is mounted this is the first time it has messed up on
me since I bought it.

On Mon, May 9, 2016 at 11:01 PM, Bob Elzer  wrote:

> I have a feeling that your USB drive may be dying.
>
> If it is flash, how many times have you copied to it? A lot?
>
> What size is it? Is it near full?
> On May 9, 2016 7:21 PM, "Michael"  wrote:
>
>> what about this:
>> "read only file system" thing?
>>
>> On Mon, May 9, 2016 at 10:15 PM, Sesso  wrote:
>>
>>> Try using just --delete instead of --delete-before
>>>
>>> Sent from my iPhone
>>>
>>> On May 9, 2016, at 7:09 PM, Michael  wrote:
>>>
>>> well, I just ran it with the trailing slash and it gave me the same
>>> output as before except it happened immediately. The USB drive wasn't
>>> accessd for five minutes.
>>>
>>> On Mon, May 9, 2016 at 10:04 PM, Bob Elzer  wrote:
>>>
 My syncs look like this

 Rsync -rauh  --delete  /frompath/fromdir   /topath/todir

 This copies the fromdir into the todir directory and copies all files
 and directories below fromdir

 -r   recursive
 -a  archive - which is synonymous to -rlptgoD
 -u  update :don't over write newer files
 -W  copy whole files (don't do delta)
 -h  human readable numbers

 This backs up my stuff to an external drive, thus I don't need to do a
 delta or compression because it is all local
 --delete  Any files that were removed from the source will be removed
 from the destination

 If I were copying across a network, I add -z  and remove -W
 Which will compress the transfer and only send changes when possible.

 Normally I use --quiet and change it to --verbose or --progress when I
 want to monitor it
 On May 9, 2016 4:05 PM, "Michael"  wrote:

> When I run rsync one file (a directory) will not sync and the files in
> that file. I was wondering why. I thought that maybe if the file was in
> there to start that would fix it and it does so if only temporarily. Upon
> the next run of rsync the directory in question is deleted.
> the command that is run:
>  $ rsync -aWuq --delete-before /home/bmike1/Documents
> /media/bmike1/RedSanDisk
>
>
>
> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>>
>>>
>>> --
>>> :-)~MIKE~(-:
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Bob Elzer
I have a feeling that your USB drive may be dying.

If it is flash, how many times have you copied to it? A lot?

What size is it? Is it near full?
On May 9, 2016 7:21 PM, "Michael"  wrote:

> what about this:
> "read only file system" thing?
>
> On Mon, May 9, 2016 at 10:15 PM, Sesso  wrote:
>
>> Try using just --delete instead of --delete-before
>>
>> Sent from my iPhone
>>
>> On May 9, 2016, at 7:09 PM, Michael  wrote:
>>
>> well, I just ran it with the trailing slash and it gave me the same
>> output as before except it happened immediately. The USB drive wasn't
>> accessd for five minutes.
>>
>> On Mon, May 9, 2016 at 10:04 PM, Bob Elzer  wrote:
>>
>>> My syncs look like this
>>>
>>> Rsync -rauh  --delete  /frompath/fromdir   /topath/todir
>>>
>>> This copies the fromdir into the todir directory and copies all files
>>> and directories below fromdir
>>>
>>> -r   recursive
>>> -a  archive - which is synonymous to -rlptgoD
>>> -u  update :don't over write newer files
>>> -W  copy whole files (don't do delta)
>>> -h  human readable numbers
>>>
>>> This backs up my stuff to an external drive, thus I don't need to do a
>>> delta or compression because it is all local
>>> --delete  Any files that were removed from the source will be removed
>>> from the destination
>>>
>>> If I were copying across a network, I add -z  and remove -W
>>> Which will compress the transfer and only send changes when possible.
>>>
>>> Normally I use --quiet and change it to --verbose or --progress when I
>>> want to monitor it
>>> On May 9, 2016 4:05 PM, "Michael"  wrote:
>>>
 When I run rsync one file (a directory) will not sync and the files in
 that file. I was wondering why. I thought that maybe if the file was in
 there to start that would fix it and it does so if only temporarily. Upon
 the next run of rsync the directory in question is deleted.
 the command that is run:
  $ rsync -aWuq --delete-before /home/bmike1/Documents
 /media/bmike1/RedSanDisk



 https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing

 --
 :-)~MIKE~(-:

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
>
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Brien Dieterle
Your file system is mounted read only.  Is it NTFS?  You need to mount it
RW.  NTFS might require additional tools
On May 9, 2016 7:21 PM, "Michael"  wrote:

> what about this:
> "read only file system" thing?
>
> On Mon, May 9, 2016 at 10:15 PM, Sesso  wrote:
>
>> Try using just --delete instead of --delete-before
>>
>> Sent from my iPhone
>>
>> On May 9, 2016, at 7:09 PM, Michael  wrote:
>>
>> well, I just ran it with the trailing slash and it gave me the same
>> output as before except it happened immediately. The USB drive wasn't
>> accessd for five minutes.
>>
>> On Mon, May 9, 2016 at 10:04 PM, Bob Elzer  wrote:
>>
>>> My syncs look like this
>>>
>>> Rsync -rauh  --delete  /frompath/fromdir   /topath/todir
>>>
>>> This copies the fromdir into the todir directory and copies all files
>>> and directories below fromdir
>>>
>>> -r   recursive
>>> -a  archive - which is synonymous to -rlptgoD
>>> -u  update :don't over write newer files
>>> -W  copy whole files (don't do delta)
>>> -h  human readable numbers
>>>
>>> This backs up my stuff to an external drive, thus I don't need to do a
>>> delta or compression because it is all local
>>> --delete  Any files that were removed from the source will be removed
>>> from the destination
>>>
>>> If I were copying across a network, I add -z  and remove -W
>>> Which will compress the transfer and only send changes when possible.
>>>
>>> Normally I use --quiet and change it to --verbose or --progress when I
>>> want to monitor it
>>> On May 9, 2016 4:05 PM, "Michael"  wrote:
>>>
 When I run rsync one file (a directory) will not sync and the files in
 that file. I was wondering why. I thought that maybe if the file was in
 there to start that would fix it and it does so if only temporarily. Upon
 the next run of rsync the directory in question is deleted.
 the command that is run:
  $ rsync -aWuq --delete-before /home/bmike1/Documents
 /media/bmike1/RedSanDisk



 https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing

 --
 :-)~MIKE~(-:

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
>
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Michael
$ rsync -aWuq --delete /home/bmike1/Documents /media/bmike1/R
edSanDisk
rsync: mkstemp
"/media/bmike1/RedSanDisk/Documents/Programs/PhotoSphereBundle/App/Lib/site-packages/pyopengl-3.1.0a1-py2.7.egg/OpenGL/raw/GL/APPLE/.float_pixels.pyc.egRAlx"
failed: Read-only file system (30)
etc

On Mon, May 9, 2016 at 10:22 PM, Michael  wrote:

> forgot to post the copy
>
> rsync: mkstemp
> "/media/bmike1/RedSanDisk/Documents/Programs/PhotoSphereBundle/App/Lib/unittest/.signals.pyc.TZ2f5F"
> failed: Read-only file system (30)
> etc...
>
>
> On Mon, May 9, 2016 at 10:21 PM, Michael  wrote:
>
>> what about this:
>> "read only file system" thing?
>>
>> On Mon, May 9, 2016 at 10:15 PM, Sesso  wrote:
>>
>>> Try using just --delete instead of --delete-before
>>>
>>> Sent from my iPhone
>>>
>>> On May 9, 2016, at 7:09 PM, Michael  wrote:
>>>
>>> well, I just ran it with the trailing slash and it gave me the same
>>> output as before except it happened immediately. The USB drive wasn't
>>> accessd for five minutes.
>>>
>>> On Mon, May 9, 2016 at 10:04 PM, Bob Elzer  wrote:
>>>
 My syncs look like this

 Rsync -rauh  --delete  /frompath/fromdir   /topath/todir

 This copies the fromdir into the todir directory and copies all files
 and directories below fromdir

 -r   recursive
 -a  archive - which is synonymous to -rlptgoD
 -u  update :don't over write newer files
 -W  copy whole files (don't do delta)
 -h  human readable numbers

 This backs up my stuff to an external drive, thus I don't need to do a
 delta or compression because it is all local
 --delete  Any files that were removed from the source will be removed
 from the destination

 If I were copying across a network, I add -z  and remove -W
 Which will compress the transfer and only send changes when possible.

 Normally I use --quiet and change it to --verbose or --progress when I
 want to monitor it
 On May 9, 2016 4:05 PM, "Michael"  wrote:

> When I run rsync one file (a directory) will not sync and the files in
> that file. I was wondering why. I thought that maybe if the file was in
> there to start that would fix it and it does so if only temporarily. Upon
> the next run of rsync the directory in question is deleted.
> the command that is run:
>  $ rsync -aWuq --delete-before /home/bmike1/Documents
> /media/bmike1/RedSanDisk
>
>
>
> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>>
>>>
>>> --
>>> :-)~MIKE~(-:
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>
>
>
> --
> :-)~MIKE~(-:
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Michael
forgot to post the copy

rsync: mkstemp
"/media/bmike1/RedSanDisk/Documents/Programs/PhotoSphereBundle/App/Lib/unittest/.signals.pyc.TZ2f5F"
failed: Read-only file system (30)
etc...


On Mon, May 9, 2016 at 10:21 PM, Michael  wrote:

> what about this:
> "read only file system" thing?
>
> On Mon, May 9, 2016 at 10:15 PM, Sesso  wrote:
>
>> Try using just --delete instead of --delete-before
>>
>> Sent from my iPhone
>>
>> On May 9, 2016, at 7:09 PM, Michael  wrote:
>>
>> well, I just ran it with the trailing slash and it gave me the same
>> output as before except it happened immediately. The USB drive wasn't
>> accessd for five minutes.
>>
>> On Mon, May 9, 2016 at 10:04 PM, Bob Elzer  wrote:
>>
>>> My syncs look like this
>>>
>>> Rsync -rauh  --delete  /frompath/fromdir   /topath/todir
>>>
>>> This copies the fromdir into the todir directory and copies all files
>>> and directories below fromdir
>>>
>>> -r   recursive
>>> -a  archive - which is synonymous to -rlptgoD
>>> -u  update :don't over write newer files
>>> -W  copy whole files (don't do delta)
>>> -h  human readable numbers
>>>
>>> This backs up my stuff to an external drive, thus I don't need to do a
>>> delta or compression because it is all local
>>> --delete  Any files that were removed from the source will be removed
>>> from the destination
>>>
>>> If I were copying across a network, I add -z  and remove -W
>>> Which will compress the transfer and only send changes when possible.
>>>
>>> Normally I use --quiet and change it to --verbose or --progress when I
>>> want to monitor it
>>> On May 9, 2016 4:05 PM, "Michael"  wrote:
>>>
 When I run rsync one file (a directory) will not sync and the files in
 that file. I was wondering why. I thought that maybe if the file was in
 there to start that would fix it and it does so if only temporarily. Upon
 the next run of rsync the directory in question is deleted.
 the command that is run:
  $ rsync -aWuq --delete-before /home/bmike1/Documents
 /media/bmike1/RedSanDisk



 https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing

 --
 :-)~MIKE~(-:

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
>
>
> --
> :-)~MIKE~(-:
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Michael
what about this:
"read only file system" thing?

On Mon, May 9, 2016 at 10:15 PM, Sesso  wrote:

> Try using just --delete instead of --delete-before
>
> Sent from my iPhone
>
> On May 9, 2016, at 7:09 PM, Michael  wrote:
>
> well, I just ran it with the trailing slash and it gave me the same output
> as before except it happened immediately. The USB drive wasn't accessd for
> five minutes.
>
> On Mon, May 9, 2016 at 10:04 PM, Bob Elzer  wrote:
>
>> My syncs look like this
>>
>> Rsync -rauh  --delete  /frompath/fromdir   /topath/todir
>>
>> This copies the fromdir into the todir directory and copies all files and
>> directories below fromdir
>>
>> -r   recursive
>> -a  archive - which is synonymous to -rlptgoD
>> -u  update :don't over write newer files
>> -W  copy whole files (don't do delta)
>> -h  human readable numbers
>>
>> This backs up my stuff to an external drive, thus I don't need to do a
>> delta or compression because it is all local
>> --delete  Any files that were removed from the source will be removed
>> from the destination
>>
>> If I were copying across a network, I add -z  and remove -W
>> Which will compress the transfer and only send changes when possible.
>>
>> Normally I use --quiet and change it to --verbose or --progress when I
>> want to monitor it
>> On May 9, 2016 4:05 PM, "Michael"  wrote:
>>
>>> When I run rsync one file (a directory) will not sync and the files in
>>> that file. I was wondering why. I thought that maybe if the file was in
>>> there to start that would fix it and it does so if only temporarily. Upon
>>> the next run of rsync the directory in question is deleted.
>>> the command that is run:
>>>  $ rsync -aWuq --delete-before /home/bmike1/Documents
>>> /media/bmike1/RedSanDisk
>>>
>>>
>>>
>>> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>>>
>>> --
>>> :-)~MIKE~(-:
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
>
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Sesso
Try using just --delete instead of --delete-before

Sent from my iPhone

> On May 9, 2016, at 7:09 PM, Michael  wrote:
> 
> well, I just ran it with the trailing slash and it gave me the same output as 
> before except it happened immediately. The USB drive wasn't accessd for five 
> minutes.
> 
>> On Mon, May 9, 2016 at 10:04 PM, Bob Elzer  wrote:
>> My syncs look like this
>> 
>> Rsync -rauh  --delete  /frompath/fromdir   /topath/todir
>> 
>> This copies the fromdir into the todir directory and copies all files and 
>> directories below fromdir
>> 
>> -r   recursive
>> -a  archive - which is synonymous to -rlptgoD
>> -u  update :don't over write newer files
>> -W  copy whole files (don't do delta)
>> -h  human readable numbers
>> 
>> This backs up my stuff to an external drive, thus I don't need to do a delta 
>> or compression because it is all local
>> --delete  Any files that were removed from the source will be removed from 
>> the destination
>> 
>> If I were copying across a network, I add -z  and remove -W
>> Which will compress the transfer and only send changes when possible.
>> 
>> Normally I use --quiet and change it to --verbose or --progress when I want 
>> to monitor it
>> 
>>> On May 9, 2016 4:05 PM, "Michael"  wrote:
>>> When I run rsync one file (a directory) will not sync and the files in that 
>>> file. I was wondering why.  I thought that maybe if the file was in there 
>>> to start that would fix it and it does so if only temporarily. Upon the 
>>> next run of rsync the directory in question is deleted.
>>> the command that is run:
>>>  $ rsync -aWuq --delete-before /home/bmike1/Documents 
>>> /media/bmike1/RedSanDisk
>>> 
>>> 
>>> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>>> 
>>> -- 
>>> :-)~MIKE~(-:
>>> 
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>> 
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
> 
> 
> 
> -- 
> :-)~MIKE~(-:
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Michael
oops wrong copy:

 $ rsync -aWuq --delete-before /home/bmike1/Documents /media/bmike1/Re
dSanDisk/
rsync: failed to set times on "/media/bmike1/RedSanDisk/Documents":
Read-only file system (30)
rsync: failed to set permissions on
"/media/bmike1/RedSanDisk/Documents/signature.jpg": Read-only file system
(30)
rsync: failed to set permissions on
"/media/bmike1/RedSanDisk/Documents/Business/i9Complete-pg1.jpeg":
Read-only file system (30)
rsync: failed to set permissions on
"/media/bmike1/RedSanDisk/Documents/Business/i9Complete-pg2.jpeg":
Read-only file system (30)
rsync: failed to set permissions on
"/media/bmike1/RedSanDisk/Documents/Business/Advantage": Read-only file
system (30)
etc...

and the same thing happened whhen I added the slash to the source:

$ rsync -aWuq --delete-before /home/bmike1/Documents/ /media/bmike1/R
edSanDisk/
rsync: delete_file: unlink(Documents/moveinphotos/DSC00971.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00970.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00969.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00968.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00967.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00966.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00965.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00964.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00963.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00962.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00961.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00958.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00957.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00956.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00955.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00954.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00953.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00952.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00951.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00950.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00949.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00948.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00947.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00946.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00945.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00944.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00943.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00942.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00941.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00940.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00939.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00938.JPG) failed:
Read-only file system (30)
rsync: delete_file: unlink(Documents/moveinphotos/DSC00937.JPG) failed:
Read-only file system (30)
rsync: delete_file: rmdir(Documents/moveinphotos) failed: Read-only file
system (30)
rsync: delete_file: unlink(Documents/language.training/QueOndaSpanish/
www.queondaspanish.com/word/458176/corte_suprema_de_justicia) failed:
Read-only file system (30)
rsync: delete_file: rmdir(Documents/language.training/QueOndaSpanish/
www.queondaspanish.com/word/458176) failed: Read-only file system (30)
rsync: delete_file: rmdir(Documents/language.training/QueOndaSpanish/
www.queondaspanish.com/word/458175) failed: Read-only file system (30)
rsync: delete_file: unlink(Documents/language.training/QueOndaSpanish/
www.queondaspanish.com/word/458174/las) failed: Read-only file system (30)
rsync: delete_file: rmdir(Documents/language.training/QueOndaSpanish/
www.queondaspanish.com/word/458174) failed: Read-only file system (30)
rsync: delete_file: 

Re: rsync problem

2016-05-09 Thread Michael
well, I just ran it with the trailing slash and it gave me the same output
as before except it happened immediately. The USB drive wasn't accessd for
five minutes.

On Mon, May 9, 2016 at 10:04 PM, Bob Elzer  wrote:

> My syncs look like this
>
> Rsync -rauh  --delete  /frompath/fromdir   /topath/todir
>
> This copies the fromdir into the todir directory and copies all files and
> directories below fromdir
>
> -r   recursive
> -a  archive - which is synonymous to -rlptgoD
> -u  update :don't over write newer files
> -W  copy whole files (don't do delta)
> -h  human readable numbers
>
> This backs up my stuff to an external drive, thus I don't need to do a
> delta or compression because it is all local
> --delete  Any files that were removed from the source will be removed from
> the destination
>
> If I were copying across a network, I add -z  and remove -W
> Which will compress the transfer and only send changes when possible.
>
> Normally I use --quiet and change it to --verbose or --progress when I
> want to monitor it
> On May 9, 2016 4:05 PM, "Michael"  wrote:
>
>> When I run rsync one file (a directory) will not sync and the files in
>> that file. I was wondering why. I thought that maybe if the file was in
>> there to start that would fix it and it does so if only temporarily. Upon
>> the next run of rsync the directory in question is deleted.
>> the command that is run:
>>  $ rsync -aWuq --delete-before /home/bmike1/Documents
>> /media/bmike1/RedSanDisk
>>
>>
>>
>> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Bob Elzer
My syncs look like this

Rsync -rauh  --delete  /frompath/fromdir   /topath/todir

This copies the fromdir into the todir directory and copies all files and
directories below fromdir

-r   recursive
-a  archive - which is synonymous to -rlptgoD
-u  update :don't over write newer files
-W  copy whole files (don't do delta)
-h  human readable numbers

This backs up my stuff to an external drive, thus I don't need to do a
delta or compression because it is all local
--delete  Any files that were removed from the source will be removed from
the destination

If I were copying across a network, I add -z  and remove -W
Which will compress the transfer and only send changes when possible.

Normally I use --quiet and change it to --verbose or --progress when I want
to monitor it
On May 9, 2016 4:05 PM, "Michael"  wrote:

> When I run rsync one file (a directory) will not sync and the files in
> that file. I was wondering why. I thought that maybe if the file was in
> there to start that would fix it and it does so if only temporarily. Upon
> the next run of rsync the directory in question is deleted.
> the command that is run:
>  $ rsync -aWuq --delete-before /home/bmike1/Documents
> /media/bmike1/RedSanDisk
>
>
>
> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Michael
it has worked without the trailing slash until now.
everything has worked perfectly until today (well over ayear with rsync run
at least once a month.

On Mon, May 9, 2016 at 9:09 PM, Sesso  wrote:

> If you don't use a trailing /, it will copy a whole directory. As Brian
> also said. A / at the end of the destination also if you want the files IN
> that directory.
>
> I use rsync -avzpor quite frequently for migrations. Final syncs will get
> --delete so it has an exact copy.
>
> Jason
>
> Sent from my iPhone
>
> On May 9, 2016, at 6:01 PM, Brian Cluff  wrote:
>
> ls -h doesn't show hidden files, it shows the files sizes in "h"uman
> readable format.
>
> Do an ls -a to show "a"ll the files, including the hidden ones.
>
> Also I think you might need to add a trailing / to your destination
> directory to get it to work correctly.
>
> Brian
>
> On 05/09/2016 04:49 PM, Michael wrote:
>
> forgot to mention that when I'm copying from original to destination w/o
> rsync i am asked if I want to skip or replace an existing file even though
> the file is not visible. I attempted to do an ls -h but the file is not
> hidden.
>
> On Mon, May 9, 2016 at 7:04 PM, Michael  wrote:
>
>> When I run rsync one file (a directory) will not sync and the files in
>> that file. I was wondering why. I thought that maybe if the file was in
>> there to start that would fix it and it does so if only temporarily. Upon
>> the next run of rsync the directory in question is deleted.
>> the command that is run:
>>  $ rsync -aWuq --delete-before /home/bmike1/Documents
>> /media/bmike1/RedSanDisk
>>
>>
>>
>> 
>> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>>
>> --
>> :-)~MIKE~(-:
>>
>
>
>
> --
> :-)~MIKE~(-:
>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail 
> settings:http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Sesso
If you don't use a trailing /, it will copy a whole directory. As Brian also 
said. A / at the end of the destination also if you want the files IN that 
directory. 

I use rsync -avzpor quite frequently for migrations. Final syncs will get 
--delete so it has an exact copy. 

Jason

Sent from my iPhone

> On May 9, 2016, at 6:01 PM, Brian Cluff  wrote:
> 
> ls -h doesn't show hidden files, it shows the files sizes in "h"uman readable 
> format.
> 
> Do an ls -a to show "a"ll the files, including the hidden ones.
> 
> Also I think you might need to add a trailing / to your destination directory 
> to get it to work correctly.
> 
> Brian
> 
>> On 05/09/2016 04:49 PM, Michael wrote:
>> forgot to mention that when I'm copying from original to destination w/o 
>> rsync i am asked if I want to skip or replace an existing file even though 
>> the file is not visible. I attempted to do an ls -h but the file is not 
>> hidden.
>> 
>>> On Mon, May 9, 2016 at 7:04 PM, Michael  wrote:
>>>  When I run rsync one file (a directory) will not sync and the files in 
>>> that file. I was wondering why.  I thought that maybe if the file was in 
>>> there to start that would fix it and it does so if only temporarily. Upon 
>>> the next run of rsync the directory in question is deleted.
>>> the command that is run:
>>>  $ rsync -aWuq --delete-before /home/bmike1/Documents 
>>> /media/bmike1/RedSanDisk
>>> 
>>> 
>>> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>>> 
>>> -- 
>>> :-)~MIKE~(-:
>> 
>> 
>> 
>> -- 
>> :-)~MIKE~(-:
>> 
>> 
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
> 
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Brian Cluff
ls -h doesn't show hidden files, it shows the files sizes in "h"uman 
readable format.


Do an ls -a to show "a"ll the files, including the hidden ones.

Also I think you might need to add a trailing / to your destination 
directory to get it to work correctly.


Brian

On 05/09/2016 04:49 PM, Michael wrote:
forgot to mention that when I'm copying from original to destination 
w/o rsync i am asked if I want to skip or replace an existing file 
even though the file is not visible. I attempted to do an ls -h but 
the file is not hidden.


On Mon, May 9, 2016 at 7:04 PM, Michael > wrote:


When I run rsync one file (a directory) will not sync and the
files in that file. I was wondering why. I thought that maybe if
the file was in there to start that would fix it and it does so if
only temporarily. Upon the next run of rsync the directory in
question is deleted.

the command that is run:
 $ rsync -aWuq --delete-before /home/bmike1/Documents
/media/bmike1/RedSanDisk



https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing

-- 
:-)~MIKE~(-:





--
:-)~MIKE~(-:


---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss


---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: rsync problem

2016-05-09 Thread Michael
forgot to mention that when I'm copying from original to destination w/o
rsync i am asked if I want to skip or replace an existing file even though
the file is not visible. I attempted to do an ls -h but the file is not
hidden.

On Mon, May 9, 2016 at 7:04 PM, Michael  wrote:

> When I run rsync one file (a directory) will not sync and the files in
> that file. I was wondering why. I thought that maybe if the file was in
> there to start that would fix it and it does so if only temporarily. Upon
> the next run of rsync the directory in question is deleted.
> the command that is run:
>  $ rsync -aWuq --delete-before /home/bmike1/Documents
> /media/bmike1/RedSanDisk
>
>
>
> https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing
>
> --
> :-)~MIKE~(-:
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

rsync problem

2016-05-09 Thread Michael
When I run rsync one file (a directory) will not sync and the files in that
file. I was wondering why. I thought that maybe if the file was in there to
start that would fix it and it does so if only temporarily. Upon the next
run of rsync the directory in question is deleted.
the command that is run:
 $ rsync -aWuq --delete-before /home/bmike1/Documents
/media/bmike1/RedSanDisk


https://docs.google.com/document/d/1FAfv-aLaQR6HWUx8M-aZF4QL8oAsi6SH2Xg01vKpTPI/edit?usp=sharing

-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss