Go to a terminal screen. You can usually right click on the desktop and choose this option from the drop-down menu.
3A. Type dd if=/dev/cdrom of=~/cdrom_image.iso.
OR
3B. Type mkisofs -o /tmp/cd.iso /tmp/directory/ To make an ISO from files on your hard drive.
You must have permission to access the drive directly using dd. mount permissions are not necessarily the same as dd permissions!
Also... when creating an ISO file, the device must not be mounted. To unmount the cdrom device, use the umount command as follows:
umount /dev/cdrom
You may also use sudo to ensure you have proper permissions, but this also means you must have sudo access on the system. Check the /etc/sudoers file for information.
It's easy to create ISO in terminal as described in other answers but there are some GUI options too, Like Brasero. If you don't already have it, you can install it using:
sudo apt install brasero
How can I create ISO images with Brasero?
Hit the Super key (Windows key) and search for "brasero" and open it.
Click on the Data project button.
Click on the green plus button in the upper left corner in the toolbar to start adding files and directories to your image:
Enter the name of disc at the bottom to whatever you like.
Make sure no empty CD/DVD is in your optical drives and click on Burn.
Brasero will ask you for the location where you want to create ISO image, Give your desired location and click on Create Image. That's it!
If you want to burn that image to disc, Just right click on ISO image you just created and select "Open With Brasero Disc Burner". Select your optical drive and click Create Image.
Actually, there is a very simple answer to this question. I have just created Windows 7 ISO file with no problems. Didn't really liked the Brasero method because it keep throwing pop-up windows. It had some compatibility issues with file names and ISO standard. I believe this method is compatible with Mac OS ISO's as well.
This answer is provided by using Archive Manager, the default archive manager in Ubuntu 14.10.
Open your folder with files you want to include in ISO. Then select view/show hidden files, select all files , right click and choose compress...
On new window select ISO option, file name and location. That's it!
Few quick steps:
Boot up Linux.
Go to a terminal screen. You can usually right click on the desktop and choose this option from the drop-down menu.
3A. Type
dd if=/dev/cdrom of=~/cdrom_image.iso
.OR
3B. Type
mkisofs -o /tmp/cd.iso /tmp/directory/
To make an ISO from files on your hard drive.You must have permission to access the drive directly using
dd
.mount
permissions are not necessarily the same asdd
permissions! Also... when creating an ISO file, the device must not be mounted. To unmount the cdrom device, use theumount
command as follows:You may also use
sudo
to ensure you have proper permissions, but this also means you must havesudo
access on the system. Check the/etc/sudoers
file for information.It's easy to create ISO in terminal as described in other answers but there are some GUI options too, Like Brasero. If you don't already have it, you can install it using:
How can I create ISO images with Brasero?
Hit the Super key (Windows key) and search for "brasero" and open it.
Click on the Data project button.
Click on the green plus button in the upper left corner in the toolbar to start adding files and directories to your image:
If you want to burn that image to disc, Just right click on ISO image you just created and select "Open With Brasero Disc Burner". Select your optical drive and click Create Image.
Try This:
Go to the Terminal
Type
genisoimage -o ~/backup.iso -V BACKUP -R -J ~/Documents
or, for more useful permissions, change -R to -r:
genisoimage -o ~/backup.iso -V BACKUP -r -J ~/Documents
In this case Ubuntu will generate a file called "backup.iso" with all the contents in the Documents Folder.
http://www.jonathanmoeller.com/screed/?p=3513
I actually had to do this just today. A really easy way to do it is in the terminal, so type:
To find the device file of the external disk open up the Unity launcher and search for "System Monitor," then go to "File Systems."
So an example would look like:
Actually, there is a very simple answer to this question. I have just created Windows 7 ISO file with no problems. Didn't really liked the Brasero method because it keep throwing pop-up windows. It had some compatibility issues with file names and ISO standard. I believe this method is compatible with Mac OS ISO's as well.
This answer is provided by using Archive Manager, the default archive manager in Ubuntu 14.10.
Open your folder with files you want to include in ISO. Then select
view/show hidden files
, select all files , right click and choosecompress...
On new window select ISO option, file name and location. That's it!