<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>LINICKX.com</title><link>https://www.linickx.com/</link><description></description><lastBuildDate>Fri, 06 Jul 2012 19:47:00 +0100</lastBuildDate><item><title>bash-completion</title><link>https://www.linickx.com/bash-completion</link><description>&lt;p&gt;If like me you can be a little slow at times you need this in your life.&lt;/p&gt;
&lt;p&gt;Centos/Fedora Linux:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;#!/bin/bash
$sudo yum install bash-completion
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;OSX: &lt;a href="https://trac.macports.org/wiki/howto/bash-completion"&gt;https://trac.macports.org/wiki/howto/bash-completion&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Fri, 06 Jul 2012 19:47:00 +0100</pubDate><guid isPermaLink="false">tag:www.linickx.com,2012-07-06:bash-completion</guid><category>centos</category><category>Fedora</category><category>Linux</category><category>mac</category><category>osx</category></item><item><title>Beefy Miracle</title><link>https://www.linickx.com/beefy-miracle</link><description>&lt;p&gt;I really hope that the next version of fedora gets called "Beefy
Miracle"&lt;/p&gt;
&lt;p&gt;You can vote for your favourite name at
&lt;a href="https://admin.fedoraproject.org/voting/about/relnamef16"&gt;https://admin.fedoraproject.org/voting/about/relnamef16&lt;/a&gt; but I can't
see how anything can beat the beef!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Tue, 05 Apr 2011 17:22:00 +0100</pubDate><guid isPermaLink="false">tag:www.linickx.com,2011-04-05:beefy-miracle</guid><category>Blog</category><category>Fedora</category><category>Linux</category></item><item><title>Fedora 14 Images on EC2</title><link>https://www.linickx.com/fedora-14-images-on-ec2</link><description>&lt;p&gt;&lt;a href="https://www.linickx.com/files/2010/11/aws_F_box.jpg"&gt;&lt;img alt="" src="https://www.linickx.com/files/2010/11/aws_F_box.jpg" title="Fedora on an AWS Box" /&gt;&lt;/a&gt;&lt;br /&gt;
Browsing the &lt;a href="http://docs.fedoraproject.org/en-US/Fedora/14/html/Release_Notes/"&gt;Fedora 14 release
notes&lt;/a&gt;
and I notice that the project will be creating amazon machine images
(AMI's) going forward... now that's tempting!&lt;/p&gt;
&lt;p&gt;See: &lt;a href="https://fedoraproject.org/wiki/Cloud_SIG/EC2_Images"&gt;Fedora 14 Currently Supported EC2
Images&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The only issue currently stopping me is that Fedora boxes need updates
all the time, perhaps it wouldn't be so bad with a minimal image!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Fri, 05 Nov 2010 17:32:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2010-11-05:fedora-14-images-on-ec2</guid><category>aws</category><category>Blog</category><category>ec2</category><category>Fedora</category><category>Linux</category></item><item><title>Fedora 10 &amp; ffmpegthumbnailer</title><link>https://www.linickx.com/fedora-10-ffmpegthumbnailer</link><description>&lt;p&gt;I've recently upgraded from F7 to F10 and was surprised to see that
&lt;a href="http://code.google.com/p/ffmpegthumbnailer/"&gt;ffmpegthumbnailer&lt;/a&gt; hasn't
made it into the yum repo's yet!&lt;/p&gt;
&lt;p&gt;As I use &lt;a href="http://en.gentoo-wiki.com/wiki/MediaTomb#Video_Thumbnails"&gt;ffmpegthumbnailer for PS3 Video
thumbnails&lt;/a&gt; I
needed to find &lt;a href="http://forums.fedoraforum.org/showthread.php?t=209225"&gt;a solution to
this&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If I had the time I'd knock up a .spec file &amp;amp; rpm, but for the time
being I thought I'd post my bodge.... NUMBER ONE, if you've never typed
"&lt;code&gt;configure;make;make install&lt;/code&gt;" before you need to install the
development tools.&lt;/p&gt;
&lt;p&gt;sudo yum groupinstall "development tools"&lt;/p&gt;
&lt;p&gt;Next pick up a couple of extra dependencies...&lt;/p&gt;
&lt;p&gt;&lt;code&gt;sudo yum install libpng libpng-devel ffmpeg ffmpeg-devel&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;You should now find that, if you download &lt;a href="http://code.google.com/p/ffmpegthumbnailer/downloads/list"&gt;the
source&lt;/a&gt;,
unpack it -
&lt;code&gt;gunzip ffmpegthumbnailer-1.5.0.tar.gz;tar -xvf ffmpegthumbnailer-1.5.0.tar&lt;/code&gt;
and &lt;code&gt;cd ffmpegthumbnailer-1.5.0&lt;/code&gt; hopefully you can complete
&lt;code&gt;./configure&lt;/code&gt; without any errors.&lt;/p&gt;
&lt;p&gt;If you try &lt;code&gt;make&lt;/code&gt; at this point it'll probably fail with errors, this is
how I fixed that....&lt;/p&gt;
&lt;p&gt;&lt;code&gt;cd /usr/include/ffmpeg/ ln -s libavcodec/avcodec.h ./ ln -s libavformat/avformat.h ./ ln -s libswscale/swscale.h ./ ln -s libavformat/avio.h ./&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Now you can... get back to the build&lt;/p&gt;
&lt;p&gt;&lt;code&gt;cd ~/ffmpegthumbnailer-1.5.0 make sudo make install&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;If all has gone well you &lt;strong&gt;&lt;em&gt;should&lt;/em&gt;&lt;/strong&gt; have a working install :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Wed, 01 Apr 2009 19:36:00 +0100</pubDate><guid isPermaLink="false">tag:www.linickx.com,2009-04-01:fedora-10-ffmpegthumbnailer</guid><category>Fedora</category><category>fedora10</category><category>ffmpegthumbnailer</category><category>Linux</category><category>mediatomb</category><category>Playstation3</category><category>ps3</category></item><item><title>Windows Key on Fedora, Thank you Ruben</title><link>https://www.linickx.com/windows-key-on-fedora-thank-you-ruben</link><description>&lt;p&gt;I've been running compiz fusion on Fedora 8 for a while and found that
my windows key short-cuts only work half the time; well I found that if
I...&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;add &lt;code&gt;Option "XkbOptions" "altwin:super_win"&lt;/code&gt; to the InputDevice
section of my /etc/X11/xorg.conf&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;It works every time. I've logged in and out of my laptop a few times
over the last couple of days and had no problems since.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://rubenlaguna.com/wp/2007/01/09/how-to-enable-windows-key-as-super-key-in-linux/"&gt;Thank you
Ruben&lt;/a&gt;
:D&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Fri, 28 Mar 2008 17:44:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2008-03-28:windows-key-on-fedora-thank-you-ruben</guid><category>compiz</category><category>Fedora</category><category>Linux</category></item><item><title>Fedora HP Compaq nc6320: Overheating CPU</title><link>https://www.linickx.com/fedora-hp-compaq-nc6320-overheating-cpu</link><description>&lt;p&gt;I've been having issues with my laptop overheating recently, in fact
ever since loading fedora the cpu has run hot. According to
&lt;a href="http://www.alcpu.com/CoreTemp/"&gt;CoreTemp&lt;/a&gt; when in windows my CPU idles
at 56ºC ( &lt;em&gt;i.e. I've logged into windows opened outlook and walked
away&lt;/em&gt;) considering my AMD Desktop machine runs at 40ºC with two users
logged and the CPU peaking at 100%, means that my laptop cooks. In
Fedora I've found that the CPU actually Idles at around 70ºC which is a
joke, it means that the fan is kicking out hot air causing my desk and
everything around it to get proper hot - don't leave any chocolate bars
near me!&lt;/p&gt;
&lt;p&gt;I need to get some colleagues to run coretemp for a while to see if my
laptop is broken or if it's normal for this model of latop to run hot;
in the meantime I thought I'd post some tips on what I've done to cool
my laptop down. I've managed to get Fedora to idle at around 58ºC which
is much closer to my windows base-line.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://carlthompson.net/Software/CPUSpeed"&gt;CPUSpeed&lt;/a&gt; is a
service/daemon which controls what the processor is doing, i.e. if
you're not running a lot it scales down the processor to run slower and
use less power, thus runs cooler. I found that my daemon was actually
crashing at boot up....&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;#/etc/init.d/cpuspeed status
cpuspeed dead but subsys locked 
#
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The config file for cpuspeed is &lt;code&gt;/etc/sysconfig/cpuspeed&lt;/code&gt;, I've changed
the govenor from blank (&lt;em&gt;default: auto detect&lt;/em&gt;) to &lt;code&gt;GOVERNOR=ondemand&lt;/code&gt;
which seems to have solved my crashing issue. The second thing I've
changed is &lt;code&gt;IGNORE_NICE=1&lt;/code&gt; (&lt;em&gt;default: 0&lt;/em&gt;) which is now restricting which
processes can scale up the CPU. The only performance impact I've seen is
that this setting now stops VMWARE from consuming my CPU, and since I'm
a patient man this is no bad thing :)&lt;/p&gt;
&lt;p&gt;Whilst comparing my windows temp to my linux one it occurred to me that
it wasn't entirely fair, in linux I've got compiz graphics enabled, and
a load of gnome applets which tell me information about networking, cpu
speed, cpu temperature, the weather etc.... since windows has none of
these it's fair to say that my linux desktop should run a little
hotter.... so the "other" trick I've done to bring the temperature down
is to renice the applets to a lower priority...&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ps ax | grep "applet" | grep -v grep|cut -c 1-5|xargs sudo renice 1
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This seems to have done the trick, anything called "applet" now runs at
nice 1 rather than 0, the net effect is these processes are queued up
behind the "important" ones rather than continuously scaling up the
processor.&lt;/p&gt;
&lt;p&gt;I'm happy with the results so far, the desk is a lot cooler!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Mon, 17 Mar 2008 19:25:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2008-03-17:fedora-hp-compaq-nc6320-overheating-cpu</guid><category>cpu</category><category>Fedora</category><category>Linux</category></item><item><title>MediaTomb makes its way into fedora</title><link>https://www.linickx.com/mediatomb-makes-its-way-into-fedora</link><description>&lt;p&gt;Looking through the my yum updates for the day I notice that mediatomb
is set for an update, is this the version 0.11 with transcoding we've
all been waiting for? Sadly no, but it is a fedora build for the default
repo - YAY :D&lt;/p&gt;
&lt;p&gt;&lt;a href="http://koji.fedoraproject.org/koji/packageinfo?packageID=5527"&gt;http://koji.fedoraproject.org/koji/packageinfo?packageID=5527&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A big thanks to
&lt;a href="http://koji.fedoraproject.org/koji/userinfo?userID=570"&gt;mwiriadi&lt;/a&gt; for
this!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Thu, 17 Jan 2008 12:13:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2008-01-17:mediatomb-makes-its-way-into-fedora</guid><category>Fedora</category><category>Linux</category><category>mediatomb</category><category>upnp</category></item><item><title>Fedora 7 to 8</title><link>https://www.linickx.com/fedora-7-to-8</link><description>&lt;p&gt;As it's quiet at work (&lt;em&gt;due to the usual x-mas madness&lt;/em&gt;) I decided on
Friday to upgrade from Fedora 7 to 8, now this was a bit of a risk for
me since I have F7 running perfectly. The &lt;a href="http://docs.fedoraproject.org/release-notes"&gt;fedora release
notes&lt;/a&gt; advise a clean
install over an upgrade, so it's important when you do this to backup
&lt;code&gt;/etc&lt;/code&gt; so that you can restore anything you need later.&lt;/p&gt;
&lt;p&gt;As with all fedora installs it's always two steps forward and one step
back, my reasons for upgrading were:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.gnome.org/sragavan/2007/09/21/evolution-212-released/"&gt;Evolution
    2.12&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://fedoraproject.org/wiki/Tools/NetworkManager"&gt;Pam &amp;amp; Network Manager
    Integration&lt;/a&gt; and
    a &lt;a href="http://fedoraproject.org/wiki/Releases/8/ReleaseSummary#head-072e27c47b8a6dc817e01aee170bbf68ecb03bd6"&gt;Network Manager
    Upgrade&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://fedoraproject.org/wiki/Releases/8/ReleaseSummary#head-1912658082f266c4e233e9937f0ba626c53b72e1"&gt;Compiz
    included&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Unfortunately so far I've had a couple of issues (&lt;em&gt;my steps back&lt;/em&gt;),&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://forums.fedoraforum.org/showthread.php?t=176090"&gt;Network Manager won't connect to my Hidden
    SSID&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.fedoraforum.org/showthread.php?t=176074"&gt;RHGB doesn't seem to work with encrypted
    drives&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;... and I haven't had a chance to look into why vpnc crashes when I
    try to configure it !&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It's a shame that &lt;a href="http://beagle-project.org/Main_Page"&gt;beagle&lt;/a&gt; still
