My aim is to create a backup of Kubuntu (installed on 4GB SSD) to an external 120GB HD that I can later use as an OS restoration.
Conserving space on the HD is not an issue
in testing dd I keep getting an error
where source and destination are folders and 'source' has some files within it.
I keep getting an error stating /home/user/destinaion is a directory.
I expect to get this error when I try to backup.
When I back up I'd like 'if' to be
and 'of' to be
where MyBackUp is a folder at the root of the external drive.
this seems so simple. what is wrong with my syntax?
thanks
Conserving space on the HD is not an issue
in testing dd I keep getting an error
Code:
dd if=/home/user/source of=/home/user/destination
I keep getting an error stating /home/user/destinaion is a directory.
I expect to get this error when I try to backup.
When I back up I'd like 'if' to be
Code:
/dev/sda1
Code:
/dev/sdc1/MyBackUp
this seems so simple. what is wrong with my syntax?
thanks
Comment