Difference between revisions of "Installing Kubuntu 10.10 on a ThinkPad X201s"
(â†Created page with 'Installing Kubuntu 10.10 on a ThinkPad {{X201s}} == Before the installation == I installed Kubuntu via a X200 UltraBase 200 without a problem. == Installation == Jus...') |
|||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 21: | Line 21: | ||
|- | |- | ||
| WiFi ([[Intel_Centrino_Ultimate-N_6300|Intel Centrino Ultimate-N 6300]]) | | WiFi ([[Intel_Centrino_Ultimate-N_6300|Intel Centrino Ultimate-N 6300]]) | ||
| − | | {{ | + | | {{Cyes}} || || |
|- | |- | ||
| Modem | | Modem | ||
| Line 30: | Line 30: | ||
|- | |- | ||
| Bluetooth | | Bluetooth | ||
| − | | {{ | + | | {{Cyes}} || || Mouse is working |
|- | |- | ||
| APS | | APS | ||
| Line 39: | Line 39: | ||
|- | |- | ||
| Card-Reader | | Card-Reader | ||
| − | | {{ | + | | {{Cyes}} || || for SD and MS |
|- | |- | ||
|} | |} | ||
| + | |||
| + | == Utrabase == | ||
| + | To run kubuntu with the ultrabase it's necessary to create the following file: | ||
| + | etc/X11/Xsession.d/45custom_Xrandr-settings | ||
| + | |||
| + | and insert | ||
| + | #!/bin/sh | ||
| + | xrandr | grep 'HDMI1' | grep " connected " | ||
| + | if [ $? -eq 0 ]; then | ||
| + | xrandr --output HDMI1 --mode 1920x1200 --output LVDS1 --off | ||
| + | else | ||
| + | xrandr --output LVDS1 --mode 1440x900 --output HDMI1 --off | ||
| + | fi | ||
| + | [[Category:Kubuntu 10.10]] | ||
Latest revision as of 11:14, 12 February 2011
Installing Kubuntu 10.10 on a ThinkPad X201s
Before the installation
I installed Kubuntu via a X200 UltraBase 200 without a problem.
Installation
Just install nothing special
Hardware support
| Hardware | works | driver | notes |
|---|---|---|---|
| Video (Intel HD Graphics) | yes | ||
| Audio (Intel Corporation 5 Series/3400 Series Chipset High Definition Audio) | yes | ||
| Network (Intel Corporation 82577LM Gigabit Network Connection) | yes | ||
| WiFi (Intel Centrino Ultimate-N 6300) | yes | ||
| Modem | unknown | ||
| Fingerprint Reader | unknown | ||
| Bluetooth | yes | Mouse is working | |
| APS | unknown | ||
| UltraNav | unknown | ||
| Card-Reader | yes | for SD and MS |
Utrabase
To run kubuntu with the ultrabase it's necessary to create the following file:
etc/X11/Xsession.d/45custom_Xrandr-settings
and insert
#!/bin/sh xrandr | grep 'HDMI1' | grep " connected " if [ $? -eq 0 ]; then xrandr --output HDMI1 --mode 1920x1200 --output LVDS1 --off else xrandr --output LVDS1 --mode 1440x900 --output HDMI1 --off fi