vmlinuz


Results 1 to 13 of 13

Thread: vmlinuz

  1. #1
    Join Date
    Mar 2006
    Posts
    17

    vmlinuz

    what does this stand for?

  2. #2
    Join Date
    Jun 2004
    Location
    Newcastle upon Tyne
    Posts
    2,978
    The kernel
    Linux user started Jun 2004 - No. 361921
    Using a Linux live CD to clone XP
    To install Linux and keep Windows MBR untouched
    Adding extra Linux & Doing it in a lazy way
    A Grub menu booting 100+ systems & A "Howto" to install and boot 145 systems
    Just cloning tips Just booting tips A collection of booting tips

    Judge asked Linux "You are being charged murdering Windoze by stabbing its heart with a weapon, what was it?" Replied Linux "A Live CD"

  3. #3
    Join Date
    Mar 2006
    Posts
    17

    vmlinuz=kernel,, v=?,m=?,etc

    saikee answered my ? -- vmlinuz stands for the kernel;

    ok, but more specifically,

    v -- ? , m -- ?,

    obviously linu -- linux

    finally, z -- ? !!!

    like, rc.d,

    I've read rc means 'run command', but I'm not sure what the 'd' stands for -- my quess is 'daemon' (2nd choice is 'directory')

    thanx fyodor120

  4. #4
    Join Date
    Jul 2003
    Location
    Spokane, Washington
    Posts
    580
    d is for directory.
    linux is the kernel. When it's stored on the hardrive compressed (zipped) it's linuz. The vm has something to do with a virtual machine in the kernel.
    This is all just naming convention. You could rename your kernel file to 'windows.com' and if you update you boot loader to find the new name of the kernel it will still work just the same.

    I could rename 'bash' as 'command.com'.

  5. #5
    Join Date
    Jun 2004
    Location
    Newcastle upon Tyne
    Posts
    2,978
    Not all distros use vmlinuz. Ututu uses "kernel", Damn Small Linux's kernel is called "Linux24" and Gentoo also deviates with its own name.
    Linux user started Jun 2004 - No. 361921
    Using a Linux live CD to clone XP
    To install Linux and keep Windows MBR untouched
    Adding extra Linux & Doing it in a lazy way
    A Grub menu booting 100+ systems & A "Howto" to install and boot 145 systems
    Just cloning tips Just booting tips A collection of booting tips

    Judge asked Linux "You are being charged murdering Windoze by stabbing its heart with a weapon, what was it?" Replied Linux "A Live CD"

  6. #6
    Join Date
    Aug 2005
    Location
    Chester, England
    Posts
    102
    I always thought, probably incorrectly, that it was
    v (virtual) m (machine) linu (linux) z (compressed)

  7. #7
    Join Date
    Oct 2002
    Location
    Republic of Texas
    Posts
    5,898
    wheelnut is correct, I believe...
    Need help in realtime? Visit us at #linuxnewbie on irc.libera.chat

    Few of us will do as much for our fellow man as he has done.
    --Andrew Morton on RMS

  8. #8
    Join Date
    Apr 2001
    Location
    SF Bay Area, CA
    Posts
    14,936
    And I call mine bzImage (which stands for "big zImage", where zImage is "compressed image"; the z is like gzip / libz).

    The name does not matter one bit.

  9. #9
    Join Date
    Mar 2006
    Posts
    17

    thanx everyone

    it helps me understand the philosophies and everything else better if I know what all the acronyms stand for.

    there will be more.

    just to let you all know that I'm working on my own --
    I'm reading these books ::

    Linux Complete ; Linux Made Easy ; From Bash to Z Shell ;

    How Linux Works ; Wicked Cool Shell Scripts ; and

    Linux Cookbook - 2nd Ed.

    just not enough time between fixing hot tubs, and analyzing and timing the bond market.

    again thanx

  10. #10
    Join Date
    Oct 2002
    Location
    Republic of Texas
    Posts
    5,898
    Quote Originally Posted by bwkaz
    And I call mine bzImage (which stands for "big zImage", where zImage is "compressed image"; the z is like gzip / libz).
    I thought the "b" in bzImage came from "bzip2"....
    Need help in realtime? Visit us at #linuxnewbie on irc.libera.chat

    Few of us will do as much for our fellow man as he has done.
    --Andrew Morton on RMS

  11. #11
    Join Date
    Aug 2005
    Location
    Chester, England
    Posts
    102
    je_fro is correct, bzImage is the kernel image compressed using bzip2.

  12. #12
    Join Date
    Apr 2001
    Location
    SF Bay Area, CA
    Posts
    14,936
    No, it isn't bzip2-compressed:

    Code:
    $ bzcat /boot/bzImage-2.6.16.1 >file
    bzcat: /boot/bzImage-2.6.16.1 is not a bzip2 file.
    Even removing the first bunch of non-compressed data did not result in a bzip2 file:

    Code:
    $ cp /boot/bzImage-2.6.16.1 bzImage
    $ hexedit bzImage     # (Here I found out that the uncompressed data appeared to start at offset 0x4E90 -- before this, it was mostly binary zeros and readable string tables)
    $ tail -c $((0x12F8E5-0x4E90)) bzImage >bzImage2
    $ bzcat bzImage2 >file
    bzcat: bzImage2 is not a bzip2 file.
    And a couple of threads from LKML from way back in 1999:

    http://www.ussg.iu.edu/hypermail/lin...03.3/1185.html
    http://www.ussg.iu.edu/hypermail/lin...04.0/0779.html


  13. #13
    Join Date
    Mar 2006
    Posts
    17

    Cool interesting

    like 'napalm in the morning' (Apocolypse Now)

    i love the smell of this --

    it DOES smell like victory !!

    good links to those '99 e-mails !!

    thanxx

Posting Permissions

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