Difference between revisions of "Installing Kubuntu 10.10 on a ThinkPad X201s"

From ThinkWiki
Jump to: navigation, search
(Update Cardreader, Bloothooth & WiFi)
 
(One intermediate revision by the same user not shown)
Line 43: Line 43:
 
|}
 
|}
  
 +
== 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]]
 
[[Category:Kubuntu 10.10]]

Latest revision as of 12: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