Syncing Multiple Music Collections, Can rsync help?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Syncing Multiple Music Collections, Can rsync help?
# 1  
Old 05-17-2015
Syncing Multiple Music Collections, Can rsync help?

Hello,

I have two laptops one office and one personal. The office laptop is a Lenovo T430s 16GB RAM running Windows 7 and the Personal Laptop is a hp Pavilion dm4 Laptop dual booted with Windows 7 and Fedora 14.

I have 3 music collections, one on my personal Laptop, one on office Laptop and another on an external HD. Is there any Unix/ Linux set of commands (say a shell script that uses rsync ) that can synchronize my music across all 3 devices?
# 2  
Old 05-17-2015
Well, rsync syncs between 2 machines, and according to to the order of arguments passed (local/remote) it will delete unwanted files at the one, and copy new ones to the other.

You would need to define which device is your 'base' and sync from/to there.
But syncing between 3 exchangeable media is always risky and might result in accidently deleted files.

rsync would be a good choice, but i dont know the required arguemtns to make it 'safe'.
# 3  
Old 05-17-2015
Argument to make it safe is actually --dry-run or -n
Combined with --log-file=FILE you can check the log before issuing actual action.
# 4  
Old 05-18-2015
I don't think that you want rsync. If you want to rip CD's again you can look at using a script called adbcde with lame.

https://www.google.com/webhp?sourcei...0adbcde%20lame

There are also utilities that will help you to edit the meta data. Doing those two things you should help you to get the various mp3's that you have under control. If you have the same album stored multiple times with different metadata, then rsync is not going to combine the various versions, but fixing the metadata should help you to find duplicates.
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. What is on Your Mind?

Regarding having collections of NICE threads

Hello All, This is regarding a suggestion to create a sub forum for those THREADS which have been rated 3 or more stars out of 5(Off-course good threads only). As we all know we have thread rating system in each thread, so to have a collections of all those threads which had been rated good, so... (1 Reply)
Discussion started by: RavinderSingh13
1 Replies

2. BSD

FreeBSD7.4 Ports Collections

Hi, During OS installation of FreeBSD7.4/i386 I missed to include ports collection. Now when I try with sysinstall command via ftp servers avaliable in tha list it says "unable to open ftp connection. Error:0" Could You Please suggest me the exact site wher I can get ports collection via FTP to... (1 Reply)
Discussion started by: Priya Amaresh
1 Replies

3. UNIX for Advanced & Expert Users

rsync not syncing a file

I am trying to sync the source tree into backup and somehow this one file dumper.c is not in sync, see below after running the script: /u/prj/dir$ l -tr dumper.c /v/tmp/prj_src/dir/dumper.c -rw-rw-r-- 1 prj group 15635 Jun 20 16:28 /v/tmp/prj_src/dir/dumper.c -rw-rw-r-- 1 prj ... (2 Replies)
Discussion started by: migurus
2 Replies

4. Shell Programming and Scripting

rsync - transactional sync with multiple nodes

Hi Everyone, We have a requirement to sync files with multiple nodes. We need to run the rsync sequentially on each node, if one of the node fails we need to recover the files to previous state in all nodes. I know that we have backup option in rsync which takes the backup of files before... (0 Replies)
Discussion started by: MVEERA
0 Replies

5. UNIX for Dummies Questions & Answers

use rsync to update my music server from my windows notebook

Hello all, I am fairly new to unix/linux. I am using Ubuntu 10.10 as a server. I use a laptop that is Windows based (windows 7 ultimate) and I store my music library on that machine. I was hoping to use rsync to make sure any changes that happen to my music on my computer will be... (0 Replies)
Discussion started by: marcozd
0 Replies
Login or Register to Ask a Question