<?xml version='1.0' encoding='utf-8' ?>
<!--  If you are running a bot please visit this policy page outlining rules you must respect. http://www.livejournal.com/bots/  -->
<rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/'>
<channel>
  <title>Fedora Linux</title>
  <link>http://community.livejournal.com/fedora_linux/</link>
  <description>Fedora Linux - LiveJournal.com</description>
  <lastBuildDate>Sun, 06 Apr 2008 21:17:43 GMT</lastBuildDate>
  <generator>LiveJournal / LiveJournal.com</generator>
  <lj:journal>fedora_linux</lj:journal>
  <lj:journaltype>community</lj:journaltype>
  <image>
    <url>http://p-userpic.livejournal.com/11365187/2217516</url>
    <title>Fedora Linux</title>
    <link>http://community.livejournal.com/fedora_linux/</link>
    <width>65</width>
    <height>52</height>
  </image>

<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/77807.html</guid>
  <pubDate>Sun, 06 Apr 2008 21:17:43 GMT</pubDate>
  <title>9 common mistakes in shell programming</title>
  <link>http://community.livejournal.com/fedora_linux/77807.html</link>
  <description> 	 	 	  &lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm;&quot;&gt;I think, that all of you, who started to work with Unixes not so long ago face problems when using shell or trying to program in shell. Many of Unix novices dislike writing shell scripts, because it takes too much time from them, scripts does not work as expected, because shell &apos;is so dumb and it&apos;s impossible to write complex things in it&apos;.  &lt;/p&gt;  &lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm;&quot;&gt;I wish to prove, that this is wrong and it&apos;s possible to learn shell programming very quick – in 7-10 days.  &lt;/p&gt; &lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm;&quot;&gt;Thus I&apos;m starting an online training for all Unix novices.&lt;/p&gt;  &lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm;&quot;&gt;I&apos;ve collected some questions which novices give about unix shell and categorized them. So let&apos;s go on and see, what usually makes difficulties for most of unix shell starters:&lt;/p&gt; &lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;a name=&quot;cutid1&quot;&gt;&lt;/a&gt;&lt;div class=&quot;ljcut&quot; text=&quot;Read more...&quot;&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm;&quot;&gt;&lt;br /&gt; &lt;/p&gt; &lt;ol&gt;&lt;li&gt;&lt;p style=&quot;margin-bottom: 0mm;&quot;&gt;&lt;span lang=&quot;en-US&quot;&gt;Misunderstanding 	now shell does command line expansion, how command arguments are 	processed and substituted in correct places.  In fact shell does not 	do &lt;/span&gt;&lt;span lang=&quot;en-US&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;b&gt;any 	magic&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;en-US&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;&quot;&gt; 	when it executes command. It just replaces all things to be 	substituted (variables, command substitution, file patterns) and 	then executes resulting command.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; 	&lt;/li&gt;&lt;li&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; 	Misunderstanding  about how variable expansion works – why does it 	eat spaces some time, some time does not work at all and etc.  	&lt;/p&gt; 	&lt;/li&gt;&lt;li&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; 	Novices practically do not use backtricks to do command 	substitution, which can be very powerful tool in their hands.&lt;/p&gt; 	&lt;/li&gt;&lt;li&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; 	Some misconcepts about how input and output redirection works (&amp;lt;, 	&amp;gt;, &amp;gt;&amp;gt;). Usually novices do not ever heard of here-in 	documents(&amp;lt;&amp;lt;), which can make your shell scripts much more 	beatiful and compact.&lt;/p&gt; 	&lt;/li&gt;&lt;li&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; 	Novices experience fear or difficulties with building long shell 	pipes (|). Usually you can write very long shell pipe, taking up 	several lines, which process data or texts and provide exactly that 	result, what you need.&lt;/p&gt; 	&lt;/li&gt;&lt;li&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; 	Sed and awk – when I was learning unix, they kept me in awe, 	because it was too messy and difficult to understand how sed and awk 	programs work. After some time learning them, I finally got that 	it&apos;s quite easy – but manual pages wrote in a difficult way. It&apos;s 	better to learn sed and awk by examples – which makes learning 	much more easier, that reading man page.&lt;/p&gt; 	&lt;/li&gt;&lt;li&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; 	Some great misunderstanding is tied with test command ([ ]), because 	most of the novices believe, that it is some &apos;magical&apos; shell 	command, which is interpreted by the shell itself when used in 	if/while operators. Usually you can do a lot of funny tricks with 	it, it you understand how it works.&lt;/p&gt; 	&lt;/li&gt;&lt;li&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; 	Most of the people experience difficulties with using xargs command 	in their scripts and command pipes. In fact xargs is very powerful 	tool too and it should be learned and actively used, when it&apos;s 	necessary – usually when you process huge amounts of data.&lt;/p&gt; 	&lt;/li&gt;&lt;li&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; 	while operator may be used in a tricky way to parse input data and 	process them.  	&lt;/p&gt; &lt;/li&gt;&lt;/ol&gt; &lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; &lt;/p&gt;&lt;/div&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt;&lt;br /&gt; &lt;/p&gt; &lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; If you are really interested in improving your shell programming skills, you are welcome to join my free online training on unix shell programming. It will start 13 or 14 April and number of places is really limited.  &lt;/p&gt;  &lt;p style=&quot;margin-bottom: 0mm;&quot;&gt;&lt;span lang=&quot;en-US&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;&quot;&gt;Please see more details and subscribe for the training on the following page &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;http://community.livejournal.com/bin_sh_en/348.html&quot;&gt;http://community.livejournal.com/bin_sh_en/348.html&lt;/a&gt;&lt;/p&gt;  &lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; I hope YOU will participate in that training, so GO ON and SUBSCRIBE NOW, while it&apos;s free.&lt;/p&gt;   &lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; With best regards,&lt;br /&gt;Gaspar Chilingarov&lt;/p&gt; &lt;ol start=&quot;9&quot;&gt;&lt;p lang=&quot;en-US&quot; style=&quot;margin-bottom: 0mm; text-decoration: none;&quot;&gt; 	&lt;/p&gt;&lt;/ol&gt;</description>
  <comments>http://community.livejournal.com/fedora_linux/77807.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>nm_work</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/77461.html</guid>
  <pubDate>Sun, 16 Mar 2008 13:52:09 GMT</pubDate>
  <title>Problems with dual-display in Fedora 7</title>
  <link>http://community.livejournal.com/fedora_linux/77461.html</link>
  <description>I was given a second LCD monitor this week so I bought a &lt;a href=&quot;http://www.sapphiretech.com/us/products/products_overview.php?gpid=180&quot;&gt;Sapphire ATI Radeon HD 2600 Pro (AGP) card&lt;/a&gt;, thinking it wouldn&apos;t be so painful to get it working.&lt;br /&gt;&lt;br /&gt;I know it &lt;i&gt;can&lt;/i&gt; feed both screens because (more by accident than design) I&apos;ve seen output on both ... just not in the way I want to, but at least I know there&apos;s not a hardware problem.&lt;br /&gt;&lt;br /&gt;My problem is that I can&apos;t get it to work how I want, which is to have one screen (the left one) as the primary screen and the second as either a separate or extended desktop - I&apos;ll settle for either now.&lt;br /&gt;&lt;br /&gt;That website only has drivers for Windows XP and Vista, so I found the &lt;a href=&quot;http://wiki.cchtml.com/index.php/Fedora_7_Installation_Guide&quot;&gt;unofficial ATI Linux Driver Wiki - Fedora 7 installation guide&lt;/a&gt;, which led me to the  &lt;a href=&quot;http://ati.amd.com/products/catalyst/linux.html&quot;&gt;official ATI Proprietary Linux Driver page&lt;/a&gt;, which in turn led me to a page where I could &lt;a href=&quot;http://ati.amd.com/support/driver.html&quot;&gt;download Catalyst&lt;/a&gt;, which I did.&lt;br /&gt;&lt;br /&gt;I tried running Catalyst and selected &quot;Install Driver 8.471 on X.Org 7.1 and later releases&quot; which, although it didn&apos;t report any problems, didn&apos;t work properly - it gave me an error along the lines of &quot;No ATI graphics driver is installed, or the ATI driver is not functioning properly.&quot;&lt;br /&gt;&lt;br /&gt;OK, so then I found a promising page entitled &lt;a href=&quot;http://news.softpedia.com/news/How-to-Install-Video-Drivers-on-Fedora-7-59919.shtml&quot;&gt;How to Install Video Drivers on Fedora 7&lt;/a&gt;. I skipped the nVidia section and went straight to &quot;How to install ATI drivers&quot;. (I did download their version of the installer but it was older than the one I already had (from the ATI/AMD site) so I stuck with the first one.)&lt;br /&gt;&lt;br /&gt;Building the drivers seems to have me stuck in a loop (me, not the machine!) because of the dependencies. I&apos;m currently running with kernel-2.6.23.15-80.fc7; kernel-headers and kernel-devel match that version number.&lt;br /&gt;&lt;br /&gt;I installed kernel-module-ATI-fglrx-2.6.23.15-80.fc7-8.471-1.f7.i386.rpm, ATI-fglrx-8.471-1.f7.i386.rpm and ATI-fglrx-control-center-8.471-1.f7.i386.rpm but ATI-fglrx-devel-8.471-1.f7.i386.rpm gave an error: &lt;code&gt;Failed dependencies: /usr/include/GL is needed by ATI-fglrx-devel-8.471-1.f7.i386&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Checking what needed to be installed to fix that dependency (&lt;code&gt;yum whatprovides /usr/include/GL&lt;/code&gt;) returned 2 packages, but when I tried to install them (&lt;code&gt;yum install xorg-x11-drv-fglrx-devel.i386 xorg-x11-proto-devel.i386&lt;/code&gt;) I was told &lt;code&gt;Error: conflicts with ATI-fglrx&lt;/code&gt; ... but that&apos;s what I installed (from Catalyst) just a minute ago! Now I&apos;m stumped.&lt;br /&gt;&lt;br /&gt;I ran &lt;code&gt;yum clean all ; yum update&lt;/code&gt; just to make sure everything was up to date (which I do most weekends) and it was. Oh, for completeness, the repositories I use are Adobe (&lt;a href=&quot;http://linuxdownload.adobe.com/linux/i386/&quot;&gt;http://linuxdownload.adobe.com/linux/i386/&lt;/a&gt;), Fedora (&lt;a href=&quot;http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&amp;arch=$basearch&quot;&gt;http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&amp;arch=$basearch&lt;/a&gt;), Updates (&lt;a href=&quot;http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&amp;arch=$basearch&quot;&gt;http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&amp;arch=$basearch&lt;/a&gt;), Livna (&lt;a href=&quot;http://rpm.livna.org/fedora/$releasever/$basearch/&quot;&gt;http://rpm.livna.org/fedora/$releasever/$basearch/&lt;/a&gt;) and Macromedia (&lt;a href=&quot;http://macromedia.rediris.es/rpm/&quot;&gt;http://macromedia.rediris.es/rpm/&lt;/a&gt;).&lt;br /&gt;&lt;br /&gt;So, I guess my questions are has anyone got this card working with Fedora, and/or any suggestions as to how to move forward?&lt;br /&gt;&lt;br /&gt;[Cross-posted to &lt;span class=&apos;ljuser&apos; lj:user=&apos;linux&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://community.livejournal.com/linux/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/community.gif&apos; alt=&apos;[info]&apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://community.livejournal.com/linux/&apos;&gt;&lt;b&gt;linux&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;]</description>
  <comments>http://community.livejournal.com/fedora_linux/77461.html</comments>
  <category>drivers</category>
  <category>video</category>
  <lj:security>public</lj:security>
  <lj:poster>henman</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/77252.html</guid>
  <pubDate>Thu, 24 Jan 2008 21:57:42 GMT</pubDate>
  <title>Trying to Create a Router...</title>
  <link>http://community.livejournal.com/fedora_linux/77252.html</link>
  <description>Yea, I&apos;m afraid I&apos;m becoming a pain in the butt, but I&apos;m not sure where else to go.&lt;br /&gt;&lt;br /&gt;First of all, thanks to those who mentioned that it looked like the cable modem was doing NAT all by itself which is why I couldn&apos;t connect to  my test-bed server from outside my test area. I have absolutely no idea how its doing that or how to do anything about it for now. I&apos;ve had to drop that project in favor of another one.&lt;br /&gt;&lt;br /&gt;I am trying to create a simple router in Linux - Fedora Core 7 to be exact.  At this point it will function as a router only (because I can&apos;t even get that far). There is no NAT anywhere in this scenario. To the best of my knowledge SELINUX is turned off, as is all firewalls.&lt;br /&gt;&lt;br /&gt;Eth1 points to the outside world and is configured like so:&lt;br /&gt;&lt;br /&gt;/etc/sysconfig/network-scripts/ifcfg-eth1&lt;br /&gt;DEVICE=eth1&lt;br /&gt;ONBOOT=yes&lt;br /&gt;BOOTPROTO=static&lt;br /&gt;IPADDR=65.118.148.195&lt;br /&gt;NETMASK=255.255.255.224&lt;br /&gt;GATEWAY=65.118.148.195&lt;br /&gt;&lt;br /&gt;Eth0 points to the inside LAN and is configured like so:&lt;br /&gt;DEVICE=eth0&lt;br /&gt;ONBOOT=yes&lt;br /&gt;BOOTPROTO=static&lt;br /&gt;IPADDR=65.118.148.194&lt;br /&gt;NETMASK=255.255.255.224&lt;br /&gt;GATEWAY=65.118.148.193&lt;br /&gt;&lt;br /&gt;I need a routing table that looks like this:&lt;br /&gt;&amp;gt;route&lt;br /&gt;Dest            Gateway          Genmask          Flags            iface&lt;br /&gt;65.118.148.192      *          255.255.255.224      U                eth1&lt;br /&gt;65.118.148.192      *          255.255.255.224      U                eth1&lt;br /&gt;127.0.0.0           *          255.0.0.0.           U                lo&lt;br /&gt;default       65.118.148.193   0.0.0.0              UG               eth0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;No matter what I do, I end up with a routing table that looks like this:&lt;br /&gt;&amp;gt;route&lt;br /&gt;Dest            Gateway          Genmask           Flags            iface&lt;br /&gt;65.118.148.192     *           255.255.255.224       U               eth0&lt;br /&gt;65.118.148.192     *           255.255.255.224       U               eth1&lt;br /&gt;169.254.0.0        *           255.255.0.0           U               eth1&lt;br /&gt;default      65.118.148.195    0.0.0.0               UG              eth1&lt;br /&gt;&lt;br /&gt;Now the orginal server had IPtables active for routing. All the examples I&apos;ve been able to find use NAT, so I&apos;ve not been able to translate them to my environment, nor did copying over the iptables-save.txt file and applying that work for the new server.&lt;br /&gt;&lt;br /&gt;I have been trying to do the connection via route. Putting things in /etc/sysconfig/static-route didn&apos;t work. The file ended up looking like this:&lt;br /&gt;&lt;br /&gt;eth0 net 0.0.0.0 netmask 0.0.0.0 gw 65.118.148.193&lt;br /&gt;eth1 net 65.118.148.192 netmask 255.255.255.224 gw 0.0.0.0&lt;br /&gt;&lt;br /&gt;Since the file was seemingly ignored, its gone now and the bad routing table I have put up above doesn&apos;t use it.&lt;br /&gt;&lt;br /&gt;I then figured out that maybe I had to put text in /etc/sysconfig/network-scripts/route-eth0 and route-eth1, but I couldn&apos;t figure out the syntax of the text to put into those files.&lt;br /&gt;&lt;br /&gt;So, I&apos;ve been at this 2.5 days rather solidly. No go at this point. &lt;br /&gt;&lt;br /&gt;Any thoughts?</description>
  <comments>http://community.livejournal.com/fedora_linux/77252.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>kinnerc</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/76896.html</guid>
  <pubDate>Tue, 15 Jan 2008 22:10:59 GMT</pubDate>
  <title>Networking...</title>
  <link>http://community.livejournal.com/fedora_linux/76896.html</link>
  <description>Hello folks.&lt;br /&gt;&lt;br /&gt;First I want to thank everyone for the help they tried to give with regard to booting with FSCKing. The problem ended up working itself out in time as the disk did indeed FSCK itself. The problem seemed to be the RAID controller was not wired into the disk activity LED light and so I didn&apos;t have a way of knowing, from where I was, that there was anything going on.&lt;br /&gt;&lt;br /&gt;shutdown -fr does work in these instances, except that I was trying to come &lt;i&gt;up&lt;/i&gt; from a cold boot. Still haven&apos;t found a flag to come up from a cold boot without FSCKing the disk.&lt;br /&gt;&lt;hr&gt;&lt;br /&gt;In any event, I&apos;d like to bounce this issue off you folks. Its more of a general networking issue, but it ultimately relates to a Fedora server.&lt;br /&gt;&lt;br /&gt;Basically I&apos;m trying to set up httpd and SSH services on a test-bed Fedora server at my place. Locally these services seem to be working in that I can do &quot;&lt;a href=&quot;http://192.168.1.104/index.html&quot;&gt;http://192.168.1.104/index.html&lt;/a&gt;&quot; from another computer on the LAN, and I can also SSH from that computer to the Fedora server from within the LAN.&lt;br /&gt;&lt;br /&gt;Its outside the LAN that I&apos;m having problems.  In the end, unfortunately, I think it may have something to do with the configuration of the NETGEAR router.&lt;br /&gt;&lt;br /&gt;As I said things seem to be working in LAN, but I&apos;m not sure why things are not working out of LAN.&lt;br /&gt;&lt;br /&gt;I have, at this point, shut off the Fedora firewall. I have, via the router, set up port forwarding for all the needed service. In general, for &quot;normal stuff,&quot; the router is working for outgoing things.&lt;br /&gt;&lt;br /&gt;There are things in the router config that are frankly confusing me, however. The LAN IP setup makes sense. It is currently set to the 192.168.1.0 subnet (Yes, I know. Default. Don&apos;t bug me about that yet. :-) ). I&apos;ve reserved the 192.168.1.120-250 for a DHCP pool. The server in question is 192.168.1.104, as I mentioned.&lt;br /&gt;&lt;br /&gt;What &lt;i&gt;really&lt;/i&gt; confuses me is that when I go to the basic settings of the router it says that the Internet IP address, received from the ISP is 192.168.251.199. That makes no sense to me since that block is not routable. I can&apos;t see how I would have gotten that from my ISP. However, if I go &lt;a href=&quot;http://192.168.251.199/index.html&quot;&gt;http://192.168.251.199/index.html&lt;/a&gt;, my web site works. I&apos;ve not tried that URL from outside the home LAN because, since its not a routeable address I&apos;d can think of no reason why it would work.&lt;br /&gt;&lt;br /&gt;Now my outside WAN IP address lists as 65.110.148.55 via whatismyip.com. This makes sense to me. Its routable and it lists as my IP address when I SSH in to external accounts. Now if I try, from an external computer to &lt;a href=&quot;http://65.110.148.55/index.html&quot;&gt;http://65.110.148.55/index.html&lt;/a&gt; it can&apos;t find it. If I try to ssh to 65.110.148.55 it times out.&lt;br /&gt;&lt;br /&gt;I&apos;m stuck as to what I am missing.&lt;br /&gt;&lt;br /&gt;Any thoughts?</description>
  <comments>http://community.livejournal.com/fedora_linux/76896.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>kinnerc</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/76744.html</guid>
  <pubDate>Mon, 14 Jan 2008 05:32:20 GMT</pubDate>
  <title>a question about wallpaper inbetween KDM and KDE desktop during Ksplash</title>
  <link>http://community.livejournal.com/fedora_linux/76744.html</link>
  <description>I&apos;m trying to create a pretty cohesive theme on this machine and i don&apos;t get it.&lt;br /&gt;&lt;br /&gt;I have a KDM theme.. it loads properly, i log in, my ksplash comes up.. but the background (not of ksplash itself) is a default blue color. And then KDE pops up with my wallpaper of choice.&lt;br /&gt;&lt;br /&gt;How do i change the color of the background/wallpaper as Ksplash is displaying?&lt;br /&gt;&lt;br /&gt;I&apos;ve done this before but no idea how i did it. And it&apos;s not always just a default color.. (speaking my memory here, not recently). I&apos;ve seen old wallpapers show up during this window of time i&apos;m speaking up during the DE boot process.&lt;br /&gt;&lt;br /&gt;anyone have any ideas?&lt;br /&gt;&lt;br /&gt;I&apos;ve asked on a multitude of other boards and not so much as gotten a response, any help would be appreciated.&lt;br /&gt;&lt;br /&gt;btw i&apos;m using Fedora 7, but this has happened to me in Ubuntu and openSuse as well.. i just never tried this hard to resolve it.</description>
  <comments>http://community.livejournal.com/fedora_linux/76744.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>olivermellors</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/76308.html</guid>
  <pubDate>Mon, 07 Jan 2008 18:22:58 GMT</pubDate>
  <title>Booting WITHOUT FSCKing...</title>
  <link>http://community.livejournal.com/fedora_linux/76308.html</link>
  <description>I&apos;m in a situation where I need to boot a system, but &lt;b&gt;not&lt;/b&gt; have FSCK check the disks on the way up. I seem to remember there should have been a flag to do this.&lt;br /&gt;&lt;br /&gt;Do I need to put &quot;nofsck&quot; in the boot parameters?</description>
  <comments>http://community.livejournal.com/fedora_linux/76308.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>kinnerc</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/76052.html</guid>
  <pubDate>Sat, 29 Dec 2007 15:19:24 GMT</pubDate>
  <link>http://community.livejournal.com/fedora_linux/76052.html</link>
  <description>hi all, i&apos;m running fedora 8 on my laptop, and i don&apos;t like how it kind of sits for a bit while searching for a wired ethernet connection on boot.  it reports this as a failed bootup item, but . . .  come on, it&apos;s a laptop.  it&apos;s not always going to be plugged in to via cat 5 cable.&lt;br /&gt;&lt;br /&gt;is there any kind of setting that i can change so that it won&apos;t sit like this before progressing with the rest of the boot sequence?  thanks.</description>
  <comments>http://community.livejournal.com/fedora_linux/76052.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>themiddlestates</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/75873.html</guid>
  <pubDate>Fri, 28 Dec 2007 22:47:00 GMT</pubDate>
  <title>atrpms package removal</title>
  <link>http://community.livejournal.com/fedora_linux/75873.html</link>
  <description>This took me a while to work out and I figured it might be useful to others:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
