Can't figure out HAL and ACPID on T61p :( [semi-solved?]

hey,
i've had Arch on my Thinkpad T61p for a few days now , and I love it! Two problems though: I can't seem to get HAL or ACPID to work. I've gone through all the pages on the Arch Wiki, tried to get help from this and this page. I can't get anything to work. ACPI works of course. Every time I try to start HAL or ACPID i get something like this:
bash-3.2# /etc/rc.d/hal start
:: Starting Hardware Abstraction Layer [FAIL]
bash-3.2# /etc/rc.d/acpid start
:: Starting acpid [FAIL]
Here are the Daemons and Modules sections of my rc.conf:
DAEMONS=(syslog-ng network netfs crond net-profiles acpi wifi-radar laptop-mode hal)
MODULES=(e1000 iwl4965 snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc thinkpad-acpi snd-pcm snd-timer snd snd-hda-intel soundcore)
I remember something during boot about it failing to load ACPID, but I can't find that when I do dmesg. By the way, it doesn't seem that thinkpad_acpi is installed...
bash-3.2# ls -l /lib/modules/$(uname -r)/kernel/drivers/acpi
total 312
-rw-r--r-- 1 root root 9492 Mar 30 04:55 ac.ko
-rw-r--r-- 1 root root 34774 Mar 30 04:55 asus_acpi.ko
-rw-r--r-- 1 root root 22164 Mar 30 04:55 battery.ko
-rw-r--r-- 1 root root 10444 Mar 30 04:55 bay.ko
-rw-r--r-- 1 root root 14269 Mar 30 04:55 button.ko
-rw-r--r-- 1 root root 8012 Mar 30 04:55 container.ko
-rw-r--r-- 1 root root 17697 Mar 30 04:55 dock.ko
-rw-r--r-- 1 root root 8583 Mar 30 04:55 fan.ko
-rw-r--r-- 1 root root 54714 Mar 30 04:55 processor.ko
-rw-r--r-- 1 root root 23493 Mar 30 04:55 sbs.ko
-rw-r--r-- 1 root root 10158 Mar 30 04:55 sbshc.ko
-rw-r--r-- 1 root root 26703 Mar 30 04:55 thermal.ko
-rw-r--r-- 1 root root 13369 Mar 30 04:55 toshiba_acpi.ko
-rw-r--r-- 1 root root 32196 Mar 30 04:55 video.ko
i've gone through all the pages I can find on this, I can't figure out how to fix these problems! Any advice would be greatly appreciated.
Last edited by sa (2008-05-29 17:36:06)

sa wrote:thanks!! HAL seems to be working at least, but I still can't figure out how to get my computer to hibernate when I close the lid.
Read this wiki page if you want to use pm-hibernate and pm-suspend -> http://wiki.archlinux.org/index.php/Pm-utils

