Не могу создать ISO-диск из записанного DVD-R

614
user610378

У меня проблема при попытке открыть записанный DVD-R, я даже не могу создать его ISO-образ в dd - после создания ISO-образа я попытался смонтировать их:

mount -t iso9660 /dev/cdrom /mnt -o loop=/dev/loop0  mount: wrong fs type, bad option, bad superblock on /dev/loop0, missing codepage or helper program, or other error  In some cases useful info is found in syslog - try dmesg | tail or so. 

Но когда я открываю DVD на окнах, он работает отлично. Я пытался сделать ISO-образ там, но получаю много ошибок (Алкоголь 120%).

Это какая-то защита от копирования? Если да, то как это работает? Я могу легко открыть его в окнах, но не могу создать изо-образ?

Может быть, я использую неправильное программное обеспечение для создания ISO-изображений, какие-либо предложения?

Содержимое DVD-диска, а не аудио или фильмы.

1
Пока вы не решите проблему создания действительного ISO, вы не сможете смонтировать его как устройство с обратной связью в Linux. fpmurphy1 10 лет назад 0

4 ответа на вопрос

1
terdon

I don't understand what you are trying to do, dev/cdrom is not an image, its the drive. What command did you use to make the image? Anyway, assuming you ran something like

dd if=/dev/cdrom of=/tmp/image.iso 

You can then mount it like so:

mkdir foo mount -t iso9660 -o loop /tmp/image.iso foo/ 

If this does not work, your image file probably has problems. Alternatives for creating the image are to use programs like brasero or k3b or mkisofs:

mount /dev/cdrom /media/cdrom mkisofs -o /tmp/image.iso -graft-points -rational-rock -full-iso9660-filenames -iso-level 2 -r -J /media/cdrom 
0
BatchyX

Make sure your DVD uses a ISO9660 filesystem:

file -s /dev/cdrom 

If your DVD is not using ISO9660, don't bother creating an ISO image out of it. That doesn't mean you can't create an image of it. If your DVD uses the UDF filesystem, you can create an UDF image and mount it, but not with the -t iso9660 option. The kernel is able to automatically detect the used filesystem, so you can simply try without any -t option and see if it works.

0
hruvulum

This next looks wrong to me. My guess is that it would fail regardless of the DVD-R because the loop option is for mounting an image file (a plain file) whereas your /dev/cdrom is a device file.

mount -t iso9660 /dev/cdrom /mnt -o loop=/dev/loop0 
-1
Pranjal Gangurde

use nero and poweriso for burning. I am using it for several years without any issue.

If still that doesnt work, make sure that whether your ISO file is corrupted.

No issue of copyright.

If still have problem swap with another drive..

ОП использует Linux. terdon 10 лет назад 1