Results 1 to 10 of 10

Thread: Questions on Knoppix

  1. #1
    Junior Member
    Join Date
    Aug 2005
    Posts
    5

    Questions on Knoppix

    Hi guys, I am need to Knoppix.
    What is an MBR?
    I cannot find the Linux Kernel, where is it?

    Can somebody enlighten me? Thanks.

  2. #2
    Senior Member
    Join Date
    Nov 2003
    Posts
    1,323

    Re: Questions on Knoppix

    Quote Originally Posted by aloy
    Hi guys, I am need to Knoppix.
    What is an MBR?
    http://en.wikipedia.org/wiki/MBR

    I cannot find the Linux Kernel, where is it?
    It's under /boot/ and called vmlinuz-version. The kernel source is/should be under /usr/src/

  3. #3
    Junior Member
    Join Date
    Aug 2005
    Posts
    5

    Re: Questions on Knoppix

    It's under /boot/ and called vmlinuz-version. The kernel source is/should be under /usr/src/
    Is the Linux Kernel located in /boot/ or usr/src/ ?? What is the kernel source?

    Where is the boot block for Lilo??

    Please teach me how to list the content of a CD-ROM from the terminal..

    Hi All, I am so sorry for asking so much, but i got no clue anywhere else. Please help. Thanks!

  4. #4
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    Why do you need to know what a boot block is? Why do you need to know about the kernel source?
    What are you trying to acomplish?

  5. #5
    Junior Member
    Join Date
    Aug 2005
    Posts
    5
    Hi UnderScore, I am currently doing a module on operating systems which includes using Knoppix.

    As I am new to Knoppix, I am trying to understand how to use it.

    Hence I sought help from the forum, hoping u guys might enlighten me. So Please help.. Thanks.

  6. #6
    Senior Member registered user
    Join Date
    May 2003
    Location
    Belgrade, YU
    Posts
    334
    aloy, I highly respect your wish to learn and work with Linux, but you asks questions that are "basic off basics". You need to learn something by yourself, not only to learn some things, but also to become familiar with documentation and Google. "What is MBR?" is in encyclopedia - http://www.webopedia.com/TERM/M/MBR.html , you don't need "help" to find this.

  7. #7
    Junior Member
    Join Date
    Aug 2005
    Posts
    5
    Hi, guys, I managed to find MBR using google, sorry for posting that question.

    But the other questions such as
    1)Is the Linux Kernel located in /boot/ or usr/src/ ?? What is the kernel source?

    2)Where is the boot block for Lilo??

    3)Please teach me how to list the content of a CD-ROM from the terminal using Knoppix.

    I really got no clues to those questions, so please advise.

  8. #8
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    You said "module on operating systems" is this a secondary school(high school) or college class on operating systems? Shouldn't you be reading & testing & experimenting & searching for the answers and not asking for help. I am not doing this to be mean or to hurt you. You need to learn how to learn and you need to learn on your own. If I just give you the answers, then you have learned to ask someone else and not have learned how to learn and probably not have learned the subject too. A simple google search for lilo boot block turns up an answer to your question. Google is a great resource. See google search for linux kernel stored /boot lilo. There are many many tutorials, FAQs & guides on Linux. Here are three:
    http://oldfield.wattle.id.au/luv/boot.html
    http://linux-newbie.sunsite.dk/html/lnag.html
    http://www.linux-tutorial.info/index.php

  9. #9
    Junior Member
    Join Date
    Aug 2005
    Posts
    5
    Hi UnderScore, Thanks for the links to the tutorials.

    I have found the answers to the questions,

    1) Linux Kernel is located at /boot? I found this answer while using google. However i checked in my lilo.conf file, it states "image=/vmlinuz", hence is my Linux kernel in the /boot directory or ?
    2) The boot block for Lilo is /dev/hda.
    3) In order to list the directory for a cdrom, I just need to do a "ls /cdrom" at the terminal.

    Hence I wish to know if this answers are correct. Please advise.
    Thanks.

  10. #10
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    1)do:
    Code:
    ls -l /
    and examine the output. Does vmlinuz exist? If so what is it? Is it a file or is it a symbolic link? If it is a link, where does it point?

    2)Boot block is also known as the MBR (master boot record) and is first 512 bytes of /dev/hda and contains the partition table.

    3)In most cases, a CDROM disc must be mounted before reading. So first place the CD in the drive. Next find out where the drive gets mounted. It may be mounted on /cdrom or /mnt/cdrom or /media/cdrom. Check /etc/fstab for mount information:
    Code:
    cat /etc/fstab
    You might see output like:
    Code:
    james@dualcrush:~# cat /etc/fstab
    # /etc/fstab: static file system information.
    #
    # <file system> <mount point>   <type>  <options>       <dump>  <pass>
    proc            /proc           proc    defaults        0       0
    /dev/hda8       /               ext3    defaults,errors=remount-ro 0       1
    /dev/hda3       /mnt/oldir      ext3    defaults 0       1
    /dev/hda5       none            swap    sw              0       0
    /dev/hda7       none            swap    sw              0       0
    /dev/hdc        /media/cdrom    iso9660 ro,user,noauto  0       0
    /dev/fd0        /media/floppy0  auto    rw,user,noauto  0       0
    /dev/hde1       /mnt/storage1   ext3    defaults        0       1
    /dev/hda6       /home           ext3    defaults        0       1
    /dev/hde2       /mnt/storage2   ext3    defaults        0       1
    /dev/hdg1       /mnt/storage3   ext3    defaults        0       1
    It is this line
    Code:
    /dev/hdc        /media/cdrom   iso9660 ro,user,noauto  0       0
    that tells the system how to mount a CDROM disc. To mount it (you may need to be root user):
    Code:
    mount /media/cdrom
    Then read it:
    Code:
    ls /media/cdrom

