Active Topics

 


Reply
Thread Tools
Posts: 5 | Thanked: 0 times | Joined on Jan 2009
#1
i have lots of music on my computer from cds i have bought. i was wondering if there was a way to synchronize my music folder to the n810 without having to manually transfer each file every time. Thank you ;(
 
Lord Raiden's Avatar
Posts: 1,562 | Thanked: 349 times | Joined on Jun 2008
#2
Speaking of synchronizing, I'd be curious how to synchronize two tablets together. I've got two nits, each of which do different things, but have some common elements between them, one of them being GPEcalender (I think that's it's name). Of course, it'd also be nice to synchronize certain folders and other things between them as well. IE, choose what is and isn't synchronized.
__________________
Popular Sci-Fi author and creator of the Earthfleet Series.
www.realmsofimagination.net
 
allnameswereout's Avatar
Posts: 3,397 | Thanked: 1,212 times | Joined on Jul 2008 @ Netherlands
#3
grsync (frontend for rsync), unison
__________________
Goosfraba! All text written by allnameswereout is public domain unless stated otherwise. Thank you for sharing your output!
 
Posts: 367 | Thanked: 47 times | Joined on Nov 2008 @ Brooklyn, NY
#4
Originally Posted by allnameswereout View Post
grsync (frontend for rsync), unison
How does that work? is it like the palm sync.
 
fattomm's Avatar
Posts: 109 | Thanked: 37 times | Joined on Oct 2008 @ NYC, NY
#5
Originally Posted by FRZ View Post
How does that work? is it like the palm sync.
rsync (and thus grsync) aren't a "sync" in the way you might think of it from a Palm based system (that is; syncing a calendar or a contacts list) -- those tend to have a "merge" concept, since they work on the "record" (calendar entry or contact) level.

Rather rsync works on a file level, and similar to the Palm in some ways (think "Palm overwrites computer" and "computer overwrites palm") -- there is a concept of a primary file that will win in a tie. Effectively; rsync works such that a set of files are copied remotely. From there, there is additional flags to indicate "remove a remote file if a local version doesn't exist", and "newer overwrites older".

You can specify that the remote copy is the primary, or that the local copy is - and then things are made to match up according to your preferences.

You should really check a "man rsync" in google for a reference page to go through a lot of the available knobs that can be turned ... (and make a copy of your files before experimenting ....).
 

The Following User Says Thank You to fattomm For This Useful Post:
Posts: 367 | Thanked: 47 times | Joined on Nov 2008 @ Brooklyn, NY
#6
Originally Posted by fattomm View Post
rsync (and thus grsync) aren't a "sync" in the way you might think of it from a Palm based system (that is; syncing a calendar or a contacts list) -- those tend to have a "merge" concept, since they work on the "record" (calendar entry or contact) level.

Rather rsync works on a file level, and similar to the Palm in some ways (think "Palm overwrites computer" and "computer overwrites palm") -- there is a concept of a primary file that will win in a tie. Effectively; rsync works such that a set of files are copied remotely. From there, there is additional flags to indicate "remove a remote file if a local version doesn't exist", and "newer overwrites older".

You can specify that the remote copy is the primary, or that the local copy is - and then things are made to match up according to your preferences.

You should really check a "man rsync" in google for a reference page to go through a lot of the available knobs that can be turned ... (and make a copy of your files before experimenting ....).
Will do, thanks.
 
fattomm's Avatar
Posts: 109 | Thanked: 37 times | Joined on Oct 2008 @ NYC, NY
#7
Originally Posted by FRZ View Post
Will do, thanks.
You know, I just looked at the man page again, and there is a ridiculous number of knobs (does the world really need a rsync daemon mode?).

For example; to keep an up-to-date backup of my music, I do a
Code:
rsync --delete -val remotehost:/media/music .
where
Code:
  --delete   # delete local versions of files that have been removed remotely
 -v             # verbose - I like chatty, you mayn't
 -a             # "archive" - preserve owner/group/timestamps
 -l              # if the remote is a soft-link, make the soft-link locally
The "-l" is supposed to be included in the "-a" - but it seems to be broken on Fedora 9.

The syntax is a lot like cp(1) or scp(1) - and rsync is fairly simple if apprached from that standpoint. (I put all the above into a shell script, and run it whenever I made changes to my music collection).

You might want to look at the "--exclude=" flag, to skip sub-directories and whatnot that you may not want to include in the copy ....
 
allnameswereout's Avatar
Posts: 3,397 | Thanked: 1,212 times | Joined on Jul 2008 @ Netherlands
#8
Originally Posted by fattomm View Post
(does the world really need a rsync daemon mode?).
Yes. E.g. you evade race conditions possibly occuring via cron.
__________________
Goosfraba! All text written by allnameswereout is public domain unless stated otherwise. Thank you for sharing your output!
 

The Following User Says Thank You to allnameswereout For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 20:53.