<?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>Andrei Dumitru</title>
	<atom:link href="http://andreidumitru.ro/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://andreidumitru.ro/blog</link>
	<description>&#34;Si 50 millions de personnes disent une bêtise, c&#039;est quand même une bêtise.&#34; Anatole France</description>
	<lastBuildDate>Sat, 27 Mar 2010 09:35:55 +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>Disable PC beep</title>
		<link>http://andreidumitru.ro/blog/2010/03/disable-pc-beep/</link>
		<comments>http://andreidumitru.ro/blog/2010/03/disable-pc-beep/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 09:33:29 +0000</pubDate>
		<dc:creator>andrei.dumitru</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[pc beep]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://andreidumitru.ro/blog/2010/03/disable-pc-beep/</guid>
		<description><![CDATA[If you installed or updated your laptop's sound driver, you might hear an annoying beep sometimes(when plugging&#160; your laptop charger, when using the function key Fn, etc. ). The beep is caused by the PC Speaker. This is how you can disable it in Windows 7: Go to Control Panel – Hardware and Sound – [...]]]></description>
			<content:encoded><![CDATA[<p>If you installed or updated your laptop's sound driver, you might hear an annoying beep sometimes(when plugging&#160; your laptop charger, when using the function key Fn, etc. ). The beep is caused by the PC Speaker.    <br />This is how you can disable it in Windows 7:</p>
<ol>
<li>Go to Control Panel – Hardware and Sound – Sound </li>
<li>On the Playback tab choose your sound device (e.g. Speakers) </li>
<li>Click the Properties button </li>
<li>On the Levels tab mute the PC Beep or adjust the volume level. </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andreidumitru.ro/blog/2010/03/disable-pc-beep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitor Power Off</title>
		<link>http://andreidumitru.ro/blog/2010/03/monitor-power-off/</link>
		<comments>http://andreidumitru.ro/blog/2010/03/monitor-power-off/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 18:48:59 +0000</pubDate>
		<dc:creator>andrei.dumitru</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[carbon footprint]]></category>
		<category><![CDATA[poweroff monitor]]></category>

		<guid isPermaLink="false">http://andreidumitru.ro/blog/2010/03/monitor-power-off/</guid>
		<description><![CDATA[Q: What do you do if you go away from your computer for a while and want to turn off the screen to prolong its life time, save energy and reduce your carbon footprint ? A: Use a software that can turn off your your monitor with just a mouse click. Windows On Windows NirCmd [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Q:</strong> What do you do if you go away from your computer for a while and want to turn off the screen to prolong its life time, save energy and reduce your carbon footprint ?<br />
<strong>A:</strong> Use a software that can turn off your your monitor with just a mouse click.</p>
<p><span style="text-decoration: underline;"><strong>Windows</strong> </span><br />
On Windows <a href="http://www.nirsoft.net/utils/nircmd.html" target="_blank"><strong>NirCmd</strong></a> can be used. Just create a shorcut with the following target:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">&quot;C:\Program Files\nircmd\nircmd.exe&quot; cmdwait 1000 monitor off</pre></div></div>

<p><strong><span style="text-decoration: underline;">Linux</span></strong><br />
Create a script with the following commands.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#! /bin/sh</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-z</span> <span style="color: #007800;">$1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> ; <span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-z</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(echo $1 | awk '/^[0-9]+$/')</span>&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> ; <span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> Usage: poweroff_monitor <span style="color: #7a0874; font-weight: bold;">&#91;</span>SECONDS<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> Example: poweroff_monitor <span style="color: #000000;">10</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> If SECONDS is <span style="color: #000000; font-weight: bold;">set</span>, it waits SECONDS seconds before it suspends the monitor.
<span style="color: #7a0874; font-weight: bold;">exit</span>
<span style="color: #000000; font-weight: bold;">fi</span>
<span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #007800;">$1</span>
<span style="color: #000000; font-weight: bold;">fi</span>
<span style="color: #c20cb9; font-weight: bold;">xset</span> dpms force standby</pre></div></div>

<pre></pre>
<p>The  script can be used either as a shortcut from your favorite graphical interface or straight from the command line.</p>
]]></content:encoded>
			<wfw:commentRss>http://andreidumitru.ro/blog/2010/03/monitor-power-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Internet Revealed: A film about Internet Exchange Points</title>
		<link>http://andreidumitru.ro/blog/2010/03/the-internet-revealed-a-film-about-internet-exchange-points/</link>
		<comments>http://andreidumitru.ro/blog/2010/03/the-internet-revealed-a-film-about-internet-exchange-points/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 21:18:53 +0000</pubDate>
		<dc:creator>andrei.dumitru</dc:creator>
				<category><![CDATA[educational]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[ixp]]></category>

		<guid isPermaLink="false">http://andreidumitru.ro/blog/2010/03/the-internet-revealed-a-film-about-internet-exchange-points/</guid>
		<description><![CDATA[An Internet exchange point (IX or IXP) is a physical infrastructure through which Internet service providers (ISPs) exchange Internet traffic between their networks (autonomous systems). IXPs reduce the portion of an ISP's traffic which must be delivered via their upstream transit providers, thereby reducing the average per-bit delivery cost of their service. Furthermore, the increased [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>An <b>Internet exchange point</b> (<b>IX</b> or <b>IXP</b>) is a physical infrastructure through which Internet service providers (ISPs) exchange Internet traffic between their networks (autonomous systems). IXPs reduce the portion of an ISP's traffic which must be delivered via their upstream transit providers, thereby reducing the average per-bit delivery cost of their service. Furthermore, the increased number of paths learned through the IXP improves routing efficiency and fault-tolerance. [<a href="http://en.wikipedia.org/wiki/Internet_exchange_point" target="_blank">Wikipedia</a>]</p>
</blockquote>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:f4746a28-90b5-4476-87e0-7f37bf4d4f9c" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/a5837LcDHfE&amp;hl=en"></param><embed src="http://www.youtube.com/v/a5837LcDHfE&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>via <a href="http://cosu.ro/blog/2010/02/10/ixps/" target="_blank">Cosu</a></p>
]]></content:encoded>
			<wfw:commentRss>http://andreidumitru.ro/blog/2010/03/the-internet-revealed-a-film-about-internet-exchange-points/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Java on RHEL 5</title>
		<link>http://andreidumitru.ro/blog/2010/03/how-to-install-java-on-rhel-5/</link>
		<comments>http://andreidumitru.ro/blog/2010/03/how-to-install-java-on-rhel-5/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 01:22:16 +0000</pubDate>
		<dc:creator>andrei.dumitru</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rhel]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://andreidumitru.ro/blog/2010/03/how-to-install-java-on-rhel-5/</guid>
		<description><![CDATA[1. Check your operating system just to be sure: [root@andrei ~]# cat /etc/redhat-release Red Hat Enterprise Linux Server release 5.4 (Tikanga) 2. Check weather it’s a 32 or 64 bit version: [root@andrei ~]# uname -a Linux &#60;output omitted&#62; x86_64 x86_64 x86_64 GNU/Linux&#160; The current OS is a 64 bit system, indicated by&#160; x86_64. 3. Download [...]]]></description>
			<content:encoded><![CDATA[<p>1. Check your operating system just to be sure:</p>
<blockquote><p><code>[root@andrei ~]# cat /etc/redhat-release      <br />Red Hat Enterprise Linux Server release 5.4 (Tikanga)</code> </p></blockquote>
<p>2. Check weather it’s a 32 or 64 bit version:</p>
<blockquote><p><code>[root@andrei ~]# uname -a      <br />Linux &lt;output omitted&gt; x86_64 x86_64 x86_64 GNU/Linux&#160; <br /></code></p></blockquote>
<p>The current OS is a 64 bit system, indicated by&#160; <strong>x86_64</strong>.</p>
<p>3. <a href="http://java.sun.com/javase/downloads/index.jsp" target="_blank">Download Java</a> (JDK) – select Linux or Linux64 depending on your OS and download the required file. In my case is <em>jdk-6u18-linux-x64-rpm.bin</em>.</p>
<p>4. Make the downloaded file executable and then run it:</p>
<blockquote><p><code>[root@andrei ~]# chmod u+x jdk-6u18-linux-x64-rpm.bin        <br />[root@andrei ~]# ./jdk-6u18-linux-x64-rpm.bin </code></p>
</blockquote>
<p>5. After you accept the License Agreement the installation starts. </p>
<p>6. Your Linux distribution most likely comes with a Java version installed, but it is probably the GNU Compiler for Java (gij - GNU libgcj).Now you need to configure the system to use the newly installed Sun Java.</p>
<blockquote><pre class="csharpcode">[root@andrei ~]# alternatives --install /usr/bin/java java /usr/java/jdk1.6.0_18/bin/java 2
[root@andrei ~]# alternatives --config java</pre>
</blockquote>
<p>After the second command you will be asked to make a selection of the Java version used in your system. Choose option number 2.</p>
<p>7. Check that your system has a new Java environment:</p>
<blockquote>
<pre>[root@andrei ~]# alternatives --display java</pre>
</blockquote>
<p>See what version of Java Runtime Environment you are using now:</p>
<blockquote>
<pre>[root@andrei ~]# java -version
java version &quot;1.6.0_18&quot;
Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
Java HotSpot(TM) 64-Bit Server VM (build 16.0-b13, mixed mode)</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://andreidumitru.ro/blog/2010/03/how-to-install-java-on-rhel-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNU/Linux Advanced Administration</title>
		<link>http://andreidumitru.ro/blog/2010/02/gnulinux-advanced-administration/</link>
		<comments>http://andreidumitru.ro/blog/2010/02/gnulinux-advanced-administration/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 12:19:40 +0000</pubDate>
		<dc:creator>andrei</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[book]]></category>

		<guid isPermaLink="false">http://andreidumitru.ro/blog/2010/02/gnulinux-advanced-administration/</guid>
		<description><![CDATA[The Free Technology Academy has released a book about “GNU/Linux Advanced Administration”. The book is divided in modules, each module being focused on a part of the Linux operating system. The main subject coverd by the book is system administration and you can download it from the FTA website. From the FTA website: The GNU/Linux [...]]]></description>
			<content:encoded><![CDATA[<p>The Free Technology Academy has released a book about “GNU/Linux Advanced Administration”. The book is divided in modules, each module being focused on a part of the Linux operating system. The main subject coverd by the book is system administration and you can <a href="http://ftacademy.org/materials/fsm/2" target="_blank">download it</a> from the FTA website.</p>
<p>From the FTA website:</p>
<blockquote><p>The GNU/Linux systems have reached an important level of maturity, allowing to integrate them in almost any kind of work environment, from a desktop PC to the sever facilities of a big company.</p>
<h5>Evolution of this book</h5>
<p>The FTA has reused existing course materials from the Universitat Oberta de Catalunya (UOC). The first version of this course book was published in 2004 for the Master Programme in Free software of the UOC. In 2008, this book was translated into English with the help of the <a href="http://selfproject.eu">SELF</a> (Science, Education and Learning in Freedom) Project, supported by the European Commission's Sixth Framework Programme. In 2009, this material has been improved by the Free Technology Academy. Additionally the FTA has developed a study guide and learning activities which are available for learners enrolled in the FTA Campus. </p>
</blockquote>
<p>The evolution of this books is interesting to me, because it has evolved from existing course materials. I think there are many books out there that have such an evolution and are designed with a specific goal in mind. </p>
<p>Freshmen who are attending the course “<a href="http://csite.cs.pub.ro/descrieri_an1_en.htm#116" target="_blank">Operating Systems Usage</a>” at the Computer Science Department of the “Politehnica” University of Bucharest have available a similar book written by the team in charge of the course. You can find it on <a href="http://books.google.com/books?id=_JFGzyRxQGcC&amp;printsec=frontcover#v=onepage&amp;q=&amp;f=false" target="_blank">Google books</a> (Romanian version only).</p>
<p>[<a href="http://ftacademy.org/materials/fsm/2" target="_blank">FTA</a> via <a href="http://www.cyberciti.biz/tips/gnulinux-advanced-administration-pdf-book.html" target="_blank">cibercity.biz</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://andreidumitru.ro/blog/2010/02/gnulinux-advanced-administration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad &#8211; Apple&#8217;s tablet</title>
		<link>http://andreidumitru.ro/blog/2010/01/ipad-apples-tablet/</link>
		<comments>http://andreidumitru.ro/blog/2010/01/ipad-apples-tablet/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 19:27:00 +0000</pubDate>
		<dc:creator>andrei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://andreidumitru.ro/blog/2010/01/ipad-apples-tablet/</guid>
		<description><![CDATA[It’s out. iPad is its name and it’s Apple’s much awaited tablet. So, after all there is no iWish and no Duke Nuke Forever. Too bad. You can view the list of features and tech specs&#160; to see what’s above and under the hood.]]></description>
			<content:encoded><![CDATA[<p><a href="http://andreidumitru.ro/blog/wp-content/uploads/2010/01/iPad.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="iPad" border="0" alt="iPad" align="left" src="http://andreidumitru.ro/blog/wp-content/uploads/2010/01/iPad_thumb.jpg" width="240" height="150" /></a> It’s out. <a href="http://www.apple.com/ipad/" target="_blank">iPad</a> is its name and it’s Apple’s much awaited tablet. So, after all there is no <a href="http://andreidumitru.ro/blog/2010/01/iwish/" target="_blank">iWish</a> and no <a href="http://en.wikipedia.org/wiki/Duke_Nukem_Forever" target="_blank">Duke Nuke Forever</a>. Too bad.</p>
<p>You can view the list of <a href="http://www.apple.com/ipad/features/" target="_blank">features</a> and <a href="http://www.apple.com/ipad/specs/" target="_blank">tech specs</a>&#160; to see what’s above and under the hood. </p>
]]></content:encoded>
			<wfw:commentRss>http://andreidumitru.ro/blog/2010/01/ipad-apples-tablet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iWish</title>
		<link>http://andreidumitru.ro/blog/2010/01/iwish/</link>
		<comments>http://andreidumitru.ro/blog/2010/01/iwish/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 00:02:35 +0000</pubDate>
		<dc:creator>andrei</dc:creator>
				<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://andreidumitru.ro/blog/2010/01/iwish/</guid>
		<description><![CDATA[Apple’s rumored tablet is making waves and some of them are funny. This is a good laugh and “iWish” it was true :). &#160; &#160; [ from FEDO&#38;PID’JIN ]]]></description>
			<content:encoded><![CDATA[<p align="left"><a href="http://www.pidjin.net/2010/01/25/iwish/" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="2110001" border="0" alt="2110001" align="left" src="http://andreidumitru.ro/blog/wp-content/uploads/2010/01/21100011.jpg" width="240" height="148" /></a> Apple’s rumored tablet is making waves and some of them are funny. <a href="http://www.pidjin.net/2010/01/25/iwish/" target="_blank">This</a> is a good laugh and “iWish” it was true :).</p>
<p align="left">&#160;</p>
<p align="left">&#160;</p>
<p align="left">[ from <a href="http://www.pidjin.net/2010/01/25/iwish/" target="_blank">FEDO&amp;PID’JIN</a> ]</p>
]]></content:encoded>
			<wfw:commentRss>http://andreidumitru.ro/blog/2010/01/iwish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remain active and up to date</title>
		<link>http://andreidumitru.ro/blog/2010/01/remain-active-and-up-to-date/</link>
		<comments>http://andreidumitru.ro/blog/2010/01/remain-active-and-up-to-date/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 13:52:58 +0000</pubDate>
		<dc:creator>andrei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://andreidumitru.ro/blog/2010/01/remain-active-and-up-to-date/</guid>
		<description><![CDATA[I think the following resolution can be applied in most IT domains anytime. Tom Kyte's DBA Resolutions for 2009 Tom Kyte, Oracle DBA and founder of the Ask Tom blog, gave the Oracle Database Insider his resolutions for 2009 in hopes that other DBAs will follow suit. "In the coming year," says Kyte, "I resolve [...]]]></description>
			<content:encoded><![CDATA[<p>I think the following resolution can be applied in most IT domains anytime.</p>
<p><strong>Tom Kyte's DBA Resolutions for 2009</strong></p>
<p>Tom Kyte, Oracle DBA and founder of the Ask Tom blog, gave the Oracle Database Insider his resolutions for 2009 in hopes that other DBAs will follow suit. "In the coming year," says Kyte, "I resolve to...</p>
<ul>
<li>Practice a restore at least once a month under different scenarios. DBAs are allowed to make mistakes—with one exception: They cannot make mistakes in recovery. We can fix any other mistake easily, but not recovery mistakes.</li>
<li>Learn something new. When was the last time you read the "what's new in" chapters in the documentation? Take a couple of minutes to see what's new.</li>
<li>Participate in user group discussion forums. If I just do the same thing day in, day out, never experiencing what others are doing, I'll stagnate. The easiest way to stay current, to network, and to learn something new is to participate.</li>
<li>Become a mentor for someone more junior. I'll get two things out of this: First, I will learn a ton of new stuff because they will ask me things I don't fully know. Second, I'll have put in place the next generation of DBAs so that I can move up or move over in the future. Training your replacement is one sure way to be able to progress yourself.</li>
<li>Be more thoughtful, don’t jump to conclusions, take my time. As the old saying goes, haste makes waste. And that is never more true than when doing something that will take hours or longer to accomplish, as many DBA tasks may take. I will study the options and pick the one that is best suited for the problem at hand—realizing that the approach I take in 2009 might be very different from the one I took in 2008, 2000, 1995, or any other time.</li>
</ul>
<p>Source: <a href="http://www.oracle.com/newsletters/information-indepth/database-insider/jan-09/kyte.html" target="_blank">Oracle Newsletter 2009</a></p>
]]></content:encoded>
			<wfw:commentRss>http://andreidumitru.ro/blog/2010/01/remain-active-and-up-to-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://andreidumitru.ro/blog/2010/01/hello-world/</link>
		<comments>http://andreidumitru.ro/blog/2010/01/hello-world/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 09:20:50 +0000</pubDate>
		<dc:creator>andrei</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://andreidumitru.ro/blog/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p><a href="http://andreidumitru.ro">Welcome</a> to WordPress.</p>
<p> <span id="more-1"></span>This is your first post. Edit or delete it, then start blogging!   </p>
]]></content:encoded>
			<wfw:commentRss>http://andreidumitru.ro/blog/2010/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