Similar Messages

  • It compiles but it errors and I can't figure out why and this is my final!

    Hey there,
    I am taking a class in Java and its finals time and I have this program due and i am just running into road blocks. I really need some help! It compiles and what not but when you are running the program and you tell it to enter the value of the type of work that was done, it hangs then if you push enter, you get this;
    ===========================
    CIS2110 Project 4
    Banach Information Technology Solutions
    Weekly Reports
    By Alicia Schuster
    May 7, 2008
    =============================
    Input The rate for iHours:50
    Input The rate for dHours:80
    Input The rate for aHours:100
    Please enter the value of the day1
    Input the value for cust:222
    Input the value for type:1
    java.lang.NumberFormatException: For input string: ""
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:489)
    at java.lang.Integer.parseInt(Integer.java:518)
    at Pro4.inJob(Pro4Driver.java:172)
    at Pro4.procJob(Pro4Driver.java:145)
    at Pro4.procday(Pro4Driver.java:100)
    at Pro4.appMain(Pro4Driver.java:61)
    at Pro4Driver.main(Pro4Driver.java:25)
    Here is my code below, what do i need to change? I am about to pull my hair out. SOMEONE PLEASE HELP!
    //Title: Project #4 part c
    //Version:
    //Copyright: Copyright (c) 2008
    //Author: Alicia
    //Company: Your Company
    //Description: Your description
    // Preprocessor directive
    //import java.io.IOException;
    import java.io.BufferedReader;
    import java.text.DecimalFormat;
    import java.io.*;
    public class Pro4Driver
              public static void main(String [] args) throws IOException
                   {     Pro4 app;
                        app = new Pro4();
                        app.appMain();
    class Pro4
         //Instance (global) data declarations
              float iHours;
              float dHours;
              float aHours;
              float totCharge;
              float totOverCharge;
              float hiCharge;
              float iRate;
              float dRate;
              float aRate;
              int day;
              int hiDay;
              int hiType;
              float dayTotCharge;
              float dayTotOverCharge;
              int cust;
              int type;
              float hours;
              float overCharge;
              float servCharge;
              String numString;
              BufferedReader stdin;
              float num;
              DecimalFormat f6 = new DecimalFormat("$#,###.##");
              DecimalFormat f5 = new DecimalFormat("#,###.##");
         public void appMain() throws IOException
              stdin= new BufferedReader(new InputStreamReader(System.in));
              wkinit();
              outhead();
              inrates();
              procday();
              while (day != 0)
              {     wkout();
              return;
         public void wkinit() throws IOException
         {      iHours = dHours = aHours = 0f;
              totCharge = totOverCharge = hiCharge = 0f;
              return;
         public void outhead() throws IOException
         {     System.out.println("\n===========================");
              System.out.println(" CIS2110 Project 4");
              System.out.println(" Banach Information Technology Solutions");
              System.out.println("Weekly Reports");
              System.out.println(" By Alicia Schuster");
              System.out.println(" May 7, 2008");
              System.out.println("=============================");     
              return;
         public void inrates()throws IOException
              System.out.print("Input The rate for iHours:");
              numString = stdin.readLine();
              iHours = Float.parseFloat(numString);
              System.out.print("Input The rate for dHours:");
              numString = stdin.readLine();
              dHours = Float.parseFloat(numString);
              System.out.print("Input The rate for aHours:");
              numString = stdin.readLine();
              aHours = Float.parseFloat(numString);
              return;
         public void procday()throws IOException
         {     dayInit();
              inDay();
              if (day != 0);
                   procJob();
                   while (cust != 0)
                   outDay();
              return;
         public void wkout() throws IOException
         {     stdin = new BufferedReader (new InputStreamReader(System.in));
              num = (float)Math.PI;
              System.out.println(" The Value of totCharge is:"+
    f6.format(totCharge));
              System.out.println("The Value of totOverCharge is:" +
    (totOverCharge));
              System.out.println("The Value hiCharge is:" + f6.format
    (hiCharge));
              System.out.println("The Value Of hiDay is:" + hiDay);
              System.out.println("The Value of hiType is:" + hiType);
              System.out.println("The Value of iHours is:"+ f6.format(iHours));
              System.out.println("The Value of dHours is:"+ f6.format
    (dHours));
              System.out.println("The value of aHours is:"+ f6.format
    (aHours));
              return;
         public void dayInit()
         {      dayTotCharge = dayTotOverCharge = 0;
              return;
         public void inDay()throws IOException
              System.out.print("Please enter the value of the day");
              numString = stdin.readLine();
              day = Integer.parseInt(numString);
         public void procJob() throws IOException
         {     inCust();
              if (cust != 0);
                   inJob();
                   updateCharges();
                   updateSums();
                   updateHi();
                   outJob();
              return;
         public void outDay()
         {     System.out.println("The value of the day is:" + day);
              System.out.println("The value of dayTotCharge is:"+
    f6.format(dayTotCharge));
              System.out.println("The Value of dayTotOverCharge is:"+
    f6.format(dayTotCharge));
              return;
         public void inCust() throws IOException
         {     System.out.print("Input the value for cust:");
              cust = Integer.parseInt(stdin.readLine());
              return;
         public void inJob()throws IOException
         {     System.out.print("Input the type of work they did:");
              numString = stdin.readLine();
              type = Integer.parseInt(stdin.readLine());
              System.out.print("Input the value for hours :");
              numString = stdin.readLine();
              hours = Float.parseFloat(numString);
              return;
         public void updateCharges()
         {     float overCharge = 0f;
              if (type == iHours)
                   iHours = iHours + hours;
                   servCharge = hours * iRate;
                   if (day > 5)
                        overCharge = (float).5 * servCharge;
                   if (hours > 40)
                        overCharge = overCharge + .5f *(hours -
    40)*iRate;
                   servCharge = servCharge + overCharge;
                   else
                        if (type == dHours)
                   dHours = dHours + hours;
                   servCharge = hours * dRate;
                   if (day > 5)
                        overCharge = .5f * servCharge;
                   if (hours > 40)
                        overCharge = overCharge + .5f *(hours -
    40) * dRate;
                   servCharge = servCharge + overCharge;
              else
                        if (type == aHours)
                   aHours = aHours + hours;
                   servCharge = hours * aRate;
                   if (day > 5)
                        overCharge = .5f * servCharge;
                   if (hours > 40)
                        overCharge = overCharge + .5f * (hours -
    40) * aRate;
                   servCharge = servCharge + overCharge;
              else
                   System.out.print("service-type-input-code-error-message");
                   return;
         public void updateSums()
         {     dayTotCharge = dayTotCharge + servCharge;
              dayTotOverCharge = dayTotOverCharge + overCharge;
              totCharge = totCharge + servCharge;
              totOverCharge = totOverCharge + overCharge;
              return;
         public void updateHi()
              if (servCharge > hiCharge)
                   hiCharge = servCharge;
                   hiDay = day;
                   hiType = type;
              return;
         public void outJob()
         {     System.out.println("The value of the cust is:"+ f5.format(cust));
              System.out.println("The value of the type is:"+ f5.format(type));
              System.out.println("The number of the hours is:"+ f5.format(hours));
              System.out.println("The value of the servCharge is:"+ f6.format(servCharge));
              System.out.println("The value of the overCharge is:"+ f6.format(overCharge));
              return;
    }

    java.lang.NumberFormatException:You entered something that wasn't a number - which is exactly what you said you did.
    So you need to do something about that.

  • Something was hidden in a download and now these double green underlined hyperlinks show up everywhere, and pop ups too whenever I click on ANYTHING. I can't figure out how to find it and get rid of it.

    Something was hidden in a download and now these double green underlined hyperlinks show up everywhere, and pop ups too whenever I click on ANYTHING. I can't figure out how to find it and get rid of it.

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight is inexcusable and has compromised the value of Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • I gifted a ringtone to my sister that I purchased from the iTunes store, and it is on her phone, but we can't figure out how to get it moved to her ringtones.  Can anyone help?

    I gifted a ringtone to my sister that I purchased from the iTunes store, and it is on her phone, but we can't figure out how to get it moved to her ringtones.  Can anyone help?

    Edit > Preferences.  Select the check box for Ringtones, this will add them to the listing in iTunes. 
    Not sure that really answers your question though.

  • I am having trouble setting up icloud it keeps sending me back to install instructions and I'm just getting frustrated. So far I'm not liking the new itunes I can't figure out how to  look at my duplicate music like I used to.

    I can't sign on to icloud. It says I need an icloud account. I click the help option it send me back to the same page. I reinstall it nothing.
    Download the iCloud Control Panel.
    To enable iCloud on your Windows PC, first set up iCloud on your other devices, then install the iCloud Control Panel for Windows (Windows Vista with Service Pack 2 or Windows 7 required).
    ok I can't seem to set up iCloud on any device I don't understand... Ive already installed it three times.
    Turn on iCloud.
    From the Windows Start menu, choose iCloud Control Panel.
    Enter the Apple ID you used to create your iCloud account and select the iCloud services you’d like to enable.
    For mail, contacts, and calendars, you can use iCloud.com or Outlook 2007 or later.
    there is no iCloud control panel but I click on i cloud. Then entere the Apple ID you used to create your iCloud account - WHAT!!!!? where is this I keep trying to find out how to create and iCloud account but I keep getting these stupid directions!!!
    Enable automatic downloads.
    To enable automatic downloads for your music, apps, and books, open iTunes > Edit > Preferences > Store and select Music, Apps, and Books.* (Requires iTunes 10.5 or later.)
    - This is the only step that makes sense and already did it...
    Turn on iCloud for the rest of your devices.
    To get the most out of iCloud, set it up everywhere.
    This is soooo frustrating!!!!
    Also I want to be able to look at duplicate songs on my itunes but after I downloaded the new version I can not figure out how to get that back. If the duplicate setting isn't in the new itunes I want the old version back.

    Did you ever resolve the iCloud problem.I am in the same position and its driving me mad!!! If you have a link to an solution I would appreciate it.

  • I am trying to connect my new iMac to my Buffalo router.  I forgot my router password, so I reset it and it is working.  I can't figure out how to reset my router password and lock it on my iMac.

    I am connecting my new iMac to my Buffalo router.  I forgot my router password so I pushed the reset button and my computer was able to connect.  The problem is, I can't figure out how to set my new password and lock the router.  I went to the Buffalo website and downloaded the CD, as I can't find that either.  I can't open any of it because it says it is Windows and can't open it.  I am new to Apple!

    kellyfromdanville wrote:
    I am new to Apple!
    Ah, new to routers too.
    Perhaps it's best to have a local computer support person come set you up?
    To explain everything would require writing a book here.
    But this is what you want basically.
    Router, new Wireless N, firmware updated.
    1: Two accounts, one admin, one guest Internet access. Random +30 plus character lenght passwords each preferred.
    (guest password to max password length of any iDevices)
    2: Encryption: WPA2 AES. No Ping. No remote access. No MAC filtering. Visible.
    3: Guest access on devices and computers only.  Passwords written down and stored.
    4: OpenDNS preferred but not mandatory.
    If you get OpenDNS, you can log into their website for free and set parental controls on things like inappropriate sites for children. So whatever device is used on your network can't access a large portion of those sites (nothing is perfect) by most users who are not technical oriented.
    What your doing now is running the bare bones unsecure router which can be used harmfully against you.
    Even a Apple Airport router has to be very well secured. The defautl cd and out of the box setup is not a secure solution.

  • I have a new macbook pro.  I'm seeing my wife's iphone contacts on my icloud.  I can't figure out how to get my iphone contacts synced up with my new macbook and get rid of her contacts.  Suggestions?

    I have a new macbook pro.  I'm seeing my wife's iphone contacts on my icloud.  I've done everything I know to do to make sure my apple id is correct and has my information.  I can't figure out how to remove her contacts and add my iphone contacts to the cloud or my macbook pro.  Any suggestions?  Thanks.

    You should also ask this in the MacBook Pro forum. This is the forum for the 13” white and black plastic MacBooks that were discontinued in 2010. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_pro

  • My iPod is a 2008 version. I just bought a new iMac. My iphone  and my ipad are connected to the ne w computer , but I can't figure out how to register my old device on the new computer

    I have a 2008 IPod , Just bought a new IMAC. My iphone and ipad are registered but I can't figure out how to add the old ipod.

    What have you tried?
    What happens?
    Error message?
    What does it say?
    Have you copied everything from your old computer, or your backup copy of your old computer, to your new one?

  • Can't figure out how to stop my MBP from opening programs at startup, namely word and messages

    Recenty my MBPro has started opening MS Word and Messages at startup and I can't figure out how to stop it?  I've tried selecting and de-selcting the startup option from the dock but this doesn't help.  Does anyone have any suggestions?

    System Preferences has a setting for this.
    In the Users & Groups section you will fine a "Login Items" header.  This is a list of all the programs that will open automatically when you log in.  You can select any program and click the [--] button below that window to stop the program from opening automatically.

  • Living in Japan and I'm an American who just signed up with Soft Bank the phone service here and spent a TON of money on an iPhone. I can't figure out how to connect my bank account at home to my app account so I can Skype my family. Please help!!!!

    Living in Japan and I'm an American who just signed up with Soft Bank the phone service here and spent a TON of money on an iPhone. I can't figure out how to connect my bank account at home to my app account so I can Skype my family. Please help!!!! I don't have a credit card nor do they gove debit cards to foreigners here, or at least it's really hard so I'm using my bank at home and still have a debit there. My phone number is 8 numbers plus the country code which is strange! Another thing is I was given a phone email that I was told to use for texting but I'm not sure how that works!! It's so frustrating too because no one speaks English here and I'm not very tech savvy. God bless you if you can help :)

    whichever app store you are connecting to, hyou need a credit card with an address in that country. Also, itunes gift cards must be in local currency too.
    If you are in japan, you need to use the japan app store

  • I have a Verizon IPhone 4 and i can't figure out how to get my ringtones from an app to my iTunes account, it doesn't have a tab for Ringtones! I have tried unplugging it and checking if would show up but it didn't, how do you enable the ringtone folder?

    I have a verizon IPhone and i can't figure out how to get my ringtones from the app to iTunes, my account doesn't have a ringtone section in the liRingtone Folder?brary, how do you enable the ringtone folder?

    Edit > Preferences.  Select the check box for Ringtones, this will add them to the listing in iTunes. 
    Not sure that really answers your question though.

  • I uninstalled Firefox once, reinstalled it and it ran. I had a problem so I did it again. Now it will not run and I get an error message saying that firefox is running and you can only run one at a time. I can't figure out what is running.

    Because of a problem, I uninstalled Firefox once, reinstalled it and it ran. I had a problem so I uninstalled/reinstalled it again. Now it will not run. I get an error message saying that firefox is running and you can only run one at a time. I have uninstalled multiple times and can't figure out what is running. The is only one Firefox installed and it is not open. What does this mean and how do I fix it?

    If you use ZoneAlarm Extreme Security then try to disable Virtualization.
    *http://kb.mozillazine.org/Browser_will_not_start_up#XULRunner_error_after_an_update
    See also:
    *[[/questions/880050]]

  • Am getting message from MacPro that my start up disc is full - but I can't find it and can't figure out what to do to help situation. I've been making a number of imovies, which generates junk files. help?

    I am getting message from MacPro that my start up disc is full - but I can't find this "start up disc" and can't figure out what to do to help situation. I've been making a number of imovies, which generates junk files and material that I should toss in the trash, but it is not clear to me  what items I can toss and which items I can't toss. Can you help? Using the imovie "help" support the system showed me under the menu item "go" where the "start up disc" should be - but that wasn't actually available on my menu!  Thanks for your help!

    Disk Utility 
    Get Info on the icon on Desktop
    Try to move this to the MacBook Pro forum
    Your boot drive should be 30% free to really perform properly. 10% minimum
    Backup, clone, use TimeMachine, use another drive for your projects and movies, replace and upgrade the internal drive even.

  • I can't seem to sync my contact on my ipad.  the contact list is a book type and I can't figure out how to use it

    I can't seem to sync my contact on my ipad.  the contact list is a book type and I can't figure out how to use it

    Look at Chapter 13 of the iPad iOS4.3 User Guide

  • When I try to open Firefox, a pop up says it is already running and I must close a window or restart. I can not figure out how to close the window they are asking me to.

    when I try to start Firefox, a pop up says it is already running and I must close a window or restart. I can not figure out what window they want me to close
    == This happened ==
    Every time Firefox opened
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; MDDC; .NET CLR 3.5.30729; .NET CLR 3.0.30618)

    See http://kb.mozillazine.org/Firefox_hangs and [[Firefox hangs]] (Hang at exit)
    Check in the Task Manager (XP: Ctrl+Alt+Del, Vista: Shift+Ctrl+ESC, Processes tab) if there are hanging Firefox processes.
    If you see any ''firefox.exe'' processes then click the End button to end those Firefox processes.
    You can only start Firefox in [[Safe mode]] or launch the [[Managing profiles|Profile Manager]] is all Firefox processes are ended.
    See also http://kb.mozillazine.org/Kill_application

Maybe you are looking for

  • How do I get a link to work?

    When I go to my work site and I bring up clients I normally can click on the client that I need to open their pages. But for some reason it wont let me click on it and open the new file. How do I get it to let me click on links on certain pages?

  • How to create Calculated/Restricted Key Figures in AO

    All, In our project we are consuming Bex Queries for AO Analysis. In these  we have lot of calculated/restricted key figures. In bex we can restrict 2 characterstics to one Keyfigure, So can we able to create calculated/restricted KF in AO Regards, J

  • How to determine Hardware version when Sticker does not (seemingly) show Hardware Version ???

    Hi, I currently have a Cisco RV042, I MAY be blind, but I can not see the Hardware version mentioned on the sticker at all. The router was manufactured 06/2012 and was shipped with Firmware rev: 4.1.1.01.  The Hardware version does not appear next to

  • Continuity is not working

    I Can't receive or do any phone call from my ipad

  • Re: Sattelite m30-404 graphiccard only standard windows driver

    Hi, I've got a M30-404 and i got problems with the graphic card driver (nvidia GeForceTM FX Go5200). The graphiccard works fine with the windows standard vga driver but when i install the nvidia driver the screen stay black. somtimes you see the desk