Similar Threads

  1. Two Questions About Knoppix
    By DCGS in forum MS Windows & New to Linux
    Replies: 2
    Last Post: 03-25-2007, 10:26 AM
  2. some questions about knoppix 4.0.2 DVD
    By tworiversfolk in forum MS Windows & New to Linux
    Replies: 3
    Last Post: 05-30-2006, 08:54 PM
  3. Knoppix 4.0.2 Questions
    By Vyper in forum Hardware & Booting
    Replies: 3
    Last Post: 02-09-2006, 11:05 PM
  4. Few Questions about Knoppix
    By |2yan in forum General Support
    Replies: 3
    Last Post: 09-03-2004, 07:49 AM
  5. Knoppix questions
    By NickT in forum General Support
    Replies: 1
    Last Post: 07-21-2003, 12:21 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Grandstream GS-HT802 2 Port Analog Telephone Adapter VoIP Phone & Device, Black picture

Grandstream GS-HT802 2 Port Analog Telephone Adapter VoIP Phone & Device, Black

$32.00



Grandstream HT801 Single-Port Analog Telephone Adapter picture

Grandstream HT801 Single-Port Analog Telephone Adapter

$34.00



NEW Polycom VVX 501 VoIP IP Phone & Stand Tested VVX501 2200-48500-019 Lync picture

NEW Polycom VVX 501 VoIP IP Phone & Stand Tested VVX501 2200-48500-019 Lync

$43.98



Polycom VVX 250 Business IP Phone with 2.8 in. Color Display & Ethernet, Black picture

Polycom VVX 250 Business IP Phone with 2.8 in. Color Display & Ethernet, Black

$39.99



Cisco CP-7945G VOIP Phone With Stand & Handset Business IP Phone 7945 picture

Cisco CP-7945G VOIP Phone With Stand & Handset Business IP Phone 7945

$3.00



Lightly Used Cisco 8811 Series VoIP phone Factory Reset great condition  picture

Lightly Used Cisco 8811 Series VoIP phone Factory Reset great condition

$19.95



Grandstream DP720 Dect Cordless VoIP Telephone - Black picture

Grandstream DP720 Dect Cordless VoIP Telephone - Black

$30.00



* Used * Yealink IP Phone SIP-T48S Business Office VOIP 16 Lines 7

* Used * Yealink IP Phone SIP-T48S Business Office VOIP 16 Lines 7"

$59.99



Lot Of 7 Cisco CP-7945G VOIP Phone With Stand & Handset Business IP Phone 7945 picture

Lot Of 7 Cisco CP-7945G VOIP Phone With Stand & Handset Business IP Phone 7945

$41.99



Cisco 7962 Series CP-7962G Unified VoIP IP Business Phone picture

Cisco 7962 Series CP-7962G Unified VoIP IP Business Phone

$6.99