rpm -qa --qf &quot;[%{NAME} - %{VENDOR}\n]&quot; | grep ATrpms.net | sort | less
&lt;/pre&gt;</description>
  <comments>http://community.livejournal.com/fedora_linux/75873.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>olithered</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/75664.html</guid>
  <pubDate>Mon, 17 Dec 2007 21:39:56 GMT</pubDate>
  <title>No Flash with Opera 9.23 on Fedora FC7</title>
  <link>http://community.livejournal.com/fedora_linux/75664.html</link>
  <description>I&apos;m not sure whether it was when I upgraded to Opera 9.23 (from 9.something) or when I updated the Flash plugin (now on flash-plugin.i386 0:9.0.115.0-release), but I can&apos;t see any Flash content.&lt;br /&gt;&lt;br /&gt;I&apos;ve followed the &lt;a href=&quot;http://www.opera.com/support/search/view/459/&quot;&gt;Opera instructions&lt;/a&gt;, checked the &lt;a href=&quot;http://www.adobe.com/shockwave/welcome/&quot;&gt;Flash test page&lt;/a&gt;, and I still can&apos;t see video on YouTube or more importantly &lt;a href=&quot;http://www.homestarrunner.com/&quot;&gt;HomestarRunner&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;I found some &lt;a href=&quot;http://my.opera.com/desktopteam/blog/2007/08/15/9-23-released&quot;&gt;discussions&lt;/a&gt; which strongly suggested using the &lt;a href=&quot;http://www.gnashdev.org/&quot;&gt;gnash&lt;/a&gt; plugin instead of Flash but that&apos;s no better.&lt;br /&gt;&lt;br /&gt;Any suggestions? (Those sites are fine with Firefox or Flock but I want to continue using Opera if I can.)&lt;br /&gt;&lt;br /&gt;[Environment recap: Opera 9.23 with Flash plugin 9.0.115 or Gnash plugin 8.1-5 running on Fedora Core 7.]&lt;br /&gt;&lt;br /&gt;&lt;small&gt;Cross-posted to &lt;span class=&apos;ljuser&apos; lj:user=&apos;opera_browser&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://community.livejournal.com/opera_browser/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/community.gif&apos; alt=&apos;[info]&apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://community.livejournal.com/opera_browser/&apos;&gt;&lt;b&gt;opera_browser&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/small&gt;</description>
  <comments>http://community.livejournal.com/fedora_linux/75664.html</comments>
  <lj:music>Led Zeppelin - How Many More Times</lj:music>
  <lj:security>public</lj:security>
  <lj:poster>henman</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/75208.html</guid>
  <pubDate>Tue, 02 Oct 2007 03:38:34 GMT</pubDate>
  <title>Secure Incoming Communications...</title>
  <link>http://community.livejournal.com/fedora_linux/75208.html</link>
  <description>I wanted to see if I could get some thoughts from fellow Fedorians. &lt;br /&gt;&lt;br /&gt;I&apos;m using Fedora 6 and I&apos;m looking to secure incoming communications. Truth to tell, I don&apos;t think that Fedora has much to do with this per se.&lt;br /&gt;&lt;br /&gt;Right now, as it stands, our way of securing incoming communications is filtering by IP address. This works to a limited degree, depending on where our remote and home users are. I investigated doing the same filtering via MAC addresses, which I thought would have been great, but, of course, found that MAC addresses are filtered by routers to that the MAC address your firewall sees is the MAC address of the last upstream router.&lt;br /&gt;&lt;br /&gt;I&apos;m currently investigating OpenVPN as a general solution with regard to our folks laptops away from the office. While I am trying to deal with the myriad details of an implementation like that, it does seem a good way to go. I&apos;d appreciate comments from you good folks either aye or nay with regard to this.&lt;br /&gt;&lt;br /&gt;Those are my thoughts with regard to employee laptops. I also have one situation where one of our people goes to a facility where he has use their computers. Here the OpenVPN solution won&apos;t work, of course, because I can&apos;t install the software on these computers. Here I&apos;m thinking about One Time Passwords, but I have to say I don&apos;t know much about an installation of this type. Does anyone have any pointers, especially with regard to Fedora?</description>
  <comments>http://community.livejournal.com/fedora_linux/75208.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>kinnerc</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/74876.html</guid>
  <pubDate>Fri, 07 Sep 2007 18:07:49 GMT</pubDate>
  <title>ru-bacula</title>
  <link>http://community.livejournal.com/fedora_linux/74876.html</link>
  <description>Приглашаем во вновь созданную группу.&lt;br /&gt;&lt;a href=&quot;http://groups.google.com/group/ru-bacula?hl=ru&quot;&gt;http://groups.google.com/group/ru-bacula?hl=ru&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Описание группы:&lt;br /&gt;&lt;br /&gt;Bacula - сетевое резервное копирование, архивирование и восстановление данных.&lt;br /&gt;&lt;a href=&quot;http://www.bacula.org/&quot;&gt;http://www.bacula.org/&lt;/a&gt;</description>
  <comments>http://community.livejournal.com/fedora_linux/74876.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>santa_claus_rpm</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/74580.html</guid>
  <pubDate>Wed, 25 Jul 2007 22:13:40 GMT</pubDate>
  <title>missing arrow keys with evdev (multiseat) [FIXED]</title>
  <link>http://community.livejournal.com/fedora_linux/74580.html</link>
  <description>Using the evdev driver with Fedora 7 seems to stop the arrow keys working, while they were fine with Fedora Core 5 (although the uk layout does work this time).&lt;br /&gt;&lt;br /&gt;It is driving me crazy.&lt;br /&gt;&lt;br /&gt;Does anyone have an idea what is wrong?!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;FIXED NOW:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Changed:&lt;br /&gt; Option &quot;XkbModel&quot; &quot;pc105&quot;&lt;br /&gt;To:&lt;br /&gt; Option &quot;XkbModel&quot; &quot;evdev&quot;&lt;br /&gt; Option &quot;XkbRules&quot; &quot;xorg&quot;&lt;br /&gt;&lt;br /&gt;(Thanks to /usr/bin/diff and the files in &lt;a href=&quot;http://forums.fedoraforum.org/showthread.php?t=160102&quot;&gt;this post&lt;/a&gt;.)</description>
  <comments>http://community.livejournal.com/fedora_linux/74580.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>olithered</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/74471.html</guid>
  <pubDate>Fri, 20 Jul 2007 11:20:03 GMT</pubDate>
  <title>Missing Public Key for cups-libs</title>
  <link>http://community.livejournal.com/fedora_linux/74471.html</link>
  <description>So FC6 wanted to do some updates last night.  Okay, I sez, go to it, then the updater claims it can&apos;t verify the new cups-lib, because the public key isn&apos;t installed.&lt;br /&gt;&lt;br /&gt;&apos;kay.  I looked around.  Can&apos;t find it on cups.org.  Yum passes back the error:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public key for cups-libs-1.2.12-1.fc6.i386.rpm is not installed&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;and I was wondering if anyone else has this issue (pretty vanilla install of FC6) or knows just where to find the public key?</description>
  <comments>http://community.livejournal.com/fedora_linux/74471.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>featheredfrog</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/74162.html</guid>
  <pubDate>Mon, 09 Jul 2007 03:12:30 GMT</pubDate>
  <title>How to backup large file</title>
  <link>http://community.livejournal.com/fedora_linux/74162.html</link>
  <description>I backup my main file using &lt;code&gt;dump&lt;/code&gt; and then move them to an external HDD. Trouble is one of the dump files is big -- 4452096000 bytes (4.2Gb) according to &lt;code&gt;ls&lt;/code&gt;. I can&apos;t write it to the external drive because it&apos;s shared with my wife&apos;s Winblows PC, hence it&apos;s formatted as FAT32 and that means a 4Gb file limit.&lt;br /&gt;&lt;br /&gt;Apart from getting another external HDD and formatting for Linux only, any suggestions how I can backup my filesystem to an external medium (HDD or DVD)?</description>
  <comments>http://community.livejournal.com/fedora_linux/74162.html</comments>
  <lj:music>Marillion - Rich</lj:music>
  <lj:security>public</lj:security>
  <lj:poster>henman</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/73949.html</guid>
  <pubDate>Sat, 23 Jun 2007 05:59:04 GMT</pubDate>
  <title>PCI Wireless Card</title>
  <link>http://community.livejournal.com/fedora_linux/73949.html</link>
  <description>Hi,&lt;br /&gt;&lt;br /&gt;I am looking to set up a desktop system I have with Linux.  I unfortinatly am on a wireless network and need a suggestion for a good pci wireless card.  I would like to use Fedora since that is what I have been useing recently but am open to other distros.  &lt;br /&gt;&lt;br /&gt;Thanks.</description>
  <comments>http://community.livejournal.com/fedora_linux/73949.html</comments>
  <lj:music>Flyleaf</lj:music>
  <lj:mood>curious</lj:mood>
  <lj:security>public</lj:security>
  <lj:poster>dpk5139</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/73636.html</guid>
  <pubDate>Mon, 11 Jun 2007 12:10:43 GMT</pubDate>
  <title>Display and NV drivers not working.</title>
  <link>http://community.livejournal.com/fedora_linux/73636.html</link>
  <description>Hello, &lt;br /&gt;&lt;br /&gt;I just installed Fedora 7 from Fedora core 6.&amp;nbsp; New install.&lt;br /&gt;It detected the video card just fine.&lt;br /&gt;The display detected as a Generic CRT 640X480.&lt;br /&gt;I tried to change it to Generic LCD 1024X768 but that did not thing to fix my video problems.&amp;nbsp; I am only able to get 800X600 resolution.&lt;br /&gt;Also when I type in the terminal &lt;pre&gt;glxinfo | grep rendering&lt;/pre&gt;It tells me direct rendering: No&lt;br /&gt;&lt;br /&gt;I have seen other peoples post on this asking for help, but I have not found an answer to these people&apos;s problems yet.&lt;br /&gt;I have tried to install the drivers from Nvidia, but I have not been successful with that yet.&lt;br /&gt;I am trying to install the drivers with the Xserver off, and as Root.</description>
  <comments>http://community.livejournal.com/fedora_linux/73636.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>griffon_rider</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/73241.html</guid>
  <pubDate>Thu, 01 Mar 2007 04:16:15 GMT</pubDate>
  <title>Chuck E Cheese and Linux</title>
  <link>http://community.livejournal.com/fedora_linux/73241.html</link>
  <description>Thought this was rather amusing.&amp;nbsp; Chuck E Cheese, which you&apos;ve never been to it, is a Pizza and Family entertainment places that&apos;s all over the place.&amp;nbsp; Well they have this picture taking booth that prints out the picture like someone sketched it.&amp;nbsp; Well I&apos;m sitting there with my daughter and wife eating pizza and notice people were standing at it waiting for it to reboot.&amp;nbsp; I laughed out loud at this because it was booting Red Hat Linux.</description>
  <comments>http://community.livejournal.com/fedora_linux/73241.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>trauma_hound</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/73193.html</guid>
  <pubDate>Tue, 20 Feb 2007 21:21:11 GMT</pubDate>
  <title>adding routes automaticly</title>
  <link>http://community.livejournal.com/fedora_linux/73193.html</link>
  <description>Hello,&lt;br /&gt;I&apos;ve never used linux, but desided to install it. Everything goes normally, but I still can&apos;t understand how to automatize the process of adding routes. I&apos;m getting tired of adding them manually after each system start up. How to make it run automaticly, and how to make them be accessible for each user? (Example: I enter the system with non-root user, and have all needed routes added)</description>
  <comments>http://community.livejournal.com/fedora_linux/73193.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>kryachkov</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/72913.html</guid>
  <pubDate>Wed, 10 Jan 2007 05:44:59 GMT</pubDate>
  <title>Default fonts</title>
  <link>http://community.livejournal.com/fedora_linux/72913.html</link>
  <description>Hello,&lt;br /&gt;&lt;br /&gt;I just got a new machine at my work, which is at a uni. (The implication here is that I don&apos;t have root access, although I can request stuff to be added or changed. But I can&apos;t easily tweak some stuff myself.) I&apos;m dualbooting Windows and Fedora Core 6.&lt;br /&gt;&lt;br /&gt;Immediately after opening up Firefox (1.5.0.8), I can&apos;t help thinking how badly the fonts are rendering. Stuff just doesn&apos;t seem smooth enough and it&apos;s just not as easy to read as it should be. &lt;br /&gt;&lt;br /&gt;Firefox&apos;s default font seems to be DejaVu LGC Sans Condensed. What font configurations do you guys have? Anything you recommend?&lt;br /&gt;&lt;br /&gt;cheers!</description>
  <comments>http://community.livejournal.com/fedora_linux/72913.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>pfctdayelise</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/72690.html</guid>
  <pubDate>Sun, 03 Dec 2006 20:33:37 GMT</pubDate>
  <title>Logitech MX3000 keyboard and MX600 mouse</title>
  <link>http://community.livejournal.com/fedora_linux/72690.html</link>
  <description>Does anyone know which settings I should use to get the most out of my &lt;a href=&quot;http://www.logitech.com/index.cfm/products/details/US/EN,CRID=2162,CONTENTID=10709&quot;&gt;Logitech MX3000 cordless keyboard and MX600 cordless mouse&lt;/a&gt;? I&apos;m using the standard settings that I had with my original (vanilla) kbd+mouse, so my browser (&lt;a href=&quot;http://www.opera.com/&quot;&gt;Opera&lt;/a&gt;* on Fedora FC5) doesn&apos;t respond to the forward/back or zoom buttons.&lt;br /&gt;&lt;br /&gt;*p.s. Firefox behaves the same way (i.e. doesn&apos;t respond to those buttons) so it&apos;s not just a browser issue.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;[Cross-posted to &lt;span class=&apos;ljuser&apos; lj:user=&apos;linux&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://community.livejournal.com/linux/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/community.gif&apos; alt=&apos;[info]&apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://community.livejournal.com/linux/&apos;&gt;&lt;b&gt;linux&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; - please &lt;a href=&quot;http://community.livejournal.com/linux/1559155.html&quot;&gt;comment there&lt;/a&gt;.]</description>
  <category>mouse</category>
  <category>drivers</category>
  <category>keyboard</category>
  <lj:security>public</lj:security>
  <lj:poster>henman</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/72289.html</guid>
  <pubDate>Fri, 01 Dec 2006 01:17:38 GMT</pubDate>
  <title>Linux F/OSS Gaming Roundup 2006</title>
  <link>http://community.livejournal.com/fedora_linux/72289.html</link>
  <description>&lt;em&gt;Linux F/OSS Gaming Roundup 2006&lt;/em&gt;&lt;br /&gt;by Hal Canary&lt;br /&gt;&lt;br /&gt;I wanted to test out the response time of my new LCD monitor, so I downloaded some games for my Fedora Core 6 system.&lt;br /&gt;&lt;br /&gt;All of the games I am reviewing are:&lt;br /&gt;&lt;br /&gt;	1) Free/Open Source Software, including the game data files.  This is a fine distinction that I should explain.  For example, Id Software has released the game engines for Doom and Quakes 1, 2, and 3 under the General Public License, but they did not release the game content under a new license.  Qfusion is a derivative of the Quake2 engine that is FOSS, but the game Warsaw that makes use of the Qfusion engine comes with proprietary game content, so Warsaw as a whole is not F/OSS.&lt;br /&gt;&lt;br /&gt;	2) In the Fedora Extras repository.  This guarantees that the game will run on my system and if I have a problem, I can file a bug against it at bugzilla.redhat.com.  Installation is this easy:&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;margin-left:1em&quot;&gt;&lt;code&gt;sudo yum install supertux supertuxkart &amp;#0092&lt;br /&gt;     ppracer prboom freedoom xpilot-ng&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;&lt;strong&gt;Supertux 0.1.3&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Supertux is a game patterned after Super Mario Brothers.  If I had a joystick similar to the NES controller (like maybe a Gravis (I used to have one, but I fried it while hacking my USB controller card.)), I&apos;d probably be happier with this game.  Or if it was 1986.  Then I&apos;d be super psyched about this game and every day all summer I&apos;d go over to Wilson&apos;s house and play against him until I learned the game.  This game is somewhat monotonous.  Setting it in Antarctica limits the color pallet.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://halcanary.org/images/2006-11-30-scrnsht-supertux.png&quot; width=&quot;320&quot; height=&quot;240&quot; alt=&quot;[screenshot]&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;SuperTuxkart 0.2&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://supertuxkart.berlios.de/&quot;&gt;Super Tux Kart&lt;/a&gt; is a homage to Mario Kart.  It features a similar split-screen multiplayer mode.  It might be fun to plug two or four USB gamepads into my USB hub and play with friends.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;PPRacer 0.3.1&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;PlanetPenguin Racer is the current version of what used to be called Tux Racer 0.6.1, with a new development team.  Not much has changed.  It works perfectly on any accelerated video card, including my Radeon 9200+F/OSS driver.&lt;br /&gt;&lt;br /&gt;If you&apos;ve never played it, this is a downhill racing game.  It&apos;s somewhat fun and fairly challenging.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://halcanary.org/images/2006-11-30-scrnsht-ppracer.png&quot; width=&quot;320&quot; height=&quot;240&quot; alt=&quot;[screenshot]&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;PrBoom v2.4.7 / FreeDoom 0.5&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;PrBoom is the engine, derived from the Doom engine.  FreeDoom is the F/OSS game content for that engine.  The graphics for this aren&apos;t bad on my Radeon 9200 (with the free radeon driver) as long as you enable the openGL mode.&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;margin-left:1em&quot;&gt;&lt;code&gt;prboom -vidmode gl&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;Caveat:  they aren&apos;t bad compared to, say the original Doom running on my 386 back in the day.  They are primitive compared to quake3 or doom3 but I have yet to get those games to run under the F/OSS driver for my video card.  But &lt;tt&gt;prboom -vidmode gl&lt;/tt&gt; is almost as good as Quake1.&lt;br /&gt;&lt;br /&gt;I hate to say it, but even after all these years this is a fun game.  Who doesn&apos;t like to kill demons with a shotgun?&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://halcanary.org/images/2006-11-30-scrnsht-prboom.png&quot; width=&quot;320&quot; height=&quot;240&quot; alt=&quot;[screenshot]&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;xpilot-ng-sdl 4.7.2&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;XPilot is a fun online multiplayer game.  If you played SubSpace on Windows, you&apos;ve seen a similar game.  It&apos;s a Multiplayer Online Third Person Shooter (MOTPS).  XPilot came out in 1991, had primitive graphics, and only worked on Unix/X11.  In 1997, SubSpace was written for Windows:  it had much better graphics and had been written from scratch.  In 2000, the XPilot NG project was started to update the XPilot graphics system to use SDL/OpenGL (the cross-platform equivalent of DirectDraw/Direct3D).&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://halcanary.org/images/2006-11-30-scrnsht-xpilot-ng-sdl.png&quot; width=&quot;320&quot; height=&quot;240&quot; alt=&quot;[screenshot]&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Other&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;There are two multiplayer games I want to test out at some point in the future:  OpenArena and Tremulous, both based on the GPLed Quake3 engine.  Tremulous can be downloaded from Fedora Extras.  OpenArena cannot yet.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;For the Comments&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Are there any other Fedora Core/Extras games you would recommend to me?&lt;br /&gt;&lt;br /&gt;--&lt;br /&gt;Copyright 2006 Hal Canary&lt;br /&gt;Permission is granted to make and distribute verbatim copies of this entire document without royalty provided the copyright notice and this permission notice are preserved.  Please let me know if you do.</description>
  <comments>http://community.livejournal.com/fedora_linux/72289.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>hwc</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/72145.html</guid>
  <pubDate>Fri, 10 Nov 2006 00:45:57 GMT</pubDate>
  <title>Fedora Core 6 display problem.</title>
  <link>http://community.livejournal.com/fedora_linux/72145.html</link>
  <description>Fedora Core 6 display problem.&lt;br /&gt;How would someone install Fedora on a system and tell it to use a specific video card?&lt;br /&gt;When I install in text mode, all is good until I start gnome or KDE.  At that time I get a ultra wide screen and I cannot click on anything to continue.&lt;br /&gt;When I install in graphical mode, I get the same screen half way though the installation.&lt;br /&gt;I notice on two computers, that it loads the S3 video driver.&lt;br /&gt;How can I force an Intel or Nvidia driver to load?  I have tried several different computers.&lt;br /&gt;I have tried to use &quot;linux display=1024x756&quot; and smaller resolutions.&lt;br /&gt;Text mode is great, no KDE or Gnome and the system runs great, but as soon as X Windows, KDE or Gnome start, a blind man can see more than I can.&lt;br /&gt;&lt;br /&gt;Thank you for your help.</description>
  <comments>http://community.livejournal.com/fedora_linux/72145.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>griffon_rider</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/71827.html</guid>
  <pubDate>Thu, 09 Nov 2006 19:57:55 GMT</pubDate>
  <title>nfs wtf</title>
  <link>http://community.livejournal.com/fedora_linux/71827.html</link>
  <description>I think I have found an answer (but not an explanation) to my &lt;a href=&quot;http://community.livejournal.com/fedora_linux/67232.html&quot;&gt;previous nfs strife&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;If the hostname of the fedora box is set to &quot;machine.office.company.com&quot; then it times out.&lt;br /&gt;&lt;br /&gt;If the hostname is set to &quot;machine.company.com&quot;, &quot;machine&quot; or &quot;machine.somethingelse.company.com&quot; then it works!&lt;br /&gt;&lt;br /&gt;In the first instance, the appropriate DNS HOST and PTR records did exist.&lt;br /&gt;&lt;br /&gt;Is anyone able to suggest a reason for the observed behaviour? Is it a fedora bug or an sfu bug? Or an error in my configuration?</description>
  <comments>http://community.livejournal.com/fedora_linux/71827.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>olithered</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/71439.html</guid>
  <pubDate>Sun, 05 Nov 2006 17:44:59 GMT</pubDate>
  <title>Phantom drive with FC5</title>
  <link>http://community.livejournal.com/fedora_linux/71439.html</link>
  <description>I&apos;ve been running Fedora FC5 for some time (pretty much since it was released) but I&apos;ve finally decided it&apos;s time to get to the bottom of some error messages: &lt;blockquote&gt;Nov  5 12:32:03 animal kernel: hde: status error: status=0x58 { DriveReady SeekComplete DataRequest }&lt;br /&gt;Nov  5 12:32:03 animal kernel: ide: failed opcode was: unknown&lt;br /&gt;Nov  5 12:32:03 animal kernel: hde: drive not ready for command&lt;br /&gt;Nov  5 12:32:08 animal kernel: hde: status timeout: status=0xd8 { Busy }&lt;br /&gt;Nov  5 12:32:08 animal kernel: ide: failed opcode was: unknown&lt;br /&gt;Nov  5 12:32:08 animal kernel: hde: drive not ready for command&lt;br /&gt;Nov  5 12:32:08 animal kernel: hde: ATAPI reset complete&lt;/blockquote&gt; The odd thing is I don&apos;t have anything attached to /dev/hde - I have one IDE drive (/dev/hda), one SATA drive (/dev/sda) and one DVD writer, but that auto-mounts as /media/cdrom (or something like that).&lt;br /&gt;&lt;br /&gt;Any idea why my system thinks there&apos;s an &quot;hde&quot; and what I can do to stop it looking for it?&lt;br /&gt;&lt;br /&gt;[&lt;a href=&quot;http://community.livejournal.com/linux/1543317.html&quot;&gt;Cross-posted&lt;/a&gt; to &lt;span class=&apos;ljuser&apos; lj:user=&apos;linux&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://community.livejournal.com/linux/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/community.gif&apos; alt=&apos;[info]&apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://community.livejournal.com/linux/&apos;&gt;&lt;b&gt;linux&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;]</description>
  <comments>http://community.livejournal.com/fedora_linux/71439.html</comments>
  <lj:music>Motley Crue - Bittersuite</lj:music>
  <lj:security>public</lj:security>
  <lj:poster>henman</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/fedora_linux/71296.html</guid>
  <pubDate>Thu, 28 Sep 2006 00:44:12 GMT</pubDate>
  <title>Intro and failure at Flash 7</title>
  <link>http://community.livejournal.com/fedora_linux/71296.html</link>
  <description>Heylo, I&apos;m yet another new user to the world of Linux. I&apos;m on a recent install of Fedora Core 5 on a moderately up-to-date Pentium 4 box, using GNOME, and this is the very first time I&apos;ve ever attempted a non Windows OS. I consider myself a somewhat advanced user when it comes to Windows and I have a decent learning curve. I decided to learn Linux when I randomly recieved a free (albiet complete with a little fried hardware) computer at about the same time that my frustration of Windows becoming more and more like AOL on every release peaked last week. So I decided to dive right in, set up a Linux box (Fedora at the reccomendation of a friend who swear by it and occasionally at it), and see how long it takes before I realize what I complete noob I am.&lt;br /&gt;To this point I&apos;ve managed to solve most of my problems with the operating system on my own by doing silly things like checking documentation, readme files, and instructions. The chronicles of my bashing my head against this operating system can be found in my journal, but there&apos;s not too much wildly interesting stuff to read just yet. The major problem I&apos;ve run into and have been unable to solve on my own is Flash 7. I can&apos;t get it to mix with FireFox properly. I&apos;ve run Pup and updated everything about Fedora I could find to update, and I&apos;ve successfully installed Java. It would seem I&apos;ve successfully installed Flash because I&apos;ve followed the directions thoroughly (even in a root session so it would install system-wide), and if I go into Firefox&apos;s plugins folder, the Flash file is there. I&apos;m working with the most up to date versions of everything I could find being the first thing I learned in Windows was update frequently before someone else finds your bugs for you. &lt;br /&gt;So.. Everything is up to date, I&apos;ve run through the Flash install process in a root session as well as in a user session, and the Flash file is present in my FireFox plugins folder. However Flash does not work or is not detected, or something, and every time I run across a page that needs it FireFox asks if I&apos;d like to install the missing plugin of Flash. Oh, I&apos;ve logged into session, logged out, and rebooted entirely. So could someone please teach me the secret FireFox-Flashplayer club handshake and secret code so I can play too?</description>
  <comments>http://community.livejournal.com/fedora_linux/71296.html</comments>
  <lj:music>Polysics - For Young Electric Pop</lj:music>
  <lj:mood>confused</lj:mood>
  <lj:security>public</lj:security>
  <lj:poster>linuxpants</lj:poster>
</item>
</channel>
</rss>
