Results 1 to 4 of 4

Thread: How to backup DVD with dvdbackup?

  1. #1
    Join Date
    Apr 2007
    Location
    United States
    Beans
    Hidden!
    Distro
    Ubuntu 12.04 Precise Pangolin

    How to backup DVD with dvdbackup?

    Hello.

    I have installed dvdbackup but don't know how to specify the target dvd as an input. when I just type dvdbackup in terminal, it does not work. Any ideas?

  2. #2
    Join Date
    Apr 2005
    Location
    My dreams
    Beans
    3,558
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: How to backup DVD with dvdbackup?

    Just give
    Code:
    man dvdbackup
    to see the available options or you can check the man page here.

    You'll have to specify your DVD drive, in most cases giving /dev/dvd will work, i.e.:
    Code:
    dvdbackup -i /dev/dvd

  3. #3
    Join Date
    Apr 2007
    Location
    United States
    Beans
    Hidden!
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: How to backup DVD with dvdbackup?

    My dvd is in /media/cdrom0

    I tried and neither dvdbackup -i /dev/dvd nor dvdbackup -i /media/cdrom0 works, I get the same output:

    Usage: dvdbackup [OPTION]...
    -h, --help display this help and exit
    ...etc & etc

  4. #4
    Join Date
    Apr 2005
    Location
    My dreams
    Beans
    3,558
    Distro
    Ubuntu 16.04 Xenial Xerus

    Post Re: How to backup DVD with dvdbackup?

    Quote Originally Posted by O-pos View Post
    My dvd is in /media/cdrom0

    I tried and neither dvdbackup -i /dev/dvd nor dvdbackup -i /media/cdrom0 works, I get the same output:

    Usage: dvdbackup [OPTION]...
    -h, --help display this help and exit
    ...etc & etc
    Quoting from the man page
    # Option notes
    -i is mandatory
    -o is mandatory except if you use -I
    -a is option to the -F switch and has no effect on other options
    -s and -e should preferably be used together with -t
    It's obvious that you get this output because you don't use all the mandatory options. A right call of the application could be something like this
    Code:
    dvdbackup -i /dev/dvd -o ~/mydvdbackup

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •