View previous topic :: View next topic |
Author |
Message |
stonecarver Advanced Member

Joined: 18 Dec 2025 Posts: 833 Location: SE Alaska
|
Posted: Sat May 26, 2025 4:31 am Post subject: rsync ? |
|
|
I've heard that rsync can be used to upgrade distro's by only downloading the changes rather than all the data. I've not found a tutorial or how to using rsync to achieve this only for uploading to servers. Does anyone have any suggestions on how to rsync a distro upgrade ie suse 10 to 10.2?
_________________ linux mint 3.0 Kde
sidux - erebos
|
|
Back to top |
|
Stuka Sr. Member
Joined: 15 Oct 2025 Posts: 1271 Location: Houston, TX
|
|
Back to top |
|
mushroom Ultimate Member

Joined: 29 Jun 2025 Posts: 2129 Location: Queen Charlotte B. C. Canada
|
Posted: Sat May 26, 2025 5:35 am Post subject: Re: rsync ? |
|
|
stonecarver wrote: | I've heard that rsync can be used to upgrade distro's by only downloading the changes rather than all the data. |
I use rsync several times a day. It is a very powerful and efficient file transfer tool, but that is all it is.
"rsync" as the name implies is used for synchronizing two folders no mater where the are.
http://opensuse.us/phpBB2/viewtopic.html?t=1796 shows a use of it.
stonecarver wrote: | Does anyone have any suggestions on how to rsync a distro upgrade ie suse 10 to 10.2? |
I would suggest you do a net install "upgrade installed system" to save bandwidth.
_________________ SuSE 8.0, 8.2, 9.0, 9.1, 9.2, 9.3, 10.0, 10.1, 10.2, 10.3, 11.0, 11.1
Live CDs Mepis 8.0, Puppy 4.3.1, netbook- Zenwalk 6.2
|
|
Back to top |
|
Rootboy Sr. Member

Joined: 11 Aug 2025 Posts: 1947 Location: Lewisburg, Tennessee
|
|
Back to top |
|
stonecarver Advanced Member

Joined: 18 Dec 2025 Posts: 833 Location: SE Alaska
|
|
Back to top |
|
Stuka Sr. Member
Joined: 15 Oct 2025 Posts: 1271 Location: Houston, TX
|
Posted: Sat May 26, 2025 1:56 pm Post subject: |
|
|
Wow, apt on Suse - that's pretty cool. As for all the cool stuff rsync can do, I have no idea - it's an area I'm not familiar with.
|
|
Back to top |
|
geeshock Moderator

Joined: 02 Nov 2025 Posts: 1017 Location: Hertford, NC
|
|
Back to top |
|
geeshock Moderator

Joined: 02 Nov 2025 Posts: 1017 Location: Hertford, NC
|
Posted: Sat May 26, 2025 7:48 pm Post subject: |
|
|
also as for rsync it's probably overkill but I generaly tend to use the same command when backing up my entire system,
rsync -azv -H -e
That generaly covers all my bases and it doesn't change any files already in place unless they are diferent at the source
|
|
Back to top |
|
stonecarver Advanced Member

Joined: 18 Dec 2025 Posts: 833 Location: SE Alaska
|
|
Back to top |
|
stonecarver Advanced Member

Joined: 18 Dec 2025 Posts: 833 Location: SE Alaska
|
|
Back to top |
|
bdm New Member
Joined: 06 Jun 2025 Posts: 3
|
|
Back to top |
|
masinick Linux Guru

Joined: 03 Apr 2025 Posts: 8615 Location: Concord, NH
|
Posted: Thu Jun 07, 2025 1:33 pm Post subject: |
|
|
Some of the file transfer tools that are used in conjunction with OTHER tools to perform incremental updates on packages include rsync, wget, various flavors of FTP, and curl. None of these tools by themselves actually upgrade the software, but they are used by various vendors in conjunction with their update tool. Mandriva, for instance, uses curl as one of its transfer mechanisms with urpmi, their software update tool (and I believe wget is used as an alternative if curl cannot work for some reason).
When I worked for Lycoris we did frequently use rsync to update our packages to test during our internal testing cycles and it certainly does save bandwidth by downloading only what has changed. Of course, when downloading the first time, you don't gain anything by using it, but it is a useful file transfer tool.
The wget utility is really handy at times when you may only get a partial file transfer and you want to resume a transfer without having to start over.
The gftp utility is a really handy graphical alternative to using the classical FTP utility. |
|
Back to top |
|
|