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
  •  


Dell OptiPlex 3060 MICRO DESKTOP PC COMPUTER I5 8TH GEN UP TO 32GB UP TO 2TB M.2 picture

Dell OptiPlex 3060 MICRO DESKTOP PC COMPUTER I5 8TH GEN UP TO 32GB UP TO 2TB M.2

$295.00



Lenovo  LOQ Laptop, i7-13700H, GB, Up to 1TB SSD, Up To Win 11 Pro picture

Lenovo LOQ Laptop, i7-13700H, GB, Up to 1TB SSD, Up To Win 11 Pro

$701.09



Dell Latitude Business Class Laptop Quad Core i5 8th Gen 16GB 512GB SSD Grade A picture

Dell Latitude Business Class Laptop Quad Core i5 8th Gen 16GB 512GB SSD Grade A

$239.99



DELL OPTIPLEX 7000 | INTEL CORE I9-12900 | 256GB | 16GB | NO OS picture

DELL OPTIPLEX 7000 | INTEL CORE I9-12900 | 256GB | 16GB | NO OS

$599.99



Intel - Core i9-13900K 13th Gen 24 cores 8 P-cores + 16 E-cores 36M Cache, 3 ... picture

Intel - Core i9-13900K 13th Gen 24 cores 8 P-cores + 16 E-cores 36M Cache, 3 ...

$459.99



Intel - Core i7-13700K 13th Gen 16 cores 8 P-cores + 8 E-cores 30M Cache, 3.4... picture

Intel - Core i7-13700K 13th Gen 16 cores 8 P-cores + 8 E-cores 30M Cache, 3.4...

$329.99



Intel Core i9-12900K 12th Gen Alder Lake 16 Core 3.2 GHz LGA CPU Processor picture

Intel Core i9-12900K 12th Gen Alder Lake 16 Core 3.2 GHz LGA CPU Processor

$254.99



Intel - Core i7-11700 11th Generation - 8 Core - 16 Thread - 2.5 to 4.9 GHz -... picture

Intel - Core i7-11700 11th Generation - 8 Core - 16 Thread - 2.5 to 4.9 GHz -...

$189.99



HP Workstation Z640 2x Xeon E5-2623V3 32GB Ram 2x256GB SSD Quadro K420 NO OS GA picture

HP Workstation Z640 2x Xeon E5-2623V3 32GB Ram 2x256GB SSD Quadro K420 NO OS GA

$154.98



New HP 24

New HP 24" All In One Desktop Computer 11th Gen i3 Up To 32GB RAM 2TB SSD Win 11

$499.99