<?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/">
	<channel>
		<title><![CDATA[Linux-Noob Forums - Xorg Problems]]></title>
		<link>https://www.linux-noob.com/forums/</link>
		<description><![CDATA[Linux-Noob Forums - https://www.linux-noob.com/forums]]></description>
		<pubDate>Wed, 13 May 2026 12:08:37 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[how to allow only steam to not cause remote controll popup.]]></title>
			<link>https://www.linux-noob.com/forums/thread-4119.html</link>
			<pubDate>Tue, 17 Mar 2026 22:40:07 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=5242">moquber</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-4119.html</guid>
			<description><![CDATA[in steam i have it configured so that using a controller combination i can change the volume. however, whenever i do so for the first time and after not using that for a while, a popup asks for confirmation<br />
the popup window title is "remote control"<br />
the popup content is<br />
"an application is as asking for special privileges<br />
-remote control"<br />
while it seems there are ways to disable the popup outright system wide, i do not wish to do so because there is probably a good reason it exists. what i would like to do is to make it so that only steam gets special permission and it doesnt ask if steam does it.<br />
<br />
p.s.: i am still quite new to linux, so if i asked this in the wrong place, please kindly direct me to the correct one.<br />
i am on Garuda Dr460nized Gaming with the default kde desktop environment that shipped withit<br />
<br />
furthermore: i dont freking know if this is the right place. i have tried  garudalinux reddit, but it doesnt allow support posts. i tried to sign up to garudalinux forum that it directed me to, but the veryfication email didnt send. i tried to post  it on linux4noobs, but the it kept being banned by reddits filters. at this point please i beg you, if you know the answer to this problem, do answer, because i could not for the life of me find a better place to post this.]]></description>
			<content:encoded><![CDATA[in steam i have it configured so that using a controller combination i can change the volume. however, whenever i do so for the first time and after not using that for a while, a popup asks for confirmation<br />
the popup window title is "remote control"<br />
the popup content is<br />
"an application is as asking for special privileges<br />
-remote control"<br />
while it seems there are ways to disable the popup outright system wide, i do not wish to do so because there is probably a good reason it exists. what i would like to do is to make it so that only steam gets special permission and it doesnt ask if steam does it.<br />
<br />
p.s.: i am still quite new to linux, so if i asked this in the wrong place, please kindly direct me to the correct one.<br />
i am on Garuda Dr460nized Gaming with the default kde desktop environment that shipped withit<br />
<br />
furthermore: i dont freking know if this is the right place. i have tried  garudalinux reddit, but it doesnt allow support posts. i tried to sign up to garudalinux forum that it directed me to, but the veryfication email didnt send. i tried to post  it on linux4noobs, but the it kept being banned by reddits filters. at this point please i beg you, if you know the answer to this problem, do answer, because i could not for the life of me find a better place to post this.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How things are done, using bash to run simple command(s)?]]></title>
			<link>https://www.linux-noob.com/forums/thread-4105.html</link>
			<pubDate>Mon, 04 Sep 2023 11:03:15 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=5141">ross</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-4105.html</guid>
			<description><![CDATA[Good morning fine people of the Linux world.<br />
<br />
Please, forgive me if I have posted this in the wrong section.  Was not sure where to post.<br />
This is just query. After a bit of searching about, I found a solution to something I was looking to achieve, which was to switch my monitor off by clicking on a shortcut/icon,  so that at 3am when Im done watching whatever and Im half asleep, I dont have to reach over and switch the monitor off as one would usually do. <br />
<br />
My solution, a fairly simple one.  A bash script consisting of the following two lines.<br />
<br />
#!/bin/bash<br />
sleep 1 &amp;&amp; xset dpms force off<br />
<br />
<br />
Well my primitive understanding is that bash is a simple programming language, which seems rather overkill simply to run a terminal command from a shortcut.  So my question is just about the way in which things are done.......have I reached the typical solution for such a desired result, or are there easier, more basic methods, to run terminal commands on demand/from shortcut, than to use bash<br />
<br />
<br />
In Win, the typical solution would be a batch file, that is simply a list of commands to be ran.......and whilst my bash script is essentially the same thing, you are STILL having to elicit the use of programming language to do so.  I just cant imagine theres not a lower level way of getting such a simple job done?<br />
<br />
Hope you dont mind me asking such a dumb question.  Thank you<br />
Ross]]></description>
			<content:encoded><![CDATA[Good morning fine people of the Linux world.<br />
<br />
Please, forgive me if I have posted this in the wrong section.  Was not sure where to post.<br />
This is just query. After a bit of searching about, I found a solution to something I was looking to achieve, which was to switch my monitor off by clicking on a shortcut/icon,  so that at 3am when Im done watching whatever and Im half asleep, I dont have to reach over and switch the monitor off as one would usually do. <br />
<br />
My solution, a fairly simple one.  A bash script consisting of the following two lines.<br />
<br />
#!/bin/bash<br />
sleep 1 &amp;&amp; xset dpms force off<br />
<br />
<br />
Well my primitive understanding is that bash is a simple programming language, which seems rather overkill simply to run a terminal command from a shortcut.  So my question is just about the way in which things are done.......have I reached the typical solution for such a desired result, or are there easier, more basic methods, to run terminal commands on demand/from shortcut, than to use bash<br />
<br />
<br />
In Win, the typical solution would be a batch file, that is simply a list of commands to be ran.......and whilst my bash script is essentially the same thing, you are STILL having to elicit the use of programming language to do so.  I just cant imagine theres not a lower level way of getting such a simple job done?<br />
<br />
Hope you dont mind me asking such a dumb question.  Thank you<br />
Ross]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Wayland to be replace xorg (Maybe!)]]></title>
			<link>https://www.linux-noob.com/forums/thread-61.html</link>
			<pubDate>Thu, 10 May 2018 09:41:49 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=24">Oroshi</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-61.html</guid>
			<description><![CDATA[<br />
Hello Folks,<br />
<br />
 <br />
<br />
They may be possible to replace the Wayland from Xorg. Fedora already start using Wayland. <br />
<br />
 <br />
<br />
more information can be found on: <a href="https://wayland.freedesktop.org" target="_blank" rel="noopener" class="mycode_url">https://wayland.freedesktop.org</a><br />
<br />
 <br />
<br />
 <br />
<br />
I am currently runs Fedora 28. I find Wayland is much faster than xorg and much smoother, only downside that you may not be able to install driver such as nVidia etc.. In the future they may bring out the driver for it. I have not test any gaming with Wayland yet due to lack of time lol. When I get around with it, I can give the update. <br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Hello Folks,<br />
<br />
 <br />
<br />
They may be possible to replace the Wayland from Xorg. Fedora already start using Wayland. <br />
<br />
 <br />
<br />
more information can be found on: <a href="https://wayland.freedesktop.org" target="_blank" rel="noopener" class="mycode_url">https://wayland.freedesktop.org</a><br />
<br />
 <br />
<br />
 <br />
<br />
I am currently runs Fedora 28. I find Wayland is much faster than xorg and much smoother, only downside that you may not be able to install driver such as nVidia etc.. In the future they may bring out the driver for it. I have not test any gaming with Wayland yet due to lack of time lol. When I get around with it, I can give the update. <br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Question about different desktop environments]]></title>
			<link>https://www.linux-noob.com/forums/thread-193.html</link>
			<pubDate>Wed, 22 Feb 2012 04:14:12 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=3792">joe0121</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-193.html</guid>
			<description><![CDATA[<br />
 <br />
<br />
Will compiz work on any distro using gnome or just ubuntu?<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
 <br />
<br />
Will compiz work on any distro using gnome or just ubuntu?<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Compiz issue]]></title>
			<link>https://www.linux-noob.com/forums/thread-749.html</link>
			<pubDate>Fri, 30 Jan 2009 17:45:17 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=3048">Dungeon-Dave</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-749.html</guid>
			<description><![CDATA[<br />
Strictly speaking, not an issue with Xorg per se - more with Compiz/Fusion, and more under Fedora 10 specifically.<br />
<br />
 <br />
<br />
<a href="http://&lt;___base_url___&gt;/blog/dungeon/" target="_blank" rel="noopener" class="mycode_url">Firstly, waste some time here.</a><br />
<br />
 <br />
<br />
Now: I want the same functionality I had in Beryl now in Compiz. What are the options, and does Fed 10 actually honour those under Compiz Config Manager? It seems there's some settings it will ignore.<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Strictly speaking, not an issue with Xorg per se - more with Compiz/Fusion, and more under Fedora 10 specifically.<br />
<br />
 <br />
<br />
<a href="http://&lt;___base_url___&gt;/blog/dungeon/" target="_blank" rel="noopener" class="mycode_url">Firstly, waste some time here.</a><br />
<br />
 <br />
<br />
Now: I want the same functionality I had in Beryl now in Compiz. What are the options, and does Fed 10 actually honour those under Compiz Config Manager? It seems there's some settings it will ignore.<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[cannot startx on gentoo after emerge world]]></title>
			<link>https://www.linux-noob.com/forums/thread-836.html</link>
			<pubDate>Wed, 10 Sep 2008 22:14:52 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=2079">EzMe</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-836.html</guid>
			<description><![CDATA[<br />
After i upgraded my gentoo kernel i could not start my X Window any more :/<br />
<br />
 <br />
<br />
HOME ezme # uname -a<br />
<br />
Linux HOME 2.6.24-gentoo-r7 #1 SMP Sun May 4 21:09:58 CEST 2008 i686 Intel<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
After i upgraded my gentoo kernel i could not start my X Window any more :/<br />
<br />
 <br />
<br />
HOME ezme # uname -a<br />
<br />
Linux HOME 2.6.24-gentoo-r7 #1 SMP Sun May 4 21:09:58 CEST 2008 i686 Intel<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Multiple Graphical Logins]]></title>
			<link>https://www.linux-noob.com/forums/thread-932.html</link>
			<pubDate>Tue, 03 Jun 2008 00:00:01 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=2899">Chib</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-932.html</guid>
			<description><![CDATA[<br />
Hello Everyone!<br />
<br />
 <br />
<br />
I'm new here, got to this forum throught Google, looking for an answer.<br />
<br />
 <br />
<br />
I'm installing a linux software that need to work this way:<br />
<br />
 <br />
<br />
You logon as root, start the installation. At a certain moment, the installation stops and prompts me to make a new logon (without logout the actual user), do somethings that it asks (needs to be with another user), and finishing doing that logout the second user, get back to root console and so click OK on dialog box so it can continues the installation.<br />
<br />
 <br />
<br />
The problem is that I can't login with another user (or maybe I just don't know how).<br />
<br />
 <br />
<br />
I'm running RHEL 5 with Gnome.<br />
<br />
 <br />
<br />
Everything is ok, but don't know what to do, to do this.<br />
<br />
 <br />
<br />
Anyone can help me please?<br />
<br />
 <br />
<br />
It's a little bit urgent.  <img src="https://www.linux-noob.com/forums/images/smilies/sad.png" alt="Sad" title="Sad" class="smilie smilie_8" /><br />
<br />
 <br />
<br />
Regards!<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Hello Everyone!<br />
<br />
 <br />
<br />
I'm new here, got to this forum throught Google, looking for an answer.<br />
<br />
 <br />
<br />
I'm installing a linux software that need to work this way:<br />
<br />
 <br />
<br />
You logon as root, start the installation. At a certain moment, the installation stops and prompts me to make a new logon (without logout the actual user), do somethings that it asks (needs to be with another user), and finishing doing that logout the second user, get back to root console and so click OK on dialog box so it can continues the installation.<br />
<br />
 <br />
<br />
The problem is that I can't login with another user (or maybe I just don't know how).<br />
<br />
 <br />
<br />
I'm running RHEL 5 with Gnome.<br />
<br />
 <br />
<br />
Everything is ok, but don't know what to do, to do this.<br />
<br />
 <br />
<br />
Anyone can help me please?<br />
<br />
 <br />
<br />
It's a little bit urgent.  <img src="https://www.linux-noob.com/forums/images/smilies/sad.png" alt="Sad" title="Sad" class="smilie smilie_8" /><br />
<br />
 <br />
<br />
Regards!<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ATI Radeon 9200 to set at resolution to LCD's native 1680x1050]]></title>
			<link>https://www.linux-noob.com/forums/thread-1156.html</link>
			<pubDate>Thu, 04 Oct 2007 18:47:36 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=2528">Torn Barb</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1156.html</guid>
			<description><![CDATA[<br />
Ok,<br />
<br />
 <br />
<br />
I<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Ok,<br />
<br />
 <br />
<br />
I<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Emerge problem x11-terms/eterm]]></title>
			<link>https://www.linux-noob.com/forums/thread-1341.html</link>
			<pubDate>Thu, 07 Jun 2007 00:07:27 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=2079">EzMe</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1341.html</guid>
			<description><![CDATA[<br />
I always wanted to get Fluxbox running on my gentoo box. So today i googled around some time and found this manual: <a href="http://www.gentoo.org/doc/en/fluxbox-config.xml" target="_blank" rel="noopener" class="mycode_url">[/url]<a href="http://www.gentoo.org/doc/en/fluxbox-config.xml" target="_blank" rel="noopener" class="mycode_url"></a><a href="http://www.gentoo.org/doc/en/fluxbox-config.xml" target="_blank" rel="noopener" class="mycode_url"></a>[url=http://www.gentoo.org/doc/en/fluxbox-config.xml]http://www.gentoo.org/doc/en/fluxbox-config.xml</a><br />
<br />
 <br />
<br />
Tho when i "emerge fluxbox xlockmore x11-terms/eterm" i got some big error witch make me staire in the dark.<br />
<br />
 <br />
<br />
**SNIP**<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT menus.lo -MD -MP -MF ".deps/menus.Tpo" -c -o menus.lo menus.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/menus.Tpo" ".deps/menus.Plo"; else rm -f ".deps/menus.Tpo"; exit 1; fi<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT misc.lo -MD -MP -MF ".deps/misc.Tpo" -c -o misc.lo misc.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/misc.Tpo" ".deps/misc.Plo"; else rm -f ".deps/misc.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT misc.lo -MD -MP -MF .deps/misc.Tpo -c misc.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/misc.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT menus.lo -MD -MP -MF .deps/menus.Tpo -c menus.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/menus.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT misc.lo -MD -MP -MF .deps/misc.Tpo -c misc.c -o misc.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT options.lo -MD -MP -MF ".deps/options.Tpo" -c -o options.lo options.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/options.Tpo" ".deps/options.Plo"; else rm -f ".deps/options.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT menus.lo -MD -MP -MF .deps/menus.Tpo -c menus.c -o menus.o &gt;/dev/null 2&gt;&amp;1<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT options.lo -MD -MP -MF .deps/options.Tpo -c options.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/options.o<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT pixmap.lo -MD -MP -MF ".deps/pixmap.Tpo" -c -o pixmap.lo pixmap.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/pixmap.Tpo" ".deps/pixmap.Plo"; else rm -f ".deps/pixmap.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT pixmap.lo -MD -MP -MF .deps/pixmap.Tpo -c pixmap.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/pixmap.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT options.lo -MD -MP -MF .deps/options.Tpo -c options.c -o options.o &gt;/dev/null 2&gt;&amp;1<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT pixmap.lo -MD -MP -MF .deps/pixmap.Tpo -c pixmap.c -o pixmap.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT screen.lo -MD -MP -MF ".deps/screen.Tpo" -c -o screen.lo screen.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/screen.Tpo" ".deps/screen.Plo"; else rm -f ".deps/screen.Tpo"; exit 1; fi<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT script.lo -MD -MP -MF ".deps/script.Tpo" -c -o script.lo script.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/script.Tpo" ".deps/script.Plo"; else rm -f ".deps/script.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT screen.lo -MD -MP -MF .deps/screen.Tpo -c screen.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/screen.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT script.lo -MD -MP -MF .deps/script.Tpo -c script.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/script.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT script.lo -MD -MP -MF .deps/script.Tpo -c script.c -o script.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT scrollbar.lo -MD -MP -MF ".deps/scrollbar.Tpo" -c -o scrollbar.lo scrollbar.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/scrollbar.Tpo" ".deps/scrollbar.Plo"; else rm -f ".deps/scrollbar.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT scrollbar.lo -MD -MP -MF .deps/scrollbar.Tpo -c scrollbar.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/scrollbar.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT screen.lo -MD -MP -MF .deps/screen.Tpo -c screen.c -o screen.o &gt;/dev/null 2&gt;&amp;1<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT scrollbar.lo -MD -MP -MF .deps/scrollbar.Tpo -c scrollbar.c -o scrollbar.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT startup.lo -MD -MP -MF ".deps/startup.Tpo" -c -o startup.lo startup.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/startup.Tpo" ".deps/startup.Plo"; else rm -f ".deps/startup.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT startup.lo -MD -MP -MF .deps/startup.Tpo -c startup.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/startup.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT startup.lo -MD -MP -MF .deps/startup.Tpo -c startup.c -o startup.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT system.lo -MD -MP -MF ".deps/system.Tpo" -c -o system.lo system.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/system.Tpo" ".deps/system.Plo"; else rm -f ".deps/system.Tpo"; exit 1; fi<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT term.lo -MD -MP -MF ".deps/term.Tpo" -c -o term.lo term.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/term.Tpo" ".deps/term.Plo"; else rm -f ".deps/term.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT system.lo -MD -MP -MF .deps/system.Tpo -c system.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/system.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT term.lo -MD -MP -MF .deps/term.Tpo -c term.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/term.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT system.lo -MD -MP -MF .deps/system.Tpo -c system.c -o system.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT timer.lo -MD -MP -MF ".deps/timer.Tpo" -c -o timer.lo timer.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/timer.Tpo" ".deps/timer.Plo"; else rm -f ".deps/timer.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT timer.lo -MD -MP -MF .deps/timer.Tpo -c timer.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/timer.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT timer.lo -MD -MP -MF .deps/timer.Tpo -c timer.c -o timer.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT utmp.lo -MD -MP -MF ".deps/utmp.Tpo" -c -o utmp.lo utmp.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/utmp.Tpo" ".deps/utmp.Plo"; else rm -f ".deps/utmp.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT utmp.lo -MD -MP -MF .deps/utmp.Tpo -c utmp.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/utmp.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT utmp.lo -MD -MP -MF .deps/utmp.Tpo -c utmp.c -o utmp.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT windows.lo -MD -MP -MF ".deps/windows.Tpo" -c -o windows.lo windows.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/windows.Tpo" ".deps/windows.Plo"; else rm -f ".deps/windows.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT term.lo -MD -MP -MF .deps/term.Tpo -c term.c -o term.o &gt;/dev/null 2&gt;&amp;1<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT windows.lo -MD -MP -MF .deps/windows.Tpo -c windows.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/windows.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT windows.lo -MD -MP -MF .deps/windows.Tpo -c windows.c -o windows.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT defaultfont.lo -MD -MP -MF ".deps/defaultfont.Tpo" -c -o defaultfont.lo defaultfont.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/defaultfont.Tpo" ".deps/defaultfont.Plo"; else rm -f ".deps/defaultfont.Tpo"; exit 1; fi<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT libscream.lo -MD -MP -MF ".deps/libscream.Tpo" -c -o libscream.lo libscream.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/libscream.Tpo" ".deps/libscream.Plo"; else rm -f ".deps/libscream.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT defaultfont.lo -MD -MP -MF .deps/defaultfont.Tpo -c defaultfont.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/defaultfont.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT defaultfont.lo -MD -MP -MF .deps/defaultfont.Tpo -c defaultfont.c -o defaultfont.o &gt;/dev/null 2&gt;&amp;1<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT libscream.lo -MD -MP -MF .deps/libscream.Tpo -c libscream.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/libscream.o<br />
if i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT main.o -MD -MP -MF ".deps/main.Tpo" -c -o main.o main.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/main.Tpo" ".deps/main.Po"; else rm -f ".deps/main.Tpo"; exit 1; fi<br />
libscream.c:1488:2: warning: #warning compiling in libscream<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT libscream.lo -MD -MP -MF .deps/libscream.Tpo -c libscream.c -o libscream.o &gt;/dev/null 2&gt;&amp;1<br />
/bin/sh ../libtool --mode=link i686-pc-linux-gnu-gcc&nbsp;&nbsp;-O2 -march=pentium4 -pipe&nbsp;&nbsp;-L/usr/lib&nbsp;&nbsp;-o libEterm.la -rpath /usr/lib -release 0.9.4 actions.lo buttons.lo command.lo draw.lo e.lo events.lo font.lo grkelot.lo menus.lo misc.lo options.lo pixmap.lo screen.lo script.lo scrollbar.lo startup.lo system.lo term.lo timer.lo utmp.lo windows.lo defaultfont.lo libscream.lo&nbsp;&nbsp;-lImlib2 -ldl -lX11&nbsp;&nbsp;-lSM -lICE -lpcre&nbsp;&nbsp;&nbsp;&nbsp;-lSM -lICE -lXmu -last -lXext -lX11 -lutil -lm<br />
i686-pc-linux-gnu-gcc -shared&nbsp;&nbsp;.libs/actions.o .libs/buttons.o .libs/command.o .libs/draw.o .libs/e.o .libs/events.o .libs/font.o .libs/grkelot.o .libs/menus.o .libs/misc.o .libs/options.o .libs/pixmap.o .libs/screen.o .libs/script.o .libs/scrollbar.o .libs/startup.o .libs/system.o .libs/term.o .libs/timer.o .libs/utmp.o .libs/windows.o .libs/defaultfont.o .libs/libscream.o&nbsp;&nbsp;-L/usr/lib /usr/lib/libImlib2.so -ldl /usr/lib/libpcre.so /usr/lib/libSM.so /usr/lib/libICE.so /usr/lib/libXmu.so /usr/lib/libast.so /usr/lib/libXext.so /usr/lib/libX11.so -lutil -lm&nbsp;&nbsp;-march=pentium4 -Wl,-soname -Wl,libEterm-0.9.4.so -o .libs/libEterm-0.9.4.so<br />
(cd .libs &amp;&amp; rm -f libEterm.so &amp;&amp; ln -s libEterm-0.9.4.so libEterm.so)<br />
i686-pc-linux-gnu-ar cru .libs/libEterm.a&nbsp;&nbsp;actions.o buttons.o command.o draw.o e.o events.o font.o grkelot.o menus.o misc.o options.o pixmap.o screen.o script.o scrollbar.o startup.o system.o term.o timer.o utmp.o windows.o defaultfont.o libscream.o<br />
i686-pc-linux-gnu-ranlib .libs/libEterm.a<br />
creating libEterm.la<br />
(cd .libs &amp;&amp; rm -f libEterm.la &amp;&amp; ln -s ../libEterm.la libEterm.la)<br />
/bin/sh ../libtool --mode=link i686-pc-linux-gnu-gcc&nbsp;&nbsp;-O2 -march=pentium4 -pipe&nbsp;&nbsp;-L/usr/lib&nbsp;&nbsp;-o Eterm -rpath /usr/lib:/usr/lib/Eterm main.o libEterm.la&nbsp;&nbsp;-lImlib2 -ldl -lX11&nbsp;&nbsp;-lSM -lICE -lpcre&nbsp;&nbsp;&nbsp;&nbsp;-lSM -lICE -lXmu -last -lXext -lX11 -lutil -lm<br />
i686-pc-linux-gnu-gcc -O2 -march=pentium4 -pipe -o .libs/Eterm main.o&nbsp;&nbsp;-L/usr/lib ./.libs/libEterm.so /usr/lib/libImlib2.so /usr/lib/libfreetype.so -lz /usr/lib/libXmu.so /usr/lib/libXt.so /usr/lib/libast.so /usr/lib/libSM.so /usr/lib/libICE.so /usr/lib/libpcre.so /usr/lib/libXext.so /usr/lib/libX11.so /usr/lib/libXau.so /usr/lib/libXdmcp.so -ldl -lutil -lm -Wl,--rpath -Wl,/usr/lib:/usr/lib/Eterm<br />
./.libs/libEterm.so: undefined reference to `imlib_render_pixmaps_for_whole_image'<br />
./.libs/libEterm.so: undefined reference to `imlib_context_set_display'<br />
./.libs/libEterm.so: undefined reference to `imlib_render_pixmaps_for_whole_image_at_size'<br />
./.libs/libEterm.so: undefined reference to `imlib_context_set_colormap'<br />
./.libs/libEterm.so: undefined reference to `imlib_context_set_drawable'<br />
./.libs/libEterm.so: undefined reference to `imlib_context_set_visual'<br />
./.libs/libEterm.so: undefined reference to `imlib_free_pixmap_and_mask'<br />
collect2: ld returned 1 exit status<br />
make[2]: *** [Eterm] Error 1<br />
make[2]: Leaving directory `/var/tmp/portage/x11-terms/eterm-0.9.4/work/Eterm-0.9.4/src'<br />
make[1]: *** [all-recursive] Error 1<br />
make[1]: Leaving directory `/var/tmp/portage/x11-terms/eterm-0.9.4/work/Eterm-0.9.4'<br />
make: *** [all] Error 2<br />
<br />
!!! ERROR: x11-terms/eterm-0.9.4 failed.<br />
Call stack:<br />
 ebuild.sh, line 1615:&nbsp;&nbsp; Called dyn_compile<br />
 ebuild.sh, line 972:&nbsp;&nbsp; Called qa_call 'src_compile'<br />
 ebuild.sh, line 44:&nbsp;&nbsp; Called src_compile<br />
 eterm-0.9.4.ebuild, line 47:&nbsp;&nbsp; Called die<br />
<br />
!!! make failed<br />
!!! If you need support, post the topmost build error, and the call stack if relevant.<br />
!!! A complete build log is located at '/var/tmp/portage/x11-terms/eterm-0.9.4/temp/build.log'.</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
 <br />
<br />
Anyone that can help me out plz..?<br />
<br />
 <br />
<br />
Thanks in advance <img src="https://www.linux-noob.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
I always wanted to get Fluxbox running on my gentoo box. So today i googled around some time and found this manual: <a href="http://www.gentoo.org/doc/en/fluxbox-config.xml" target="_blank" rel="noopener" class="mycode_url">[/url]<a href="http://www.gentoo.org/doc/en/fluxbox-config.xml" target="_blank" rel="noopener" class="mycode_url"></a><a href="http://www.gentoo.org/doc/en/fluxbox-config.xml" target="_blank" rel="noopener" class="mycode_url"></a>[url=http://www.gentoo.org/doc/en/fluxbox-config.xml]http://www.gentoo.org/doc/en/fluxbox-config.xml</a><br />
<br />
 <br />
<br />
Tho when i "emerge fluxbox xlockmore x11-terms/eterm" i got some big error witch make me staire in the dark.<br />
<br />
 <br />
<br />
**SNIP**<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT menus.lo -MD -MP -MF ".deps/menus.Tpo" -c -o menus.lo menus.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/menus.Tpo" ".deps/menus.Plo"; else rm -f ".deps/menus.Tpo"; exit 1; fi<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT misc.lo -MD -MP -MF ".deps/misc.Tpo" -c -o misc.lo misc.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/misc.Tpo" ".deps/misc.Plo"; else rm -f ".deps/misc.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT misc.lo -MD -MP -MF .deps/misc.Tpo -c misc.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/misc.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT menus.lo -MD -MP -MF .deps/menus.Tpo -c menus.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/menus.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT misc.lo -MD -MP -MF .deps/misc.Tpo -c misc.c -o misc.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT options.lo -MD -MP -MF ".deps/options.Tpo" -c -o options.lo options.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/options.Tpo" ".deps/options.Plo"; else rm -f ".deps/options.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT menus.lo -MD -MP -MF .deps/menus.Tpo -c menus.c -o menus.o &gt;/dev/null 2&gt;&amp;1<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT options.lo -MD -MP -MF .deps/options.Tpo -c options.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/options.o<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT pixmap.lo -MD -MP -MF ".deps/pixmap.Tpo" -c -o pixmap.lo pixmap.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/pixmap.Tpo" ".deps/pixmap.Plo"; else rm -f ".deps/pixmap.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT pixmap.lo -MD -MP -MF .deps/pixmap.Tpo -c pixmap.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/pixmap.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT options.lo -MD -MP -MF .deps/options.Tpo -c options.c -o options.o &gt;/dev/null 2&gt;&amp;1<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT pixmap.lo -MD -MP -MF .deps/pixmap.Tpo -c pixmap.c -o pixmap.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT screen.lo -MD -MP -MF ".deps/screen.Tpo" -c -o screen.lo screen.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/screen.Tpo" ".deps/screen.Plo"; else rm -f ".deps/screen.Tpo"; exit 1; fi<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT script.lo -MD -MP -MF ".deps/script.Tpo" -c -o script.lo script.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/script.Tpo" ".deps/script.Plo"; else rm -f ".deps/script.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT screen.lo -MD -MP -MF .deps/screen.Tpo -c screen.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/screen.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT script.lo -MD -MP -MF .deps/script.Tpo -c script.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/script.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT script.lo -MD -MP -MF .deps/script.Tpo -c script.c -o script.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT scrollbar.lo -MD -MP -MF ".deps/scrollbar.Tpo" -c -o scrollbar.lo scrollbar.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/scrollbar.Tpo" ".deps/scrollbar.Plo"; else rm -f ".deps/scrollbar.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT scrollbar.lo -MD -MP -MF .deps/scrollbar.Tpo -c scrollbar.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/scrollbar.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT screen.lo -MD -MP -MF .deps/screen.Tpo -c screen.c -o screen.o &gt;/dev/null 2&gt;&amp;1<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT scrollbar.lo -MD -MP -MF .deps/scrollbar.Tpo -c scrollbar.c -o scrollbar.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT startup.lo -MD -MP -MF ".deps/startup.Tpo" -c -o startup.lo startup.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/startup.Tpo" ".deps/startup.Plo"; else rm -f ".deps/startup.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT startup.lo -MD -MP -MF .deps/startup.Tpo -c startup.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/startup.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT startup.lo -MD -MP -MF .deps/startup.Tpo -c startup.c -o startup.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT system.lo -MD -MP -MF ".deps/system.Tpo" -c -o system.lo system.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/system.Tpo" ".deps/system.Plo"; else rm -f ".deps/system.Tpo"; exit 1; fi<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT term.lo -MD -MP -MF ".deps/term.Tpo" -c -o term.lo term.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/term.Tpo" ".deps/term.Plo"; else rm -f ".deps/term.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT system.lo -MD -MP -MF .deps/system.Tpo -c system.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/system.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT term.lo -MD -MP -MF .deps/term.Tpo -c term.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/term.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT system.lo -MD -MP -MF .deps/system.Tpo -c system.c -o system.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT timer.lo -MD -MP -MF ".deps/timer.Tpo" -c -o timer.lo timer.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/timer.Tpo" ".deps/timer.Plo"; else rm -f ".deps/timer.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT timer.lo -MD -MP -MF .deps/timer.Tpo -c timer.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/timer.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT timer.lo -MD -MP -MF .deps/timer.Tpo -c timer.c -o timer.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT utmp.lo -MD -MP -MF ".deps/utmp.Tpo" -c -o utmp.lo utmp.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/utmp.Tpo" ".deps/utmp.Plo"; else rm -f ".deps/utmp.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT utmp.lo -MD -MP -MF .deps/utmp.Tpo -c utmp.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/utmp.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT utmp.lo -MD -MP -MF .deps/utmp.Tpo -c utmp.c -o utmp.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT windows.lo -MD -MP -MF ".deps/windows.Tpo" -c -o windows.lo windows.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/windows.Tpo" ".deps/windows.Plo"; else rm -f ".deps/windows.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT term.lo -MD -MP -MF .deps/term.Tpo -c term.c -o term.o &gt;/dev/null 2&gt;&amp;1<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT windows.lo -MD -MP -MF .deps/windows.Tpo -c windows.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/windows.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT windows.lo -MD -MP -MF .deps/windows.Tpo -c windows.c -o windows.o &gt;/dev/null 2&gt;&amp;1<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT defaultfont.lo -MD -MP -MF ".deps/defaultfont.Tpo" -c -o defaultfont.lo defaultfont.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/defaultfont.Tpo" ".deps/defaultfont.Plo"; else rm -f ".deps/defaultfont.Tpo"; exit 1; fi<br />
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT libscream.lo -MD -MP -MF ".deps/libscream.Tpo" -c -o libscream.lo libscream.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/libscream.Tpo" ".deps/libscream.Plo"; else rm -f ".deps/libscream.Tpo"; exit 1; fi<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT defaultfont.lo -MD -MP -MF .deps/defaultfont.Tpo -c defaultfont.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/defaultfont.o<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT defaultfont.lo -MD -MP -MF .deps/defaultfont.Tpo -c defaultfont.c -o defaultfont.o &gt;/dev/null 2&gt;&amp;1<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT libscream.lo -MD -MP -MF .deps/libscream.Tpo -c libscream.c&nbsp;&nbsp;-fPIC -DPIC -o .libs/libscream.o<br />
if i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I..&nbsp;&nbsp; -I/usr/include&nbsp;&nbsp; -O2 -march=pentium4 -pipe -MT main.o -MD -MP -MF ".deps/main.Tpo" -c -o main.o main.c; &#92;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; then mv -f ".deps/main.Tpo" ".deps/main.Po"; else rm -f ".deps/main.Tpo"; exit 1; fi<br />
libscream.c:1488:2: warning: #warning compiling in libscream<br />
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -O2 -march=pentium4 -pipe -MT libscream.lo -MD -MP -MF .deps/libscream.Tpo -c libscream.c -o libscream.o &gt;/dev/null 2&gt;&amp;1<br />
/bin/sh ../libtool --mode=link i686-pc-linux-gnu-gcc&nbsp;&nbsp;-O2 -march=pentium4 -pipe&nbsp;&nbsp;-L/usr/lib&nbsp;&nbsp;-o libEterm.la -rpath /usr/lib -release 0.9.4 actions.lo buttons.lo command.lo draw.lo e.lo events.lo font.lo grkelot.lo menus.lo misc.lo options.lo pixmap.lo screen.lo script.lo scrollbar.lo startup.lo system.lo term.lo timer.lo utmp.lo windows.lo defaultfont.lo libscream.lo&nbsp;&nbsp;-lImlib2 -ldl -lX11&nbsp;&nbsp;-lSM -lICE -lpcre&nbsp;&nbsp;&nbsp;&nbsp;-lSM -lICE -lXmu -last -lXext -lX11 -lutil -lm<br />
i686-pc-linux-gnu-gcc -shared&nbsp;&nbsp;.libs/actions.o .libs/buttons.o .libs/command.o .libs/draw.o .libs/e.o .libs/events.o .libs/font.o .libs/grkelot.o .libs/menus.o .libs/misc.o .libs/options.o .libs/pixmap.o .libs/screen.o .libs/script.o .libs/scrollbar.o .libs/startup.o .libs/system.o .libs/term.o .libs/timer.o .libs/utmp.o .libs/windows.o .libs/defaultfont.o .libs/libscream.o&nbsp;&nbsp;-L/usr/lib /usr/lib/libImlib2.so -ldl /usr/lib/libpcre.so /usr/lib/libSM.so /usr/lib/libICE.so /usr/lib/libXmu.so /usr/lib/libast.so /usr/lib/libXext.so /usr/lib/libX11.so -lutil -lm&nbsp;&nbsp;-march=pentium4 -Wl,-soname -Wl,libEterm-0.9.4.so -o .libs/libEterm-0.9.4.so<br />
(cd .libs &amp;&amp; rm -f libEterm.so &amp;&amp; ln -s libEterm-0.9.4.so libEterm.so)<br />
i686-pc-linux-gnu-ar cru .libs/libEterm.a&nbsp;&nbsp;actions.o buttons.o command.o draw.o e.o events.o font.o grkelot.o menus.o misc.o options.o pixmap.o screen.o script.o scrollbar.o startup.o system.o term.o timer.o utmp.o windows.o defaultfont.o libscream.o<br />
i686-pc-linux-gnu-ranlib .libs/libEterm.a<br />
creating libEterm.la<br />
(cd .libs &amp;&amp; rm -f libEterm.la &amp;&amp; ln -s ../libEterm.la libEterm.la)<br />
/bin/sh ../libtool --mode=link i686-pc-linux-gnu-gcc&nbsp;&nbsp;-O2 -march=pentium4 -pipe&nbsp;&nbsp;-L/usr/lib&nbsp;&nbsp;-o Eterm -rpath /usr/lib:/usr/lib/Eterm main.o libEterm.la&nbsp;&nbsp;-lImlib2 -ldl -lX11&nbsp;&nbsp;-lSM -lICE -lpcre&nbsp;&nbsp;&nbsp;&nbsp;-lSM -lICE -lXmu -last -lXext -lX11 -lutil -lm<br />
i686-pc-linux-gnu-gcc -O2 -march=pentium4 -pipe -o .libs/Eterm main.o&nbsp;&nbsp;-L/usr/lib ./.libs/libEterm.so /usr/lib/libImlib2.so /usr/lib/libfreetype.so -lz /usr/lib/libXmu.so /usr/lib/libXt.so /usr/lib/libast.so /usr/lib/libSM.so /usr/lib/libICE.so /usr/lib/libpcre.so /usr/lib/libXext.so /usr/lib/libX11.so /usr/lib/libXau.so /usr/lib/libXdmcp.so -ldl -lutil -lm -Wl,--rpath -Wl,/usr/lib:/usr/lib/Eterm<br />
./.libs/libEterm.so: undefined reference to `imlib_render_pixmaps_for_whole_image'<br />
./.libs/libEterm.so: undefined reference to `imlib_context_set_display'<br />
./.libs/libEterm.so: undefined reference to `imlib_render_pixmaps_for_whole_image_at_size'<br />
./.libs/libEterm.so: undefined reference to `imlib_context_set_colormap'<br />
./.libs/libEterm.so: undefined reference to `imlib_context_set_drawable'<br />
./.libs/libEterm.so: undefined reference to `imlib_context_set_visual'<br />
./.libs/libEterm.so: undefined reference to `imlib_free_pixmap_and_mask'<br />
collect2: ld returned 1 exit status<br />
make[2]: *** [Eterm] Error 1<br />
make[2]: Leaving directory `/var/tmp/portage/x11-terms/eterm-0.9.4/work/Eterm-0.9.4/src'<br />
make[1]: *** [all-recursive] Error 1<br />
make[1]: Leaving directory `/var/tmp/portage/x11-terms/eterm-0.9.4/work/Eterm-0.9.4'<br />
make: *** [all] Error 2<br />
<br />
!!! ERROR: x11-terms/eterm-0.9.4 failed.<br />
Call stack:<br />
 ebuild.sh, line 1615:&nbsp;&nbsp; Called dyn_compile<br />
 ebuild.sh, line 972:&nbsp;&nbsp; Called qa_call 'src_compile'<br />
 ebuild.sh, line 44:&nbsp;&nbsp; Called src_compile<br />
 eterm-0.9.4.ebuild, line 47:&nbsp;&nbsp; Called die<br />
<br />
!!! make failed<br />
!!! If you need support, post the topmost build error, and the call stack if relevant.<br />
!!! A complete build log is located at '/var/tmp/portage/x11-terms/eterm-0.9.4/temp/build.log'.</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
 <br />
<br />
Anyone that can help me out plz..?<br />
<br />
 <br />
<br />
Thanks in advance <img src="https://www.linux-noob.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Resize lagging]]></title>
			<link>https://www.linux-noob.com/forums/thread-1386.html</link>
			<pubDate>Wed, 16 May 2007 20:55:48 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1927">Forestwalker</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1386.html</guid>
			<description><![CDATA[<br />
Hello! This is my first post to the forum, which is great by the way.<br />
<br />
 <br />
<br />
I'm having a very strange problem on openSUSE...<br />
<br />
When I resize a window it lags MASSIVELY (And video lags too when you resize). But the videocard (ATI x1600xt) drivers are fine, beryl is working very smooth.<br />
<br />
It affects both Gnome and KDE and configuring the system options or beryl's didn't help.<br />
<br />
The problem was since I installed openSUSE, and there is no references to it in the forums.<br />
<br />
Can you help me out? <img src="https://www.linux-noob.com/forums/images/smilies/sad.png" alt="Sad" title="Sad" class="smilie smilie_8" /><br />
<br />
 <br />
<br />
P.S. The problem affects only resizing and everything else runs great...<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Hello! This is my first post to the forum, which is great by the way.<br />
<br />
 <br />
<br />
I'm having a very strange problem on openSUSE...<br />
<br />
When I resize a window it lags MASSIVELY (And video lags too when you resize). But the videocard (ATI x1600xt) drivers are fine, beryl is working very smooth.<br />
<br />
It affects both Gnome and KDE and configuring the system options or beryl's didn't help.<br />
<br />
The problem was since I installed openSUSE, and there is no references to it in the forums.<br />
<br />
Can you help me out? <img src="https://www.linux-noob.com/forums/images/smilies/sad.png" alt="Sad" title="Sad" class="smilie smilie_8" /><br />
<br />
 <br />
<br />
P.S. The problem affects only resizing and everything else runs great...<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Can't change resolution]]></title>
			<link>https://www.linux-noob.com/forums/thread-1416.html</link>
			<pubDate>Mon, 30 Apr 2007 04:56:12 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1964">techbeginner</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1416.html</guid>
			<description><![CDATA[For some reason oneday my computer crashed and ever since i haven't been able to change my resolution from 640 by 480. I've tried everything i can think of, but nothing has worked yet. I'm using a intel pentimum 3 with windows 98 se. i've got derect x and voodoo 3dfx. if anybody could help me it would be greatly appreciated.<br />
]]></description>
			<content:encoded><![CDATA[For some reason oneday my computer crashed and ever since i haven't been able to change my resolution from 640 by 480. I've tried everything i can think of, but nothing has worked yet. I'm using a intel pentimum 3 with windows 98 se. i've got derect x and voodoo 3dfx. if anybody could help me it would be greatly appreciated.<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[FC6 + Tecra M1 != works]]></title>
			<link>https://www.linux-noob.com/forums/thread-1581.html</link>
			<pubDate>Sat, 24 Feb 2007 14:48:04 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1779">BigDog</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1581.html</guid>
			<description><![CDATA[<br />
I'm trying to install Zod on a Toshiba Tecra M1, and everything goes fine until it boots after the installation. I get the little "X" when it starts to load, but then the screen just sits there and glows. No text, no logon, no nuthin', and it doesn't respond to anything I do.<br />
<br />
 <br />
<br />
Any ideas? I've tried everything I can think of, and have tried it three times this morning... <br />
<br />
 <br />
<br />
TIA,<br />
<br />
-- BigDog<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
I'm trying to install Zod on a Toshiba Tecra M1, and everything goes fine until it boots after the installation. I get the little "X" when it starts to load, but then the screen just sits there and glows. No text, no logon, no nuthin', and it doesn't respond to anything I do.<br />
<br />
 <br />
<br />
Any ideas? I've tried everything I can think of, and have tried it three times this morning... <br />
<br />
 <br />
<br />
TIA,<br />
<br />
-- BigDog<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KDE Showing Some Gnome Properties (Screenshot Inside)]]></title>
			<link>https://www.linux-noob.com/forums/thread-1813.html</link>
			<pubDate>Wed, 20 Sep 2006 20:05:09 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1138">SendDerek</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1813.html</guid>
			<description><![CDATA[<br />
Hello all!  It has been a while!  I usually hate to come back to the boards with a question/favor, but I've gotta get this fixed ASAP.<br />
<br />
 <br />
<br />
So, I logged into linux this morning and was confronted with this problem.  Basically, I have booted into KDE, but it is displaying a lot of properties of gnome.  The kicker is still there and well, "kickin'", but I have gnome desktop properties, gnome desktop icons, gnome file manager, and that's all I'm aware of right now.  I tried to log out and then back in again, but with same results.<br />
<br />
 <br />
<br />
I hope somebody can help!  Please!  Just let me know what I need to do for you guys as far as configuration files and what-not.  Oh, and let me know how to do it too, I'm still new at this.<br />
<br />
 <br />
<br />
Thanks in advance!<br />
<br />
 <br />
<br />
-Derek<br />
<br />
&lt;a class="ipsAttachLink ipsAttachLink_image" href="&lt;fileStore.core_Attachment&gt;/post-1325-1158775495.png" data-fileid="653"&gt;[img]&lt;fileStore.core_Attachment&gt;/post-1325-1158775495.png[/img]&lt;/a&gt;<br />
<br />
<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.linux-noob.com/forums/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=543" target="_blank" title="">Screenshot_Sized.png</a> (Size: 84.7 KB / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<br />
Hello all!  It has been a while!  I usually hate to come back to the boards with a question/favor, but I've gotta get this fixed ASAP.<br />
<br />
 <br />
<br />
So, I logged into linux this morning and was confronted with this problem.  Basically, I have booted into KDE, but it is displaying a lot of properties of gnome.  The kicker is still there and well, "kickin'", but I have gnome desktop properties, gnome desktop icons, gnome file manager, and that's all I'm aware of right now.  I tried to log out and then back in again, but with same results.<br />
<br />
 <br />
<br />
I hope somebody can help!  Please!  Just let me know what I need to do for you guys as far as configuration files and what-not.  Oh, and let me know how to do it too, I'm still new at this.<br />
<br />
 <br />
<br />
Thanks in advance!<br />
<br />
 <br />
<br />
-Derek<br />
<br />
&lt;a class="ipsAttachLink ipsAttachLink_image" href="&lt;fileStore.core_Attachment&gt;/post-1325-1158775495.png" data-fileid="653"&gt;[img]&lt;fileStore.core_Attachment&gt;/post-1325-1158775495.png[/img]&lt;/a&gt;<br />
<br />
<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.linux-noob.com/forums/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=543" target="_blank" title="">Screenshot_Sized.png</a> (Size: 84.7 KB / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[congigure problem]]></title>
			<link>https://www.linux-noob.com/forums/thread-1872.html</link>
			<pubDate>Tue, 01 Aug 2006 19:32:46 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1360">codeman</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1872.html</guid>
			<description><![CDATA[configure: error: Can't find X includes. Please check your installation and add the correct paths! this is what i got when i tried to configure a program is there a simple solution to set the "path"?<br />
]]></description>
			<content:encoded><![CDATA[configure: error: Can't find X includes. Please check your installation and add the correct paths! this is what i got when i tried to configure a program is there a simple solution to set the "path"?<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[X config issues, mouse & keyboard do not respond on startup.]]></title>
			<link>https://www.linux-noob.com/forums/thread-1935.html</link>
			<pubDate>Mon, 12 Jun 2006 08:54:08 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1306">ladeh_k</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1935.html</guid>
			<description><![CDATA[<br />
Today I rebuilt my slackbox. I have tried 'X -configure', then starting X with the config it generates, when I do this I get a mess on the screen and the mouse and keyboard do not work.<br />
<br />
 <br />
<br />
I have my old XF86Config and also the new generated xorg.conf but I'm not sure how to compare them or what to change, as I am still relatively noob.<br />
<br />
 <br />
<br />
They are as follows:<a href="http://&lt;___base_url___&gt;/applications/core/interface/file/attachment.php?id=613" target="_blank" rel="noopener" class="mycode_url">XF86Config.txt</a><a href="http://&lt;___base_url___&gt;/applications/core/interface/file/attachment.php?id=614" target="_blank" rel="noopener" class="mycode_url">xorg.conf.new.txt</a><br />
<br />
 <br />
<br />
Any insight into what the problem is would be much appreciated, I'm keen to get this baby up and running!<br />
<br />
 <br />
<br />
Thanking you... In anticipation...<br />
<br />
<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.linux-noob.com/forums/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=514" target="_blank" title="">XF86Config.txt</a> (Size: 6.96 KB / Downloads: 38)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.linux-noob.com/forums/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=515" target="_blank" title="">xorg.conf.new.txt</a> (Size: 2.81 KB / Downloads: 48)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<br />
Today I rebuilt my slackbox. I have tried 'X -configure', then starting X with the config it generates, when I do this I get a mess on the screen and the mouse and keyboard do not work.<br />
<br />
 <br />
<br />
I have my old XF86Config and also the new generated xorg.conf but I'm not sure how to compare them or what to change, as I am still relatively noob.<br />
<br />
 <br />
<br />
They are as follows:<a href="http://&lt;___base_url___&gt;/applications/core/interface/file/attachment.php?id=613" target="_blank" rel="noopener" class="mycode_url">XF86Config.txt</a><a href="http://&lt;___base_url___&gt;/applications/core/interface/file/attachment.php?id=614" target="_blank" rel="noopener" class="mycode_url">xorg.conf.new.txt</a><br />
<br />
 <br />
<br />
Any insight into what the problem is would be much appreciated, I'm keen to get this baby up and running!<br />
<br />
 <br />
<br />
Thanking you... In anticipation...<br />
<br />
<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.linux-noob.com/forums/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=514" target="_blank" title="">XF86Config.txt</a> (Size: 6.96 KB / Downloads: 38)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.linux-noob.com/forums/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=515" target="_blank" title="">xorg.conf.new.txt</a> (Size: 2.81 KB / Downloads: 48)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
	</channel>
</rss>