Original (now obsolete) strategy to manage music on Linux within VM.
- Stop SlimServer service
# service slimserver stop - Mount
/audiofor writing# mount -o remount,rw /audio - Create destination path under
/audio# mkdir -p /audio/syburgh - Download new audio (note that
/audio/syburgh/0001is created because “0001″ is the name of the directory on the source FTP server)# pushd . # cd /audio/syburgh # wget --recursive --no-host-directories --timestamping ftp://192.168.1.19/0001/ # popd - Return
/audioto read-only and start SlimServer service# mount -o remount,ro /audio # service slimserver start