Thanks for the reply Michael,<br><br>unfortunately the shared external disk is attached to a windows based machine so i cannot use sshfs. I will try your suggestion about symbolic links and samba shares<br><br>Thanks<br><br>
<div class="gmail_quote">2012/9/11 Michael Stauber <span dir="ltr"><<a href="mailto:mstauber@blueonyx.it" target="_blank">mstauber@blueonyx.it</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Marcello,<br>
<div class="im"><br>
> Can i change the destination directroy of the backup script? I've found<br>
> a file named "vsite-backup.sh" in "/home/solarspeed/solbackup" folder<br>
> and i've seen that is possible to set the destination folder. Otherwise<br>
> can i setup destination folder on a mounted samba external HDD?<br>
<br>
</div>You can also use a symbolic link to point the backup to another<br>
location. Say you want to store the backups in a mounted remote<br>
directory called /extra.<br>
<br>
Then you'd do this:<br>
<br>
rm -R /home/solarspeed/solbackup/server_backup<br>
mkdir /extra/server_backup<br>
ln -s /extra/server_backup /home/solarspeed/solbackup/server_backup<br>
<br>
Using a Samba share is fine. But you could also try fuse-sshfs to mount<br>
a remote directory via SSH. How that is done is explained here:<br>
<br>
<a href="http://www.blueonyx.it/index.php?page=fuse-sshfs" target="_blank">http://www.blueonyx.it/index.php?page=fuse-sshfs</a><br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
With best regards<br>
<br>
Michael Stauber<br>
_______________________________________________<br>
Blueonyx mailing list<br>
<a href="mailto:Blueonyx@mail.blueonyx.it">Blueonyx@mail.blueonyx.it</a><br>
<a href="http://mail.blueonyx.it/mailman/listinfo/blueonyx" target="_blank">http://mail.blueonyx.it/mailman/listinfo/blueonyx</a><br>
</font></span></blockquote></div><br>