LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 01-21-2009, 10:38 AM   #1
djXternal
LQ Newbie
 
Registered: Jan 2009
Posts: 9

Rep: Reputation: 0
Support for the MacBook


So far the only distro that has successfully installed and ran on my MacBook has been Slackware, so I will be re-installing later today. My question is, I am not a complete beginner with linux I can use the shell without much issue; but I do still need to use the Desktop at times.

I have heard that there is zero support for Broadcom based wifi cards, so I will be purchasing a usb wifi adapter for that. I was doing some research and it seems a few people were able to get the Apple Trackpad working in linux, the only functionality I really want from it is the ability to tap-to-click and the right click functionality. Are there any drivers or packages to enable this support?

Also, another issue I have been having with every distro I have installed is the reboot function does not ever get the system to actually reboot, I believe this has something to do with me using rEFIt as my boot manager. Is there any fix for this?
 
Old 01-21-2009, 03:47 PM   #2
mostlyharmless
Senior Member
 
Registered: Jan 2008
Distribution: Arch/Manjaro, might try Slackware again
Posts: 1,851
Blog Entries: 14

Rep: Reputation: 284Reputation: 284Reputation: 284
Quote:
My question is, I am not a complete beginner with linux I can use the shell without much issue; but I do still need to use the Desktop at times.
"startx" doesn't give you kde?

Sorry I don't know anything about the rest of your problems; hopefully someone else will pick it up...
 
Old 01-21-2009, 04:17 PM   #3
djXternal
LQ Newbie
 
Registered: Jan 2009
Posts: 9

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mostlyharmless View Post
"startx" doesn't give you kde?

Sorry I don't know anything about the rest of your problems; hopefully someone else will pick it up...
I have no problem getting KDE up and running, I just need to get some hardware support going in KDE for the trackpad
 
Old 01-21-2009, 04:39 PM   #4
mostlyharmless
Senior Member
 
Registered: Jan 2008
Distribution: Arch/Manjaro, might try Slackware again
Posts: 1,851
Blog Entries: 14

Rep: Reputation: 284Reputation: 284Reputation: 284
Oh, clearly I misunderstood the question. Good luck anyway!
 
Old 01-22-2009, 02:22 PM   #5
1H8Registering
LQ Newbie
 
Registered: Jan 2009
Location: midwest usa
Distribution: slackware/ubuntu/redflag
Posts: 5

Rep: Reputation: 0
slack on macbook

Hey there, I am actually running Slackware on my Macbook. I struggled with the touchpad, it was really jumpy and unusable. Now I have it working pretty well. I am using the synaptics touchpad driver for X.

In /etc/X11/xorg.conf, I have:

# This loads the font modules
Load "type1"
Load "freetype"
#Load "speedo"
Load "synaptics"

Then in the InputDevice section:


Section "InputDevice"

# Identifier and driver

Identifier "Mouse1"
Driver "synaptics"

# On platforms where PnP mouse detection is supported the following
# protocol setting can be used when using a newer PnP mouse:
Option "SHMConfig" "on"
Option "Protocol" "auto-dev"
Option "AccelFactor" "5e-06"
Option "BottomEdge" "310"
Option "FingerHigh" "30"
Option "FingerLow" "20"
Option "HorizScrollDelta" "0"
Option "LeftEdge" "100"
Option "MaxDoubleTapTime" "180"
Option "MaxSpeed" "0.88"
Option "MaxTapMove" "220"
Option "MaxTapTime" "0"
Option "MinSpeed" "0.5"
Option "RightEdge" "1120"
Option "SendCoreEvents" "true"
Option "TapButton2" "0"
Option "TapButton3" "0"
Option "TopEdge" "50"
Option "VertScrollDelta" "0"
Option "VertTwoFingerScroll" "false"
Option "RTCornerButton" "0"
Option "RBCornerButton" "0"
Option "ZAxisMapping" "4 5"

And also:
# The mouse device. The device is normally set to /dev/mouse,
# which is usually a symbolic link to the real device.

# Option "Device" "/dev/mouse"
Option "Device" "/dev/psaux"

That gives me pretty usable setup. If you like, my whole xorg.conf is available at http://marmot.dudeabides.net/slackmac.xorg.conf.

I believe that I installed synclient from a slack pack I found via google. I also installed a madwifi slack pack, and I am able to use the built-in wireless that way.

Hope this helps,
1H8Reg
 
Old 01-22-2009, 02:26 PM   #6
1H8Registering
LQ Newbie
 
Registered: Jan 2009
Location: midwest usa
Distribution: slackware/ubuntu/redflag
Posts: 5

Rep: Reputation: 0
more again slack mac

Oh yeah, you can do tap-click if you want, but you won't like it. You may be able to get it to behave by tweaking synclient enough. However I found that it was almost impossible to keep accidental input from happening, so I don't use tap-click.

In order to middle- and right-click, I use xmodmap.

foo:~$ more .xmodmap
keycode 108 = Pointer_EnableKeys
keycode 95 = Pointer_Button2
keycode 96 = Pointer_Button3

This allows me to use F11 as middle- and F12 as right-click. Same as I used on my clamshell iBook

Good luck!
 
