You are not logged in.

#1 2006-07-05 15:13:02

mrblister
Member
Registered: 2006-05-03
Posts: 14

Macbook issues

So I've finally gotten my Macbook and I'm sitting here trying to figure out why, for the life of me, I cannot seem to get Arch to play nicely.

It seems that there is some sort of issue with the keyboard on booting the install cd. Every keystroke registers twice.

Anyone have an idea on how to resolve such an issue?

Offline

#2 2006-09-29 16:22:07

akrito
Member
Registered: 2006-09-29
Posts: 10

Re: Macbook issues

The solution is to boot the installation kernel like so:

arch noapic acpi=force irqpoll

That fixed it for me.

Offline

#3 2006-10-03 07:41:29

akrito
Member
Registered: 2006-09-29
Posts: 10

Re: Macbook issues

BTW, I have a dual-boot OS X and Arch setup, and can verify that everything (sound, special keys, cpufreq, xorg, touchpad, wireless) works perfectly on a Macbook.  The only things I haven't tried to set up yet are X acceleration, suspend and the IR remote.

It took a lot of tweaking and a kernel recompile (for the "fn" key!), but it works.  I'll post instructions in the wiki in the next few days.

Offline

#4 2006-10-03 20:24:02

damjan
Member
Registered: 2006-05-30
Posts: 451

Re: Macbook issues

So, how much battery life do you get on the Macbook using Arch?

Say, a normal surfing via WiFi session.

I'm thinking of getting a Macbook (it's my only option for the price, with that size and features) and I'll be running Linux almost exclusivelly.

Offline

#5 2006-10-04 14:14:41

akrito
Member
Registered: 2006-09-29
Posts: 10

Re: Macbook issues

So, how much battery life do you get on the Macbook using Arch?

If I turn the backlight down some, a little over three hours.  Less than OS X, but usable.

Offline

#6 2006-10-22 18:39:42

uwolfer
Member
Registered: 2006-02-27
Posts: 46

Re: Macbook issues

Arch runs great on my macbook. The only problem is the touchpad. I can't get it running with the synaptics driver. In the log file Xorg.0.log is a message that it can't find a synaptics compatible device.

I try to do it this way:
http://gentoo-wiki.com/HARDWARE_Apple_M … pad_in_X11
There is no mousedev module on my system.
I'm running Arch with testing.

Can anybody please tell me how to get it working?

Offline

#7 2006-10-29 11:25:24

akrito
Member
Registered: 2006-09-29
Posts: 10

Re: Macbook issues

Here's how I got my Macbook's touchpad working:
In rc.conf, blacklist appletouch and usbhid:

MOD_BLACKLIST=(appletouch usbhid)

