<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Fix your laptops brightness function keys operating properly in Hardy</title>
	<atom:link href="http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html</link>
	<description>Ubuntu Linux Tips,Howtos&#38;Tutorials&#124;Feisty,Gutsy,Hardy,Intrepid</description>
	<pubDate>Thu, 20 Nov 2008 17:32:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: dave</title>
		<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-118740</link>
		<dc:creator>dave</dc:creator>
		<pubDate>Fri, 20 Jun 2008 12:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-118740</guid>
		<description>hello everybody,

i have these function-keys problem, too. what i tried out is the follwing:

- edited the video_brightnessdown.sh and video_brightnessup.sh files
- filled with the values from /proc/acpi/video/NVID/LCD/brightness
- set the attributes to execute

then i tested the settings, and it stilld doesn't work.
i found out that, when i am pressing the function-keys it affects the brighness-file (checked the current-value)

but the display is at maximum brightness and the current-values says: it is at 10! evertime i push the change-buttons the current-value changes, unfortunately not the real brightness of the display.
using the function-keys in a textconsole (STRG+ALT+F1) works.

is there any solution to this? or did i forgot anything?</description>
		<content:encoded><![CDATA[<p>hello everybody,</p>
<p>i have these function-keys problem, too. what i tried out is the follwing:</p>
<p>- edited the video_brightnessdown.sh and video_brightnessup.sh files<br />
- filled with the values from /proc/acpi/video/NVID/LCD/brightness<br />
- set the attributes to execute</p>
<p>then i tested the settings, and it stilld doesn&#8217;t work.<br />
i found out that, when i am pressing the function-keys it affects the brighness-file (checked the current-value)</p>
<p>but the display is at maximum brightness and the current-values says: it is at 10! evertime i push the change-buttons the current-value changes, unfortunately not the real brightness of the display.<br />
using the function-keys in a textconsole (STRG+ALT+F1) works.</p>
<p>is there any solution to this? or did i forgot anything?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Max Magliana</title>
		<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-115961</link>
		<dc:creator>Max Magliana</dc:creator>
		<pubDate>Thu, 12 Jun 2008 10:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-115961</guid>
		<description>The script needs to be edited depending on the notebook being used. Not all monitors accept the same values for brightness. Mine are:

95 43 20 24 28 32 37 43 50 59 69 81 95

Also, most people will probably not know that they have to make the scripts executable with:

sudo chmod a+x /etc/acpi/video_bright*

Otherwise it will definitely not work.</description>
		<content:encoded><![CDATA[<p>The script needs to be edited depending on the notebook being used. Not all monitors accept the same values for brightness. Mine are:</p>
<p>95 43 20 24 28 32 37 43 50 59 69 81 95</p>
<p>Also, most people will probably not know that they have to make the scripts executable with:</p>
<p>sudo chmod a+x /etc/acpi/video_bright*</p>
<p>Otherwise it will definitely not work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Treval</title>
		<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-110911</link>
		<dc:creator>Treval</dc:creator>
		<pubDate>Sun, 01 Jun 2008 18:46:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-110911</guid>
		<description>All,

I have the same problem on my Fujitsu Amilo 2515 laptop. It looks to me as though the video_brightnessup &#38; down scripts are not being called at all.

Anyway, as a quick workaround use the following script from a terminal window:

----------------

#!/bin/sh

if [ $# = 0 ] 
then
	bval=75
else
	bval=$1
fi

echo ${bval} &#62; /proc/acpi/video/GFX0/DD02/brightness

------------

On my machine, valid values for brightness are: 13, 25, 38, 50, 63, 75, 88 , 100

If you invoke the script without a value, the brightness will be set to 75% which I find adequate for most environments.</description>
		<content:encoded><![CDATA[<p>All,</p>
<p>I have the same problem on my Fujitsu Amilo 2515 laptop. It looks to me as though the video_brightnessup &amp; down scripts are not being called at all.</p>
<p>Anyway, as a quick workaround use the following script from a terminal window:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>#!/bin/sh</p>
<p>if [ $# = 0 ]<br />
then<br />
	bval=75<br />
else<br />
	bval=$1<br />
fi</p>
<p>echo ${bval} &gt; /proc/acpi/video/GFX0/DD02/brightness</p>
<p>&#8212;&#8212;&#8212;&#8212;</p>
<p>On my machine, valid values for brightness are: 13, 25, 38, 50, 63, 75, 88 , 100</p>
<p>If you invoke the script without a value, the brightness will be set to 75% which I find adequate for most environments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Helman</title>
		<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-102938</link>
		<dc:creator>Helman</dc:creator>
		<pubDate>Sat, 17 May 2008 13:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-102938</guid>
		<description>For those of you who had tried this tip but didn't work, let me share my experience (on HP Compaq Presario V3000).

First, type this command:

&#62;&#62; cat /proc/acpi/video/VGA/LCD/brightness

which will show on the screen something like this:

levels:  100 60 20 28 36 44 52 60 68 76 84 93 100
current: 100

Then change the brightness values in video_brightnessup.sh and video_brightnessdown.sh to match the values shown after the word 'levels' above.

Also, don't forget to set the file permissions of video_brightnessup.sh and video_brightnessdown.sh so that they become executable.

Hope this works for you too!</description>
		<content:encoded><![CDATA[<p>For those of you who had tried this tip but didn&#8217;t work, let me share my experience (on HP Compaq Presario V3000).</p>
<p>First, type this command:</p>
<p>&gt;&gt; cat /proc/acpi/video/VGA/LCD/brightness</p>
<p>which will show on the screen something like this:</p>
<p>levels:  100 60 20 28 36 44 52 60 68 76 84 93 100<br />
current: 100</p>
<p>Then change the brightness values in video_brightnessup.sh and video_brightnessdown.sh to match the values shown after the word &#8216;levels&#8217; above.</p>
<p>Also, don&#8217;t forget to set the file permissions of video_brightnessup.sh and video_brightnessdown.sh so that they become executable.</p>
<p>Hope this works for you too!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-98484</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 10 May 2008 21:42:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-98484</guid>
		<description>@Greg 

Is it possible to share with us or you can submit as article to ubuntugeek

Thanks</description>
		<content:encoded><![CDATA[<p>@Greg </p>
<p>Is it possible to share with us or you can submit as article to ubuntugeek</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-98470</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Sat, 10 May 2008 21:29:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-98470</guid>
		<description>I just wrote a tool in C to do this same task. DOH!</description>
		<content:encoded><![CDATA[<p>I just wrote a tool in C to do this same task. DOH!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PivuSan</title>
		<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-90648</link>
		<dc:creator>PivuSan</dc:creator>
		<pubDate>Sun, 04 May 2008 13:38:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-90648</guid>
		<description>Hello João! Tell me please. The Web-camera works for you?</description>
		<content:encoded><![CDATA[<p>Hello João! Tell me please. The Web-camera works for you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: borworn</title>
		<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-88521</link>
		<dc:creator>borworn</dc:creator>
		<pubDate>Fri, 02 May 2008 14:13:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-88521</guid>
		<description>My Fujitsu Lifebook has problem with brightness function keys and this fix also does not fix the problem. The function keys work correctly in Windows.</description>
		<content:encoded><![CDATA[<p>My Fujitsu Lifebook has problem with brightness function keys and this fix also does not fix the problem. The function keys work correctly in Windows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: João</title>
		<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-85930</link>
		<dc:creator>João</dc:creator>
		<pubDate>Tue, 29 Apr 2008 23:38:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-85930</guid>
		<description>hello, i have a SONY vaio VGN-FZ21E and to adjust the brightness i use the keys Fn + F5 (less brightness) and Fn + F6 (more brightness) but in Ubuntu Hardy Heron i can't adjust the brightness and this fix do not result in my laptop, can you help?</description>
		<content:encoded><![CDATA[<p>hello, i have a SONY vaio VGN-FZ21E and to adjust the brightness i use the keys Fn + F5 (less brightness) and Fn + F6 (more brightness) but in Ubuntu Hardy Heron i can&#8217;t adjust the brightness and this fix do not result in my laptop, can you help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Angelo</title>
		<link>http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-85706</link>
		<dc:creator>Angelo</dc:creator>
		<pubDate>Tue, 29 Apr 2008 16:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/fix-your-laptops-brightness-function-keys-operating-properly-in-hardy.html#comment-85706</guid>
		<description>Actually, I don't have any problems with my function keys on my DeLL Inspiron 1420.
All keys were functional from the moment I've installed Hardy.</description>
		<content:encoded><![CDATA[<p>Actually, I don&#8217;t have any problems with my function keys on my DeLL Inspiron 1420.<br />
All keys were functional from the moment I&#8217;ve installed Hardy.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
