Hardware details:
hxxp://en.wikipedia.org/wiki/Samsung_NC10
Working Hardware:
1, VGA
- VGA Output
2, Sound
- Build-in Speakers
- Headphones Output
- Mic Output
3,LAN
4,Wireless
- Monitor/Injection
5, Bluetooth
6, WebCam
7, Card Reader
Fn Keys:
- [Fn] + Esc --> Suspend
- [Fn] + F10 --> Lock Touchpad
- [Fn] + F11 --> NumLock
- [Fn] + PgUp --> Home
- [Fn] + PgDn --> End
Not Working:
2, Rest of the Fn keys
Btw. You guys did great job with BT4, finally as you can see almost every piece of hardware is working properly. Even suspend and hibernate is working as it should. I'll try find solution for the rest Fn keys and build-in mic. Again, Many thanks BT4 team.
Small quide to fix audio and brightness Fn keys. Actualy I was not able to remap [Fn]+F5,[Fn]+UP and [Fn]+Down for Brightess so instead I'm using combination of Ctrl+F5,Ctrl+Up and Ctrl+Down.
Follow these Steps:
1, Install additional aplications:
2,Create config file for xbindkeys:Code:apt-get install xbindkeys xbacklight
3, Modify .xbindkeysrcCode:xbindkeys --defaults > /etc/.xbindkeysrc
Code:nano /etc/.xbindkeysrc
4, Create two small ruby scripts for controling audio dB level and brightnessCode:#BrightnessUp
"xbacklight -inc 10"
m:0x4 + c:111
Control + Up
#BrighthessDown
"xbacklight -dec 10"
m:0x4 + c:116
Control + Down
#VolumeUP
"amixer -c 0 sset Master 1dB+"
m:0x0 + c:123
XF86AudioRaiseVolume
#VolumeDown
"amixer -c 0 sset Master 1dB-"
m:0x0 + c:122
XF86AudioLowerVolume
#VolumeOff
"audiofn.rb"
m:0x0 + c:121
XF86AudioMute
#BrightessOff
"screenfn.rb"
m:0x4 + c:71
Control + F5
Code:nano /usr/bin/audiofn.rb
Code:#! /usr/bin/ruby
dB_LEVEL = `amixer -c 0 | grep -m1 "Mono:" | cut -d"[" -f2 | cut -d"%" -f1`
if(dB_LEVEL.to_i > 0):`amixer -c 0 sset Master 0%`
else `amixer -c 0 sset Master 85%` end
Code:nano /usr/bin/screenfn.rb
Code:
#! /usr/bin/ruby
backligh_stat = `xbacklight -get`
if (backligh_stat.to_i > 0):`xbacklight -set 0%`
else `xbacklight -set 90%` end
5, Start xbinkeys on startupCode:chmod 755 /usr/bin/audiofn.rb
chmod 755 /usr/bin/screenfn.rb
Code:nano $HOME/.kde3/Autostart/start.sh
NOTE: If anyone know how to get [Fn]+F5,[Fn]+UP and [Fn]+Down keys working let me knowCode:#! /bin/sh
#Start Programs on kde start
if ["$(pidof xbindkeys)" = ""];then
xbindkeys -f /etc/.xbindkeysrc
fi

