castalla wrote: 
> Thanks for the kind thoughts.
> Well, Spain haqs suffered for years from Austerity cuts ... the present
> govt. is having to try to make up for the mistakes of the past.
> I only have linux - so it's a bit more complicated!

WRT USB backup on linux: I just stumbled over this on a thread:

"dd it! Usage would be something like 

Code:
--------------------
    sudo dd if=/dev/sdb of=~/USB_image
--------------------
 where /dev/sdb is your usb drive as listed by 
Code:
--------------------
    sudo fdisk -l 
--------------------

and ~/USB_image is the image file where the copy will be made (a path
where the image file will be created).

To restore the image to another USB drive just invert the process: 

Code:
--------------------
    sudo dd if=~/USB_image of=/dev/sdb
--------------------
 will restore ~/USB_image to the device sdb. 
Just make sure that the new USB drive is as big or bigger than the
original one.

You can also mount the image file you just created into a path without
need to restore it first to another USB drive with 

Code:
--------------------
    mount ~/USB_image /mnt/USB_image -o loop
--------------------


Maybe this helps. Good luck!



LMS 8 on Open Peak Joggler (running Chills Jivelite on Joggler)
Player: 5 x Squeezebox Classic, Slimp3, SqueezeAmp
2nd System: PiCorePlayer (and LMS) on Pi Zero;
------------------------------------------------------------------------
slimhase's Profile: http://forums.slimdevices.com/member.php?userid=31958
View this thread: http://forums.slimdevices.com/showthread.php?t=110040

_______________________________________________
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to