Macmini-linux-config: Difference between revisions

From Bashlinux
Jump to navigationJump to search
Content deleted Content added
No edit summary
Manpaz (talk | contribs)
 
Line 1: Line 1:
#REDIRECT [[Linux configurations for the Mac Mini]]
__NOTOC__
= Linux configuration on the Macmini =

== How to setup the Graphic driver ==

'''Xorg'''

The default driver installed by CentOS is `Intel`, the kickstart scripts change intel to `i810`, this will avoid a "Virtual Big Screen" displayed by Intel driver

'''Grub'''

Some screens doesn't work at installation time, so it could be useful to add the resolution parameter as kernel parameter on grub as:
<pre><nowiki>
kernel vmlinuz vga=792
</nowiki></pre>

It will provides a 1024x768 framebuffer.

== How to setup the Sound card ==

The sound works fine in the audio output but no the internal audio.

== How to control fan speed ==
Apple SMC controls fan speed based on temperature sensors. You can use, applesmc-utils provided on bashlinux repositories.

'''CentOS'''
Build the module in a fresh kernel.

'''Debian'''
# Load the proper modules
<pre><nowiki>
modprobe msr
modprobe applesmc
modprobe coretemp
</nowiki></pre>

# Add the needed modules to `/etc/modules`
<pre><nowiki>
msr
applesmc
coretmp
</nowiki></pre>

# Install the needed packages
<pre><nowiki>
apt-get install lm-sensors
</nowiki></pre>

# Install scripts from

Latest revision as of 06:48, 18 June 2015