doesn't index my evolution exchange account other than that all looks
good, the wallpaper that changes on the time of day is a neat feature; I
recommend the following resources to anyone looking to upgrade or use
fedora.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.howtoforge.com/installation-guide-fedora8-desktop"&gt;Fedora 8 install
    guide&lt;/a&gt;
    (&lt;em&gt;aka perfect install&lt;/em&gt;)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.fedorafaq.org/f8/"&gt;Fedora FAQ&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Mon, 24 Dec 2007 12:21:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2007-12-24:fedora-7-to-8</guid><category>Blog</category><category>Fedora</category><category>Linux</category></item><item><title>Fixing Some Life Irritating Bugs....</title><link>https://www.linickx.com/fixing-some-life-irritating-bugs</link><description>&lt;p&gt;As Christmas draws closer, time becomes more of a premium, as a result
blog activity suffers... I've thought about using
&lt;a href="http://twitter.com"&gt;twitter&lt;/a&gt; for my blog category, in the mean-time I'm
using it with &lt;a href="http://www.imod.co.za/2007/10/01/update-facebook-status-via-google-talk/"&gt;googletalk &amp;amp;
facebook&lt;/a&gt;,
so we'll see if that develops.&lt;/p&gt;
&lt;p&gt;I've had a chance to fix some annoying bugs with my laptop/life, and
thought I'd share them here, they'll pop-up in delicious when I get a
chance to go thought my shared list, but until then here are some
links....&lt;/p&gt;
&lt;p&gt;Fedora: &lt;a href="http://www.redhat.com/archives/rhl-list/2007-March/msg03614.html"&gt;Java Clobbers/Breaks File Associations in
Gnome/Nautilus&lt;/a&gt;&lt;br /&gt;
Gmail: &lt;a href="http://blog.jameswiltshire.com/post/18458390"&gt;Can't enable IMAP, because it's not available in UK
English.&lt;/a&gt;&lt;br /&gt;
WMA to MP3: &lt;a href="http://www.linuxquestions.org/linux/answers/Applications_GUI_Multimedia/Convert_WMA_to_MP3"&gt;Converted some old tracks I found in a
backup&lt;/a&gt;.&lt;br /&gt;
Gnome: &lt;a href="http://linuxfud.wordpress.com/2006/11/27/how-to-change-the-color-of-your-tooltips/"&gt;Changed the colour of
tooltips&lt;/a&gt;
as doing it in the theme file &lt;a href="http://blogs.gnome.org/brunobol/2007/11/26/making-a-black-gnome/#comment-136"&gt;didn't
work&lt;/a&gt;&lt;br /&gt;
Eye Candy: Fixed my &lt;a href="http://sensors-applet.sourceforge.net/"&gt;CPU Temp
Gauge&lt;/a&gt; (by typing
sensors-detect, and following the instructions!)&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Mon, 17 Dec 2007 13:43:00 +0000</pubDate><guid isPermaLink="false">tag:www.linickx.com,2007-12-17:fixing-some-life-irritating-bugs</guid><category>Blog</category><category>bugfixes</category><category>Fedora</category><category>gmail</category><category>mp3</category></item><item><title>Fedora 7: Theming the Gnome Screensaver Lock Dialogue</title><link>https://www.linickx.com/fedora-7-theming-the-gnome-screensaver-lock-dialogue</link><description>&lt;div style="float:right"&gt;

