- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - Linux
- >
- General
- >
- creating cd/dvd ?
-
- Forums
-
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
- HPE Blog, Austria, Germany & Switzerland
- Blog HPE, France
- HPE Blog, Italy
- HPE Blog, Japan
- HPE Blog, Middle East
- HPE Blog, Latin America
- HPE Blog, Russia
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
-
Blogs
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Blog, Latin America
- HPE Blog, Middle East
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
-
Information
- Community
- Welcome
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Tips and Tricks
- Resources
- Announcements
- Email us
- Feedback
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Aruba Airheads Community
- Enterprise.nxt
- HPE Dev Community
- Cloud28+ Community
- Marketplace
-
Forums
-
Blogs
-
Information
-
English
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-01-2007 11:43 PM
05-01-2007 11:43 PM
# ls /data
abc.iso
plz let me the command line, utility and syntax so that i can create the image on cd/dvd r/rw ?
should the following syntax works/right ?
# dd if=/data/abc.iso of=/dev/cdrom
and also any GUI tool for that ?
Thanks n regards
Maaz
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-02-2007 12:15 AM
05-02-2007 12:15 AM
Re: creating cd/dvd ?
As for GUI - there's "xcdroast" -pretty good.
Hope it helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-02-2007 12:21 AM
05-02-2007 12:21 AM
Re: creating cd/dvd ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-02-2007 12:23 AM
05-02-2007 12:23 AM
Re: creating cd/dvd ?
in command line, 2 words:
wodim abc.iso
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-02-2007 08:09 AM
05-02-2007 08:09 AM
Re: creating cd/dvd ?
Linux has a nice set of command line tools for burning CDs and DVDs. Most popular are the following: cdrecord, dvdrecord, mkisofs, growisofs and cdrdao.
I could recommend to burn CD/DVD using cdrecord tool:
1) find out the value of the dev option using the command:
# cdrecord --scanbus
2) burn the image:
# cdrecord -v speed=4 -data -eject dev=[the value you got in the previous step] -dao -mode1[2] /path/to/file.iso
about GUI: my choise is K3B (http://www.k3b.org/) which is included in almost all Linux clones and has very clean and simple interface.
Enjoy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-02-2007 05:22 PM
05-02-2007 05:22 PM
Re: creating cd/dvd ?
Every suggestion is so nice
one thing remains i.e
say I have a fc6 dvd as /dev/cdrom, and I want to creata an iso file file of the fc6 dvd, then should the following command will work, i.e I want to create a bootable OS dvd .. so should the following will work ?
dd if=/dev/cdrom of=/tmp/fedoraCore6.iso
then I insert a blank dvd, and then
dd if=/tmp/fedoraCore6.iso of=/dev/cdrom
i.e above commands will create the bootable OS dvd ?
Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-02-2007 06:51 PM
05-02-2007 06:51 PM
Re: creating cd/dvd ?
# cdrecord -v speed=4 -data -eject dev=[the value you got in the previous step] -dao -mode1[2] /path/to/file.iso
0, ok .. if the file.iso is a OS image file, then will the above commmand creates the OS bootable cd/dvd ?
1, I have read somewhere that -dao is used for audio cd/dvd .. is it true?, so should I use -dao option, when creating OS cd/dvd, or simply data cd/dvd ?
2, if i used the above command to create a bootable OS cd, then should I use -mode2 ? i,e is it possible/recommended to create a multisession DVD/CD of OS ?
Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-03-2007 01:30 AM
05-03-2007 01:30 AM
Re: creating cd/dvd ?
I will admit right off that the command line questions are a bit above and beyond my skill level. Burning that way has not been a skill set I have attempted to learn as of yet.
The only reason I choose to jump in here is to give you another option for a GUI-based option that has not been mentioned as of yet.
I have used K3b almost exclusively for a GUI for accomplishing what you want. The interface is clean and easy to understand, it is capable of creating most of the projects that people will want, and it runs happily on both KDE and Gnome.
While I have also heard good things about other GUI front ends for burning CDs and DVDs, I have found this one to be my favorite.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-04-2007 04:41 PM
05-04-2007 04:41 PM
Re: creating cd/dvd ?
>The only reason I choose to jump in here is to give you another option for a > GUI-based option that has not been mentioned as of yet.
Sergejs Svitnevs, already mentioned/suggest me to use k3b, see his post, in this thread
Thanks n Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-05-2007 12:37 AM
05-05-2007 12:37 AM
Re: creating cd/dvd ?
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2021 Hewlett Packard Enterprise Development LP