How to check for SLIC 2.1 from Linux

Discussion in 'Windows 7' started by cingularv551, Oct 25, 2010.

  1. cingularv551

    cingularv551 MDL Junior Member

    Oct 11, 2009
    84
    3
    0
    I've got a recent hewlett packard computer that currently has ubuntu linux installed on it. I want to change the operating system over to microsoft windows 7. How can i check for the presence of a slic 2.1 table prior to the conversion?
     
  2. subpsyke

    subpsyke MDL Junior Member

    Aug 14, 2009
    75
    12
    0
    #2 subpsyke, Oct 25, 2010
    Last edited by a moderator: Apr 20, 2017
    In a terminal, enter the following command:
    Code:
    dmesg | grep SLIC
    Paste the resulting output here.
     
  3. Daz

    Daz MDL Developer / Admin
    Staff Member

    Jul 31, 2009
    9,534
    67,253
    300
    #3 Daz, Oct 25, 2010
    Last edited by a moderator: Apr 20, 2017
    Theres also another way to go into more depth.
    Code:
    sudo apt-get install iasl
    sudo cat /sys/firmware/acpi/tables/SLIC > slic.dat
    iasl -d slic.dat
    gedit slic.dsl
    And another way is:
    Code:
    cd /sys/firmware/acpi/tables/
    dir
    Of course if it can't find the table then you don't have a SLIC.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. cingularv551

    cingularv551 MDL Junior Member

    Oct 11, 2009
    84
    3
    0
    thanks guys.

    turns out there was not a SLIC file in the /sys/firmware/acpi/tables/ directory. so i started the machine from a dos boot floppy and ran "hpbi103 write slp on". after reboot, i had a SLIC file in the /sys/firmware/acpi/tables/ directory.