The Asus UX31A (Zenbook Prime) is working fine with Opensuse 13.1., but some points have to be optimised manually:
[ul]
[li]for installation see: http://forums.opensuse.org/english/get-technical-help-here/install-boot-login/492057-asus-ux31a-opensuse-13-1-rc2.html [/li][li]Powermanagment: you should install laptop-mode-tools [/li][li] laptop-mode-tools have one disadvantage, USB devices like a pointer or mouse sleep when used in battery. This can be circumvented by modifying “/etc/laptop-mode/conf.d/usb-autosuspend.conf” (dolphin as root, kwrite for modifying the conf file). Here, AUTOSUSPEND_USBTYPE_BLACKLIST="" has to be changed to AUTOSUSPEND_USBTYPE_BLACKLIST=“usbhid usb-storage” [/li][li] intel and realtek audio is always on 100%. You can change this with following script (use kwrite as root):[/li][LIST]
[li]make file with following text in /etc/init.d/:[/li][LIST]
[li]#! /bin/bash[/li]### BEGIN INIT INFO
Provides: soundsave
Required-Start:
Required-Stop:
Default-Start: 5
Default-Stop:
Description: sound powermanagement
END INIT INFO
echo 10 > /sys/module/snd_hda_intel/parameters/power_save
[/ul]
[li]I named this file soundsave [/li][li]Now you have to use the terminal as root and go to /etc/init.d/ and type in following commands:[/li][ul]
[li]chmod +x soundsave [/li][li]insserv soundsave [/li][/ul]
[li]Now, go to /sbin/ and type in following commands:[/li][ul]
[li]ln -s /etc/init.d/soundsave rcsoundsave [/li][/ul]
[li]Start the script with:[/li][ul]
[li]rcsoundsave start [/li][/ul]
[li]You can also stop the script with “rcsoundsave stop”. You can also activate/inactivate the script also with the runlevel editor in Yast [/li][/LIST]
[/LIST]
Michael