Make iso image from vobcopy
Vobcopy and Mkisofs to the rescue again
Firstly, vobcopy does not make iso images directly. You first need to extract all the required files from the dvd you are making an iso image of.
To do this take a look here.
Short version is this.
- $ vobcopy -m /path/to/dvd .
This will place all the files in the current directory. So make sure that you are in the directory you want all your files in.
Then run this command in the directory that holds the VIDEO_TS sub directory.
- $ mkisofs -dvd-video -o filename.iso .
This is going to create your iso image file in the directory you are in. Notice the trailing dot. This is unix speak for current directory.
You can change this to any directory you want. maybe you already have an ISOS directory made and wish to you that.
- $ mkisofs -dvd-video -o filename.iso /ISOS
Have fun.