[mythtv-users] Moving older TV recordings to disk on network machine.

Eyal Lebedinsky eyal at eyal.emu.id.au
Sat Jul 1 02:30:06 UTC 2006


Lachlan McIntosh wrote:
> Hi
> 
> Has/does anyone sucessfully moved older recordings to a disk on another
> machine, but done this in a way that it is possible to still access the
> recordings from the watch recordings list?
> 
> I have a samba share mounted on my machine as wanted to "archive" shows
> that I want to keep but don't watch that often to a Windows server with
> a large amount of free disk space.
> 
> Any suggestions or ideas?

What I do is move the files away and create symlinks.
I usually leave the associated *.png thumbnails alone.

I use a date based script like:
	for f in *_200601*.nuv ; do
		echo "`date` moving '$f'"
		mv $f /Backup/Path
		ln -s /Backup/Path/$f .
	done 2>&1 | tee -a move.log
and I do check the log...

-- 
Eyal Lebedinsky (eyal at eyal.emu.id.au) <http://samba.org/eyal/>
	attach .zip as .dat


More information about the mythtv-users mailing list