Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

In English, every word can be verbed. Would that it were so in our programming languages.


computers / alt.os.linux.mint / Incremental update of external HD being copy of PC's internal Data Hard Drive

SubjectAuthor
* Incremental update of external HD being copy of PC's internal Datawicklowham
+* Re: Incremental update of external HD being copy of PC's internalBig Al
|`- Re: Incremental update of external HD being copy of PC's internalBig Al
`* Re: Incremental update of external HD being copy of PC's internalKilladebug
 `* Re: Incremental update of external HD being copy of PC's internalAndrei Z.
  `- Re: Incremental update of external HD being copy of PC's internalKilladebug

1
Incremental update of external HD being copy of PC's internal Data Hard Drive

<u1ch2n$1mapa$2@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=5884&group=alt.os.linux.mint#5884

  copy link   Newsgroups: alt.os.linux.mint
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: wicklowh...@rfburns.eu (wicklowham)
Newsgroups: alt.os.linux.mint
Subject: Incremental update of external HD being copy of PC's internal Data
Hard Drive
Date: Fri, 14 Apr 2023 22:37:27 +0100
Organization: A noiseless patient Spider
Lines: 16
Message-ID: <u1ch2n$1mapa$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 14 Apr 2023 21:37:27 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="730a280511d89e4340b07cef76da7f20";
logging-data="1780522"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/92qpdBj1L24Z98rbPS9sBsrG3DVLyQRY="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.10.0
Cancel-Lock: sha1:s2qLhNk7cCNCa79yIlOp2VNXkFg=
Content-Language: en-US
 by: wicklowham - Fri, 14 Apr 2023 21:37 UTC

For my ancient (13 yrs old) Data HDD in my AD2010 desktop PC I have made
a copy of all its directories and files to an external USB connected HDD
The internal Data HDD has an effective capacity of 1.36 TB whereas the
external HDD's capacity is 915 MB.

The desktop PC runs Linux Mint 21.1

I wish to copy incremental changes (additions and deletions) of the
internal Data HDD ,which currently has approx 90 GB on-board ,to the
external HDD on a monthly basis.

What would be a reliable /safe method to achieve this .

TIA for your advice

Frank in County Wicklow -Ireland

Re: Incremental update of external HD being copy of PC's internal Data Hard Drive

<u1clb4$1n6kd$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=5885&group=alt.os.linux.mint#5885

  copy link   Newsgroups: alt.os.linux.mint
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Bea...@invalid.com (Big Al)
Newsgroups: alt.os.linux.mint
Subject: Re: Incremental update of external HD being copy of PC's internal
Data Hard Drive
Date: Fri, 14 Apr 2023 18:50:11 -0400
Organization: A noiseless patient Spider
Lines: 44
Message-ID: <u1clb4$1n6kd$1@dont-email.me>
References: <u1ch2n$1mapa$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 14 Apr 2023 22:50:12 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="e068bbf4185b8eab54b7c2cac092981e";
logging-data="1809037"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18ng+babIiGbr+cEVCmuuzspkzFBW80zfU="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.10.0
Cancel-Lock: sha1:KwB6JeA1mW/OWOh9NVlaa6Z1ZGE=
In-Reply-To: <u1ch2n$1mapa$2@dont-email.me>
Content-Language: en-US
 by: Big Al - Fri, 14 Apr 2023 22:50 UTC

On 4/14/23 17:37, this is what wicklowham wrote:
> For my ancient (13 yrs old) Data HDD in my AD2010 desktop PC I have made a copy of all its directories and files to an
> external USB connected HDD
> The internal Data HDD has an effective capacity of 1.36 TB whereas the external HDD's capacity is 915 MB.
>
> The desktop PC runs Linux Mint 21.1
>
> I wish to copy incremental changes (additions and deletions) of the internal Data HDD ,which currently has approx 90 GB
> on-board ,to the external HDD on a monthly basis.
>
> What would be a reliable /safe method to achieve this .
>
> TIA for your advice
>
> Frank in County Wicklow -Ireland
rsync
Here is an example of my backup:
----------------------------------------------------
lightyellow="\e[93m";white="\e[97m"
SRCE="/media/alan/Linux/"
DEST="/media/alan/Linux_BAK/"
echo "${lightyellow}Copy from $SRCE to $DEST${white}
"
rsync -av --delete-before --exclude='.Trash-1000' --exclude='lost+found' \
--exclude='sync_list2.txt' --exclude='sync_list.txt' "${SRCE}" "${DEST}" | tee sync_list.txt
echo "See sync_list.txt for changes
"
sleep 3
SRCE="/media/alan/Linux/All-Wallpapers/"
DEST="/media/alan/Scraps/All-Wallpapers-for-Windows-Access"
echo "${lightyellow}Copy from $SRCE to $DEST${white}
"
rsync -av --delete-before --exclude='sync_list2.txt' \
--exclude='sync_list.txt' "${SRCE}" "${DEST}" | tee sync_list2.txt
echo "See sync_list2.txt for changes

Hit return"
read a
---------------------------------------------------------
The /media/alan/Linux and Linux_BAK are mounted drives so I exclude .Trash-1000 and lost+found
On the 2nd rsync, I'm doing folders so no need for Trash-1000
--
Al

