hello dear OpenSuse Experts,
how to change the filetype of a external hdd to linux. Thats the question of the day for me.
Formatting a USB external hard drive, could be a very easy task when done with proper tools. which one should i use? Gparted!?
Note - it seems to have data-loss when saving and doing backups on the default format.
Look forward to hear from you!
**and now: **May you enjoy the time of the holidays with your nearest and dearest, family, the friends and those who love you and care for you.
May this New Year give you the courage to do triumph all your projects.
I wish you a Happy New Year to every one of you, and a wonderful year 2016!
Regards dilbertone
**Background: - see this thread:
**
currently doing a backup of my notebook
and doing so i have made some interesting experiences
if i copy the directory - home/my_name from hdd to external drive
- with dolphin i get a loss of data rangning form 10 to 15 GB - in other words up to 15 percent
**
questions**:
a- is it more appropiate to do this job with commaandline?
b- where does this loss of data come from
c- can i make sure that i have no loss - with any version / method
- i would prefer to go the command line way
any ideas
**Nrickert **recommended:
It would never have occurred to me, to use Dolphin for a backup. Still, it should work if you remember to include all of the hidden file (files whose name begins with “.”.
I would normally use the command line:
cd destination-directory
( cd source-directory && tar cf - . ) | tar xpf -
**Tomaskom **said:
It might be useful to find out what kind of files got omitted - it might be hidden files (especially if you entered the home folder and selected all, then copied), it might be something about permissions of some files. Also as others said: how did you determine that files are missing? If you used different file browser, it might have told you once GB and once GiB (which would be ~7% difference).
You can also determine the size from command line:
du -hs /folder/
If this output differs, you really have something missing.
And finally, if you were backing up to a removable harddrive/flash drive and removed it after dolphin finished the operation but before the data from cache got really written, that might be another potential source of the problem. You can always ensure that all data got written by using the command sync and waiting for it to return.