Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
04-17-2004, 05:27 PM
|
#1
|
Member
Registered: May 2002
Distribution: Slackware 9.1
Posts: 161
Rep:
|
how to create iso img
hi people ..
i want program running on linux to create iso img ..
|
|
|
04-17-2004, 05:39 PM
|
#2
|
Senior Member
Registered: Oct 2003
Posts: 3,057
Rep:
|
That would be mkisofs .
|
|
|
04-17-2004, 07:03 PM
|
#3
|
Senior Member
Registered: Apr 2001
Location: Plymouth, England.
Distribution: Mostly Debian based systems
Posts: 4,368
Rep:
|
Or dd.
What are you trying to make ISO images from? If it's from files on your harddrive that you want to burn to a disc, then use mkisofs. If you have a CD in the drive that you want to take an image of, then use dd.
|
|
|
04-17-2004, 07:54 PM
|
#4
|
LQ Guru
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795
Rep:
|
heres a little script, save it as makeiso, and put it in /usr/bin
---------------------
# build an ISO from a directory
if [ $# -ne 1 ] ; then
echo "usage: $0 rootdir"
exit 1
fi
if [ ${UID} -ne 0 ] ; then
echo "Dude! You're just not cool enough!"
exit 10
fi
ROOTDIR=$1
TITLE=${ROOTDIR}
OUTFILE=${ROOTDIR}.iso
mkisofs \
-rational-rock \
-joliet \
-full-iso9660-filenames \
-allow-leading-dots \
-disable-deep-relocation \
-volid ${TITLE} \
-output ${OUTFILE} \
${ROOTDIR}
#EOF
---------------------------
|
|
|
04-17-2004, 10:27 PM
|
#5
|
Senior Member
Registered: Sep 2003
Location: Egypt
Distribution: Arch
Posts: 1,528
Rep:
|
u could use a program called kiso
"KIso is a GUI for KDE 3 which has the purpose to make creating, extracting and editing of ISO-Images as easy as possible. "
http://kiso.sourceforge.net/
|
|
|
04-18-2004, 01:08 AM
|
#6
|
LQ Newbie
Registered: Apr 2004
Location: china
Distribution: fedora 4
Posts: 18
Rep:
|
if your CD-ROM dervie is /dev/hdd ,you could input dd if=/dev/hdd of=mycd.iso
|
|
|
03-20-2006, 06:43 AM
|
#7
|
Member
Registered: Jan 2006
Location: Suedpfalz
Distribution: kubuntu
Posts: 114
Rep:
|
is there a k3b plugin to do that? just wondering...
|
|
|
All times are GMT -5. The time now is 12:52 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|