{{{

* mouse config *

# Mouse button emulation:
dev/mac_hid/mouse_button_emulation = 1
dev/mac_hid/mouse_button2_keycode = 68
dev/mac_hid/mouse_button3_keycode = 87

dasselbe als einzeiler:
  
printf "# Mouse button emulation:\ndev/mac_hid/mouse_button_emulation = 1\ndev/mac_hid/\ 
mouse_button2_keycode = 68\ndev/mac_hid/mouse_button3_keycode = 87 >> /etc/sysctl.conf

cat /etc/sysctl.conf

* airport config *

nano /etc/network/interfaces

# The loopback interface
auto lo
iface lo inet loopback
 
# network cards
 
iface eth0 inet dhcp
 
iface eth1 inet dhcp
	pre-up modprobe airport
	up sleep 3; /etc/init.d/ntpdate start   # aktiviert die netz zeit abgleichung
	down /etc/init.d/ntpdate stop   
	post-down rmmod airport
	post-down rmmod orinoco
	post-down rmmod hermes
	wireless_essid myHome   # der zugewiesene stationsname ev default
	wireless_key x   # anstelle des x den 10 stelligen wep key eingeben oder ganz weglassen
	wireless_mode Managed
	wireless_ap any
	wireless_nick ibook

* dist upgrade *

apt-get dist-upgrade

* special hw *

apt-get install pmud pbbuttonsd

showkey

trackpad notap

* audio support *

nano /etc/modutils/sound

alias char-major-14 soundcore
alias sound-slot-0 dmasound_pmac
alias sound-slot-1 dmasound_pmac
alias sound-service-0-0 i2c-keywest #dmasound_pmac
alias sound-service-0-3 dmasound_pmac
alias sound-service-1-0 dmasound_pmac
alias /dev/dsp dmasound_pmac
alias char-major-14-3 dmasound_pmac
alias char-major-14-0 i2c-keywest
alias /dev/mixer i2c-keywest

update-modules

adduser root audio
adduser user audio   # user: eingerichteter benutername

apt-get install esound esound-client

esd -d /dev/dsp

* gui install *

apt-get install x-window-system

apt-get install gdm gnome gnome-fifth-toe

apt-get install kdm kde

}}}