<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>MP3Car.com - Linux</title>
		<link>http://www.mp3car.com/vbulletin/</link>
		<description>Serving *nix users in car computer environments.</description>
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 13:02:10 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.mp3car.com/vbulletin/images/misc/rss.jpg</url>
			<title>MP3Car.com - Linux</title>
			<link>http://www.mp3car.com/vbulletin/</link>
		</image>
		<item>
			<title>Mobile Linux</title>
			<link>http://www.mp3car.com/vbulletin/linux/137421-mobile-linux.html</link>
			<pubDate>Thu, 19 Nov 2009 17:58:06 GMT</pubDate>
			<description><![CDATA[Anyone have any nice  mobile linux suggestions? I'm testing this on my old P4 system.  
Currently testing out 
ubuntu netbook remix - don't really like it 
ubuntu MID - will test tonight 
Linpus Quick OS - this one i can't find anywhere it seems like its only made for acer one netbooks, but it...]]></description>
			<content:encoded><![CDATA[<div>Anyone have any nice  mobile linux suggestions? I'm testing this on my old P4 system. <br />
Currently testing out<br />
ubuntu netbook remix - don't really like it<br />
ubuntu MID - will test tonight<br />
Linpus Quick OS - this one i can't find anywhere it seems like its only made for acer one netbooks, but it looks nice and have really fast booting. I tried the old linpus version, it was niec and fast, but the touchscreen driver didn't work so well. The new one looks much more polished, but not publicly available.<br />
Moblin - just downloaded, not sure if it'll work on non-atom processor.</div>

]]></content:encoded>
			<category domain="http://www.mp3car.com/vbulletin/linux/">Linux</category>
			<dc:creator>Punky</dc:creator>
			<guid isPermaLink="true">http://www.mp3car.com/vbulletin/linux/137421-mobile-linux.html</guid>
		</item>
		<item>
			<title>Apache server hell - help!</title>
			<link>http://www.mp3car.com/vbulletin/linux/137283-apache-server-hell-help.html</link>
			<pubDate>Sat, 14 Nov 2009 23:53:53 GMT</pubDate>
			<description><![CDATA[[Sigh]  I hate to ask for help here but I know somebody has the answer and I've invested hours in this problem. 
 
I've set up my apache2 server and have had it working without issue but I wanted to change the location of the document root for it because its in the root user location and I'm having...]]></description>
			<content:encoded><![CDATA[<div>[Sigh]  I hate to ask for help here but I know somebody has the answer and I've invested hours in this problem.<br />
<br />
I've set up my apache2 server and have had it working without issue but I wanted to change the location of the document root for it because its in the root user location and I'm having trouble ftp'ing data into that folder.  I also know that it isn't appropriate to use the root user for the web location.  The apache2 install is in /etc/apache2<br />
<br />
So, I've changed my apache2 http.conf to read the following:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Servername localhost1<br />
AddHandler application/x-httpd-php .php<br />
AddHandler application/x-httpd-php-source .phps<br />
DocumentRoot /mysite</code><hr />
</div>Unfortunately, I get a 403 error &quot;Forbidden - you don't have permission to access / on this server.&quot;<br />
<br />
I've tried other locations for the folder and restarted the server using the apache2ctl restart command each time.  I know it reads the file because if I put an invalid path in the DocumentRoot it will tell me so.<br />
<br />
I've also added /mysite to my sites-enabled folder and included Order allow,deny and Allow from all in both the default file and the mysite file.  The mysite file reads as follows: <br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;VirtualHost *:80&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ServerAdmin webmaster@localhost<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; DocumentRoot /mysite<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Directory /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Options FollowSymLinks<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AllowOverride None<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Order allow,deny<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Allow from all<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Directory&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Directory /mysite&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Options Indexes FollowSymLinks MultiViews<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AllowOverride None<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Order allow,deny<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; allow from all<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Directory&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Directory &quot;/usr/lib/cgi-bin&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AllowOverride None<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Order allow,deny<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Allow from all<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Directory&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; ErrorLog /var/log/apache2/errormysite.log<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; # Possible values include: debug, info, notice, warn, error, crit,<br />
&nbsp; &nbsp; &nbsp; &nbsp; # alert, emerg.<br />
&nbsp; &nbsp; &nbsp; &nbsp; LogLevel warn<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; CustomLog /var/log/apache2/accessmysite.log combined<br />
<br />
&nbsp; &nbsp; Alias /doc/ &quot;/usr/share/doc/&quot;<br />
&nbsp; &nbsp; &lt;Directory &quot;/usr/share/doc/&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; Options Indexes MultiViews FollowSymLinks<br />
&nbsp; &nbsp; &nbsp; &nbsp; AllowOverride None<br />
&nbsp; &nbsp; &nbsp; &nbsp; Order deny,allow<br />
&nbsp; &nbsp; &nbsp; &nbsp; Allow from all<br />
&nbsp; &nbsp; &nbsp; &nbsp; Allow from 127.0.0.0/255.0.0.0 ::1/128<br />
&nbsp; &nbsp; &lt;/Directory&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&lt;/VirtualHost&gt;</code><hr />
</div>At this point, I've tried to set everything back to the original working setup but at this point I am denied access for all options.  I know I have a permission problem but I can't figure it out.<br />
<br />
Can anyone suggest a fix?  Thanks in advance.</div>

]]></content:encoded>
			<category domain="http://www.mp3car.com/vbulletin/linux/">Linux</category>
			<dc:creator>Bugbyte</dc:creator>
			<guid isPermaLink="true">http://www.mp3car.com/vbulletin/linux/137283-apache-server-hell-help.html</guid>
		</item>
		<item>
			<title>RevFE  - Linux style!</title>
			<link>http://www.mp3car.com/vbulletin/linux/136824-revfe-linux-style.html</link>
			<pubDate>Sun, 25 Oct 2009 18:01:51 GMT</pubDate>
			<description>RevFE now officially supports all you linux folks! Well... at least the ones running ubuntu. Attached is a .deb installer for ubuntu 9.04, but it may work for other versions. Unzip and Install it using your favourite Debian installer. The default music directory is ~/.revfe/Music as set in...</description>
			<content:encoded><![CDATA[<div>RevFE now officially supports all you linux folks! Well... at least the ones running ubuntu. Attached is a .deb installer for ubuntu 9.04, but it may work for other versions. Unzip and Install it using your favourite Debian installer. The default music directory is ~/.revfe/Music as set in /usr/share/revfe/settings.xml so put your music in there, or change settings.xml to match where your music is. Once you install it, run RevFE by typing RevFE in any terminal window.<br />
<br />
A word of warning, RevFE is a bit dep-heavy, due it it's using phonon and Qt. You may also need to install gstreamer's good bad and ugly plugins to play mp3's if you do not have an appropriate codec on your system already.<br />
<br />
<br />
Edit 11/10/09:<br />
Removed link, see RevFE forum for latest linux version.<br />
<br />
<br />
Edit 11/1/09:<br />
<br />
Added some 0.43 changes, and fixed minor bugs that linux causes :)<br />
<br />
<br />
Edit 10/28/09:<br />
<br />
Fixed the crashing issue, as well as added the two taglib libraries to the dep list. Also added a feature where settings.xml defaults the music directory to ~/Music and the musicdir variable accepts ~ and replaces it with the users home directory.</div>

]]></content:encoded>
			<category domain="http://www.mp3car.com/vbulletin/linux/">Linux</category>
			<dc:creator>malcom2073</dc:creator>
			<guid isPermaLink="true">http://www.mp3car.com/vbulletin/linux/136824-revfe-linux-style.html</guid>
		</item>
		<item>
			<title>Moblin 2.0 with Intel D945GCLF2D</title>
			<link>http://www.mp3car.com/vbulletin/linux/136527-moblin-2-0-intel-d945gclf2d.html</link>
			<pubDate>Sun, 18 Oct 2009 05:27:36 GMT</pubDate>
			<description>I was following the moblin project a while back but then lost touch with it. Now I see they finally have a LIVE Image available. I am curious if anyone knows if the Moblin image will run on any of Intel Atom mobos such as the Intel D945GCLF2D. That would be a nice O/S for a CarPC because of the GUI...</description>
			<content:encoded><![CDATA[<div>I was following the moblin project a while back but then lost touch with it. Now I see they finally have a LIVE Image available. I am curious if anyone knows if the Moblin image will run on any of Intel Atom mobos such as the Intel D945GCLF2D. That would be a nice O/S for a CarPC because of the GUI design. The only thing is getting handsfree phone stable.<br />
<br />
The site states that the Moblin will not run on non-SSSE3 supported CPU's. The question is if the CPU for D945GCLF2D supports that. Will have to research.<br />
<br />
<a href="http://moblin.org/downloads" target="_blank">http://moblin.org/downloads</a></div>

]]></content:encoded>
			<category domain="http://www.mp3car.com/vbulletin/linux/">Linux</category>
			<dc:creator>hexxamillion</dc:creator>
			<guid isPermaLink="true">http://www.mp3car.com/vbulletin/linux/136527-moblin-2-0-intel-d945gclf2d.html</guid>
		</item>
		<item>
			<title>Virtual gauges for my new Challenger</title>
			<link>http://www.mp3car.com/vbulletin/linux/136348-virtual-gauges-my-new-challenger.html</link>
			<pubDate>Sun, 11 Oct 2009 22:19:28 GMT</pubDate>
			<description><![CDATA[I need some help with a new project.  I want to replace the gauges in my new Dodge Challenger with computer generated ones.  I am planning on using an embedded Linux device connected to Three 6&quot; (or so) OLED screens.  I have been able to find the hardware I need but I can't seem to find the...]]></description>
			<content:encoded><![CDATA[<div>I need some help with a new project.  I want to replace the gauges in my new Dodge Challenger with computer generated ones.  I am planning on using an embedded Linux device connected to Three 6&quot; (or so) OLED screens.  I have been able to find the hardware I need but I can't seem to find the software.  I will need some thing to interpret the information from the car and some thing to let me translate that into a virtual gauge for each of the three screens.   I would also like it if the program would make it easy to design skins (or just the world...  which ever).<br />
<br />
Any help would be appreciated.</div>

]]></content:encoded>
			<category domain="http://www.mp3car.com/vbulletin/linux/">Linux</category>
			<dc:creator>Challenger82</dc:creator>
			<guid isPermaLink="true">http://www.mp3car.com/vbulletin/linux/136348-virtual-gauges-my-new-challenger.html</guid>
		</item>
		<item>
			<title>ncarinfo</title>
			<link>http://www.mp3car.com/vbulletin/linux/136169-ncarinfo.html</link>
			<pubDate>Mon, 05 Oct 2009 01:47:21 GMT</pubDate>
			<description>hey kev000, 
 
do some of your programs like ncarinfo run without linuxice and nghost?  I ask because I have never had good luck w/ linuxice.  I am also partial to the full ubuntu desktop, but I like some of the components you have made. 
 
I am running 9.04 UNR, with XBMC for my media player.  I...</description>
			<content:encoded><![CDATA[<div>hey kev000,<br />
<br />
do some of your programs like ncarinfo run without linuxice and nghost?  I ask because I have never had good luck w/ linuxice.  I am also partial to the full ubuntu desktop, but I like some of the components you have made.<br />
<br />
I am running 9.04 UNR, with XBMC for my media player.  I have been looking for GPS and OBD2 programs.  My assumption is I could add your PPA and key to synaptic and be able to download ncarinfo, but have not been able to figure it out.  <br />
<br />
btw, I dont mean to knock nghost and linuxice.  I commend you for your work, and someday I will jump aboard.  I am just waiting for it to get developed further.  Any help is greatly appreciated.</div>

]]></content:encoded>
			<category domain="http://www.mp3car.com/vbulletin/linux/">Linux</category>
			<dc:creator>unsungboxer</dc:creator>
			<guid isPermaLink="true">http://www.mp3car.com/vbulletin/linux/136169-ncarinfo.html</guid>
		</item>
	</channel>
</rss>
