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
  •  


1U BareMetal pfsense opnsense Router Firewall DNS Server 6x 10GB Ethernet Ports picture

1U BareMetal pfsense opnsense Router Firewall DNS Server 6x 10GB Ethernet Ports

$149.00



1U Supermicro Server 10 Bay 2x Intel Xeon 3.3Ghz 8C 128GB RAM 240GB SSD 2x 10GBE picture

1U Supermicro Server 10 Bay 2x Intel Xeon 3.3Ghz 8C 128GB RAM 240GB SSD 2x 10GBE

$259.00



HP ProLiant MicroServer Gen8 Server Xeon E3-1220L 8GB RAM No HDD's picture

HP ProLiant MicroServer Gen8 Server Xeon E3-1220L 8GB RAM No HDD's

$229.99



HP HPE Microserver Gen 7 8 9 iLO 2/3/4/5Advanced License Lifetime Key| FAST SHIP picture

HP HPE Microserver Gen 7 8 9 iLO 2/3/4/5Advanced License Lifetime Key| FAST SHIP

$10.00



HPE ProLiant MicroServer Gen10 picture

HPE ProLiant MicroServer Gen10

$420.00



HPE ProLiant MicroServer Gen10 16GB 4TB PID: 878488-S01 picture

HPE ProLiant MicroServer Gen10 16GB 4TB PID: 878488-S01

$425.00



HPE ProLiant MicroServer Gen10 Plus v2 Ultra Micro Tower Server - 1 x Intel Xeon picture

HPE ProLiant MicroServer Gen10 Plus v2 Ultra Micro Tower Server - 1 x Intel Xeon

$822.88



HP ProLiant MicroServer HSTNS-5151 picture

HP ProLiant MicroServer HSTNS-5151

$59.99



2U 12 Bay SAS3 SuperMicro Server 6028U-TR4T+ W/ X10DRU-i+ Barebone 12 Caddy RAIL picture

2U 12 Bay SAS3 SuperMicro Server 6028U-TR4T+ W/ X10DRU-i+ Barebone 12 Caddy RAIL

$299.00



Supermicro CSE-847 Server 2*INTEL XEON E5-2690 V2 96GB 36-Bay 3.5

Supermicro CSE-847 Server 2*INTEL XEON E5-2690 V2 96GB 36-Bay 3.5" 4U SEE NOTES

$200.99