LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 07-07-2004, 07:47 AM   #1
vbhatia_81
LQ Newbie
 
Registered: Jun 2004
Posts: 13

Rep: Reputation: 0
how to run mkisofs


Hi
I m newbie to debian and i m facing a problem. I have debian woody installed on my ix86 and kernel verison of 2.2. The problem is it doesnot support mkisofs command when i run mkisofs it saya command not found. So wat can i do to have this command running on my kernel. Is there any sort of patch available????
which can help me with this or can i update my kernel without disturbing my data if yes plz help me
i ll be really thnxful
 
Old 07-07-2004, 08:18 AM   #2
attet
LQ Newbie
 
Registered: Jul 2004
Location: Finland
Distribution: Debian unstable
Posts: 6

Rep: Reputation: 0
I don't think it has anything to do with kernel version. Just install it with 'apt-get install mkisofs' (as root)
 
Old 07-07-2004, 08:20 AM   #3
Guttorm
Senior Member
 
Registered: Dec 2003
Location: Trondheim, Norway
Distribution: Debian and Ubuntu
Posts: 1,453

Rep: Reputation: 447Reputation: 447Reputation: 447Reputation: 447Reputation: 447
Hi

I think you have misunderstood a bit. mkisofs in not an part of the kernel, just
apt-get install mkiosfs

To make an ISO file of stuff in a directory, first "cd dirname" - do an "ls" - if this is what you want on the ISO, you can do a
mkisofs -J -r * >/tmp/isofile.iso
(To make the ISO file as /tmp/isofile.iso)

Without -J and -r options, your filenames will be MS-DOS like, i.e. very short!

Hope this helps,
Guttorm.

Last edited by Guttorm; 07-07-2004 at 08:32 AM.
 
Old 07-07-2004, 08:58 AM   #4
freelinuxcpp
Member
 
Registered: Jul 2003
Posts: 129

Rep: Reputation: 15
there are easiest :
dd if=/dirs/to/make/iso of=/tmp/isoimage.iso
 
Old 07-07-2004, 11:51 PM   #5
vbhatia_81
LQ Newbie
 
Registered: Jun 2004
Posts: 13

Original Poster
Rep: Reputation: 0
Thnx to all those who have replied back i ithnk its really gud to know that it doesnot have anything to do with kernel. I ll try it out and ll let u guys know if it worked in my case or not
Thx once again
 
Old 07-08-2004, 12:41 AM   #6
vbhatia_81
LQ Newbie
 
Registered: Jun 2004
Posts: 13

Original Poster
Rep: Reputation: 0
Hi
I have tried doin "apt-get install mkisofs"
but after that it says
making source tree
and then package not found.
So can anybody tell me wat can be the problem
and how it can be corrected.
 
Old 07-08-2004, 01:24 AM   #7
attet
LQ Newbie
 
Registered: Jul 2004
Location: Finland
Distribution: Debian unstable
Posts: 6

Rep: Reputation: 0
Try first running 'apt-get update' and then 'apt-get install mkisofs'. If it still does not work, you propably don't have correct source entries listed in /etc/apt/sources.list (it tells apt-get where to download all the programs from).

Try adding something like these three lines to /etc/apt/sources.list if they don't already exist:

deb http://http.us.debian.org/debian stable main contrib non-free
deb http://non-us.debian.org/debian-non-US stable/non-US main contrib non-free
deb http://security.debian.org stable/updates main contrib non-free

(im guessing that you are using stable version, which is the default. If you are not, change stable to testing or unstable accordingly.)

Then run 'apt-get update' again and after that 'apt-get install mkisofs' should work or at least give you a different error
 
Old 07-08-2004, 02:51 AM   #8
vbhatia_81
LQ Newbie
 
Registered: Jun 2004
Posts: 13

Original Poster
Rep: Reputation: 0
i trie adding these three lines but its giving me the following errors when i run apt-get update


Failed to fetch http://non-us.debian.org/debian-non-...-i386/Packages Something Wicked happened Resolving non-us.debian.org : http (-3)

Failed to fetch http://non-us.debian.org/debian-non-...y-i386/Release Something Wicked happened Resolving non-us.debian.org : http (-3)

Failed to fetch http://non-us.debian.org/debian-non-...-i386/Packages Something Wicked happened Resolving non-us.debian.org : http (-3)


Failed to fetch http://non-us.debian.org/debian-non-...y-i386/Release Something Wicked happened Resolving non-us.debian.org : http (-3)


Failed to fetch http://non-us.debian.org/debian-non-...-i386/Packages Something Wicked happened Resolving non-us.debian.org : http (-3)

Failed to fetch http://non-us.debian.org/debian-non-...y-i386/Release Something Wicked happened Resolving non-us.debian.org : http (-3)

W: Couldn't stat source package list http://non-us.debian.org stable/non-us/main packages


So please tell me now what can i do, and why are these error coming.
If this problem can come because i m tryin to access net from my lan and i have not given DNS server address in the file /etc/network/interfaces.

Last edited by vbhatia_81; 07-08-2004 at 02:54 AM.
 
Old 07-08-2004, 04:09 AM   #9
freelinuxcpp
Member
 
Registered: Jul 2003
Posts: 129

Rep: Reputation: 15
use apt-setup > http > unated stats > kernel mirror
these are a good servers and should work properly
 
Old 07-08-2004, 07:53 AM   #10
attet
LQ Newbie
 
Registered: Jul 2004
Location: Finland
Distribution: Debian unstable
Posts: 6

Rep: Reputation: 0
The lines i gave were taken from the manual of apt (http://www.debian.org/doc/manuals/ap....html#contents) and they work fine here so it's propably something with the network settings. Though you might later want to change the servers to something located closer to you.

As you suggest the problem might be related to a missing DNS server address. DNS servers go into /etc/resolv.conf (check 'man resolv.conf' and 'man interfaces' for syntax issues and what to put into the files) and don't forget to run '/etc/init.d/networking restart' after modifying.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
help using mkisofs mykrob Linux - Software 1 12-01-2004 12:40 PM
mkisofs guldo Linux - Software 14 08-10-2004 01:58 PM
where is my mkisofs? slack66 Linux - Newbie 2 07-14-2004 02:27 AM
mkisofs jmdlcar Slackware 2 03-20-2004 12:05 AM
mkisofs Serena Linux - Newbie 1 04-24-2002 05:23 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 03:38 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration