<?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>Yet Another Linux Blog &#187; Tips</title>
	<atom:link href="http://linux-blog.org/tag/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://linux-blog.org</link>
	<description>Open Source, Open Blog</description>
	<lastBuildDate>Fri, 19 Feb 2010 18:44:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Convert PNG to GIF via Command Line</title>
		<link>http://linux-blog.org/convert-png-to-gif-via-command-line/</link>
		<comments>http://linux-blog.org/convert-png-to-gif-via-command-line/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 18:24:03 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=1260</guid>
		<description><![CDATA[I installed a bare bones Arch Linux system today and took a screenshot.  With no graphics utilities installed, I needed a way to convert a PNG to a GIF for a Simple Machines forum template thumbnail.  I figured I&#8217;d use a command line utility to help me and ImageMagick is installed by default on most [...]


Related posts:<ol><li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
<li><a href='http://linux-blog.org/adding-color-to-bash-list-command-part-ii/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command Part II'>Adding Color to Bash List Command Part II</a> <small>I previously blogged about how to add color to the...</small></li>
<li><a href='http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/' rel='bookmark' title='Permanent Link: Laptop Multimedia Keys and PCLinuxOS 2009'>Laptop Multimedia Keys and PCLinuxOS 2009</a> <small>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I installed a bare bones Arch Linux system today and took a screenshot.  With no graphics utilities installed, I needed a way to convert a PNG to a GIF for a Simple Machines forum template thumbnail.  I figured I&#8217;d use a command line utility to help me and ImageMagick is installed by default on most distributions.  A quick read through the ImageMagick manpage and I found the <em>convert</em> command and thought I&#8217;d share it with everyone.  Use convert in the following fashion:  <strong>convert [input-options] input-file [output-options] output-file</strong></p>
<pre class="brush: plain;">convert SMFPress.png -channel Alpha -threshold 80% -resize 120x120 thumbnail.gif</pre>
<p>This did a quick, same-size conversion with little loss for me to display the thumbnail online.  For more information on the options I used and other options that I didn&#8217;t use, take a peek at the<a title="ImageMagick Help Convert" href="http://www.imagemagick.org/script/convert.php" target="_blank"> ImageMagick Online Help Page for convert.</a></p>
<p><a href="http://linux-blog.org/convert-png-to-gif-via-command-line/" rel="bookmark">Convert PNG to GIF via Command Line</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on November 6, 2009.</p>


<p>Related posts:<ol><li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
<li><a href='http://linux-blog.org/adding-color-to-bash-list-command-part-ii/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command Part II'>Adding Color to Bash List Command Part II</a> <small>I previously blogged about how to add color to the...</small></li>
<li><a href='http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/' rel='bookmark' title='Permanent Link: Laptop Multimedia Keys and PCLinuxOS 2009'>Laptop Multimedia Keys and PCLinuxOS 2009</a> <small>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/convert-png-to-gif-via-command-line/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Adding Color to Bash List Command Part II</title>
		<link>http://linux-blog.org/adding-color-to-bash-list-command-part-ii/</link>
		<comments>http://linux-blog.org/adding-color-to-bash-list-command-part-ii/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 18:25:16 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[prompt]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=1209</guid>
		<description><![CDATA[I previously blogged about how to add color to the &#8216;ls&#8217; command utilizing an config file and alias.  I then stumbled across a nugget of wisdom from a Foresight Linux user on the developers mailing list who gave a handy command that remedies some problems with missing color in a terminal.
On some distributions, the system-wide [...]


Related posts:<ol><li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
<li><a href='http://linux-blog.org/convert-png-to-gif-via-command-line/' rel='bookmark' title='Permanent Link: Convert PNG to GIF via Command Line'>Convert PNG to GIF via Command Line</a> <small>I installed a bare bones Arch Linux system today and...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I <a href="http://linux-blog.org/adding-color-to-bash-list-command/" target="_blank">previously blogged about how to add color to the &#8216;ls&#8217; command</a> utilizing an config file and alias.  I then stumbled across a nugget of wisdom from a Foresight Linux user on the developers mailing list who gave a handy command that remedies some problems with missing color in a terminal.</p>
<p>On some distributions, the system-wide <em>/etc/DIR_COLORS</em>* files are removed or not present.  This results in no colors being given inside of a terminal when looking for color directories and filenames.  If you find yourself in this boat, try the following command to re-populate this setting:</p>
<pre class="brush: bash;">devnet-&gt; cd ~/
devnet-&gt; dircolors -p &gt;.dircolors
</pre>
<p>This should create a default profile for colors for your session if it hasn&#8217;t been done or was accidentally removed.  For more information on the dircolors command try &#8216;man dircolors&#8217;.  Please also note that <em>dircolors</em> command uses the environmental variable LS_COLORS to set your session.</p>
<p>For more information on LS_COLORS and how it pertains to the terminal/shell/cli/prompt, there are a few blog posts that do an excellent job explaining <a href="http://twistedcode.blogspot.com/2008/04/lscolors-explained.html" target="_blank">here</a>, <a href="http://linux-sxs.org/housekeeping/lscolors.html" target="_blank">here</a> and <a href="http://www.bigsoft.co.uk/blog/index.php/2008/04/11/configuring-ls_colors" target="_blank">here</a>.</p>
<p><a href="http://linux-blog.org/adding-color-to-bash-list-command-part-ii/" rel="bookmark">Adding Color to Bash List Command Part II</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on September 8, 2009.</p>


<p>Related posts:<ol><li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
<li><a href='http://linux-blog.org/convert-png-to-gif-via-command-line/' rel='bookmark' title='Permanent Link: Convert PNG to GIF via Command Line'>Convert PNG to GIF via Command Line</a> <small>I installed a bare bones Arch Linux system today and...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/adding-color-to-bash-list-command-part-ii/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Adding Color to Bash List Command</title>
		<link>http://linux-blog.org/adding-color-to-bash-list-command/</link>
		<comments>http://linux-blog.org/adding-color-to-bash-list-command/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 21:00:06 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[prompt]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=1067</guid>
		<description><![CDATA[One of the things I love is being able to enter into a directory via terminal, list the contents, and quickly see which ones are executable or not and which ones are directories or are not directories IN COLOR (not everyone is perfect right?).  This is specifically handy as I move through working with Slackware [...]


Related posts:<ol><li><a href='http://linux-blog.org/adding-color-to-bash-list-command-part-ii/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command Part II'>Adding Color to Bash List Command Part II</a> <small>I previously blogged about how to add color to the...</small></li>
<li><a href='http://linux-blog.org/convert-png-to-gif-via-command-line/' rel='bookmark' title='Permanent Link: Convert PNG to GIF via Command Line'>Convert PNG to GIF via Command Line</a> <small>I installed a bare bones Arch Linux system today and...</small></li>
<li><a href='http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/' rel='bookmark' title='Permanent Link: Laptop Multimedia Keys and PCLinuxOS 2009'>Laptop Multimedia Keys and PCLinuxOS 2009</a> <small>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>One of the things I love is being able to enter into a directory via terminal, list the contents, and quickly see which ones are executable or not and which ones are directories or are not directories IN COLOR (not everyone is perfect right?).  This is specifically handy as I move through working with <a href="http://slackware.com">Slackware</a> based distributions like the one I&#8217;m using now, <a href="http://zenwalk.org">Zenwalk</a> Linux 6 and the <em>/etc/rc.d/</em> directory.  Most of the Red Hat based distributions out there that I&#8217;ve used have this set automatically&#8230;so I&#8217;m used to it.  When I opened up a terminal in Zenwalk I found no color. A quick investigation of <em>~/.bashrc</em> showed me that there are aliases set to display color&#8230;instead of ls I&#8217;d just use the letter L; 2 l&#8217;s for another option, 3 for another.  It&#8217;s interesting, but not normally how I do business.  See bashrc below:</p>
<pre class="brush: bash; highlight: [2,3,4];">
devnet[~]$ cat ~/.bashrc
alias lll=&quot;ls -al --color&quot;
alias ll=&quot;ls -l --color&quot;
alias l='ls --color'&lt;br /&gt;alias search='find . -name'
alias aterm=&quot;aterm -fg white -tr&quot;
alias version='cat /etc/zenwalk-version'
alias dh='df -h'&lt;br /&gt;export PS1='\u[\W]\$ '
export PAGER=&quot;most&quot;&lt;br /&gt;devnet[~]$
</pre>
<p>I don&#8217;t use those aliases much&#8230;others of you might do the &#8216;ll&#8217; or &#8216;lll&#8217; but it&#8217;s just not part of my routine.  So, I added in just after line 4 in the code above:</p>
<pre class="brush: bash;">
alias ls='ls --color'
</pre>
<p>You can do this a few different ways&#8230;with any command line editor like emacs, vi, or nano/pico.  It&#8217;s really up to you.  The easiest way for new users is to use a text editor:</p>
<pre class="brush: bash;">
devnet[~]$ mousepad ~/.bashrc
</pre>
<p>This will launch the mousepad text editor in XFCE.  If you&#8217;re in Gnome, try gedit.  If KDE, give kwrite a try.  You should see something like the following window pop up for editing:</p>
<p style="text-align: left;"><a href="http://linux-blog.org/wp-content/uploads/2009/06/bashrc.png"><img class="aligncenter size-full wp-image-1084" style="rel=&quot;lightbox&quot;" title="bashrc" src="http://linux-blog.org/wp-content/uploads/2009/06/bashrc.png" alt="bashrc" width="188" height="131" /></a>You should see in the picture above, I&#8217;ve added in the alias needed to make me comfortable.  After that, File &gt;&gt; Save.  You&#8217;re set!  Except, you may notice that when you type the command &#8216;ls&#8217; there are no colors.  So what gives?  Well, we haven&#8217;t loaded our <em>./bashrc</em> since we changed it.  You don&#8217;t have to logout and back in to get things to work though&#8230;you can do this right from the terminal:</p>
<pre class="brush: bash;">
devnet[~]$ exec bash
</pre>
<p>Now try giving the &#8216;ls&#8217; command a try again and you should see that it is in color.  I know a lot of the more advanced Linux guys out there are probably saying, &#8220;why&#8217;d he waste a post on this!  It&#8217;s easy&#8221; and you&#8217;d be right for a majority of users out there&#8230;I hope that this post finds some new user out there that may be stuck for an answer on how to do this.  One final note on this as well: You will have to do this as the root user and change <em>/root/.bashrc</em> in order for your root user to also have color.  Thanks for reading!<br />
<script type="text/javascript">// < ![CDATA[
google_ad_client = "pub-3982453702542240";
/* 468x15, created 6/24/09 */
google_ad_slot = "6181047080";
google_ad_width = 468;
google_ad_height = 15;
// ]]&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></p>
<p><a href="http://linux-blog.org/adding-color-to-bash-list-command/" rel="bookmark">Adding Color to Bash List Command</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on June 5, 2009.</p>


<p>Related posts:<ol><li><a href='http://linux-blog.org/adding-color-to-bash-list-command-part-ii/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command Part II'>Adding Color to Bash List Command Part II</a> <small>I previously blogged about how to add color to the...</small></li>
<li><a href='http://linux-blog.org/convert-png-to-gif-via-command-line/' rel='bookmark' title='Permanent Link: Convert PNG to GIF via Command Line'>Convert PNG to GIF via Command Line</a> <small>I installed a bare bones Arch Linux system today and...</small></li>
<li><a href='http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/' rel='bookmark' title='Permanent Link: Laptop Multimedia Keys and PCLinuxOS 2009'>Laptop Multimedia Keys and PCLinuxOS 2009</a> <small>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/adding-color-to-bash-list-command/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Laptop Multimedia Keys and PCLinuxOS 2009</title>
		<link>http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/</link>
		<comments>http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 02:35:36 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Kwhat?]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[PCLinuxOS]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=927</guid>
		<description><![CDATA[I installed PCLinuxOS 2009 recently on a Dell D630 Latitude and was disappointed to see that I couldn&#8217;t get the hardware volume (up/down/mute) buttons didn&#8217;t work out of the box.  I thought a bit about kmilo, a program that was previously used for laptop buttons (thinkpad buttons though) and I searched around a bit inside [...]


Related posts:<ol><li><a href='http://linux-blog.org/pclinuxos-2009-not-diggworthy/' rel='bookmark' title='Permanent Link: PCLinuxOS 2009 Not Diggworthy'>PCLinuxOS 2009 Not Diggworthy</a> <small>It&#8217;s really sad when the Alpha release of Ubuntu makes...</small></li>
<li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude and was disappointed to see that I couldn&#8217;t get the hardware volume (up/down/mute) buttons didn&#8217;t work out of the box.  I thought a bit about kmilo, a program that was previously used for laptop buttons (thinkpad buttons though) and I searched around a bit inside the KDE Control Center for keyboard shortcuts to see if I could assign the keys manually.  However, I couldn&#8217;t find any volume setting inside this menu.</p>
<p>Then, it hit me, I had remembered seeing volume settings before&#8230;inside kmix; there is an area for assigning global shortcuts for volume and mute!  This should work for anyone running KDE 3.5.8 and above (I think).  Left click on Kmix in your tray and choose the mixer button.  From there, choose <em>Settings &gt;&gt; Configure Global Shortcuts</em>.  Now assign the volume up, down, and mute keys manually by clicking in the blank and pressing the hardware button.  This should work for a majority of people out there.  For me though, this didn&#8217;t work.  When pressing the keys, nothing happened.  I thought I was doomed.</p>
<p>I researched a bit more and found that installing a program called keytouch would allow me to, at the very least, program my keyboard in any way I wanted to program it.  I opened Synaptic and installed keytouch and keytouch-editor.  After install, I went to <em>Kmenu &gt;&gt; System &gt;&gt; Configuration &gt;&gt; Hardware &gt;&gt; Keytouch</em>.  It prompted me to choose my keyboard.  Since it didn&#8217;t have the Dell D630, I chose the closest thing which was the Dell D800.  I closed the application and now the volume buttons and mute button works!  Keytouch also has the ability to manually edit and also to import keytouch &#8217;schemas&#8217; to give maximum flexibility.  Hopefully, this helps some of you out there that cannot get your multimedia keys working in PCLinuxOS and KDE to work!</p>
<p><a href="http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/" rel="bookmark">Laptop Multimedia Keys and PCLinuxOS 2009</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on March 17, 2009.</p>


<p>Related posts:<ol><li><a href='http://linux-blog.org/pclinuxos-2009-not-diggworthy/' rel='bookmark' title='Permanent Link: PCLinuxOS 2009 Not Diggworthy'>PCLinuxOS 2009 Not Diggworthy</a> <small>It&#8217;s really sad when the Alpha release of Ubuntu makes...</small></li>
<li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Force Firefox to Remember Initial Window Setting in KDE</title>
		<link>http://linux-blog.org/force-firefox-to-remember-initial-window-setting-in-kde/</link>
		<comments>http://linux-blog.org/force-firefox-to-remember-initial-window-setting-in-kde/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 15:43:21 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[PCLinuxOS]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=894</guid>
		<description><![CDATA[I have a laptop with the resolution of 1440&#215;900&#8230;so when I installed the latest TR6 from PCLinuxOS, I was dismayed to find out that when launching Firefox, it opened up in a window that was 1024 pixels.  Of course, I maximized this and then closed it thinking that Firefox would remember my settings.  [...]


Related posts:<ol><li><a href='http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/' rel='bookmark' title='Permanent Link: Laptop Multimedia Keys and PCLinuxOS 2009'>Laptop Multimedia Keys and PCLinuxOS 2009</a> <small>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude...</small></li>
<li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
<li><a href='http://linux-blog.org/convert-png-to-gif-via-command-line/' rel='bookmark' title='Permanent Link: Convert PNG to GIF via Command Line'>Convert PNG to GIF via Command Line</a> <small>I installed a bare bones Arch Linux system today and...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I have a laptop with the resolution of 1440&#215;900&#8230;so when I installed the latest TR6 from PCLinuxOS, I was dismayed to find out that when launching Firefox, it opened up in a window that was 1024 pixels.  Of course, I maximized this and then closed it thinking that Firefox would remember my settings.  The problem is&#8230;it didn&#8217;t remember my settings.</p>
<p>When I opened Firefox up again, it popped up to say hello once again at 1024 pixels.  Sure, you can right click on the Firefox window bar and drill down into application specific settings via KDE (yes, it&#8217;s that configurable) but I didn&#8217;t want to have to do this&#8230;because if I did, ALL Firefox windows would open up maximized&#8230;and that includes any pop-ups as well.  I also know that you can drill down even further to fix THAT problem.  However, it should &#8216;just work&#8217; right?  You shouldn&#8217;t have to change anything at all correct?  Well, I&#8217;ve found a fix that is pretty easy to accomplish&#8230;and I hope it helps the hundreds of people I found when searching through google on this.</p>
<p>Open up Firefox and it will open at the smaller screen size&#8230;in my case, it opened up 1024 px in width on my 1440px screen.  Then, hover over the top right hand corner with your mouse until you get the resize arrow.  Resize the window click dragging it to the top, right hand corner of the screen.  It should &#8217;snap-in&#8217; once you get close to maximized size.  Now close the window, and open Firefox again.  It should open up fully maximized.</p>
<p>I sure hope this saves someone time&#8230;because I spent the better part of a morning trying to fix this.</p>
<p><a href="http://linux-blog.org/force-firefox-to-remember-initial-window-setting-in-kde/" rel="bookmark">Force Firefox to Remember Initial Window Setting in KDE</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on February 10, 2009.</p>


<p>Related posts:<ol><li><a href='http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/' rel='bookmark' title='Permanent Link: Laptop Multimedia Keys and PCLinuxOS 2009'>Laptop Multimedia Keys and PCLinuxOS 2009</a> <small>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude...</small></li>
<li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
<li><a href='http://linux-blog.org/convert-png-to-gif-via-command-line/' rel='bookmark' title='Permanent Link: Convert PNG to GIF via Command Line'>Convert PNG to GIF via Command Line</a> <small>I installed a bare bones Arch Linux system today and...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/force-firefox-to-remember-initial-window-setting-in-kde/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install the Latest Kernel in PCLinuxOS</title>
		<link>http://linux-blog.org/install-the-latest-kernel-in-pclinuxos/</link>
		<comments>http://linux-blog.org/install-the-latest-kernel-in-pclinuxos/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 20:33:21 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Distros]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[PCLinuxOS]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=826</guid>
		<description><![CDATA[Do you run PCLinuxOS 2007 or Minime 2008 and would you like to take advantage of the latest kernel for PCLinuxOS?  You can do this by enabling the &#8216;testing&#8217; portion of the repository.
Read about Repository Control in PCLinuxOS
You&#8217;ll be looking for the &#8217;sections&#8217; blank when viewing repository details and you&#8217;ll just need to add &#8216;testing&#8217; [...]


Related posts:<ol><li><a href='http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/' rel='bookmark' title='Permanent Link: Laptop Multimedia Keys and PCLinuxOS 2009'>Laptop Multimedia Keys and PCLinuxOS 2009</a> <small>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Do you run PCLinuxOS 2007 or Minime 2008 and would you like to take advantage of the latest kernel for PCLinuxOS?  You can do this by enabling the &#8216;testing&#8217; portion of the repository.</p>
<p><a href="http://oldwiki.mypclinuxos.com/index.php?title=Repository">Read about Repository Control in PCLinuxOS</a></p>
<p>You&#8217;ll be looking for the &#8217;sections&#8217; blank when viewing repository details and you&#8217;ll just need to add &#8216;testing&#8217; to the end of the line (don&#8217;t replace the entires there already).  Once that is done, click the reload button in Synaptic and allow it to refresh your local rpm cache.</p>
<p>Click the &#8217;search&#8217; button and search for the keyword &#8216;kernel&#8217;.  Look for the highest number of kernel that is returned.  At the time of this writing, the 2.6.26.8 kernel was the newest kernel for PCLinuxOS (it has .27 patches all over in it&#8230;so it&#8217;s quite a nice kernel).  Click and install that kernel and allow it to select any packages it needs to install.  Once installed, you can remove the word testing from the repository (this is recommended to prevent your system from downloading ALL testing packages/updates) and click the reload button for Synaptic.</p>
<p>Reboot and choose the new kernel on your grub menu.  Test things to see how they work.  If everything is good to go, congratulations!  You&#8217;ve just installed the latest kernel in PCLinuxOS.</p>
<p>To make this kernel the default one, you can use the PCLinuxOS Control Center and Change the Way the System Boots.  I&#8217;ll cover this in a later post.  Hope this helps a few of you out there.  I know it is often asked on IRC.</p>
<p><a href="http://linux-blog.org/install-the-latest-kernel-in-pclinuxos/" rel="bookmark">Install the Latest Kernel in PCLinuxOS</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on December 17, 2008.</p>


<p>Related posts:<ol><li><a href='http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/' rel='bookmark' title='Permanent Link: Laptop Multimedia Keys and PCLinuxOS 2009'>Laptop Multimedia Keys and PCLinuxOS 2009</a> <small>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/install-the-latest-kernel-in-pclinuxos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Files &amp; Directories Not Visible to Others for Webserver</title>
		<link>http://linux-blog.org/find-files-directories-not-visible-to-others-webserver/</link>
		<comments>http://linux-blog.org/find-files-directories-not-visible-to-others-webserver/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 21:01:17 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[Webserver]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=794</guid>
		<description><![CDATA[I wanted a quick way to be able to find out what files weren&#8217;t visible to others (and therefore, not visible to website visitors).  Messing with arguments and the file command, you can do the following:
find -type f ! -perm -444
This locates all files not visible to &#8216;others&#8217; in the current directory.  You can apply [...]


Related posts:<ol><li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I wanted a quick way to be able to find out what files weren&#8217;t visible to others (and therefore, not visible to website visitors).  Messing with arguments and the <strong>file</strong> command, you can do the following:</p>
<pre>find -type f ! -perm -444</pre>
<p>This locates all files not visible to &#8216;others&#8217; in the current directory.  You can apply this to directories as well:</p>
<pre>find -type d ! -perm -111</pre>
<p>Hope this helps people like it helped me. <img src='http://linux-blog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://linux-blog.org/find-files-directories-not-visible-to-others-webserver/" rel="bookmark">Find Files &#038; Directories Not Visible to Others for Webserver</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on November 25, 2008.</p>


<p>Related posts:<ol><li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/find-files-directories-not-visible-to-others-webserver/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Read &amp; Display Single Line of a File</title>
		<link>http://linux-blog.org/read-display-single-line-of-a-file/</link>
		<comments>http://linux-blog.org/read-display-single-line-of-a-file/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 21:38:49 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Asides]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=780</guid>
		<description><![CDATA[Sometimes when I&#8217;m troubleshooting a PHP error and a function is called in the debugger that gives me a line number of a file to look at, I want to know what that line says without opening up the file.  Using the command line, you can accomplish this in the following way:
head -n 96 filename.php [...]


Related posts:<ol><li><a href='http://linux-blog.org/convert-png-to-gif-via-command-line/' rel='bookmark' title='Permanent Link: Convert PNG to GIF via Command Line'>Convert PNG to GIF via Command Line</a> <small>I installed a bare bones Arch Linux system today and...</small></li>
<li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Sometimes when I&#8217;m troubleshooting a PHP error and a function is called in the debugger that gives me a line number of a file to look at, I want to know what that line says without opening up the file.  Using the command line, you can accomplish this in the following way:</p>
<pre>head -n 96 filename.php | tail -n 1</pre>
<p>This allows you to quickly display the 96th line of filename.php.  Hope this helps someone like it has me.</p>
<p><a href="http://linux-blog.org/read-display-single-line-of-a-file/" rel="bookmark">Read &#038; Display Single Line of a File</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on November 18, 2008.</p>


<p>Related posts:<ol><li><a href='http://linux-blog.org/convert-png-to-gif-via-command-line/' rel='bookmark' title='Permanent Link: Convert PNG to GIF via Command Line'>Convert PNG to GIF via Command Line</a> <small>I installed a bare bones Arch Linux system today and...</small></li>
<li><a href='http://linux-blog.org/adding-color-to-bash-list-command/' rel='bookmark' title='Permanent Link: Adding Color to Bash List Command'>Adding Color to Bash List Command</a> <small>One of the things I love is being able to...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/read-display-single-line-of-a-file/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Customizing PCLinuxOS 2008 Minime</title>
		<link>http://linux-blog.org/cusomizing-pclinuxos-2008-minime/</link>
		<comments>http://linux-blog.org/cusomizing-pclinuxos-2008-minime/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 03:16:49 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[appearance]]></category>
		<category><![CDATA[customization]]></category>
		<category><![CDATA[customizing]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[minime]]></category>
		<category><![CDATA[PCLinuxOS]]></category>
		<category><![CDATA[perfect]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=708</guid>
		<description><![CDATA[So, HowtoForge has a perfect desktop for PCLinuxOS 2007...how about something similar for 2008 MiniMe? I won't go into near as much detail as they do there but I'll go over how I get my desktop up and rolling after a fresh install of PCLinuxOS Minime 2008.


Related posts:<ol><li><a href='http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/' rel='bookmark' title='Permanent Link: Laptop Multimedia Keys and PCLinuxOS 2009'>Laptop Multimedia Keys and PCLinuxOS 2009</a> <small>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude...</small></li>
<li><a href='http://linux-blog.org/pclinuxos-2009-not-diggworthy/' rel='bookmark' title='Permanent Link: PCLinuxOS 2009 Not Diggworthy'>PCLinuxOS 2009 Not Diggworthy</a> <small>It&#8217;s really sad when the Alpha release of Ubuntu makes...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="captionright">
<div id="attachment_728" class="wp-caption alignright" style="width: 210px"><a href="http://linux-blog.org/wp-content/uploads/2008/10/puzzle.jpg"><img class="size-medium wp-image-728" title="puzzle" src="http://linux-blog.org/wp-content/uploads/2008/10/puzzle.jpg" alt="Putting it Together" width="200" height="150" /></a><p class="wp-caption-text">Build Your Own PCLOS</p></div>
</div>
<p>So, HowtoForge has a <a href="http://www.howtoforge.com/the_perfect_desktop_pclinuxos_2007">perfect desktop for PCLinuxOS 2007</a>&#8230;how about something similar for 2008 MiniMe?  I won&#8217;t go into near as much detail as they do there but I&#8217;ll go over how I get my desktop up and rolling after a fresh install of PCLinuxOS Minime 2008.</p>
<p>MiniMe is the lesser known offspring of PCLinuxOS 2007 that ships with a 2.6.22.15 kernel and is a minimalistic installation of the KDE desktop 3.5.9.  Texstar provides this distribution for those wanting to remaster their installations&#8230;it&#8217;s a base for other remastered projects like PCLinuxOS Gnome.  Remastering and the Make LiveCD wizard enable users to customize their distribution and make a bootable backup CD with all their customizations OR release their own customized distribution.  You can also use the Make LiveUSB wizard to create your very own thumbdrive PCLinuxOS.</p>
<p>I found it strange that no one had written anything about MimiMe-to on getting PCLinuxOS 2008 MiniMe up and running as a desktop replacement so I decided to give it a go.  The aim of this article isn&#8217;t to copy Howtoforge&#8217;s great series on perfect installations&#8230;but to show how I get PCLinuxOS 2008 Minime up to a perfect installation for me.  This means all web video, audio, fonts, and tools I need are installed.  So let&#8217;s get at it.</p>
<p><span style="text-decoration: underline;"><strong>What Do We Need?</strong></span></p>
<p>First and foremost, do a complete upgrade of your fresh installed system.  Open Synaptic &gt;&gt; Reload &gt;&gt; Mark all Upgrades &gt;&gt; Apply.  It&#8217;s going to take a while to get all the updates you&#8217;ll need.  Do NOT enable the testing repository until after you install your graphics driver at the end of this article&#8230;just perform a straight update from main.</p>
<p>Now let&#8217;s start installing stuff that is needed on a daily basis.  I&#8217;m more of a lightweight type of guy so I don&#8217;t need robust office applications so my tastes may not line up with yours.   Please substitute applications where you see fit&#8230;the repositories most likely have them.</p>
<p>To give a brief, high level overview of my daily use applications:</p>
<ul>
<li>firefox3</li>
<li>Opera</li>
<li>K3B</li>
<li>konversation</li>
<li>pidgin</li>
<li>skype_static</li>
<li>koffice</li>
<li>gimp</li>
<li>Amarok</li>
<li>claws-mail</li>
<li>kdeaddons-kate</li>
<li>kdeaddons-ark</li>
<li>kdegraphics-ksnapshot (for taking screenshots)</li>
</ul>
<p>Those are the high level applications I use on a daily basis to get things done.  Whenever you are prompted to mark other packages for install, go ahead and and choose &#8220;mark&#8221;.  Click apply and let the your daily use applications install.</p>
<p><span id="more-708"></span></p>
<p><span style="text-decoration: underline;"><strong>Handy Wizards for PCLinuxOS 2008</strong></span></p>
<p>MiniMe 2008 comes with some handy wizards for you to use to get started.  On your desktop after install is a folder called &#8220;Utilities&#8221;.  If you open this folder up, you will find the following options:</p>
<ol>
<li>ATI-Nvidia Driver Install</li>
<li>Alsa Sound Configuration</li>
<li>Internet Setup</li>
<li>Make LiveCD</li>
<li>Make LiveUSB</li>
<li>Redo-MBR</li>
<li>Set Clock</li>
</ol>
<p>You can use any of these you want to get things rolling.  You&#8217;ll have to enable your network through the PCLinuxOS Control Center because MiniMe does not setup a network connection by design out of the box.  Remember, it&#8217;s a base for building, not a full fledged distro.  We have to craft it how we want it.  I recommend NOT installing a graphics driver until the very end&#8230;mainly because there are some problems currently with the 173.xx driver conflicting with some packages in the testing repository.  So hold off on graphics install if you can until the very last.</p>
<p>Make LiveCD is exactly what it sounds like.  You can make a LiveCD based on your install.  So after you get everything setup the way you want it to be, you can double click Make LiveCD and a wizard will guide you through creating your own customized LiveCD backup of your install.</p>
<p>Make LiveUSB is also exactly what it sounds like&#8230;you can make a bootable version of a USB stick with PCLinuxOS MiniME.  This how-to does not cover this since we&#8217;re going for a desktop replacement and not a minimalistic install.  You may want to select this option though after you&#8217;ve got things configured as  you want them.</p>
<p>The rest of the options are fairly straightforward and do exactly what they say.  Make sure you take the time to get all things working (except graphics driver) before you move on.</p>
<p><span style="text-decoration: underline;"><strong>What Else Should We Install?</strong></span></p>
<p>We&#8217;ll need to install a few more things to get seamless operation for PCLinuxOS on the web.  There are also some packages that will make your PCLinuxOS experience a bit better that we&#8217;ll install at this step as well:</p>
<ul>
<li>gtk-qt-engine</li>
<li>RealPlayer-rpnp</li>
<li>flash-player-plugin</li>
<li>java-1.6.0-sun</li>
<li>flac-1.2.1</li>
<li>mplayer-skins</li>
<li>mplayer-gui</li>
<li>mplayer</li>
<li>win32-codecs-all</li>
<li>sound-juicer</li>
<li>flash-player-plugin-opera</li>
<li>cabextract (for extracting wireless drivers if you have need to)</li>
<li>webcore-fonts</li>
<li>unrar</li>
<li>rar</li>
<li>xine-plugins</li>
<li>AdobeReader_enu</li>
</ul>
<p>Please remember to allow synaptic to mark anything extra that the packages require.  After installing these packages, your browsing experience and overall appearance of PCLinuxOS should be ready for improvement.  I&#8217;ll go through how I setup a few applications to give them a nice look and feel.  Let&#8217;s start first with GTK applications look and feel.<!--more--></p>
<p><span style="text-decoration: underline;"><strong>Setup gtk-qt-engine in PCLinuxOS</strong></span></p>
<p>Open the KDE Control Center and look under &#8220;Appearance and Themes&#8221; for the section &#8220;GTK Styles and Fonts&#8221;.  Use the drop down menu to pick out your favorite GTK theme&#8230;and if your favorite isn&#8217;t there, fire up Synaptic again and do a search for it&#8230;chances are, it is there.  Once you&#8217;ve chosen a style (I use clearlooks) click &#8220;Ok&#8221;.</p>
<p>This package gives your GTK applications a Gnome Feel in KDE.  Without it, things look ugly.  Face-in-pillow-to-be-kind-to-burglars ugly.</p>
<p><span style="text-decoration: underline;"><strong>Get Your Fonts Setup</strong></span></p>
<div id="attachment_727" class="wp-caption alignright" style="width: 160px"><a href="http://linux-blog.org/wp-content/uploads/2008/10/fontsconfig.png"><img class="size-thumbnail wp-image-727" title="fontsconfig" src="http://linux-blog.org/wp-content/uploads/2008/10/fontsconfig-150x150.png" alt="Configure Fonts" width="150" height="150" /></a><p class="wp-caption-text">Configure Fonts</p></div>
<p>I setup my fonts a bit strange.  I use the same webcore font (Microsoft Font) for almost everything because I like the way it looks.  To do this, I set it up in the KDE Control Center and choose &#8220;Appearance &amp; Themes&#8221; &gt;&gt; &#8220;Fonts&#8221;.  Then, I setup each area except Fixed Width with Verdana for the font.  You may like Ariel or another font&#8230;so choose it there.  Don&#8217;t be afraid to experiment!  Find fonts that suit you and make your desktop shine <img src='http://linux-blog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>When you&#8217;re through with the KDE Fonts, don&#8217;t forget to setup fonts in Firefox and Opera as well (if you desire to&#8230;I always do).</p>
<p><span style="text-decoration: underline;"><strong>Setup KDE default Applications </strong></span></p>
<p>While still inside the KDE Control Center, choose &#8220;KDE Components&#8221; and then &#8220;Component Chooser&#8221;.  On this page, make sure your favorite applications are present as the default application for each area.  Those to choose from are email client, text editor, instant messenger, terminal emulator, and web browser.  For my email, I setup claws mail by clicking &#8220;use a different email client&#8221; and clicking the small square to browse applications.  I did the same for web browser to make sure KDE knew to use Firefox and not Konqueror.</p>
<p><span style="text-decoration: underline;"><strong>Enable Super Key for Compiz (if you use it)</strong></span></p>
<p>If you use compiz and wanted to install it the package name is task-compiz-fusion-kde.  Install this package but do NOT run it yet if you have an ATI or Nvidia card.  We&#8217;ll need to install the graphics driver first.  If you have another chip manufacturer (Intel, S3) for your graphics card, you should be able to install and use compiz right away.</p>
<p>To enable the super (windows) key, open the KDE Control Center, go to &#8220;Regional &amp; Accessibility&#8221; and then to &#8220;Keyboard Layout&#8221;.  Toggle check &#8220;enable keyboard layout&#8221; and make sure your region is in the right hand side box area as active.  Click apply.</p>
<p><span style="text-decoration: underline;"><strong>Setup Konversation in a Sane Manner</strong></span></p>
<div id="attachment_726" class="wp-caption alignleft" style="width: 160px"><a href="http://linux-blog.org/wp-content/uploads/2008/10/configkonver.png"><img class="size-thumbnail wp-image-726" title="configkonver" src="http://linux-blog.org/wp-content/uploads/2008/10/configkonver-150x150.png" alt="Configure Konversation" width="150" height="150" /></a><p class="wp-caption-text">Configure Konversation</p></div>
<p>I think the default configuration of Konversation isn&#8217;t very friendly.  So I take a few minutes when first firing it up to configure things.  Perhaps you&#8217;ll agree with me on these.  For example, I don&#8217;t like tabs on the bottom of my screen.  I&#8217;d rather have those channels of chat on the left hand side so I can see them.  I also like to have shell-like tabl completion.  That means when I hit the tab key after typing a few letters of someones nickname, Konversation will complete their name without me typing it&#8230;much like the shell (konsole) can do with directory names.  Start up Konversation.  Click edit and then click the edit button again.  Make sure you&#8217;ve input the nickname you need to input.  If you are a freenode regular and have a registered nickname, enter NICKSERV and your password in the blanks under &#8220;Auto Identify&#8221;.  Click &#8220;ok&#8221; twice and then connect.</p>
<p>Under &#8220;Settings&#8221; choose &#8220;Configure Konversation&#8221;.  Go to the section  &#8220;Behavior&#8221; and choose &#8220;General&#8221;.  In &#8220;completion mode&#8221; use the drop down menu to select &#8220;Shell-Like&#8221;.  I like to minimize Konversation into the tray and also like it to notify me when my name is mentioned.  To do this, inside this same window toggle check &#8220;Enable System Tray&#8221; as well as the two other check boxes underneath it.</p>
<p>Now lets move the tabs to the left:  Under &#8220;Interface&#8221; click &#8220;Tabs&#8221;.  On the &#8220;placement&#8221; drop down menu choose &#8220;Left&#8221;.  That&#8217;s it for Konversation.</p>
<p><!--more--></p>
<p><span style="text-decoration: underline;"><strong>Setup Kopete in a Sane Manner</strong></span></p>
<div id="attachment_713" class="wp-caption alignright" style="width: 160px"><a href="http://linux-blog.org/wp-content/uploads/2008/10/defaultkopete1.png"><img class="size-thumbnail wp-image-713" title="HidingKopete" src="http://linux-blog.org/wp-content/uploads/2008/10/defaultkopete1-150x150.png" alt="Hiding Groups &amp; Users" width="150" height="150" /></a><p class="wp-caption-text">Hiding Groups &amp; Users</p></div>
<p>If you use Kopete instead of Pidgin, I&#8217;ll walk you through setting it up so that it has a more pidgin appearance.  When you first launch Kopete, it will prompt you to setup your accounts.  You should have no problem setting up all but the gtalk ones.  Go ahead and setup all the other ones&#8230;we&#8217;ll set gtalk up in a second.  First, let&#8217;s get the existing ones to display in a sane manner.</p>
<p>Under &#8220;Settings&#8221; choose &#8220;Hide Offline Users&#8221;.  Then choose &#8220;Hide Empty Groups&#8221;.  This will make sure not to display your offline buddies (of which I have too many all the time) in Kopete.</p>
<p>Next choose &#8220;Settings&#8221; and &#8220;Configure&#8221;.  Click on Appearance.  Click the &#8220;Chat Window&#8221; tab and choose &#8220;Get New&#8221;.  A window will pop open with new themes to install.  I like the theme called Fresh so I highlight it and click the install button.  Close out all the windows except the configure one and then highlight &#8220;Fresh.AdiumMessageStyle&#8221; to switch to it.  Click Apply.</p>
<p>Now click on the &#8220;Contact List&#8221; tab.  Un-check &#8220;Arrange metacontacts by group&#8221; &amp; &#8220;Show tree branch lines&#8221;.  Under &#8220;List Style&#8221; choose right aligned status icons&#8221; and then check the &#8220;Use contact photos when available&#8221; checkbox.  Click Apply.</p>
<p>I like my messages to open only one window with a new conversation opening a new tab.  This prevents me from having 3 windows pop from 3 different chats from friends.  Click on the &#8220;Behavior&#8221; icon on the left side of Kopete.  Click on the &#8220;Chat&#8221; tab.  Under &#8220;Chat Window Grouping Policy&#8221; choose &#8220;Group All Messages in Same Chat Window&#8221;.  Click on the &#8220;Events&#8221; tab and make sure to uncheck &#8220;Show bubble&#8221; (unless you like notification bubbles&#8230;I hate them&#8230;I just want Kopete to flash on notification).  Click Apply.</p>
<p>Click on the &#8220;General&#8221; tab.  Make sure that the checkbox for the system tray is checked.  Check the &#8220;Connect automatically at startup&#8221; box or Kopete won&#8217;t connect when you start it up.  Toggle the radio button for &#8220;Open Messages Instantly&#8221;.  Click Apply.  Click Ok.</p>
<p>That should be it&#8230;I know it&#8217;s a lot but this really makes Kopete feel at home for me&#8230;almost pidgin style with better KDE integration.</p>
<p>Setup your gtalk <a href="http://wiki.kde.org/tiki-index.php?page=Google+Talk+support">follow the instructions here</a> and make sure that if you are prompted with a pop up window choose never show this again and accept (it&#8217;s certificates for SSL and gtalk).</p>
<p><span style="text-decoration: underline;"><strong>Improve Firefox Performance</strong></span></p>
<p>There are tons of guides out there.  I&#8217;ve looked through many of them to try and tweak Firefox performance and the <a href="http://hubpages.com/hub/Optimizing-Firefox-3-Hacks-And-Tweaks">one I&#8217;ve found to be the best collection of handy tips and tricks is at hugpages</a>.  Pay close attention to #13 which is the speedup I found to really make a difference.</p>
<p><span style="text-decoration: underline;"><strong>KDE Artwork&#8230;Add More!!</strong></span></p>
<p>I wrote <a href="http://linux-blog.org/install-extra-themes-and-icons-in-pclinuxos/" target="_blank">an article on how to beautify the PCLinuxOS 2007 Desktop</a> through installation of icon themes, cursor thems, wallpapers, and other improvements.  Make sure that you check that post out and customize PCLinuxOS Minime 2008 and make it your own <img src='http://linux-blog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   That beautification article is still valid for Minime 2008, which uses the 2007 repositories.  Some of the package names may have changed but you can use the search button in synaptic to search &#8220;description and name&#8221; and find most if not all the packages.</p>
<p><strong><span style="text-decoration: underline;">Graphics Card</span></strong></p>
<div id="attachment_737" class="wp-caption alignright" style="width: 160px"><a href="http://linux-blog.org/wp-content/uploads/2008/10/graphicsinstall.png"><img class="size-thumbnail wp-image-737" title="graphicsinstall" src="http://linux-blog.org/wp-content/uploads/2008/10/graphicsinstall-150x150.png" alt="video driver installer" width="150" height="150" /></a><p class="wp-caption-text">video driver installer</p></div>
<p>Setting up your graphics card is last for good reason.  It should be the last thing you do unless your resolution is so horrible you need to set it up at the beginning.  There is a problem with Nvidia drivers and minime.  If you installed the 173.xx drivers and try to upgrade to testing, it will flag a bunch of problems.  To fix things, launch konsole, su to root and apt-get clean, then apt-get autoclean.</p>
<p>After doing that, apt-get update and then close konsole.  Use the utilities folder on the desktop to un-install the 173.xx drivers.  Then perform the testing upgrade without the drivers conflicting.  After the upgrade is complete, install the 177.xx drivers.  This is only for the latest and greatest video cards.  REMEMBER, the utilities folder has a graphics card installation tool.  This is used for ATI and Nvidia cards and will install the official driver for both.  A list of chipsets for each driver is inside the utility (screenshot on right) so make sure that you pick the correct driver.</p>
<p>If you use any other chipset besides Nvidia or ATI, your driver should be enabled by default.</p>
<p><span style="text-decoration: underline;"><strong>Extra TidBits I like to Install</strong></span></p>
<p>I like to be able to right click any music file in Konqueror and convert it to any format I choose.  This can be done with the <strong>audiokonverter</strong> package.  Search for that in Synaptic and install it if you&#8217;d like to do the same.</p>
<p>Ever want to search through programs you can install without opening Syanptic and without using the command line?  Install <strong>kio-apt</strong> and you&#8217;ll be able to do jus that using apt:/ in the address bar where the url normally goes.  Options include:</p>
<p>apt:/search?search expression<br />
apt:/show?package<br />
apt:/policy?package<br />
apt:/list?package<br />
apt:/fsearch?package</p>
<p>Want to resize your screen on the fly?  Press Alt-F2 and type <strong>krandrtray</strong>.  Notice the small icon that appears inside your kicker tray by the clock.  You&#8217;ll now be able to resize your screen resolution on the fly.  This is sometimes handy for those users who dock a laptop that has a different resolution on laptop screens than desktop ones.</p>
<p>Miss the Nvidia Icon in your tray like in Windows?  Install <strong>nvdock</strong> and then execute it from the menu (System &gt;&gt; Nvidia Dock) and watch as your nvidia icon magically reappears.  Right click and be brought to Nvidia Control Panel Settings.</p>
<p>Want some desktop search action without google desktop or the beast that is Beagle?  Not a fan of tracker?  Try <strong>recoll</strong> which can be installed through Synaptic.</p>
<p>Need a personal wiki to keep notes?  I know I do.   That&#8217;s why I install <strong>zim</strong> which is a personal wiki written in GTK.  It allows you to quickly jot down notes and scales quickly to even provide multiple page and project tracking for your own personal notes.</p>
<p>Ever run across stuff on the web you wish you could clip out of a webpage and save?  Enter <strong>basket</strong>.  It can handle images, webpage snippets, store URLs and anything you might come across, can be saved for easy centralized access.</p>
<p>Screensavers are not installed by default.  If you want to install screensavers, try the following packages:</p>
<ul>
<li>xscreensaver</li>
<li>xscreensaver-base</li>
<li>xscreensaver-common</li>
<li>xscreensaver-extrusion</li>
<li>xscreensaver-gl</li>
<li>xscreensaver-matrix</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Did I Miss Anything?</strong></span></p>
<p>Did I miss anything with my helpful how-to?  If so, please leave me a comment letting me know what  you&#8217;d like to see added to it.  I will consider this a working how-to and update it with as much as I can.  These are only the applications I find useful and use on a daily basis.  I installed these on a fresh install of Minime 2008 on my main system and wrote this how-to while doing it.  I wanted it to be minimalistic&#8230;I don&#8217;t need much in order to be happy.  Hopefully, this helps inspire you t</p>
<p><a href="http://linux-blog.org/cusomizing-pclinuxos-2008-minime/" rel="bookmark">Customizing PCLinuxOS 2008 Minime</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on October 17, 2008.</p>


<p>Related posts:<ol><li><a href='http://linux-blog.org/laptop-multimedia-keys-and-pclinuxos-2009/' rel='bookmark' title='Permanent Link: Laptop Multimedia Keys and PCLinuxOS 2009'>Laptop Multimedia Keys and PCLinuxOS 2009</a> <small>I installed PCLinuxOS 2009 recently on a Dell D630 Latitude...</small></li>
<li><a href='http://linux-blog.org/pclinuxos-2009-not-diggworthy/' rel='bookmark' title='Permanent Link: PCLinuxOS 2009 Not Diggworthy'>PCLinuxOS 2009 Not Diggworthy</a> <small>It&#8217;s really sad when the Alpha release of Ubuntu makes...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/cusomizing-pclinuxos-2008-minime/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install GCC on ClarkConnect</title>
		<link>http://linux-blog.org/install-gcc-on-clarkconnect/</link>
		<comments>http://linux-blog.org/install-gcc-on-clarkconnect/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 15:45:26 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[clarkconnect]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[devel tools]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[install gcc]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=716</guid>
		<description><![CDATA[Install GCC on ClarkConnect
This is a pretty easy thing to do, but it seems many people come to Yet Another Linux Blog searching for exactly how to do this.  ClarkConnect does not come with GCC installed by default.  If you download software and attempt to compile it (using ./configure, make, make install) it [...]


Related posts:<ol><li><a href='http://linux-blog.org/foresight-and-fedora-clarkconnect-becomes-clearos/' rel='bookmark' title='Permanent Link: Foresight and Fedora, ClarkConnect Becomes ClearOS'>Foresight and Fedora, ClarkConnect Becomes ClearOS</a> <small>Foresight and Fedora (aka &#8220;boots, a fedora remix&#8221;) Last week...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><strong>Install GCC on ClarkConnect</strong></p>
<p>This is a pretty easy thing to do, but it seems many people come to Yet Another Linux Blog searching for exactly how to do this.  ClarkConnect does not come with GCC installed by default.  If you download software and attempt to compile it (using ./configure, make, make install) it will complain:</p>
<p><code>
<pre class="brush: plain;">configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.</pre>
<p></code></p>
<p>So, SSH into your ClarkConnect server and install cc-devel to install all the tools you need.  Please be advised, it&#8217;s a rather large package weighing in at 87.5 MB when I installed it today.</p>
<p><code>
<pre class="brush: plain;">apt-get update</pre>
<pre class="brush: plain;">apt-get install cc-devel</pre>
<p></code></p>
<p>After this package is installed, you should be able to compile software from source.  Hopefully, this makes your life easier and is easier to find on the web.</p>
<p><a href="http://linux-blog.org/install-gcc-on-clarkconnect/" rel="bookmark">Install GCC on ClarkConnect</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on October 12, 2008.</p>


<p>Related posts:<ol><li><a href='http://linux-blog.org/foresight-and-fedora-clarkconnect-becomes-clearos/' rel='bookmark' title='Permanent Link: Foresight and Fedora, ClarkConnect Becomes ClearOS'>Foresight and Fedora, ClarkConnect Becomes ClearOS</a> <small>Foresight and Fedora (aka &#8220;boots, a fedora remix&#8221;) Last week...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/install-gcc-on-clarkconnect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
