servus,
Installation von debian:
der original debian installer erkennt leider nicht die ganze hardware, aber:
auf dieser seite gibt es immer _aktuelle_ debian netinstaller womit ihr euer system ohne probleme installieren könnt:
http://kmuto.jp/debian/d-i/ (runterladen, brennen, einlegen und freuen

)
sondertasten:
die sondertasten oben bekommt ihr mit hotkeys ans laufen
|
Quellcode
|
1
2
3
4
5
|
apt-get install hotkeys
cd /usr/share/hotkeys/
wget http://xps-chat.de/linux/xps1530.def
exit (als root auslogen)
hotkeys -t xps1530
|
grafikkarte:
der aktuelle nvidia treiber (185.19) unterstützt die geforce M 8600 GT , es funktioniert auch der powermizer
suspend2ram:
(der nvidia treiber muss installiert sein!)
funktioniert leider nicht mit Fn+F1
|
Quellcode
|
1
|
echo -n 3 > /proc/acpi/sleep
|
erlaubt s2r
Webcam:
(! ab kernel 2.6..26 ist der treiber im kernel, das selbstbauen ist also nicht mehr nötig !)
|
Quellcode
|
1
2
3
4
5
|
svn checkout svn://svn.berlios.de/linux-uvc/linux-uvc/trunk
cd trunk
make
make install
modprobe uvcvideo
|
getestet mit xawtv
Temperatur Sensoren:
GPU:
|
Quellcode
|
1
|
apt-get install nvclock
|
|
Quellcode
|
1
|
nvclock -T
|
HDD:
|
Quellcode
|
1
|
apt-get install hddtemp
|
|
Quellcode
|
1
|
hddtemp /dev/sda
|
CPU:
|
Quellcode
|
1
2
|
apt-get install lm-sensors
modprobe coretemp
|
|
Quellcode
|
1
|
sensors
|
wlan: (PRO/Wireless 4965) WPA2
ich gehe davon aus das ihr den treiber schon im kernel habt, benötigen noch die firmaware:
|
Quellcode
|
1
2
3
4
5
6
7
|
wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-4965-ucode-4.44.1.18.tgz
tar xvf iwlwifi-4965-ucode-4.44.1.18.tgz
cp iwlwifi-4965-ucode-4.44.1.18/iwlwifi-4965-1.ucode /usr/lib/hotplug/firmware/
rmmod iwl4965
modprobe iwl4965
|
(wurde alles erkannt? -> dmesg | tail )
weiter gehts mit WPA2:
|
Quellcode
|
1
|
apt-get install wpasupplicant
|
/etc/network/interface bearbeiten:
|
Quellcode
|
1
2
3
4
5
6
7
8
|
auto wlan0
iface wlan0 inet static
wpa-ssid ChaosLAN
wpa-driver wext
address 192.168.178.11
netmask 255.255.255.0
gateway 192.168.178.1
wpa-passphrase der-WPA2-KEY
|
nun neustarten, oder mit
|
Quellcode
|
1
|
ifup wlan0
|
starten
nun
|
Quellcode
|
1
|
wpa_cli
|
ausführen, was sagt
|
Quellcode
|
1
|
status
|
?
i8k (lüftersteuerung):
leider lässt sich nur der lüfterstatus (an/aus) und umdrehung abfragen
|
Quellcode
|
1
2
|
apt-get install i8kutils
modprobe i8k force=1
|
Fingerprint:
thinkfinger-tools und libpam-thinkfinger installieren,
treiber testen: (als (root)
|
Quellcode
|
1
|
tf-tool --acquire && tf-tool --verify
|
/etc/pam.d/common-auth editieren :
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
|
#
# /etc/pam.d/common-auth - authentication settings common to all services
#
# This file is included from other service-specific PAM config files,
# and should contain a list of the authentication modules that define
# the central authentication scheme for use on the system
# (e.g., /etc/shadow, LDAP, Kerberos, etc.). The default is to use the
# traditional Unix authentication mechanisms.
#
auth sufficient pam_thinkfinger.so
auth required pam_unix.so nullok_secure try_first_pass
|
user hinzufügen:
|
Quellcode
|
1
|
tf-tool --add-user LoginName
|
|
Quellcode
|
1
|
modprobe uinput
|
uinput in /etc/modules hinzufügen.
fertig, nun könnt ihr bei su/sudo/gdm/... den fingerprint verwenden
touchpad:
ab bios A08 muss folgendes in die /boot/grub/menu.lst eingetragen werden:
|
Quellcode
|
1
|
# defoptions=acpi=force i8042.nomux=1
|
wenn euch das tochpad zu langsam ist, kann das in der /etc/X11/xorg.conf geändert werden.
sucht nach den zeilen
|
Quellcode
|
1
2
|
Section "InputDevice"
Identifier "Synaptics Touchpad"
|
und ändert die section in:
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "MinSpeed" "0.8"
Option "MaxSpeed" "1.0"
Option "BottomEdge" "650"
Option "UpDownScrolling" "0"
Option "CircScrollTrigger" "2"
Option "SHMConfig" "on"
Option "LeftEdge" "120"
Option "FingerLow" "14"
Option "HorizScrollDelta" "20"
Option "MaxTapMove" "110"
Option "FingerHigh" "15"
Option "VertScrollDelta" "20"
Option "CircularScrolling" "1"
Option "TopEdge" "120"
Option "RightEdge" "830"
Option "AccelFactor" "0.015"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
EndSection
|
nun reboot (wegen dem boot eintrag)