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 Poweredge R720 8SFF 2.5

Dell Poweredge R720 8SFF 2.5" x Xeon E5-2680 v2 2.8GHz 20-Cores 128gb 4x Trays

$349.99



Dell PowerEdge R730XD Server 2x E5-2695 V4 = 36 Cores H730p 32GB RAM 4x trays picture

Dell PowerEdge R730XD Server 2x E5-2695 V4 = 36 Cores H730p 32GB RAM 4x trays

$649.99



Dell EMC PowerEdge R440 Xeon silver 4215 2.5GHz 16 GB ram  2x 550W PSU No HDD picture

Dell EMC PowerEdge R440 Xeon silver 4215 2.5GHz 16 GB ram 2x 550W PSU No HDD

$275.00



Dell R640 Diskless Servers 2x Gold 18-Cores 6254 3.10GHz CPU, 32gb RAM, No Raid picture

Dell R640 Diskless Servers 2x Gold 18-Cores 6254 3.10GHz CPU, 32gb RAM, No Raid

$699.00



Dell PowerEdge R620 2x Xeon E5-2630 v2 3.1GHz 2.5

Dell PowerEdge R620 2x Xeon E5-2630 v2 3.1GHz 2.5" 4-BAY 32GB RAM No OS 2x 495w

$174.95



Dell Poweredge R720 8SFF 2.5

Dell Poweredge R720 8SFF 2.5" 2x Xeon E5-2680 v2 2.8GHz 20-Cores 64gb 4x Trays

$259.99



Dell Poweredge R630 2x Xeon E5-2680 v4 2.4ghz 28-Core | 32GB | HBA330 | 2x 1100w picture

Dell Poweredge R630 2x Xeon E5-2680 v4 2.4ghz 28-Core | 32GB | HBA330 | 2x 1100w

$359.99



Dell Poweredge T420 SFF 2x E5-2430 v2 2.5Ghz / 64gb / H710 / 8x Trays / 2x 495w picture

Dell Poweredge T420 SFF 2x E5-2430 v2 2.5Ghz / 64gb / H710 / 8x Trays / 2x 495w

$394.99



DELL R640 10SFF Server 2x Gold 6152 2.1GHz =44 Cores 64GB H730p 4xRJ45 picture

DELL R640 10SFF Server 2x Gold 6152 2.1GHz =44 Cores 64GB H730p 4xRJ45

$959.00



Dell PowerEdge R530 2x E5-2630v4 H330 iDRAC8 Port Card Riser No PSU/RAM/HDD picture

Dell PowerEdge R530 2x E5-2630v4 H330 iDRAC8 Port Card Riser No PSU/RAM/HDD

$99.99