Wednesday 17 June 2009

Wednesday updated counts

Updated counts:


Monday 15 June 2009

Updated counts

Updated counts:

Friday 12 June 2009

Brightness control on Linux Sony Vaio Z-series working both on nvidia and intel configurations

One of the Sony Vaio Z-series and Linux has found a way to have the brightness control working both on the nvidia and intel graphics configurations. The solution is reported in the mailing list:
https://lists.launchpad.net/sony-vaio-z-series/msg00315.html

Excerpted below:
> 1) Make the file /etc/acpi/events/sony-brightness-up with the contents:
>
> event=sony/hotkey SNC 00000001 40000011
> action=/usr/local/bin/vaioz-brightness up
>
> 2) Make the file /etc/acpi/events/sony-brightness-down with the contents:
>
> event=sony/hotkey SNC 00000001 40000010
> action=/usr/local/bin/vaioz-brightness down
>
> 3) Make the script /usr/local/bin/vaioz-brightness
>
> #!/bin/bash
>
> lspci | grep "00:02.0" >/dev/null
> INTELQ=$?
> if [ $INTELQ == 0 ]
> then
> LEVEL=$(cat /sys/class/backlight/acpi_video0/brightness)
> else
> LEVEL=$(cat /sys/class/backlight/sony/brightness)
> fi
>
> if [ $1 == 'up' ]; then let LEVEL+=1; fi
> if [ $1 == 'down' ]; then let LEVEL-=1; fi
> if (( $LEVEL>7 )); then LEVEL=7; fi
> if (( $LEVEL<0 )); then LEVEL=0; fi
>
> let LEVEL=16+$LEVEL*12
>
> if [ $INTELQ == 0 ];
> then
> #intel
> INTEL_LEVEL=$(( $LEVEL*255/100 ))
> BRL=$(printf "%02X" $INTEL_LEVEL)
> setpci -s 00:02.0 F4.B=$BRL
> else
> #nvidia
> smartdimmer -s $LEVEL
> fi
>
> 4) restart acpi system
>
> sudo /etc/init.d/acpid restart
>
> The event codes were obtained by running acpi_listen



Updated counts:


Thursday 11 June 2009

Updated membership counts

This are the updated membership counts for the different Linux Ultra-thin laptop Launchpad groups.
The Linux Sony Vaio Z-series group is still leading the pack, followed by the Linux Dell Latitude E4200/E4300 group, and the Linux Lenovo ThinkPad X301 group.

The latest group that was created is the
Linux Acer Timeline 3810T: this group has already achieved a lot in terms of tuning and tweaking the Linux installation (http://ubuntuforums.org/showpost.php?p=7314698&postcount=1) so that everything works at full throttle. Given the price tag for the Acer Timeline 3810T laptop, it is expected to be a big sell in the ultra-thin laptops category.

Monday 1 June 2009

Sony Vaio Z-series and Linux nvidia xorg.conf

To have the right screen resolution when using the nvidia card on the Linux Sony Vaio Z-series:
If your resolution is 1600x900, then on the nvidia side I have added the DPI to force it to the intel value:


Section "Device"

Identifier "Configured Video Device"

Driver "nvidia"

Option "UseEDIDDpi" "FALSE"

Option "AddARGBGLXVisuals" "true"

Option "DPI" "96 x 96"

EndSection



For brightness control, one can add shortcuts for low, medium, high brightness through nvidia driver commands.