[![Fedora 7 Flying High Locked
Theme](https://www.linickx.com/files/2008/05/locked-150x150.png "Fedora Locked")](https://www.linickx.com/files/2008/05/locked.png)

&lt;/div&gt;

&lt;p&gt;I stumbled &lt;a href="http://fedoraproject.org/wiki/Artwork/ThemingOverview#head-2414bc3393d60e74e98f1d2e003787fbb4baf701"&gt;across
this&lt;/a&gt;
the other day, I've no idea why the fedora team would go to the effort
of making a really nice theme for the lock dialogue for gnome screen
saver then leave it "disabled by default". After a quick google I found
the ubuntu guys have been up to&lt;a href="http://ubuntu-tutorials.com/2007/09/22/ubuntu-human-gnome-screensaver-lock-dialog-theme/"&gt;something
similar&lt;/a&gt;,
so here a quick how to enable the fedora art work on the
gnome-screensaver lock screen.&lt;/p&gt;
&lt;p&gt;To enable paste this into a terminal (&lt;em&gt;&lt;u&gt;NOT&lt;/u&gt; root, as your normal
user&lt;/em&gt;).  &lt;/p&gt;
&lt;p&gt;&lt;code&gt;gconftool-2 -s --type=string /apps/gnome-screensaver/lock_dialog_theme system&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;To switch it back:  &lt;/p&gt;
&lt;p&gt;&lt;code&gt;gconftool-2 -s --type=string /apps/gnome-screensaver/lock_dialog_theme default&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;The only "downer" is that your avatar isn't shown, but for my work
laptop I prefer this theme, much cooler fedora advocate when I'm not at
my desk ;)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nick</dc:creator><pubDate>Mon, 22 Oct 2007 09:29:00 +0100</pubDate><guid isPermaLink="false">tag:www.linickx.com,2007-10-22:fedora-7-theming-the-gnome-screensaver-lock-dialogue</guid><category>art</category><category>Fedora</category><category>gnome</category><category>Linux</category></item></channel></rss>