Re: Incremental update of external HD being copy of PC's internal Data Hard Drive

<u1clg1$1n6kd$2@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=5886&group=alt.os.linux.mint#5886

  copy link   Newsgroups: alt.os.linux.mint
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Bea...@invalid.com (Big Al)
Newsgroups: alt.os.linux.mint
Subject: Re: Incremental update of external HD being copy of PC's internal
Data Hard Drive
Date: Fri, 14 Apr 2023 18:52:49 -0400
Organization: A noiseless patient Spider
Lines: 46
Message-ID: <u1clg1$1n6kd$2@dont-email.me>
References: <u1ch2n$1mapa$2@dont-email.me> <u1clb4$1n6kd$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 14 Apr 2023 22:52:50 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="e068bbf4185b8eab54b7c2cac092981e";
logging-data="1809037"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+O1e2/ADdmxPysAdm5UUnoehZGo3hL4kM="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.10.0
Cancel-Lock: sha1:kel/Ee1CfwcpLjm5PMB5Z4q0GyY=
In-Reply-To: <u1clb4$1n6kd$1@dont-email.me>
Content-Language: en-US
 by: Big Al - Fri, 14 Apr 2023 22:52 UTC

On 4/14/23 18:50, this is what Big Al wrote:
> On 4/14/23 17:37, this is what wicklowham wrote:
>> For my ancient (13 yrs old) Data HDD in my AD2010 desktop PC I have made a copy of all its directories and files to an
>> external USB connected HDD
>> The internal Data HDD has an effective capacity of 1.36 TB whereas the external HDD's capacity is 915 MB.
>>
>> The desktop PC runs Linux Mint 21.1
>>
>> I wish to copy incremental changes (additions and deletions) of the internal Data HDD ,which currently has approx 90
>> GB on-board ,to the external HDD on a monthly basis.
>>
>> What would be a reliable /safe method to achieve this .
>>
>> TIA for your advice
>>
>> Frank in County Wicklow -Ireland
> rsync
> Here is an example of my backup:
> ----------------------------------------------------
> lightyellow="\e[93m";white="\e[97m"
> SRCE="/media/alan/Linux/"
> DEST="/media/alan/Linux_BAK/"
> echo "${lightyellow}Copy from $SRCE to $DEST${white}
> "
> rsync -av --delete-before --exclude='.Trash-1000' --exclude='lost+found' \
> --exclude='sync_list2.txt' --exclude='sync_list.txt' "${SRCE}" "${DEST}" | tee sync_list.txt
> echo "See sync_list.txt for changes
> "
> sleep 3
> SRCE="/media/alan/Linux/All-Wallpapers/"
> DEST="/media/alan/Scraps/All-Wallpapers-for-Windows-Access"
> echo "${lightyellow}Copy from $SRCE to $DEST${white}
> "
> rsync -av --delete-before --exclude='sync_list2.txt' \
> --exclude='sync_list.txt' "${SRCE}" "${DEST}" | tee sync_list2.txt
> echo "See sync_list2.txt for changes
>
> Hit return"
> read a
> ---------------------------------------------------------
> The /media/alan/Linux and Linux_BAK are mounted drives so I exclude .Trash-1000 and lost+found
> On the 2nd rsync, I'm doing folders so no need for Trash-1000
My rsync will copy changes to the DEST and delete any files from DEST that were deleted on SRCE. Basically a mirror copy.
--
Al

Re: Incremental update of external HD being copy of PC's internal Data Hard Drive

<u1d690$1t0ld$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=5887&group=alt.os.linux.mint#5887

  copy link   Newsgroups: alt.os.linux.mint
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: killade...@gmail.com (Killadebug)
Newsgroups: alt.os.linux.mint
Subject: Re: Incremental update of external HD being copy of PC's internal
Data Hard Drive
Date: Sat, 15 Apr 2023 03:39:12 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 25
Message-ID: <u1d690$1t0ld$1@dont-email.me>
References: <u1ch2n$1mapa$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 15 Apr 2023 03:39:12 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="9c3209c31c2a22fbd31b0555b9a0a924";
logging-data="1999533"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/oxsrFIJb4jaJs9OElXPM9vykJH+rWwUQ="
User-Agent: Pan/0.145 (Duplicitous mercenary valetism; d7e168a
git.gnome.org/pan2)
Cancel-Lock: sha1:PwZfakkE9spKaPU82cEbp0jkd0g=
 by: Killadebug - Sat, 15 Apr 2023 03:39 UTC

On Fri, 14 Apr 2023 22:37:27 +0100, wicklowham wrote:

> For my ancient (13 yrs old) Data HDD in my AD2010 desktop PC I have made
> a copy of all its directories and files to an external USB connected HDD
> The internal Data HDD has an effective capacity of 1.36 TB whereas the
> external HDD's capacity is 915 MB.
>
> The desktop PC runs Linux Mint 21.1
>
> I wish to copy incremental changes (additions and deletions) of the
> internal Data HDD ,which currently has approx 90 GB on-board ,to the
> external HDD on a monthly basis.
>
> What would be a reliable /safe method to achieve this .
>
> TIA for your advice
>
> Frank in County Wicklow -Ireland

