Linux - Laptop and NetbookHaving a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I'm on a Compaq Armada E500 laptop with SuSE 8.2 (just upgraded from 8.1) and there has always been a red X through the battery monitor. It says that "your computer seems to have a partial ACPI installation." I click help and it goes into a somewhat more detailed explaination. I says that apm is required. Well I go to the YaST2 add/remove software and search for apm the APM daemon is already selected. Installed version: 3.0.2-286. How can I get my battery to read properly?
hmmmm, it doesn't look like they are running. how do I get them to run and how do I tell them to run automatically so I don't have to start them every time from now on?
i think you are going to want to add a line to your boot parameter, with lilo it would be like append = " apm=off acpi=off" with wichever one you want on. and the other one off cause if you dont do that part(explicitly turn the other off) you can have problems. first though id check your bios and see what it says for apm and acpi cause you might need to enable it there.
OK I tried the modprobe command and it said it couldn't locate the modual. (same thing for both apm and apmd) I found a suse doc on their web page that said "To start 'apmd' manually use: 'rcapmd start'." I tried that and it said "Starting apmd not supported by kernel". How do I make my kernal support this? I also found a suse doc that said "A kernel with APM support is necessary (since SuSE Linux version 7.1 APM support is included in all kernels)." Since I'm using suse 8.2 I'm not sure why this isn't working. I'll keep trying.
Have you tried "apm=on" in your boot loader kernel parameters, like Brain Drop suggested? If that doesn't make /proc/apm appear then your kernel must not support it.
yep, I tried that, it didnt work. I tried to start it manually and it said it was not supported in the kernal. I need to find out how to add that in and recompile the kernal. My friend who uses gentoo told me this set of instructions:
su
make menuconfig
(select the correct ACPI or APM things)
cp /usr/src/linux/arch/1386/boot/bzImage /boot
how do I do that in suse? When i tried to do make menuconfig it said no rule to make target 'menuconfig'. stop.
Any ideas?
btw, Zac, my name is Zac as well, you're the first person I've know to spell it that way.
for this i think you are best doing a search on google.com/linux or even right here om lno for how to compile a kernel since there is so much info on it, beig that it is one of the early things you should learn. then if you have questions about it ask, i would just tell you now but i dont have the time this morning to give a good explanation. your freimd missed a couple of steps though.
There are some instructions for compiling the kernel in /usr/src/linux/README. Usually it's something like this:
Code:
su
cd /usr/src/linux
make xconfig
# edit Makefile (you can add a version number, maybe"-apm")
make dep
make bzImage
make modules
make modules_install
# copy your kernel and set up boot loader
One of those howtos I mentioned has some info about kernel configuration.
when my friend put in make menuconfig as root, it just went right to the config program, but I get this error:
make: *** No rule to make target `menuconfig'. Stop.
I've tried to find documentation in the folder you told me and the folder it mentions in some of those how-tos, but /usr/src/linux doesn't exist. The only folder in the /usr/src/ dir is "packages". Maybe its something different in SuSE?
OK i just looked at some more stuff and realized i didn't have kernel-source installed. So I just did that, but the make xconfig is still giving me the same error. I'll keep trying.
su
cd /usr/src/linux
make xconfig
# edit Makefile (you can add a version number, maybe"-apm")
make dep
make bzImage
make modules
make modules_install
# copy your kernel and set up boot loader
.
ok at the risk of falling into the stupid questions department, how come sometimes(usually) i see the steps like you have them here and sometimes instaed of the copy kernel part there is instead a make install step somewhere after the make bzImage step? whats the diff?
It is also possible to do
"make install" if you have lilo installed to suit the kernel makefiles,
but you may want to check your particular lilo setup first.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.