<?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>HB blog &#187; Linux</title>
	<atom:link href="http://blog.hbcom.info/archives/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.hbcom.info</link>
	<description>Just another weblog OR maybe not</description>
	<lastBuildDate>Tue, 29 Nov 2011 15:08:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CentOS &#8211; install IPMI</title>
		<link>http://blog.hbcom.info/archives/479?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=centos-install-ipmi</link>
		<comments>http://blog.hbcom.info/archives/479#comments</comments>
		<pubDate>Wed, 10 Aug 2011 18:19:22 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Command line]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=479</guid>
		<description><![CDATA[First what is IPMI? IPMI stands for Intelligent Platform Management Interface standardized computer interface for administrators to manage computer system and monitor its operation. It is supported by most major providers &#8211; Intel (of course), Dell, HP&#8230; Installation Installation is really simple: yum install OpenIPMI OpenIPMI-tools chkconfig ipmi on service ipmi start If you see [...]]]></description>
			<content:encoded><![CDATA[<p>First what is IPMI?</p>
<p>IPMI stands for Intelligent Platform Management Interface standardized computer interface for administrators to manage computer system and monitor its operation.</p>
<p>It is supported by most major providers &#8211; Intel (of course), Dell, HP&#8230;</p>
<h3>Installation</h3>
<p>Installation is really simple:</p>
<pre>yum install OpenIPMI OpenIPMI-tools
chkconfig ipmi on
service ipmi start</pre>
<p>If you see error at last command check system log &#8211; it is possible that your hardware does not support IPMI.</p>
<h3>Usage</h3>
<p>To to see what you can do with it:</p>
<pre>ipmitool help
man ipmitool</pre>
<p>Enjoy:)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/479/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash: Get yesterday&#8217;s date</title>
		<link>http://blog.hbcom.info/archives/476?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bash-get-yesterdays-date</link>
		<comments>http://blog.hbcom.info/archives/476#comments</comments>
		<pubDate>Fri, 03 Jun 2011 18:08:03 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Command line]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=476</guid>
		<description><![CDATA[Recently I had to create a bash script to copy some files based on date. The rule was copy yesterday&#8217;s files to &#8230; But How to determine what was the yesterdays date? The answer was in date man page. Here are the parts from the script related to yesterday date: $date -d '1 day ago' [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had to create a bash script to copy some files based on date.</p>
<p>The rule was copy yesterday&#8217;s files to &#8230;</p>
<p>But How to determine what was the yesterdays date?</p>
<p>The answer was in date man page.</p>
<p>Here are the parts from the script related to yesterday date:</p>
<pre>$date -d '1 day ago' +'%Y/%m/%d'
2011/06/02
</pre>
<p>on Internet I&#8217;ve found also:</p>
<pre>date --date='yesterday'
Thu Jun  2 14:01:28 EDT 2011</pre>
<p>And (Bonus!!) if you want to go in future <img src='http://blog.hbcom.info/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<pre>date --date='tomorrow'
Sat Jun  4 14:04:29 EDT 2011</pre>
<p>Happy scripting&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/476/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Debian &#8211; upgrade to Squeeze</title>
		<link>http://blog.hbcom.info/archives/464?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=debian-upgrade-to-squeeze</link>
		<comments>http://blog.hbcom.info/archives/464#comments</comments>
		<pubDate>Sat, 23 Apr 2011 21:47:35 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=464</guid>
		<description><![CDATA[After release of Debian 6.0 (squeeze) the question of how to upgrade from previous version to the latest. It appears to be fairly simple process: 1. Edit sources.list vi /etc/apt/sources.list 2. Replace distribution name (I appeared to have Lenny) with Squeeze. %s/lenny/squeeze/g Note: DebianVolatile has been superseded by squeeze-updates since Debian Squeeze. To use squeeze-updates [...]]]></description>
			<content:encoded><![CDATA[<p>After release of Debian 6.0 (squeeze) the question of how to upgrade from previous version to the latest.</p>
<p>It appears to be fairly simple process:</p>
<p>1. Edit sources.list</p>
<pre>vi /etc/apt/sources.list</pre>
<p>2. Replace distribution name (I appeared to have Lenny) with Squeeze.</p>
<p>%s/lenny/squeeze/g</p>
<p>Note: <em>DebianVolatile has been superseded by <tt>squeeze-updates</tt> since Debian Squeeze.</em></p>
<p>To use squeeze-updates just add</p>
<pre>deb http://mirrors.kernel.org/debian squeeze-updates main contrib</pre>
<p>to sources.list</p>
<p>Then as usual:</p>
<pre>apt-get update</pre>
<pre>apt-get dist-upgrade</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/464/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tsclient toggle full screen mode</title>
		<link>http://blog.hbcom.info/archives/458?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tsclient-toggle-full-screen-mode</link>
		<comments>http://blog.hbcom.info/archives/458#comments</comments>
		<pubDate>Wed, 16 Feb 2011 05:41:02 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=458</guid>
		<description><![CDATA[When working from Linux to a windows machine via remote desktop the obvious choice is tsclient. In windows you just move your cursor at the top of the screen to the control bar and there you can click the button for windowed mode. But tsclient does not have that instead you can use following keyboard [...]]]></description>
			<content:encoded><![CDATA[<p>When working from Linux to a windows machine via remote desktop the obvious choice is tsclient.</p>
<p>In windows you just move your cursor at the top of the screen to the control bar and there you can click the button for windowed mode.</p>
<p>But tsclient does not have that instead you can use following keyboard combination: &#8220;Ctrl-Alt-Enter&#8221;.</p>
<p>Tip: To improve tsclient performance just go to performance tab and check enable bitmap caching.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/458/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install dig in Debian</title>
		<link>http://blog.hbcom.info/archives/438?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=install-dig-in-debian</link>
		<comments>http://blog.hbcom.info/archives/438#comments</comments>
		<pubDate>Mon, 23 Aug 2010 00:27:42 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=438</guid>
		<description><![CDATA[Recently I had to check DNS records on specific server from Debian. Excellent tool for this job is dig &#8211; it allows you to see all DNS records like: A, MX, TXT&#8230; Unfortunately the tool was not installed. The proper way of installing it is: apt-get update &#038;&#038; apt-get install dnsutils In case you did [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had to check DNS records on specific server from Debian.<br />
Excellent tool for this job is dig &#8211; it allows you to see all DNS records like: A, MX, TXT&#8230;</p>
<p>Unfortunately the tool was not installed.<br />
The proper way of installing it is:</p>
<p><code>apt-get update &#038;&#038; apt-get install dnsutils</code></p>
<p>In case you did update recently you can skip the first command.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/438/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kompozer 0.8b3</title>
		<link>http://blog.hbcom.info/archives/434?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kompozer-0-8b3</link>
		<comments>http://blog.hbcom.info/archives/434#comments</comments>
		<pubDate>Sun, 01 Aug 2010 15:52:09 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=434</guid>
		<description><![CDATA[From long time I did not update KompoZer page, but there was no stable version. Anyway I&#8217;ve decided to publish an updated (even it is considered development) version. And for those of you who do not know the program: KompoZer is a complete web authoring system that combines web file management and easy-to-use WYSIWYG web [...]]]></description>
			<content:encoded><![CDATA[<p>From long time I did not update <a href="http://hbcom.info/kompozer/">KompoZer</a> page, but there was no stable version.</p>
<p>Anyway I&#8217;ve decided to publish an updated (even it is considered<br />
development) version.</p>
<p>And for those of you who do not know the program:</p>
<blockquote><p>KompoZer is a complete web authoring system that combines web file management and easy-to-use WYSIWYG web page editing.</p>
<p>KompoZer is designed to be extremely easy to use, making it ideal for non-technical computer users who want to create an attractive, professional-looking web site without needing to know HTML or web coding.</p></blockquote>
<p>Visit my <a href="http://hbcom.info/kompozer/">Kompozer RPM package</a> page to download.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/434/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>screen -r : Cannot open your terminal &#8216;/dev/pts/0&#8242; &#8211; please check.</title>
		<link>http://blog.hbcom.info/archives/430?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=screen-r-cannot-open-your-terminal-devpts0-please-check</link>
		<comments>http://blog.hbcom.info/archives/430#comments</comments>
		<pubDate>Sat, 31 Jul 2010 23:37:08 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=430</guid>
		<description><![CDATA[I love screen &#8211; it allows you to detach you console and still have the program running. For more info: man screen Recently I experienced following error: $ screen -r Cannot open your terminal '/dev/pts/0' - please check. After searching for solution I found several instructing to change permissions etc. But different solution, almost &#8220;hack&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>I love screen &#8211; it allows you to detach you console and still have the program running.</p>
<p>For more info:<br />
<code>man screen</code></p>
<p>Recently I experienced following error:<br />
<code>$ screen -r<br />
Cannot open your terminal '/dev/pts/0' - please check.</code></p>
<p>After searching for solution I found several instructing to change permissions etc.</p>
<p>But different solution, almost &#8220;hack&#8221; is the one I like.<br />
Before starting screen type:<br />
<code>script /dev/null</code><br />
And after that you can type:<br />
<code>screen -r</code><br />
Only drawback is that you need to type one additional <em>exit</em> for <em>script</em> to terminate.</p>
<p>Credits for this to Harry Jackson. Unfortunately the resource was not  available so i did to put a link to the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/430/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>find tips and tricks</title>
		<link>http://blog.hbcom.info/archives/427?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=find-tips-and-tricks</link>
		<comments>http://blog.hbcom.info/archives/427#comments</comments>
		<pubDate>Wed, 23 Jun 2010 20:44:40 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=427</guid>
		<description><![CDATA[find is LINUX/UNIX command to find files in file system. Here you will find few tricks: find ~ -type f mtime 0 Will show all files in your home folder created today. find ~ -type f mtime 0 -iname '*.mp3' Will narrow the search to .mp3 files only and iname is not case sensitive. And [...]]]></description>
			<content:encoded><![CDATA[<p>find is LINUX/UNIX command to find files in file system.</p>
<p>Here you will find few tricks:</p>
<p><code>find ~ -type f mtime 0</code></p>
<p>Will show all files in your home folder created today.</p>
<p><code>find ~ -type f mtime 0 -iname '*.mp3'</code></p>
<p>Will narrow the search to .mp3 files only and iname is not case sensitive.</p>
<p>And if you want to search for files that are not belonging to you use:</p>
<p><code>find ~ ! -user ${USER}</code></p>
<p>Lot more options you can find in find man page</p>
<p><code>man find</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/427/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to boot from floppy/CD without physical drive</title>
		<link>http://blog.hbcom.info/archives/418?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-boot-from-floppycd-without-physical-drive</link>
		<comments>http://blog.hbcom.info/archives/418#comments</comments>
		<pubDate>Sun, 16 May 2010 01:59:53 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=418</guid>
		<description><![CDATA[All new computers do not have FDD (Floppy Disk Drive) and even you find one it could be rally hard to find good media. As remedy to this you could still boot from a CD But sometimes you even do not have CD/DVD drive. And then you need to boot from floppy to update your [...]]]></description>
			<content:encoded><![CDATA[<p>All new computers do not have FDD (Floppy Disk Drive) and even you find one it could be rally hard to find good media.</p>
<p>As remedy to this you could still boot from a CD</p>
<p>But sometimes you even do not have CD/DVD drive.</p>
<p>And then you need to boot from floppy to update your BIOS.</p>
<p>So what to do?</p>
<p>Do not run to your basement looking for floppies. There is another way. You can use grub and syslinux.</p>
<p>First you need Linux installed (OR probably you already have it). Examples here are for Ubuntu.</p>
<p>Next step is to install needed software:<br />
<code>sudo aptitude install syslinux</code></p>
<p>Then download a floppy image:<br />
<code>http://www.allbootdisks.com/downloads/Disks/MS-DOS_Boot_Disk_Download47/Diskette%20Images/Dos6.22.img</code></p>
<p>Then mount the image:<br />
<code>sudo mount Dos6.22.img /mnt -o loop</code></p>
<p>You can remove everything except:</p>
<ul>
<li>autoexec.bat</li>
<li>command.com</li>
<li>config.sys</li>
<li>himem.sys</li>
<li>io.sys</li>
<li>mscdex.exe</li>
<li>msdos.sys</li>
</ul>
<p>After that in case of upgrading BIOS you need to copy new bios file and flash program.</p>
<p>Finally we will prepare the boot image.<br />
<code>sudo cp /usr/lib/syslinux/memdisk /boot/<br />
sudo cp Dos6.22.img /boot/</code></p>
<p>Reboot and on grub screen press c and boot the image using:<br />
<code>root (hd0,0)<br />
kernel memdisk<br />
initrd Dos6.22.img</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/418/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable VLC Media player system tray popup</title>
		<link>http://blog.hbcom.info/archives/403?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-disable-vlc-media-player-system-tray-popup</link>
		<comments>http://blog.hbcom.info/archives/403#comments</comments>
		<pubDate>Thu, 10 Sep 2009 23:37:14 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=403</guid>
		<description><![CDATA[Sometimes is annoying having all this popups when VLC is minimized and track changes. Here is how to disable them: Go to Tools-&#62; Preferences -&#62; All -&#62; Interfaces -&#62; Main Interfaces -&#62; Qt and uncheck Notify on track change.]]></description>
			<content:encoded><![CDATA[<p>Sometimes is annoying having all this popups when VLC is minimized and track changes.</p>
<p>Here is how to disable them:<br />
Go to Tools-&gt; Preferences -&gt; All -&gt; Interfaces -&gt; Main Interfaces -&gt; Qt<br />
and uncheck Notify on track change.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/403/feed</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.666 seconds -->