In rc.local, load the modules manually (specifing the load order in MODULES didn't work for me):

stat_busy "Loading appletouch drivers"
rmmod appletouch usbhid >/dev/null 2>&1
/sbin/modprobe appletouch
sleep 2
/sbin/modprobe usbhid
stat_done

In xorg.conf, set up your touch pad like:

Section "InputDevice"
       Identifier      "Synaptics Touchpad"
       Driver          "synaptics"
       Option          "Device"                "/dev/input/mice"
       Option          "Protocol"              "auto-dev"
       Option           "SendCoreEvents"    "true"
       ...

That did it for me.

Offline

#8 2006-10-29 23:23:14

uwolfer
Member
Registered: 2006-02-27
Posts: 46

Re: Macbook issues

Thanks a lot akrito! Your way works for me! smile

Offline

#9 2007-03-08 10:40:48

webloch
Member
Registered: 2007-03-08
Posts: 5

Re: Macbook issues

Hey guys, any idea why I can't use my onboard keyboard once the CD has booted to a setup prompt and what I can do about it ?

Offline

#10 2007-03-08 11:33:30

fk
Member
From: Germany
Registered: 2006-04-29
Posts: 524

Re: Macbook issues

which version do you use?


Have you tried to turn it off and on again?

Offline

#11 2007-03-08 14:22:44

webloch
Member
Registered: 2007-03-08
Posts: 5

Re: Macbook issues

Well I've tried the 0.7.1 and 0.7.2 releases, I assumed these were the most common and would be the ones used.

Offline

#12 2007-03-08 15:13:43

tom5760
Member
From: Philadelphia, PA, USA
Registered: 2006-02-05
Posts: 283
Website

Re: Macbook issues

You should try the 0.8 install, found here -> ftp://ftp.archlinux.org/other/0.8/i686

Offline

#13 2007-03-09 01:53:29

fatius
Member
Registered: 2006-03-17
Posts: 4

Re: Macbook issues

webloch wrote:

Hey guys, any idea why I can't use my onboard keyboard once the CD has booted to a setup prompt and what I can do about it ?

I had this too. At the "boot: " prompt type this:

"arch irqpoll noapic acpi=force"

That should do it.

Offline

#14 2007-03-10 05:00:33

Xilon
Member
Registered: 2007-01-01
Posts: 243

Re: Macbook issues

There shouldn't really be many problems with this since kernel26-ARCH now comes with the mactel patch set, and even without it (2.6.19) my Macbook was working fairly well (I was amazed).

The battery life is actually quite lower, I'm not sure why since I use the conservative/powersave governors and turn my second core off when an the battery, the LCD gets dimmed, but that's about as far as I got in terms of optimizing. I get ~2:30 hours from that, while on OSX I got 3-4 hours with the same usage.

I have got everything working but suspend (which is a real bummer)

Offline

#15 2007-03-12 02:32:56

tom5760
Member
From: Philadelphia, PA, USA
Registered: 2006-02-05
Posts: 283
Website

Re: Macbook issues

I actually just got a MacBook recently.  Can anyone else comment on what their battery life is in linux?

Offline

#16 2007-03-12 09:45:00

webloch
Member
Registered: 2007-03-08
Posts: 5

Re: Macbook issues

Thanks for your comment fatius, but the problem is that the keyboard is non-functional BEFORE I get to type anything in, and thus, I cannot enter anything at the boot prompt!

Offline

#17 2007-03-12 09:59:15

iphitus
Forum Fellow
From: Melbourne, Australia
Registered: 2004-10-09
Posts: 4,927

Re: Macbook issues

Have a look at laptop-mode-tools, it can make some quite perceptible changes in battery life.

Also try running 'iwconfig wlanX power on" where wlanX is your wireless card, to enable power management (this is not supported on all wireless drivers)

James

Offline

#18 2007-03-31 10:00:49

mildred
Member
From: france
Registered: 2006-12-23
Posts: 43
Website

Re: Macbook issues

Hi,

I have two problems with the keyboard:
- first, the keyboard is locked in the cdrom prompt / lilo prompt. No choice but let it timeout and get the default boot options. This is a bug in the firmware (See http://refit.sourceforge.net/doc/c4s3_keyboard.html)
- then, each time I type something whan I boot the ArchLinux install CD, it appears twice. One solution, reboot.

Actually, I managed to boot using knoppix and manually install ArchLinux. I made a document to explain that (unfortunately in french). Maybe you can puck up some commands from it: http://wiki.archlinux.fr/howto:installation:chroot

edit: for the firmware keyboard problem, I found a workaround. I pluged in an USB keyboard durint the prompt, and then the integrated keyboard as the new keyboard both respond.

Now I have others problems, with the ramdisk that can't run init. I think there is some devices problem here.

Last edited by mildred (2007-03-31 10:41:01)

Offline

#19 2007-07-06 02:35:16

cry0x
Member
Registered: 2007-04-11
Posts: 91

Re: Macbook issues

tom5760 wrote:

I actually just got a MacBook recently.  Can anyone else comment on what their battery life is in linux?

Three and a half hours of realistic usage... meaning backlight at about half brightness, music playing at a reasonable volume, and wireless on.
The longest I've gotten was four hours and 15 minutes, which was with wireless off, no music, reading an ebook.

Under OSX I got very similar times, 3-4 hours, so I'm extremely satisfied with my battery life under Linux. 1.83 Core2Duo model.


Who is this doin' this synthetic type of alpha beta psychedelic funkin'?

Offline

#20 2007-07-09 07:05:04

Xilon
Member
Registered: 2007-01-01
Posts: 243

Re: Macbook issues

iphitus wrote:

Have a look at laptop-mode-tools, it can make some quite perceptible changes in battery life.

Also try running 'iwconfig wlanX power on" where wlanX is your wireless card, to enable power management (this is not supported on all wireless drivers)

James

I'm using laptop-mode now, and my battery life has gone to about 3 hours (hard to tell, since acpid is reporting it wrong). Still not as good as OS X.

Unfortunately the network card of the Macbook 2.0ghz (first gen) doesn't support that feature sad

Offline

#21 2008-09-17 01:37:53

ricardoduarte
Member
Registered: 2008-09-03
Posts: 7

Re: Macbook issues

My macbook it's working fine i can get around 3h15m of the macbook if i dont use amarok, and i just browse the internet, with the governors on powersave. what's bugging me it's that i can't seem to use the macbook-backlight package it' keeps giving me wrong video card, did anyone manage to use it? and alsa with ubuntu i got it working with quite a good quality but now i can't find the surround mixer on the alsamixer and the sound quality it's quite low.
regards

Offline

Board footer

Powered by FluxBB