Tweeter buttonFacebook buttonLinkedin button
  • 28 Feb 2010 /  GNU/Linux, Unix


    coreboot (formerly known as LinuxBIOS) is a Free Software project aimed at replacing the proprietary BIOS (firmware) you can find in most of today’s computers. It performs just a little bit of hardware initialization and then executes a so-called payload.

    With this separation of hardware initialization and later boot logic, coreboot is capable of scaling from specialized applications run directly from firmware, operating systems in Flash, and custom bootloaders to implementations of firmware standards like PCBIOS and EFI without having to carry features not necessary in the target application, reducing the amount of code and flash space required.

    Source:
    http://www.coreboot.org

  • 11 Feb 2010 /  GNU/Linux, Unix

    How to see the process tree with ps command?

    There’s some options:

    ps -ejH
    ps axjf

    Or also we can use other command:

    pstree

    More info:
    http://www.linfo.org/pstree.html
    http://linux.die.net/man/1/ps

  • 10 Feb 2010 /  GNU/Linux, Unix

    If you want to know the speed and type of your computer RAM module, it’s a method who helps you.

    So lets begin, we need to use biosdecode command, and this is the correct option:

    dmidecode --type 17

    More info about this:

    http://www.cyberciti.biz/faq/check-ram-speed-linux

    http://linux.die.net/man/8/biosdecode