Page 1 of 1

Creating an ISO from a DVD/CD

Posted: Sat Aug 31, 2024 6:32 am
by xeno74

Code: Select all

# isoinfo -d -i /dev/sr0 | grep -i -E 'block size|volume size'
Output (example):

Logical block size is: 2048
Volume size is: 4113394

Code: Select all

# dd if=/dev/sr0 of=ubuntu_live_remix.iso bs=2048 count=4113394 status=progress
Mounting of the new ISO:

Code: Select all

# mount -o loop ubuntu_live_remix.iso /media/amigaone