<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SupremeTechs &#187; Operating Systems</title>
	<atom:link href="http://supremetechs.com/category/operating-systems/feed/" rel="self" type="application/rss+xml" />
	<link>http://supremetechs.com</link>
	<description>Anything and everything techy</description>
	<lastBuildDate>Mon, 07 May 2012 11:47:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>New Session Cookie Created on Every Page Refresh in CodeIgniter</title>
		<link>http://supremetechs.com/2012/05/07/session-cookie-created-page-refresh-codeigniter/</link>
		<comments>http://supremetechs.com/2012/05/07/session-cookie-created-page-refresh-codeigniter/#comments</comments>
		<pubDate>Mon, 07 May 2012 11:47:21 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux Stuff]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[codeigniter new session on page refresh]]></category>
		<category><![CDATA[codeigniter page refresh creates new session]]></category>
		<category><![CDATA[Codeigniter session]]></category>

		<guid isPermaLink="false">http://supremetechs.com/?p=765</guid>
		<description><![CDATA[CodeIgniter's way of handling session data is slick, and I use it a lot. However on my current project, I went overboard on my configuration changes and accidentally caused a problem that had me scratching my head for a few minutes. I noticed that session data wasn't persisting and that my sessions table (I opted [...]<p><a href="http://supremetechs.com/2012/05/07/session-cookie-created-page-refresh-codeigniter/">New Session Cookie Created on Every Page Refresh in CodeIgniter</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>CodeIgniter's way of handling session data is slick, and I use it a lot. However on my current project, I went overboard on my configuration changes and accidentally caused a problem that had me scratching my head for a few minutes. I noticed that session data wasn't persisting and that my sessions table (I opted for database storage of my session data) was filling up with new rows of session data every time I reloaded a page in my project. This prevented my login functionality from working. </p>
<p>The solution to my problem was a configuration detail. I had set $config['cookie_domain'] to the domain name I will eventually use for the site. CodeIgniter didn't like this because my development environment is not on that domain. So it was creating new cookie/session data every time I loaded a page. The problem made sense after I thought about it for a bit. I remembered that I had set a few extra settings in the config, and sure enough, that was the winner.</p>
<p>The problem can happen when other settings are incorrect as well. So pay close attention to those settings, and look there first if you notice that sessions are being created on every page load.</p>
<p><a href="http://supremetechs.com/2012/05/07/session-cookie-created-page-refresh-codeigniter/">New Session Cookie Created on Every Page Refresh in CodeIgniter</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://supremetechs.com/2012/05/07/session-cookie-created-page-refresh-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netflix Error Code n8156-6013 Fix</title>
		<link>http://supremetechs.com/2012/05/07/netflix-error-code-n81566013-fix/</link>
		<comments>http://supremetechs.com/2012/05/07/netflix-error-code-n81566013-fix/#comments</comments>
		<pubDate>Mon, 07 May 2012 07:09:14 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux Stuff]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[netflix date error]]></category>
		<category><![CDATA[netflix error]]></category>
		<category><![CDATA[netflix n8156-6013]]></category>

		<guid isPermaLink="false">http://supremetechs.com/?p=762</guid>
		<description><![CDATA[I ran into this issue while changing my VM's configuration. The VM is a Windows XP machine that I use primarily to watch Netflix on Linux, since Netflix doesn't support Linux. After I made a change to the VM configuration, I could no longer view Netflix videos. The error code was N8156-6013 and the error [...]<p><a href="http://supremetechs.com/2012/05/07/netflix-error-code-n81566013-fix/">Netflix Error Code n8156-6013 Fix</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I ran into this issue while changing my VM's configuration. The VM is a <a href="http://supremetechs.com/category/windows/" >Windows</a> XP machine that I use primarily to watch Netflix on <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a>, since Netflix doesn't support <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a>. After I made a change to the VM configuration, I could no longer view Netflix videos. The error code was N8156-6013 and the error message said that my system date was not valid, even though it was completely correct.</p>
<p>Examining the issue, I found that some solutions point to a file in the C:\ProgramData folder. This folder doesn't exist in my XP VM. XP keeps the file in:</p>
<pre>c:\Documents and Settings\All Users\Application Data\Microsoft\PlayReady\</pre>
<p>The file is mspr.hds. All you have to do is rename that file. If you get an error while trying to rename it, close out any browser that has Netflix running on it. After you have successfully renamed the file, you should be able to watch your Netflix again.</p>
<p><a href="http://supremetechs.com/2012/05/07/netflix-error-code-n81566013-fix/">Netflix Error Code n8156-6013 Fix</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://supremetechs.com/2012/05/07/netflix-error-code-n81566013-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gnome 3 + Netbeans Revisited</title>
		<link>http://supremetechs.com/2012/04/16/gnome-3-netbeans-revisited/</link>
		<comments>http://supremetechs.com/2012/04/16/gnome-3-netbeans-revisited/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 08:46:40 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux Stuff]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[netbean menus in cinnamon]]></category>
		<category><![CDATA[netbean menus in gnome 3]]></category>
		<category><![CDATA[netbean menus in linux]]></category>

		<guid isPermaLink="false">http://supremetechs.com/?p=754</guid>
		<description><![CDATA[I wrote at some point in the past about a small bug in Gnome 3 where Netbeans menus behaved strangely. My solution then was to switch to Gnome classic. Well I started using Cinnamon recently and found that it has the same issue. So I wanted to find a better solution. I came across a [...]<p><a href="http://supremetechs.com/2012/04/16/gnome-3-netbeans-revisited/">Gnome 3 + Netbeans Revisited</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I wrote at some point in the past about a small bug in Gnome 3 where Netbeans menus behaved strangely. My solution then was to switch to Gnome classic. Well I started using Cinnamon recently and found that it has the same issue. So I wanted to find a better solution.</p>
<p>I came across a strange way to fix the issue. I tried it out, and it worked beautifully, even if it is weird. </p>
<p>Unmaximize Netbeans so that it is in a Window on the desktop. Grab the top left corner of the Window and move it all the way to the top left side of the screen. Now, maximize it. The menus work again. </p>
<p>It's weird, but I'm glad it works. I spend most of my time in Netbeans, and I'm really digging Cinnamon.</p>
<p><a href="http://supremetechs.com/2012/04/16/gnome-3-netbeans-revisited/">Gnome 3 + Netbeans Revisited</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://supremetechs.com/2012/04/16/gnome-3-netbeans-revisited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slow internet in LinuxMint</title>
		<link>http://supremetechs.com/2012/04/13/slow-internet-linuxmint/</link>
		<comments>http://supremetechs.com/2012/04/13/slow-internet-linuxmint/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 13:17:25 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux Stuff]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[slow internet on linuxmint]]></category>
		<category><![CDATA[slow internet on ubuntu]]></category>
		<category><![CDATA[slow internet rtl8169]]></category>

		<guid isPermaLink="false">http://supremetechs.com/?p=750</guid>
		<description><![CDATA[I installed LinuxMint earlier today because I found that I really liked the Cinnamon desktop environment on my laptop. I promised that I would post how well it works on my desktop. Well it mostly works fine. There's still a slight hiccup that I'm trying to work through, where the desktop environment just seems to [...]<p><a href="http://supremetechs.com/2012/04/13/slow-internet-linuxmint/">Slow internet in LinuxMint</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I installed LinuxMint earlier today because I found that I really liked the Cinnamon desktop environment on my laptop. I promised that I would post how well it works on my desktop.</p>
<p>Well it mostly works fine. There's still a slight hiccup that I'm trying to work through, where the desktop environment just seems to die. I have this same problem on Gnome 3 and Unity though, so I think it has something to do with the ATI drivers. I wish I had a good nVidia card to go in this thing.</p>
<p>There's one bug that I had to post about. I was getting terrible internet speeds from my LinuxMint install. My top speed was around 190KBytes/sec. Some people may still regard this as fast, but I'm on a 30Mbit/sec connection. I should be seeing speeds around ten times that. </p>
<p>It was across the board too. I thought it was a bad mirror at first because I first noticed it while trying to update the system and install new software from the repos. I soon found that the problem was also happening from every web site and speedtests showed the same results.</p>
<p>I started out by searching for the issue and was coming up with a lot of duds. It was the standard first level support answers like "unplug your router and modem". No need, I know that's not the issue. After some intense searching, I finally found the answer. It was a problem with my network card drivers in the latest versions of Ubuntu and LinuxMint. </p>
<p>My system was showing a RTL8111/RTL8169 network device. The 8169 is the part to look for. This driver is built into the latest kernel and it has problems. I found that the solution was to build the r8168 drivers (note that's 8168 not 8169) from source. </p>
<p>A full walk-through can be found here: <a href="https://unixblogger.wordpress.com/2011/10/18/the-pain-of-an-realtek-rtl8111rtl8168-ethernet-card/" title="fix rtl8111/rtl8169 driver issue" target="_blank">https://unixblogger.wordpress.com/2011/10/18/the-pain-of-an-realtek-rtl8111rtl8168-ethernet-card/</a></p>
<p>Follow those steps and you'll not have this issue again. Much thanks to the author!</p>
<p><a href="http://supremetechs.com/2012/04/13/slow-internet-linuxmint/">Slow internet in LinuxMint</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://supremetechs.com/2012/04/13/slow-internet-linuxmint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cinnamon &#8211; Another reason to love Mint</title>
		<link>http://supremetechs.com/2012/04/13/cinnamon-reason-love-mint/</link>
		<comments>http://supremetechs.com/2012/04/13/cinnamon-reason-love-mint/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 10:06:09 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux Stuff]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[cinnamon desktop environment]]></category>
		<category><![CDATA[cinnamon on linux mint]]></category>
		<category><![CDATA[linux mint desktop]]></category>

		<guid isPermaLink="false">http://supremetechs.com/?p=747</guid>
		<description><![CDATA[There's plenty of Debian-based distributions out there. So many, in fact, that many of them have derivatives of their own. Ubuntu has been a leading distribution for many years, and it owes much of its fame from its Debian roots. Enter many Ubuntu-based distributions which add to the great works done on Ubuntu. LinuxMint is [...]<p><a href="http://supremetechs.com/2012/04/13/cinnamon-reason-love-mint/">Cinnamon &#8211; Another reason to love Mint</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>There's plenty of Debian-based distributions out there. So many, in fact, that many of them have derivatives of their own. Ubuntu has been a leading distribution for many years, and it owes much of its fame from its Debian roots. Enter many Ubuntu-based distributions which add to the great works done on Ubuntu.</p>
<p>LinuxMint is probably my favorite of the derivatives. It started out as a more feature-rich, multi-media version of Ubuntu. It also added its own (better looking) theme. I've always disliked the default themes in Ubuntu, whether it be orange, brown, or purple, although I give them point for originality. LinuxMint brought a minty green flavor to the <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> desktop.</p>
<p>I've recently posted that I can't stand Unity or Gnome 3, and I was searching for an alternative in a more modern distribution. I could have went with Debian Stable or CentOS 6, which still use Gnome 2, but I wanted a distribution that uses more up-to-date versions of software like Blender, LibreOffice, Firefox, and such. </p>
<p>The problem with that scenario is that there aren't many "modern" distros which use something other than Gnome 3 or Unity as their default desktop environment. I tried to use XFCE4, but it just wasn't for me. I can use it in spurts, but I wouldn't want to use it permanently. I wanted something that looked fresh. </p>
<p>For a few days, I tried to adapt to KDE4. You know things are rough in my Linuxland if I'm trying to adapt to KDE. I was getting by and actually liking the experience until I tried to do a little Java game development. For some reason, anytime I switched my Java app to fullscreen and then back to a window, it would disable my second display. This peeved me off enough that I just installed <a href="http://supremetechs.com/category/windows/" >Windows</a> 7. I've been using it for the past month. </p>
<p>Today, I was messing around on my laptop, which happens to have LinuxMint 12 installed on it, and I remembered reading something about a Gnome 2 fork that the LinuxMint crew was working on called Cinnamon. I thought, "what the hell, I'll give it a shot". </p>
<p>It was impressive. It was actually more than impressive. It was exactly where I thought Gnome should have went. It's like a better looking version of Gnome 2, with all the same Gnome 2 features. It felt like home, which is coincidentally like the subtitle of the Cinnamon homepage:<br />
"Love your <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a>, Feel at Home, Get things Done!"<br />
This is a great slogan, because it really goes right along with how I felt about Cinnamon. I loved using <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> on the desktop again. I felt at home. I bet I'll be able to get things done in it as well. </p>
<p>I rarely use that laptop, so next I'll be installing LinuxMint on my main desktop again. I'm going to cross my fingers and hope that their isn't some annoying bug that makes me wish I'd stayed on <a href="http://supremetechs.com/category/windows/" >Windows</a> 7. </p>
<p>It's pretty sad when a <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> advocate, that loves working in the command line, doesn't want to use <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> because of the sad state of desktop environments. I wish the main developers of this type of software would lose the "unify everything" mentality and make the desktop just work. </p>
<p>Hopefully, I'll be able to give Cinnamon a thumbs up on my main desktop and just stay in <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> heaven. I'll post my results later.</p>
<p><a href="http://supremetechs.com/2012/04/13/cinnamon-reason-love-mint/">Cinnamon &#8211; Another reason to love Mint</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://supremetechs.com/2012/04/13/cinnamon-reason-love-mint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jMonkeyEngine &#8220;An instance of the program cannot access specified user directory&#8221;</title>
		<link>http://supremetechs.com/2012/03/26/jmonkeyengine-instance-program-access-user-directory/</link>
		<comments>http://supremetechs.com/2012/03/26/jmonkeyengine-instance-program-access-user-directory/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 07:20:17 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux Stuff]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[jmonkey engine linux]]></category>
		<category><![CDATA[jMonkey Engine won't start]]></category>
		<category><![CDATA[jmonkeyengine cannot access specified user direcgtory]]></category>

		<guid isPermaLink="false">http://supremetechs.com/?p=738</guid>
		<description><![CDATA[This is a simple issue and most Linux users can probably figure it out rather quickly. I don't mean to offend anyone, but the error message is pretty straight-forward when it comes to the problem. However, I'll explain it to those who run into it and want to know how to fix it. Then again, [...]<p><a href="http://supremetechs.com/2012/03/26/jmonkeyengine-instance-program-access-user-directory/">jMonkeyEngine &#8220;An instance of the program cannot access specified user directory&#8221;</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>This is a simple issue and most <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> users can probably figure it out rather quickly. I don't mean to offend anyone, but the error message is pretty straight-forward when it comes to the problem. However, I'll explain it to those who run into it and want to know how to fix it. Then again, I may be the only person who runs into this problem. Either way, I'm posting it for anyone who may need it.</p>
<p>The problem stems with the installation of jMonkeyEngine. The installer is a .sh file which which can be executed like so:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sh</span> jME3_SDK_Beta-Linux.sh</pre></td></tr></table></div>

<p>However, if you are like me, you may have ran it with sudo like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">sh</span> JME3_SDK_Beta-Linux.sh</pre></td></tr></table></div>

<p>The good thing about using sudo is that the program will be installed for all users on the machine. I've not ran it without sudo to see if it will install for only the user running the installer, but I'm assuming that it will. </p>
<p>After the installation occurs, it asks you if you want to start jMonkeyEngine. If you answer yes, it will start it as root, and it will write it's hidden users directory in your home directory. The home directory will have root:root as the owner because the program was first started by the root user. </p>
<p>So when you go back and run the program again, it will not have access to the required folder. The solution is to change the owner of the folder. This is accomplished simply by typing this in a terminal while in your home folder (the terminal should open in your home folder automatically, but just to make sure we'll change directory into it first). In the following example the word "username" should be replace with your actual username.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> username:username .jmonkeyplatform</pre></td></tr></table></div>

<p>You should now be able to open jMonkeyEngine. The -R, for those of you interested, means "recursive", which will change the owner of all files and folder inside of .jmonkeyplatform, not just the folder itself.</p>
<p><a href="http://supremetechs.com/2012/03/26/jmonkeyengine-instance-program-access-user-directory/">jMonkeyEngine &#8220;An instance of the program cannot access specified user directory&#8221;</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://supremetechs.com/2012/03/26/jmonkeyengine-instance-program-access-user-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Wrong Path for Desktop GNU/Linux</title>
		<link>http://supremetechs.com/2012/03/24/wrong-path-desktop-gnulinux/</link>
		<comments>http://supremetechs.com/2012/03/24/wrong-path-desktop-gnulinux/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 23:13:43 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux Stuff]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[gnome 3 sucks]]></category>
		<category><![CDATA[I'm switching to kde]]></category>
		<category><![CDATA[switching to kde because of gnome 3 and unity]]></category>
		<category><![CDATA[unity sucks]]></category>

		<guid isPermaLink="false">http://supremetechs.com/?p=736</guid>
		<description><![CDATA[I've tried to use Unity. I've tried to use Gnome 3. While many others have had success adapting to the these new desktop environments, I find them buggy and frankly...terrible. I know there have been many debates about it, but I want to give my two cents about it as well because it really hits [...]<p><a href="http://supremetechs.com/2012/03/24/wrong-path-desktop-gnulinux/">The Wrong Path for Desktop GNU/Linux</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I've tried to use Unity. I've tried to use Gnome 3. While many others have had success adapting to the these new desktop environments, I find them buggy and frankly...terrible. I know there have been many debates about it, but I want to give my two cents about it as well because it really hits me hard as a long-time <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> user.</p>
<p>Before KDE version 4, I used KDE most of the time. I rarely used another desktop environment. I was used to it. So believe me when I say I'm not afraid of change when it comes to <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a>. When KDE 4 came out, it was different, but it wasn't so different that I couldn't have kept on using it. What made me switch to Gnome was the fact that KDE 4 was still in beta and very buggy. I couldn't use it because of the bugs. So, I switched to Gnome and grumbled about how change for the sake of change isn't that great. </p>
<p>KDE could have waited until it was ready for production before releasing it. Many distributions continued to use KDE 3 for a long time, but KDE 4 scared me away from it. I switched to Gnome and was happy with a desktop that worked well. I wasn't alone. Many people switched to Gnome. I became a staunch advocate of Gnome and tried to steer every new <a href="http://supremetechs.com/category/windows/" >Windows</a> convert away from KDE because I didn't want them to have a bad first experience with <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a>.</p>
<p>Enter stage left Gnome 3 and Unity. These two flaky pieces of garbage have been pushed on every major modern distribution. I say modern to refer to the distributions that use more bleeding edge software packages. Debian Stable is still using Gnome 2, but Debian Testing (which will become Debian Stable someday) uses Gnome 3. If you want to use Debian Stable, you'll be stuck with older versions of many software packages. If you want to use modern packages, such as VLC 2.0 (which has minimal support for bluray playback) you'll need to go with a more modern distro. </p>
<p>The problem with going with a more modern distro is that most use Gnome 3 or Unity, and they don't really have a choice. Gnome 2 and GTK2 will no longer be supported or developed. </p>
<p>The philosophy, as I've heard it, from the developers of Unity and Gnome 3 is that users don't migrate to <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> because of all the software choices. Too many desktop environments create confusion for new users. Should they use XFCE4, KDE, Gnome, FluxBox, or something else? The claim is that this massive amount of choice scares away new users.</p>
<p>This is a terrible philosophy. The competition is what helps drive free software. People love having a choice, especially the type of users that actually USE <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >LINUX</a>. The main reason more people haven't adopted <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> is because MOST PEOPLE DON'T EVEN KNOW THEY ARE RUNNING <a href="http://supremetechs.com/category/windows/" >WINDOWS</a>. They just know they have a computer and they use what it came with. They don't know which version of <a href="http://supremetechs.com/category/windows/" >Windows</a> they are running, and they don't care, as long as they can get on Facebook and talk about how bored they are. People don't flock to <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> because Manufacturers don't put <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> on their new computers. </p>
<p>Manufacturers have deals with software vendors which lets them cut the cost of their computers. They get paid by software vendors to install their "crapware" onto the new computers. Computer manufacturers actually get paid to put all that junk on your new computer. If they start installing <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> on their computers, they will have to raise the price of their new systems, because they will no longer be getting the "crapware" income. </p>
<p>An example of how <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> on new devices actually increases market share can be found in Android. There are millions of people using Android on their phone right now oblivious to the fact that it's <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a>. They have no idea, and they don't care. There are many internet browsers they can install on their phone, but most will never do so. It already comes with one. There are many software choices out there on Android. That doesn't scare away Android users. They install something if they want it. It's as simple as that. </p>
<p>This whole notion that unifying user interfaces will bring people to <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> is garbage. More and more people use <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> every day. In time, manufacturers may install <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> on more of their computers. Only a few do it today. As that happens, however, the number of <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> desktop users will grow exponentially. </p>
<p>While we are waiting on that to happen, though, why not listen to the users who are actually USING the software right now. Most HATE unity and Gnome 3. </p>
<p>And now that KDE 4 is pretty solid, most, like myself, will be moving to it. I installed it yesterday, fixed a small distortion in the audio, removed the blue shadow from the active <a href="http://supremetechs.com/category/windows/" >windows</a>, and will not be looking back. It's working flawlessly for me. I'm very happy with what it has become, and I'm glad it's available for me at this time when Gnome developers apparently have their head stuck where the sun doesn't shine.</p>
<p>I don't mean to badmouth the developers because I know they have a tough job and they do it all pretty much for nothing. Perhaps the problem is with the project management. I'm not sure where the problem lies. Did the Gnome project get taken over by Microsoft or <a href="http://supremetechs.com/category/apple/" >Apple</a>? I have this curious feeling that it is being led by a bunch of suits instead of developers.</p>
<p><a href="http://supremetechs.com/2012/03/24/wrong-path-desktop-gnulinux/">The Wrong Path for Desktop GNU/Linux</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://supremetechs.com/2012/03/24/wrong-path-desktop-gnulinux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to get rid of the annoying blue shadow in KDE 4</title>
		<link>http://supremetechs.com/2012/03/24/rid-annoying-blue-shadow-kde-4/</link>
		<comments>http://supremetechs.com/2012/03/24/rid-annoying-blue-shadow-kde-4/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 08:43:23 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux Stuff]]></category>
		<category><![CDATA[change blue shadow in kde]]></category>
		<category><![CDATA[kde blue shadow]]></category>

		<guid isPermaLink="false">http://supremetechs.com/?p=734</guid>
		<description><![CDATA[I vowed to switch to KDE after trying for a few months to find an alternative to Gnome 2, which is going the way of the Dodo. I ran into two problems initially. The system sounds were distorting and I hated the annoying blue shadow on active windows. The fix for the first problem came [...]<p><a href="http://supremetechs.com/2012/03/24/rid-annoying-blue-shadow-kde-4/">How to get rid of the annoying blue shadow in KDE 4</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I vowed to switch to KDE after trying for a few months to find an alternative to Gnome 2, which is going the way of the Dodo. I ran into two problems initially. The system sounds were distorting and I hated the annoying blue shadow on active <a href="http://supremetechs.com/category/windows/" >windows</a>. </p>
<p>The fix for the first problem came when I installed the phonon gstreamer backend, though I'm not sure this was exactly the fix as I never switched to that backend in the settings. </p>
<p>To fix the annoying blue shadow, go to System Settings ->  Workspace appearance -> Window Decorations. Click on the Oxygen theme and then click "Configure Decoration". Click the Shadows tab and change the colors under "Active Window Glow". I made my inner color a dark grey and the outer color black. I like this a lot better than the bright blue.</p>
<p><a href="http://supremetechs.com/2012/03/24/rid-annoying-blue-shadow-kde-4/">How to get rid of the annoying blue shadow in KDE 4</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://supremetechs.com/2012/03/24/rid-annoying-blue-shadow-kde-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screw you Desktop Environments, I&#8217;m installing KDE</title>
		<link>http://supremetechs.com/2012/03/24/screw-desktop-environments-installing-kde/</link>
		<comments>http://supremetechs.com/2012/03/24/screw-desktop-environments-installing-kde/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 06:28:41 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux Stuff]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[gnome 3 sucks]]></category>
		<category><![CDATA[switching to kde]]></category>
		<category><![CDATA[unity sucks]]></category>

		<guid isPermaLink="false">http://supremetechs.com/?p=731</guid>
		<description><![CDATA[Many years ago I used KDE as my main Linux desktop environment. I switched to gnome around the same time that I switched to Debian and later Ubuntu. I liked GTK themes. I liked Gnome's way of keeping the visual simple and found that it was much more solid than KDE, especially KDE version 4+. [...]<p><a href="http://supremetechs.com/2012/03/24/screw-desktop-environments-installing-kde/">Screw you Desktop Environments, I&#8217;m installing KDE</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Many years ago I used KDE as my main <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> desktop environment. I switched to gnome around the same time that I switched to Debian and later Ubuntu. I liked GTK themes. I liked Gnome's way of keeping the visual simple and found that it was much more solid than KDE, especially KDE version 4+. I've lived in a Gnome utopia for quite some time, and I loved it. </p>
<p>Now, we have Gnome 3 and Unity. XFCE4 is a good alternative but it just isn't Gnome 2. Rather than battle it any longer and continue my search for a Gnome 2 alternative. I'm switching back to KDE. I don't care if I hate it. At least they aren't trying this whole unification approach that is killing the desktop in <a href="http://supremetechs.com/category/operating-systems/linux-stuff/" >Linux</a> on many distributions. </p>
<p>So far, LinuxMint has been the only distribution I've found that had a decent Gnome 3 setup by default, and it has some freakish glitch with my ATI video card that appears to make it reset itself from time to time. It just acts really flaky. </p>
<p>So, I'm installing the kde-full package in Debian Wheezy right now and crossing my fingers for a better experience.</p>
<p><a href="http://supremetechs.com/2012/03/24/screw-desktop-environments-installing-kde/">Screw you Desktop Environments, I&#8217;m installing KDE</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://supremetechs.com/2012/03/24/screw-desktop-environments-installing-kde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mount Samba/Windows/CIFS Share with User Read/Write Permissions</title>
		<link>http://supremetechs.com/2012/03/24/mount-sambawindowscifs-share-user-readwrite-permissions/</link>
		<comments>http://supremetechs.com/2012/03/24/mount-sambawindowscifs-share-user-readwrite-permissions/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 05:55:23 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[Linux Stuff]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[cifs share]]></category>
		<category><![CDATA[fstab mount cifs]]></category>
		<category><![CDATA[fstab mount windows share]]></category>
		<category><![CDATA[smb share mount fstab]]></category>
		<category><![CDATA[windows share mount]]></category>

		<guid isPermaLink="false">http://supremetechs.com/?p=727</guid>
		<description><![CDATA[Mounting a Windows/SMB/CIFS share can be accomplished in many different ways. The way that I do it works best for me, and I'm presenting it here for anyone who wants to take advantage of the info. I have a NAS device with Windows shares on IP 192.168.1.90 on my LAN. One of the shares is [...]<p><a href="http://supremetechs.com/2012/03/24/mount-sambawindowscifs-share-user-readwrite-permissions/">Mount Samba/Windows/CIFS Share with User Read/Write Permissions</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Mounting a <a href="http://supremetechs.com/category/windows/" >Windows</a>/SMB/CIFS share can be accomplished in many different ways. The way that I do it works best for me, and I'm presenting it here for anyone who wants to take advantage of the info.</p>
<p>I have a NAS device with <a href="http://supremetechs.com/category/windows/" >Windows</a> shares on IP 192.168.1.90 on my LAN. One of the shares is called "Docs" which I use for important documents. First I create a directory to mount the share to on my local machine. I put this in my /media directory.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span>Docs</pre></td></tr></table></div>

<p>Note that I'm using Debian Wheezy as my distro, but all of this should work in any distro.</p>
<p>Next I add a line to my /etc/fstab file. It can go at the bottom of the file. So, open /etc/fstab in your favorite editor. I'm using vim.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">vim</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>fstab</pre></td></tr></table></div>

<p>The line I add for the share is:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">\\192.168.1.90\Docs   <span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span>Docs cifs <span style="color: #007800;">username</span>=myuser,<span style="color: #007800;">password</span>=mypassword,<span style="color: #007800;">uid</span>=myuser,<span style="color: #007800;">gid</span>=<span style="color: #c20cb9; font-weight: bold;">users</span>,auto <span style="color: #000000;">0</span> <span style="color: #000000;">0</span></pre></td></tr></table></div>

<p>I set "myuser" to my actual local username. The reason I'm setting the uid in this line is because I want to specify that my user will be the owner of the mounted share (giving me read and write), and I'm setting the gid to users because I want all other users on the local machine to have read access to the mount. </p>
<p>After saving the file, I can sudo mount /media/Docs and I'll have my mount available for my user. When the system reboots, the mount will automatically occur. So my user will have access to the mount directly after boot.</p>
<p>An optional, more secure way to do this is to put your username and password in a file somewhere (perhaps your home directory) and replace the "username=myuser,password=mypassword" part of the mount line with "credentials=/path/to/file". This will help keep your passwords safe. Also note that these credentials aren't your local user credentials necessarily. They can be the same, if you set your local user up with the same creds as the share, but these credentials should be the user information that gets you access to the share.</p>
<p><a href="http://supremetechs.com/2012/03/24/mount-sambawindowscifs-share-user-readwrite-permissions/">Mount Samba/Windows/CIFS Share with User Read/Write Permissions</a> is a post from: <a href="http://supremetechs.com">SupremeTechs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://supremetechs.com/2012/03/24/mount-sambawindowscifs-share-user-readwrite-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