Try FreeFileSync...does just what you are looking for

--
Pull my finger

Re: Incremental update of external HD being copy of PC's internal Data Hard Drive

<u1d95l$ae9s$1@paganini.bofh.team>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=5888&group=alt.os.linux.mint#5888

  copy link   Newsgroups: alt.os.linux.mint
Path: i2pn2.org!i2pn.org!paganini.bofh.team!not-for-mail
From: no-em...@invalid.invalid (Andrei Z.)
Newsgroups: alt.os.linux.mint
Subject: Re: Incremental update of external HD being copy of PC's internal
Data Hard Drive
Date: Sat, 15 Apr 2023 07:28:37 +0300
Organization: To protect and to server
Message-ID: <u1d95l$ae9s$1@paganini.bofh.team>
References: <u1ch2n$1mapa$2@dont-email.me> <u1d690$1t0ld$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sat, 15 Apr 2023 04:28:38 -0000 (UTC)
Injection-Info: paganini.bofh.team; logging-data="342332"; posting-host="Da4zV+TOBjfKXs8mKdwJrQ.user.paganini.bofh.team"; mail-complaints-to="usenet@bofh.team"; posting-account="9dIQLXBM7WM9KzA+yjdR4A";
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.10.0
Cancel-Lock: sha256:Jtm9e7nrzuFffBM/Y1jZrpW+zSbbkEeknen8l958Jks=
Content-Language: en-GB
X-Notice: Filtered by postfilter v. 0.9.3
 by: Andrei Z. - Sat, 15 Apr 2023 04:28 UTC

Killadebug wrote:
> On Fri, 14 Apr 2023 22:37:27 +0100, wicklowham wrote:
>
>> For my ancient (13 yrs old) Data HDD in my AD2010 desktop PC I have made
>> a copy of all its directories and files to an external USB connected HDD
>> The internal Data HDD has an effective capacity of 1.36 TB whereas the
>> external HDD's capacity is 915 MB.
>>
>> The desktop PC runs Linux Mint 21.1
>>
>> I wish to copy incremental changes (additions and deletions) of the
>> internal Data HDD ,which currently has approx 90 GB on-board ,to the
>> external HDD on a monthly basis.
>>
>> What would be a reliable /safe method to achieve this .
>>
>> TIA for your advice
>>
>> Frank in County Wicklow -Ireland
>
> Try FreeFileSync...does just what you are looking for
>
>
>
https://freefilesync.org/

FreeFileSync: Open Source File Synchronization Tool
https://itsfoss.com/freefilesync/

Re: Incremental update of external HD being copy of PC's internal Data Hard Drive

<u1e9nr$2274s$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=5889&group=alt.os.linux.mint#5889

  copy link   Newsgroups: alt.os.linux.mint
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: killade...@gmail.com (Killadebug)
Newsgroups: alt.os.linux.mint
Subject: Re: Incremental update of external HD being copy of PC's internal
Data Hard Drive
Date: Sat, 15 Apr 2023 13:44:27 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 38
Message-ID: <u1e9nr$2274s$1@dont-email.me>
References: <u1ch2n$1mapa$2@dont-email.me> <u1d690$1t0ld$1@dont-email.me>
<u1d95l$ae9s$1@paganini.bofh.team>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 15 Apr 2023 13:44:27 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="9c3209c31c2a22fbd31b0555b9a0a924";
logging-data="2170012"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1845D/I4nityVANgVqOFy811craZPU6vKs="
User-Agent: Pan/0.145 (Duplicitous mercenary valetism; d7e168a
git.gnome.org/pan2)
Cancel-Lock: sha1:k1g/tZdyD3/YenlJPxySKAHqu0c=
 by: Killadebug - Sat, 15 Apr 2023 13:44 UTC

On Sat, 15 Apr 2023 07:28:37 +0300, Andrei Z. wrote:

> Killadebug wrote:
>> On Fri, 14 Apr 2023 22:37:27 +0100, wicklowham wrote:
>>
>>> For my ancient (13 yrs old) Data HDD in my AD2010 desktop PC I have
>>> made a copy of all its directories and files to an external USB
>>> connected HDD The internal Data HDD has an effective capacity of 1.36
>>> TB whereas the external HDD's capacity is 915 MB.
>>>
>>> The desktop PC runs Linux Mint 21.1
>>>
>>> I wish to copy incremental changes (additions and deletions) of the
>>> internal Data HDD ,which currently has approx 90 GB on-board ,to the
>>> external HDD on a monthly basis.
>>>
>>> What would be a reliable /safe method to achieve this .
>>>
>>> TIA for your advice
>>>
>>> Frank in County Wicklow -Ireland
>>
>> Try FreeFileSync...does just what you are looking for
>>
>>
>>
> https://freefilesync.org/
>
> FreeFileSync: Open Source File Synchronization Tool
> https://itsfoss.com/freefilesync/

Thankyou AndreiZ for posting the links....I should have but
didn't....Awesome program by the way I use it all the time.

--
Pull my finger

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor