Creating an ISO from a DVD/CD

AmigaOne X1000 platform specific issues related to Linux only.
Post Reply
User avatar
xeno74
Posts: 10705
Joined: Fri Mar 23, 2012 7:58 am
Contact:

Creating an ISO from a DVD/CD

Post 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
Post Reply