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.