I'm working on Ubuntu 13.04.
I want to make backup of my data on DVD but unable to do so. To test this I'm backing up file name 'tomboy' from my current directory to DVD.
ravbholua@ravbholua-Aspire-5315:~/Documents/Other$ dd if=./tomboy of=/dev/cdrom
dd: opening ‘/dev/cdrom’: Read-only file system
Then I ran the following intending to remount it as read-write
mode.
ravbholua@ravbholua-Aspire-5315:~/Documents/Other$ sudo mount -o rw,remount /dev/cdrom ~/Downloads
mount: you must specify the filesystem type
ravbholua@ravbholua-Aspire-5315:~/Documents/Other$ sudo mount -t iso9660 -o rw,remount /dev/cdrom ~/Downloads
mount: /home/ravbholua/Downloads not mounted or bad option
ravbholua@ravbholua-Aspire-5315:~/Documents/Other$
I don't understand why it messaged above mount: /home/ravbholua/Downloads not mounted or bad option
Is my syntax wrong?
Then I tried the below:
ravbholua@ravbholua-Aspire-5315:~/Documents/Other$ sudo umount /dev/cdrom
umount: /dev/cdrom: not mounted
ravbholua@ravbholua-Aspire-5315:~/Documents/Other$ sudo mount -t iso9660 /dev/cdrom ~/Downloads
mount: block device /dev/sr0 is write-protected, mounting read-only
mount: wrong fs type, bad option, bad superblock on /dev/sr0,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
ravbholua@ravbholua-Aspire-5315:~/Documents/Other$
I tried this with 2 DVDs but the same issue with both of them.
I need to back-up or copy data on a DVD & CD.
dd
and not use a normal CD burner? – terdon Dec 28 '13 at 15:00dmesg | tail
to see what's there, maybe a clue. Also, maybels /dev
and look, maybe there's something else than cdrom there... – Dec 28 '13 at 15:42dd
command. – Ravi Dec 29 '13 at 06:25dd
. IN any case, you can't do this directly withdd
, you will needmkisofs
andcdparanoia
or whatever the equivalent is for DVDs. I recommend you forget aboutdd
and focus on why the disks are not recognized by your burner. – terdon Dec 29 '13 at 11:51dd
won't help. – terdon Dec 29 '13 at 12:30