Old 01-22-2009, 02:27 PM   #7
djXternal
LQ Newbie
 
Registered: Jan 2009
Posts: 9

Original Poster
Rep: Reputation: 0
Thanks for the help as soon as I get the partition problem I'm having sorted out I will try this, which internal wireless card does your macBook have the Airport, or the Airport Extreme. I was told the Extreme has a Broadcom based card and therefore wouldn't work with linux

Quote:
Originally Posted by 1H8Registering View Post
Hey there, I am actually running Slackware on my Macbook. I struggled with the touchpad, it was really jumpy and unusable. Now I have it working pretty well. I am using the synaptics touchpad driver for X.

In /etc/X11/xorg.conf, I have:

# This loads the font modules
Load "type1"
Load "freetype"
#Load "speedo"
Load "synaptics"

Then in the InputDevice section:


Section "InputDevice"

# Identifier and driver

Identifier "Mouse1"
Driver "synaptics"

# On platforms where PnP mouse detection is supported the following
# protocol setting can be used when using a newer PnP mouse:
Option "SHMConfig" "on"
Option "Protocol" "auto-dev"
Option "AccelFactor" "5e-06"
Option "BottomEdge" "310"
Option "FingerHigh" "30"
Option "FingerLow" "20"
Option "HorizScrollDelta" "0"
Option "LeftEdge" "100"
Option "MaxDoubleTapTime" "180"
Option "MaxSpeed" "0.88"
Option "MaxTapMove" "220"
Option "MaxTapTime" "0"
Option "MinSpeed" "0.5"
Option "RightEdge" "1120"
Option "SendCoreEvents" "true"
Option "TapButton2" "0"
Option "TapButton3" "0"
Option "TopEdge" "50"
Option "VertScrollDelta" "0"
Option "VertTwoFingerScroll" "false"
Option "RTCornerButton" "0"
Option "RBCornerButton" "0"
Option "ZAxisMapping" "4 5"

And also:
# The mouse device. The device is normally set to /dev/mouse,
# which is usually a symbolic link to the real device.

# Option "Device" "/dev/mouse"
Option "Device" "/dev/psaux"

That gives me pretty usable setup. If you like, my whole xorg.conf is available at http://marmot.dudeabides.net/slackmac.xorg.conf.

I believe that I installed synclient from a slack pack I found via google. I also installed a madwifi slack pack, and I am able to use the built-in wireless that way.

Hope this helps,
1H8Reg
 
Old 01-22-2009, 02:28 PM   #8
C-Sniper
Member
 
Registered: Dec 2006
Distribution: Slackware
Posts: 507

Rep: Reputation: 33
Quote:
Originally Posted by djXternal View Post
I have heard that there is zero support for Broadcom based wifi cards
You have heard wrong then. I have a BCM4306 running perfectly without any problems.

A lot of the Broadcom problems have been resolved as of Slackware 12.2 and the new kernel.

Check this article on how to get it all working.

http://www.linuxwireless.org/en/users/Drivers/b43

Most Broadcom chips have full support now.
 
Old 01-22-2009, 02:33 PM   #9
djXternal
LQ Newbie
 
Registered: Jan 2009
Posts: 9

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by C-Sniper View Post
You have heard wrong then. I have a BCM4306 running perfectly without any problems.

A lot of the Broadcom problems have been resolved as of Slackware 12.2 and the new kernel.

Check this article on how to get it all working.

http://www.linuxwireless.org/en/users/Drivers/b43

Most Broadcom chips have full support now.
That is excellent to hear, I will be trying to get things going tonight after potentially wiping the drive clean
 
Old 01-22-2009, 02:42 PM   #10
1H8Registering
LQ Newbie
 
Registered: Jan 2009
Location: midwest usa
Distribution: slackware/ubuntu/redflag
Posts: 5

Rep: Reputation: 0
Hmm madwifi may not be what you need:

foo:~$ /sbin/lspci
02:00.0 Network controller: Atheros Communications Inc. AR5418 802.11abgn Wireless PCI Express Adapter (rev 01)

Me have atheros, me use madwifi. Maybe you have atheros, maybe you use madwifi?
 
Old 01-22-2009, 06:17 PM   #11
jong357
Senior Member
 
Registered: May 2003
Location: Columbus, OH
Distribution: DIYSlackware
Posts: 1,914

Rep: Reputation: 52
Here is an old thread I hijacked when I had my MBP 2,2.

http://www.linuxquestions.org/questi...-a-mac-496688/

Most of it might not apply anymore but pommed and some of the extra tweaks might.

Last edited by jong357; 01-22-2009 at 06:19 PM.
 
  


Reply

Tags
macbook, slackware



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Thinkpad VS Macbook colinstu General 7 09-22-2007 09:46 PM
Linux on a macbook/macbook pro... any experiences/problems, or is it even necessary? enigma_0Z Linux - Laptop and Netbook 13 09-14-2007 10:29 PM
Slackware on a macbook Smokey Slackware 4 09-10-2007 11:43 AM
macbook sound garyozzy Linux - General 0 02-24-2007 04:07 PM
Macbook Pro... nenyo Linux - General 5 07-09-2006 07:32 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 07:24 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration