<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Knowledge is important,and it's free..</title>
	<atom:link href="http://khairul07.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://khairul07.wordpress.com</link>
	<description>This is because information is everywhere in the NET. Trust me ..</description>
	<lastBuildDate>Wed, 25 Jan 2012 19:24:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='khairul07.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Knowledge is important,and it's free..</title>
		<link>http://khairul07.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://khairul07.wordpress.com/osd.xml" title="Knowledge is important,and it&#039;s free.." />
	<atom:link rel='hub' href='http://khairul07.wordpress.com/?pushpress=hub'/>
		<item>
		<title>TCP Client/Server &#8211; UNIX Network Programming&#8230;.</title>
		<link>http://khairul07.wordpress.com/2012/01/25/tcp-clientserver-unix-network-programming/</link>
		<comments>http://khairul07.wordpress.com/2012/01/25/tcp-clientserver-unix-network-programming/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 19:24:14 +0000</pubDate>
		<dc:creator>khairul07</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://khairul07.wordpress.com/?p=373</guid>
		<description><![CDATA[&#160; TCP EchoServer: main Function. Create socket , bind server&#8217;s well known port. A TCP socket is created. An Internet socket structure is filled with the wildcard address (INADDR_ANY) and the server&#8217;s well known port (SERV_PORT) , whichis defined 9877 in our unp.h header. Binding the wildcard address tells the system is multihomed. Our choice [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=373&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.unix.org/images/unix_plate.jpg"><img class="alignnone" src="http://www.unix.org/images/unix_plate.jpg" alt="" width="389" height="188" /></a></p>
<p>&nbsp;</p>
<p><strong>TCP EchoServer: main Function.</strong></p>
<p>Create socket , bind server&#8217;s well known port.</p>
<p>A TCP socket is created. An Internet socket structure is filled with the wildcard address (INADDR_ANY) and the server&#8217;s well known port (SERV_PORT) , whichis defined 9877 in our unp.h header. Binding the wildcard address tells the system is multihomed. Our choice of the TCP port number is based on Figure 2. It should be greater than 1023 ( we don not need a reserved port) , greater than 5000 (to avoid conflict with the ephermal ports allocated by many Berkeley-derived implementations) , less than 49152 ( to avoid conflict with the &#8220;correct&#8221; range of ephermal ports) , and it should not conflict with any registered port. The socket is converted into a listening socket by listen.</p>
<p><strong>TCP Echo Serve</strong>r:-</p>
<p>#include &#8220;unp.h&#8221;</p>
<p>int</p>
<p>main (int argc , char **argv)</p>
<p>{</p>
<p>int listenfd , connfd;</p>
<p>pid_t    childpid;</p>
<p>socklen_t clilen;</p>
<p>struct sockaddr_in cliaddr , servaddr;</p>
<p>listenfd = Socket (AF_INET , SOCK_STREAM, 0);</p>
<p>bzero(&amp;servaddr , sizeof(servadr));</p>
<p>servaddr.sin_family = AF_INET;</p>
<p>servaddr.sin_addr.s_addr = htonl(INADDR_ANY);</p>
<p>servaddr.sin_port = htos(SERV_PORT);</p>
<p>Bind(listenfd , (SA *) &amp;servaddr , sizeof(servaddr));</p>
<p>Listen(listenfd , LISTENQ);</p>
<p>for ( ; ; ) {</p>
<p>clilen = sizeof (cliaddr);</p>
<p>connfd = Accept(listenfd , (SA *) &amp;cliaddr , &amp;clilen) ;</p>
<p>if (  (childpid = Fork () ) == 0 )  {    /*child process*/</p>
<p>Close(listenfd);                                 /*close listening socket*/</p>
<p>str_echo(connfd);                           /* process the request */</p>
<p>exit(0) ;</p>
<p>}</p>
<p>Close(connfd);                                    /*parent closes connected socket */</p>
<p>}</p>
<p>}</p>
<p><strong> Our simple example above is an echo server that performs the following steps:-</strong></p>
<p>1. The client reads a line of text from its standard input and writes the line to the server.</p>
<p>2. The server reads the line from its network input and echoes the line back to the client.</p>
<p>3. The client reads the echoed line and prints it on standard output.</p>
<p>&nbsp;</p>
<p><strong>Wait for client connection to complete.</strong></p>
<p>The Server blocks in the call to accept , waiting for a client connection to complete.</p>
<p><strong>Concurrent server.</strong></p>
<p>For each client , fork spawns a child , and the child handles the new client . The child closes the listening socket and the parent closes the connected socket. The child then calls str_echo to handle the client.</p>
<p>p/s:- Well ,this week I&#8217;m busy with scheduled for interview as a Java Programmer. CES2012 had just finished this month , heard that it had a great feedback from people all around the world.  This week I&#8217;m busy studying Middleware and how to implement it in Operating System such as Windows and Linux &#8211; example &#8211; Oracle , WebSphere , WebLogic , &#8230;and much more..</p>
<p>Well folks , that&#8217;s all for this week .. Have a nice great weekend ahead&#8230;and for the Chinese people , Happy Chinese New Year &#8211; Gong Xi Fa Chai&#8230;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khairul07.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khairul07.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khairul07.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khairul07.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khairul07.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khairul07.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khairul07.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khairul07.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khairul07.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khairul07.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khairul07.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khairul07.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khairul07.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khairul07.wordpress.com/373/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=373&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://khairul07.wordpress.com/2012/01/25/tcp-clientserver-unix-network-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7532e1bb4283340e07da8acff0bc7da1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">khairul07</media:title>
		</media:content>

		<media:content url="http://www.unix.org/images/unix_plate.jpg" medium="image" />
	</item>
		<item>
		<title>Oracle Fusion Middleware 11g&#8230;</title>
		<link>http://khairul07.wordpress.com/2011/12/26/oracle-fusion-middleware-11g/</link>
		<comments>http://khairul07.wordpress.com/2011/12/26/oracle-fusion-middleware-11g/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 21:31:24 +0000</pubDate>
		<dc:creator>khairul07</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://khairul07.wordpress.com/?p=361</guid>
		<description><![CDATA[Oracle Fusion Middleware 11g is the latest middleware that can be implemented and used as a middleware in any operating system especially in Windows , MacOSx and Linux. Oracle Fusion Middleware 11g is the #1 application infrastructure foundation available today. It enables enterprises to create and run agile, intelligent business applications while maximizing IT efficiency [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=361&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.oracleimg.com/us/assets/oralogo-small.gif"><img class="alignnone" src="http://www.oracleimg.com/us/assets/oralogo-small.gif" alt="" width="133" height="18" /></a></p>
<p>Oracle Fusion Middleware 11g is the latest middleware that can be implemented and used as a middleware in any operating system especially in Windows , MacOSx and Linux. Oracle Fusion Middleware 11<em>g</em> is the #1 application infrastructure foundation available today. It enables enterprises to create and run agile, intelligent business applications while maximizing IT efficiency through full utilization of modern hardware and software architectures. Oracle Fusion Middleware 11<em>g</em> is the only middleware available from any vendor that offers the following innovative design principles:-</p>
<p>1. Complete , Integrated , Hot Pluggable and Best of Breed.</p>
<p>Oracle Fusion Middleware consist of Oracle JDeveloper 11g Release 1 , Oracle WebLogic Server 12c and Oracle Fusion Middleware 11g Rel 1. It can be obtain by downloading it&#8217;s software at Oracle Website.</p>
<p>Oracle Fusion Middleware can be used and implemented in RIM ( Remote Method Invocation). Remote Method Invocation (RIM) usually used in JavaSE6 and can be download in Oracle Website , that include it&#8217;s API . RMI usually include RMI Application Server , RMI server and RMI Client Program. The purpose of middleware is to invoke the method from the computer server.</p>
<p><a href="http://debaatobiee.files.wordpress.com/2009/10/oracle-fusion-middleware-installation0.png"><img class="alignnone" src="http://debaatobiee.files.wordpress.com/2009/10/oracle-fusion-middleware-installation0.png?w=975&#038;h=554" alt="" width="975" height="554" /></a></p>
<p>* Picture of Oracle Fusion Middleware Installation above.</p>
<p>p/s:- This week I&#8217;m having a great time spending my 2011 end of the year holiday at home. Doing some pentesting and some windows shopping at K.L. I&#8217;m trying to finishing a book entitled Windows Server 2008 Administration &#8211; borrow from the National Library (PNM) this week. Till then , have a nice holiday week ahead , and a happy new year 2012&#8230;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khairul07.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khairul07.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khairul07.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khairul07.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khairul07.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khairul07.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khairul07.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khairul07.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khairul07.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khairul07.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khairul07.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khairul07.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khairul07.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khairul07.wordpress.com/361/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=361&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://khairul07.wordpress.com/2011/12/26/oracle-fusion-middleware-11g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7532e1bb4283340e07da8acff0bc7da1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">khairul07</media:title>
		</media:content>

		<media:content url="http://www.oracleimg.com/us/assets/oralogo-small.gif" medium="image" />

		<media:content url="http://debaatobiee.files.wordpress.com/2009/10/oracle-fusion-middleware-installation0.png" medium="image" />
	</item>
		<item>
		<title>The new Fedora 16 is out &#8230;..</title>
		<link>http://khairul07.wordpress.com/2011/12/05/the-new-fedora-16-is-out/</link>
		<comments>http://khairul07.wordpress.com/2011/12/05/the-new-fedora-16-is-out/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 21:54:32 +0000</pubDate>
		<dc:creator>khairul07</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://khairul07.wordpress.com/?p=356</guid>
		<description><![CDATA[Fedora is the premiere showcase for GNOME 3, the new and somewhat controversial version of one of the top desktops used in the Linux community. This is a review of Fedora 16, in its 32-bit version, which uses Gnome 3.2. I installed it from the primary Live disc image that you are encouraged to download [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=356&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://encrypted-tbn2.google.com/images?q=tbn:ANd9GcQwN4NVXZRpRqff3MFmqUwwZAFM2y9K3q35zCbljYLbrjycQOZNqg"><img class="alignnone" src="https://encrypted-tbn2.google.com/images?q=tbn:ANd9GcQwN4NVXZRpRqff3MFmqUwwZAFM2y9K3q35zCbljYLbrjycQOZNqg" alt="" width="226" height="223" /></a></p>
<p>Fedora is the premiere showcase for GNOME 3, the new and somewhat controversial version of one of the top desktops used in the Linux community. This is a review of Fedora 16, in its 32-bit version, which uses Gnome 3.2. I installed it from the primary Live disc image that you are encouraged to download from <a href="http://fedoraproject.org/">the main site</a>.</p>
<p>Installation, as usual these days, went quite smoothly. I set up my wireless connection with the Live disc and it carried through to post-install. Not all distributions do this, but it’s a nice convenience. There were 7 steps to the installation, with a few further afterwards. It asks about what language you need to use, then you must choose the type of storage device – basic or specialized. Next, you provide a hostname for the computer, and confirm your timezone. The routine then asks you to create a root password (but doesn’t indicate relative strength). There are 5 possible types of installation and I chose “replace existing” (the choices are use all, replace existing, shrink the current one, use free space, or create a custom partition).</p>
<p>After you confirm your partitioning choice, the installation proceeds. This edition of Fedora still uses ext4 as the default file system, although I understand that brtfs will be chosen as the default in Fedora 17.</p>
<p>The post installation is quick, simply letting you see brief license information, setting the date, creating at least one user (and here Fedora shows you a password strength indicator) and letting you assign the first user to the administration group. Finally you have the option of sending a hardware profile back to Fedora.</p>
<p><strong>Features:</strong></p>
<p>Fedora, unlike most distributions I prefer, does not install media codecs during the installation. This means that you won’t be watching Youtube or listening to DVDs right away. Even so, there are quite a few applications that are installed by default, and many more available in the repository.</p>
<p>In addition to the roughly 40 applications that the CD installs, you also get release notes, an automatic bug reporting tool, the add/remove software program (GUI for “yum” I assume), and the updater.</p>
<p><a href="http://duskfire.files.wordpress.com/2011/11/updates.png"><img title="updates" src="http://duskfire.files.wordpress.com/2011/11/updates.png?w=240&#038;h=300&#038;h=300" alt="" width="240" height="300" /></a></p>
<p>I have to say that so far, I do like GNOME 3. It has the date &amp; time (and a calendar) in the middle of the top bar, while on the right hand side you’ll find an accessibility tool, the volume control, the network manager, the battery/power settings, and finally your user area where you can access system settings, your online accounts, switch users, log out, or suspend/turn off the computer.</p>
<p><a href="http://duskfire.files.wordpress.com/2011/11/notifier-updates.png"><img title="notifier-updates" src="http://duskfire.files.wordpress.com/2011/11/notifier-updates.png?w=300&#038;h=187&#038;h=187" alt="" width="300" height="187" /></a></p>
<p>Most notifiers appear at the lower right corner, as you can see above. When you first insert a DVD, USB drive, or CD of music, you get a larger notifier in the center at the bottom, offering the option to open files – and the file manager does show the volume for you to browse:</p>
<div id="attachment_1799"><a href="http://duskfire.files.wordpress.com/2011/11/burnedcds.png"><img title="burnedCDs" src="http://duskfire.files.wordpress.com/2011/11/burnedcds.png?w=300&#038;h=187&#038;h=187" alt="" width="300" height="187" /></a>Fedora opening a CD of mp3 files</div>
<p>Accessibility is a topic that I plan to discuss in more depth in an upcoming post, but Fedora does install<a href="https://live.gnome.org/Orca"> Orca</a> by default (a free screen reader program for visually impaired people). The gdm login screen now shares the same simple yet elegant theme as the rest of GNOME.The name area includes online accounts, system settings, lock screen, switch user, log out, suspend/power off. Currently, the online accounts tool only lets you add Google.</p>
<p>The default for GNOME 3 is to lock the screen after several minutes of inactivity.</p>
<p>Fedora easily detected my HP Printer – one of the easiest configurations I’ve done, actually. The “hplip” tool seems to have been installed by default and it all just worked.</p>
<p><a href="http://duskfire.files.wordpress.com/2011/11/printer2.png"><img title="printer2" src="http://duskfire.files.wordpress.com/2011/11/printer2.png?w=300&#038;h=188&#038;h=188" alt="" width="300" height="188" /></a></p>
<p><strong>Software:</strong></p>
<p>Although most people will want to add the 2 RPMFusion repositories as soon as possible, there is plenty in the vanilla Fedora repositories to make you happy – lots of games, lots of applications, and the main programming languages (Ruby, D, OCaml, Haskell, and of course Python 2.7 &amp; Python 3, C, and C++). Many IDEs can be installed – Codeblocks, Glade, KDevelop, Qt Creator, and Anjuta among others. Subversion, CVS, and tools to use them are there as well.</p>
<p><a href="http://duskfire.files.wordpress.com/2011/11/add-remove-software.png"><img title="add-remove-software" src="http://duskfire.files.wordpress.com/2011/11/add-remove-software.png?w=300&#038;h=261&#038;h=261" alt="" width="300" height="261" /></a></p>
<p>[later 11/12 edit: <em>Removed a section about CDs not being seen, because the issue is not exclusive to Fedora.</em>]</p>
<p>[later edit, 11/13: <em>Discovered on Mint 12 that I can detect and play CDs with the Banshee music player, but not when I'm in the GNOME 3 desktop - it works with LXDE. So if you are having issues playing CDs, try an alternative to GNOME 3. I'll check Xfce and KDE later to see if they work too.]</em></p>
<p>Fedora does see DVDs, even though it can’t read them without installing the codecs. After codecs are installed, DVDs play easily, on either the Totem movie player that is installed by default, or on VLC, or some other video player.</p>
<p><a href="http://duskfire.files.wordpress.com/2011/11/dvdplaying.png"><img title="DVDplaying" src="http://duskfire.files.wordpress.com/2011/11/dvdplaying.png?w=300&#038;h=182&#038;h=182" alt="" width="300" height="182" /></a></p>
<p>p/s:- An excerpt from Duskfire blog. This week I&#8217;m searching for a permanent job in the IT field. For your guys information , PIKOM PC Fair had just finished it&#8217;s fair. The venue is taken place at KL Convention Centre from 2 to 4 December , 2011. This year unfortunately I can&#8217;t attend the fair , but I promise to myself  that I will attend it next year. Well , that&#8217;s all for this week guys &#8230;till then , have a nice day ahead&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khairul07.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khairul07.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khairul07.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khairul07.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khairul07.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khairul07.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khairul07.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khairul07.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khairul07.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khairul07.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khairul07.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khairul07.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khairul07.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khairul07.wordpress.com/356/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=356&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://khairul07.wordpress.com/2011/12/05/the-new-fedora-16-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7532e1bb4283340e07da8acff0bc7da1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">khairul07</media:title>
		</media:content>

		<media:content url="https://encrypted-tbn2.google.com/images?q=tbn:ANd9GcQwN4NVXZRpRqff3MFmqUwwZAFM2y9K3q35zCbljYLbrjycQOZNqg" medium="image" />

		<media:content url="http://duskfire.files.wordpress.com/2011/11/updates.png?w=240&#38;h=300" medium="image">
			<media:title type="html">updates</media:title>
		</media:content>

		<media:content url="http://duskfire.files.wordpress.com/2011/11/notifier-updates.png?w=300&#38;h=187" medium="image">
			<media:title type="html">notifier-updates</media:title>
		</media:content>

		<media:content url="http://duskfire.files.wordpress.com/2011/11/burnedcds.png?w=300&#38;h=187" medium="image">
			<media:title type="html">burnedCDs</media:title>
		</media:content>

		<media:content url="http://duskfire.files.wordpress.com/2011/11/printer2.png?w=300&#38;h=188" medium="image">
			<media:title type="html">printer2</media:title>
		</media:content>

		<media:content url="http://duskfire.files.wordpress.com/2011/11/add-remove-software.png?w=300&#38;h=261" medium="image">
			<media:title type="html">add-remove-software</media:title>
		</media:content>

		<media:content url="http://duskfire.files.wordpress.com/2011/11/dvdplaying.png?w=300&#38;h=182" medium="image">
			<media:title type="html">DVDplaying</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Server 2008 Administration&#8230;..</title>
		<link>http://khairul07.wordpress.com/2011/11/15/windows-server-2008-administration/</link>
		<comments>http://khairul07.wordpress.com/2011/11/15/windows-server-2008-administration/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 18:42:34 +0000</pubDate>
		<dc:creator>khairul07</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://khairul07.wordpress.com/?p=350</guid>
		<description><![CDATA[Windows Server 2008 offers two general types of installation : a typical Full server installation and Server Core. Server Core is a stripped down version of Windows Server 2008 that doesn&#8217;t include a GUI or any unneeded services. Instead , the server installs only key features that are related  to the role that it supports [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=350&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsoft.com/global/en-us/Server-Cloud/PublishingImages/Demonstration/logos/logo-windows-server-2008-r2.png"><img class="alignnone" src="http://www.microsoft.com/global/en-us/Server-Cloud/PublishingImages/Demonstration/logos/logo-windows-server-2008-r2.png" alt="" width="366" height="51" /></a></p>
<p><a href="http://www.clusterdb.com/wp-content/uploads/2011/09/windows-2008-r2-logo1.jpg"><img class="alignnone" src="http://www.clusterdb.com/wp-content/uploads/2011/09/windows-2008-r2-logo1.jpg" alt="" width="472" height="260" /></a></p>
<p>Windows Server 2008 offers two general types of installation : a typical Full server installation and Server Core. Server Core is a stripped down version of Windows Server 2008 that doesn&#8217;t include a GUI or any unneeded services. Instead , the server installs only key features that are related  to the role that it supports &#8211; for example , Active Directory  ,or Domain Name System (DNS).</p>
<p>One of server&#8217;s engineers biggest gripes about the manual Windows Server installation process in the past was that they had to babysit the server as it went through the installation , because they had to key in bits of information at different times throughout the process &#8211; license information , componenets to install , and network configuration , for example. Of course , the easy solution to all this is to perform an unattended installation , but for the one offs that require a manual installation , the process was far from being  &#8220;set and forget&#8221;.</p>
<p>In Windows Server 2008 , this problem has been addressed by reducing the number of interactive steps required to get your server up and running. All the necessary questions for the installation are asked up front , before you begin the actual installation process of copying the files and performing the initial server configuration. By doing this , the installation process no longer has to stop for additional information before it can proceed. Once the server software installation is complete , installation of components and the configuration of the server can proceed under the new integrated management tool called Server Manager.</p>
<p><strong>Minimum System Requirement:-</strong></p>
<p>Processor: Minimum: 1GH</p>
<p>Memory: Minimum: 512MB RAM</p>
<p>Disk Space: Minimum: 8GB</p>
<h3>Windows Server 2008 Core: Read-Only DC</h3>
<div> New in Windows Server 2008 is the option to create a read-only domain controller (RODC). To deploy an RODC, the domain controller that holds the PDC emulator operations master role (also known as flexible single master operations or FSMO) for the domain must be running Windows Server 2008. In addition, the functional level for the forest must be Windows Server 2003.</div>
<p>Because the administration of a Server Core is done from the command line only (at least initially), dcpromo must be run with a host of options to promote the Server Core installation to a domain controller (read-only or standard). From the Windows Server 2008 Technical Library, here are the <a href="http://technet2.microsoft.com/windowsserver2008/en/library/d660e761-9ee7-4382-822a-06fc2365a1d21033.mspx?mfr=true">command line options for dcpromo</a>. The options can optionally be specified in an answer file.</p>
<p>So, to create a RODC on a Server Core installation without also installing DNS, the command line would be:</p>
<p>dcpromo /unattend /ReplicaDomainDNSName:&lt;FQDN_of_Domain&gt; /ReplicaOrNewDomain:ReadOnlyReplica /SiteName:&lt;site_name&gt; /InstallDNS:No /DatabasePath:&#8221;C:\NTDS&#8221; /LogPath:&#8221;C:\NTDS&#8221; /SysVolPath:&#8221;C:\SYSVOL&#8221;</p>
<p>Obviously, the paths for the database, logs, and sysvol would need to be changed to the appropriate location for your environment. The bulk of the parameters are pretty self-explanatory, but two need attention called out. First, the /ReplicaOrNewDomain:ReadOnlyReplica parameter is what defines the DC as a RODC. Using /ReplicaOrNewDomain:Replica creates a standard DC in an existing domain. Using /ReplicaOrNewDomain:NewDomain should be pretty obvious, but it does introduce a slew of different required parameters and options. Also, when creating a RODC you must specify the site name using the /SiteName parameter. I’m not sure, but I would assume this is for the enabling of universal group membership caching. So, if you haven’t figured it out, you’ll need to create the site for the RODC in AD DS before you promote the server to a RODC.</p>
<p>Other handy parameters:</p>
<ul>
<li>
<div><strong>/ConfirmGC:No</strong> – Do not configure the server as a GC (Default is Yes).</div>
</li>
<li>
<div><strong>/CriticalReplicationOnly:Yes</strong> – This forces dcpromo to only replicate the critical directory information before rebooting, postpoting the full replication of the remaining AD DS information until after a reboot; can be useful for large directories to speed up the dcpromo process (Default is No).</div>
</li>
<li>
<div><strong>/ReplicationSourceDC:&lt;FQDN_of_DC&gt;</strong> – This forces the replication operation to use a specific domain controller.</div>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khairul07.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khairul07.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khairul07.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khairul07.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khairul07.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khairul07.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khairul07.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khairul07.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khairul07.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khairul07.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khairul07.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khairul07.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khairul07.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khairul07.wordpress.com/350/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=350&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://khairul07.wordpress.com/2011/11/15/windows-server-2008-administration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7532e1bb4283340e07da8acff0bc7da1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">khairul07</media:title>
		</media:content>

		<media:content url="http://www.microsoft.com/global/en-us/Server-Cloud/PublishingImages/Demonstration/logos/logo-windows-server-2008-r2.png" medium="image" />

		<media:content url="http://www.clusterdb.com/wp-content/uploads/2011/09/windows-2008-r2-logo1.jpg" medium="image" />
	</item>
		<item>
		<title>The new Mandriva Linux 2011 &#8211; &#8220;Hydrogen&#8221;&#8230;</title>
		<link>http://khairul07.wordpress.com/2011/11/01/the-new-mandriva-linux-2011-hydrogen/</link>
		<comments>http://khairul07.wordpress.com/2011/11/01/the-new-mandriva-linux-2011-hydrogen/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 21:07:33 +0000</pubDate>
		<dc:creator>khairul07</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://khairul07.wordpress.com/?p=339</guid>
		<description><![CDATA[I don&#8217;t think Mandriva particularly needs an introduction. Suffice it to say that it was among the original premiere easy-to-use Linux distributions, along with MEPIS, even before Ubuntu existed. It came up with the all-in-one Mandrake Control Center (now, of course, the Mandriva Control Center) and made graphical installations easier to do. It has continued [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=339&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://webapps.mandriva.com/style/nav/style/images/mandriva-logo-opt.png"><img class="alignnone" src="http://webapps.mandriva.com/style/nav/style/images/mandriva-logo-opt.png" alt="" width="172" height="40" /></a></p>
<p><a href="http://khairul07.files.wordpress.com/2011/11/snapshot1.png?w=300"><img class="alignnone" src="http://khairul07.files.wordpress.com/2011/11/snapshot1.png?w=320&#038;h=180" alt="" width="320" height="180" /></a></p>
<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p>I don&#8217;t think Mandriva particularly needs an introduction. Suffice it to say that it was among the original premiere easy-to-use Linux distributions, along with MEPIS, even before Ubuntu existed. It came up with the all-in-one Mandrake Control Center (now, of course, the Mandriva Control Center) and made graphical installations easier to do. It has continued with a dedicated following, but in recent months it almost collapsed, even prompting the introduction of Mageia, a fork dedicated to advancing Mandriva while staying true to its core values (more on that shortly). Its financial woes have continued, but while the last few releases made a few changes to the implementation of KDE 4 but overall nothing too drastic, this release aims to bring back some of the old luster by completely rethinking the way KDE 4 is supposed to work. Let&#8217;s see how true that is in a bit.</p>
<p>I tested Mandriva 2011 &#8220;Hydrogen&#8221; on a live USB, first made with MultiSystem and then made with UnetBootin. I was surprised that Mandriva booted after having the live USB made with UnetBootin, because for the last few years Mandriva ISO files have failed to work right with UnetBootin. I guess that application has gotten better at properly writing these ISO files to USB sticks. I tested the installation procedure in a VirtualBox VM in a Pinguy OS 11.04 Mini UnetBootin-created live USB host with 1024 MB of RAM allocated to the guest OS; I initially tried to do the VM thing within the Mandriva live USB system, but that failed (more on that later), and anyway, using Pinguy OS ensured better consistency.</p>
<p>I don&#8217;t think I&#8217;ve ever written about testing a system with both MultiSystem and UnetBootin. So why have I done so this time? Well, this was originally supposed to be a comparison test with Mageia 1 included. However, Mageia was not recognized by MultiSystem, and the UnetBootin-created Mageia live USB failed to boot properly. That was odd, considering that there were reports of older alpha and beta releases of Mageia that booted fine when the live USB was created with UnetBootin. I think I&#8217;ll hold off trying out Mageia until it is supported by MultiSystem, at which point I&#8217;ll review it separately but through the lens of a comparison test, sort of like how I approached Scientific Linux 6 and CentOS 6. In any case, I&#8217;m too impatient to hold off testing Mandriva for the sake of Mageia. Also note that while I made all the following observations about Mandriva in MultiSystem, I was able to replicate all of them in UnetBootin, as I have seen with other distributions as well.<br />
With all this in mind, follow the jump to see what Mandriva 2011 &#8220;Hydrogen&#8221; is like.</p>
<p><a name="more"></a>After the boot menu, I was greeted by a fairly fast boot time, and I was able to see a nice spinning wheel on a baby-blue Mandriva-branded background for the boot splash. It all looked OK, which told me that unlike Mandriva 2010.X, Mandriva 2011 recognized my laptop&#8217;s graphics card and native resolution properly out-of-the-box. After that, I was taken to a series of dialog boxes asking for language, locale, and keyboard settings. That led into a customized KDE splash screen with the same color background as before with 5 icons appearing in succession, followed by the desktop.</p>
<p>It really is true. KDE in Mandriva 2011 &#8220;Hydrogen&#8221; is unlike anything you have ever seen before. Wow! There&#8217;s a lot of stuff going on here, so I&#8217;ll try to get through all the changes, which have all been designed with the help of the Russian ROSA Labs.<br />
There is one panel at the bottom, but it isn&#8217;t a standard KDE Plasma Panel; it&#8217;s a RocketBar by ROSA. From left to right, it contains a menu icon, a task switcher that works a lot more like the one in Microsoft Windows 7 than the Smooth Tasks Plasmoid does (and thus seems a lot more professionally-done), &#8220;Stacks&#8221; showing pop-up preview boxes of the Documents and Downloads folders, and the system tray.</p>
<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><a href="http://khairul07.files.wordpress.com/2011/11/snapshot2.png"><img src="http://khairul07.files.wordpress.com/2011/11/snapshot2.png?w=320&#038;h=179" alt="" width="320" height="179" border="0" /></a></td>
</tr>
<tr>
<td>URPMI + Dolphin</td>
</tr>
</tbody>
</table>
<p>The main menu is not a standard Kickoff menu or a KDE 3-style accordion menu. It is the ROSA-designed almost-full-screen SimpleWelcome menu. It is divided into three tabs; the first shows recently used applications and documents. The second shows all applications, divided into categories (though an unusually large number of applications got dumped into the &#8220;Tools&#8221; category). The third shows TimeFrame, which is the ROSA-designed file searcher which uses Nepomuk to search for and show files solely by creation date; this is the first truly useful use (I know that wording sounds weird, but you know what I mean) of Nepomuk I have seen so far, but because Nepomuk is disabled to make the desktop faster and snappier (which it is), TimeFrame is also disabled by default. All three tabs can be searched via a search box at the top. Some may complain that it seems too inspired by Apple&#8217;s iOS, but I do like it a lot, and it does work better than the Kickoff menu.<br />
The icon, KWin, and Plasma themes are all designed by ROSA uniquely for Mandriva, though the icon theme seems to be a combination of Elementary and something else, while the KWin theme reminds me a little too much of the Microsoft Windows Vista Basic Aero theme.<br />
The one small problem I had was that I couldn&#8217;t add a second instance of RocketBar; it looks like there was only meant to be one such instance at a time. Otherwise, the desktop works really, <em>really</em> well, and is truly a feast for the eyes.</p>
<p>Mozilla Firefox 5 is the default browser, but no multimedia codecs are included, which is strange for a 1.6 GB Mandriva ISO file and is really just strange for Mandriva in general. I had to get them from URPMI, the Mandriva Control package installer, but first, I needed to enable repositories, which took a <strong>really</strong> long time. After that, I was able to install Adobe Flash and other codecs, and I was able to watch YouTube and Hulu fine; at the same time, both my laptop&#8217;s sound card and its volume keyboard shortcuts were recognized out-of-the-box.</p>
<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><a href="http://khairul07.files.wordpress.com/2011/11/snapshot3.png"><img src="http://khairul07.files.wordpress.com/2011/11/snapshot3.png?w=320&#038;h=179" alt="" width="320" height="179" border="0" /></a></td>
</tr>
<tr>
<td>Mozilla Firefox + LibreOffice Writer +<br />
SimpleWelcome + Desktop Cube</td>
</tr>
</tbody>
</table>
<p>Other installed applications include LibreOffice, Clementine, K3B, some KDE games, Shotwell, PiTiVi, and others. I&#8217;m surprised Shotwell and PiTiVi were included instead of the KDE equivalents digiKam and Kdenlive, but I guess the developers really wanted to go for ease of use at the small expense of KDE integration (though they look identically-themed to the other KDE applications anyway) instead of the other way around, so bravo to them for that decision. Also included are specific tools to configure Lexmark and Epson printers alongside the generic printer configuration tools; I know firsthand that Lexmark printers don&#8217;t play well with Linux, but I was always under the impression that Epson printers play as well with Linux as do HP printers. Finally, though it is no surprise that Dolphin is the default file manager, it is configured to have a simpler interface, as many extraneous buttons have been hidden and the menubar has been compacted into a button. That last change has become the default in KDE 4.7, but as Mandriva 2011 &#8220;Hydrogen&#8221; uses KDE 4.6, I guess that setting must have been the doing of ROSA Labs, which shows how much they go above and beyond normal configuration.<br />
At some point around here, as I was playing around with the desktop, Mandriva crashed, necessitating a cold reboot. Uh-oh.<br />
Skype worked by downloading and extracting the dynamic package and running the executable, while the Google Talk voice/video plugin worked by downloading and installing the RPM package as recommended by Mozilla Firefox. Both recognized my webcam and mic perfectly.</p>
<p>Aside from a few isolated instances, Mandriva generally felt quite snappy and fast. It used 400 MB of RAM at idle, which I think is about average for KDE 4.<br />
KWin desktop effects worked well after I enabled them. The only issue I had was that there was no keyboard shortcut to directly change the virtual workspace; I had to zoom out to see the whole desktop cube to change workspaces, which is a little more cumbersome and time-consuming. What I mean is there&#8217;s no shortcut like CTRL+ALT+LEFT to switch to the workspace immediately to the left. For some reason I also couldn&#8217;t find any way to set such shortcuts to my liking.</p>
<p>At this point, I moved onto the installation. As this was originally supposed to be a comparison, I had meant to run VirtualBox VMs within each respective live USB system, so even as I wrote Mageia out of this article, I thought that I would still install and run VirtualBox in this Mandriva live USB. Unfortunately, trying to run the VM made the system crash and freeze yet again, necessitating another cold reboot; while I have seen other live USB systems crash when trying to run VirtualBox, this is still not confidence-inspiring.<br />
At this point, I went into a Pinguy OS 11.04 Mini live USB system made with UnetBootin and did the same things with VirtualBox, and it worked! I was able to start the installation from the live system OK. One interesting thing is that the default resolution of the VM was higher than I&#8217;ve ever seen in a VM, which is a very good thing if you ask me.<br />
(Please note that I really meant to include pictures of the installer, but it completely slipped my mind somehow. Sorry! Anyway, you can probably find tons of such pictures on other sites.)<br />
Because Mandriva asks for language, localization, and keyboard layout prior to logging in, the installation skipped those steps and went straight into partitioning. This makes sense because it ensures better live <strong>and</strong> installed experiences. Based on some other reviews I have read, partitioning continues to be the weak point. It&#8217;s hampered by garish colors and the fact that users need to look at a legend of partition colors to figure out which partition is which; furthermore, the graphic doesn&#8217;t show OS labels like some other installer partitioning graphics do. For an installer that was the pioneer of easy partitioning, it&#8217;s a shame that it seems to have progressed so little in the last few years. One good thing now that apparently wasn&#8217;t there before is that there is a warning screen telling the user that the disk will be formatted and data will be lost, giving the option of aborting the installation before such changes are made permanent. After that comes the main installation, replete with a nice slideshow showing the great features of Mandriva in simplified blue artwork. The main installation took about 15 minutes, which is slightly worse than average but still not <em>too</em> long. After that came bootloader configuration; the nice thing here is that if GRUB is used (and it almost always is), the installer shows the boot menu before the installation of GRUB. This means that users will be notified beforehand if any preexisting OSs are not recognized, meaning the problem can be fixed before it is even encountered, which is great! This was followed by a prompt to reboot.</p>
<p>After rebooting, GRUB looked a lot nicer. After the boot menu came dialog boxes asking for the user&#8217;s country, the root password, and then the new user name and password. The only issue here was while the user can have an icon, the icon can only be selected by scrolling through a list in a certain order, instead of easily picking from a grid or something like that. After that came the login manager KDM, which is easily the most professional-looking login manager I have seen in any Linux distribution. It&#8217;s even better than the one in Microsoft Windows, and that&#8217;s one thing Microsoft gets right, if you ask me. After that came the installed session, which worked identically to the live session, so that&#8217;s where my time with Mandriva ended.</p>
<p>The issues I had with the RocketBar and VirtualBox crashes probably won&#8217;t affect most users, but they did annoy me a little. The other random crash I experienced slightly hampered an otherwise amazing experience, but other users&#8217; experiences may vary depending on the hardware and whether a live DVD or live USB is used. And while newbies may need a little help with the installer, I can give this 95% of a full recommendation. Mandriva has truly reinvented itself, and the end result is beautiful in almost every way.<br />
You can get it <a href="http://www.mandriva.com/en/downloads/">here</a>, though be warned that the servers may be slow due to high demand, as it was just released 2 days ago.</p>
<p>P/s:- This article is taken from Prashanth Venkataram.</p>
<p>* For this week , I&#8217;m busy studying for my TBE &#8211; Takaful Basic Exam that will be held at Convent Bukit Nanas , Jln Ampang. I&#8217;m now working as an Agent AIA AFG Takaful Bhd , and as a Takaful Wealth Advisor. Islamic Financing and Banking is cool&#8230;.everybody should try it&#8230;Just install back my Windows Server 2003 R2 Enterprise Edition&#8230;this time with no flaws&#8230;.Hope to see you guys next week&#8230;till then&#8230;bye&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khairul07.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khairul07.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khairul07.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khairul07.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khairul07.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khairul07.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khairul07.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khairul07.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khairul07.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khairul07.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khairul07.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khairul07.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khairul07.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khairul07.wordpress.com/339/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=339&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://khairul07.wordpress.com/2011/11/01/the-new-mandriva-linux-2011-hydrogen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7532e1bb4283340e07da8acff0bc7da1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">khairul07</media:title>
		</media:content>

		<media:content url="http://webapps.mandriva.com/style/nav/style/images/mandriva-logo-opt.png" medium="image" />

		<media:content url="http://khairul07.files.wordpress.com/2011/11/snapshot1.png?w=300" medium="image" />

		<media:content url="http://khairul07.files.wordpress.com/2011/11/snapshot2.png?w=300" medium="image" />

		<media:content url="http://khairul07.files.wordpress.com/2011/11/snapshot3.png?w=300" medium="image" />
	</item>
		<item>
		<title>System Center Data Protection Manager 2012 Beta &#8211; Now Available!</title>
		<link>http://khairul07.wordpress.com/2011/10/21/system-center-data-protection-manager-2012-beta-now-available/</link>
		<comments>http://khairul07.wordpress.com/2011/10/21/system-center-data-protection-manager-2012-beta-now-available/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 14:37:47 +0000</pubDate>
		<dc:creator>khairul07</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://khairul07.wordpress.com/?p=332</guid>
		<description><![CDATA[We are very excited to announce the release of DPM 2012 Beta. Some of the big enhancements include: Centralized Management of DPM Servers (built on top of System Center Operations Manager ) A Central Console from which you can monitor and manage all the backup servers in your datacenter. Need it today for the DPM [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=332&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h4></h4>
<h4><a href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-47-87-metablogapi/5047.DPM-2010-logo_5F00_thumb.png"><img class="alignnone" src="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-47-87-metablogapi/5047.DPM-2010-logo_5F00_thumb.png" alt="" width="244" height="56" /></a></h4>
<h4>We are very excited to announce the release of DPM 2012 Beta.</h4>
<p>Some of the big enhancements include:</p>
<ol>
<ol>
<li><strong><em>Centralized Management of DPM Servers (built on top of System Center Operations Manager )</em></strong>
<ul>
<li><strong>A Central Console</strong> from which you can <em>monitor and manage all the backup servers in your datacenter.</em></li>
<li><strong>Need it today for the DPM 2010 environment? We got it!</strong> &#8211; Use a single console to monitor both DPM 2012 and DPM 2010 servers! (Make sure you download the interoperability patch for DPM 2010)</li>
<li><strong>Role Based Access enabled </strong>– Use one of the 8 default roles or create a new role from scratch in a minute. Default Roles include : <em>Read-Only User; Recovery Operator ; Reporting Operator; Tier-1 Support (help desk); Tier-2 Support(escalation); TAPE Operator; TAPE Admins and DPM Admins</em></li>
</ul>
</li>
<li><strong><em>Certificate Based Protection </em></strong>Backup machines from domains not trusted by the DPM Server domain including workgroup machines using certificates</li>
<li><strong><em>Best for Microsoft Apps</em></strong>
<ul>
<li><strong><em>Enhanced Hyper-V  Support </em></strong>– Faster Hyper-V backups (Express Full) support for standalone Hyper-V hosts and ability to perform item level recovery even when DPM is running inside a VM.</li>
<li><strong><em>Enhanced SharePoint Support</em></strong>– Recover files in seconds. Item level Recovery without moving content DBs. SharePoint RBS Support.</li>
<li><strong><em>SQL FILESTREAM Support</em></strong></li>
</ul>
</li>
<li><em><em><strong></strong></em></em><strong><em>Consolidate databases of multiple DPM Servers on same SQL Instance.</em></strong></li>
<li>And as always, <strong><em>seamless upgrade experience </em></strong>from your existing DPM environment (DPM 2010).</li>
</ol>
</ol>
<div>Data Protection Manager 2010 (DPM 2010) is part of the System Center family of management products from Microsoft. It delivers unified data protection for Windows servers such as SQL Server, Exchange, SharePoint, Virtualization and file servers &#8212; as well as Windows desktops and laptops.</div>
<ul type="disc">
<li>New in 2010 is the ability for roaming laptops to get centrally managed policies around desktop protection. Your laptop data will be protected whether you are connected to the corporate network or travelling.</li>
<li>DPM 2010 also provides native site-to-site replication for Disaster Recovery to either another DPM 2010 server or an off-site cloud provider.</li>
<li>Centrally managed System State and Bare Metal Recovery are also new in DPM 2010.</li>
</ul>
<div>DPM 2010 seamlessly uses disk, tape, and cloud-based repositories to deliver an easy-to-use and best-of-breed backup and recovery solution for Windows environments from Microsoft. Windows customers of all sizes can rely on Microsoft to provide a scalable and manageable protection solution that is cost-effective, secure, and reliable.</div>
<p><strong><em><em><strong>UI – </strong>Yes. Download it, see it, tell us how you feel </em><strong><em></em></strong>Feature Enhancements </em></strong>– Improved reliability, space optimization and more flexible job management capabilities.</p>
<p>p/s: &#8211; This is the new version of Metasploit Pro. Here  is the download link:-</p>
<p><a href="http://metasploit.com/download">http://metasploit.com/download </a></p>
<p>Till then , have a nice weekend ahead&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khairul07.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khairul07.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khairul07.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khairul07.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khairul07.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khairul07.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khairul07.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khairul07.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khairul07.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khairul07.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khairul07.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khairul07.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khairul07.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khairul07.wordpress.com/332/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=332&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://khairul07.wordpress.com/2011/10/21/system-center-data-protection-manager-2012-beta-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7532e1bb4283340e07da8acff0bc7da1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">khairul07</media:title>
		</media:content>

		<media:content url="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-47-87-metablogapi/5047.DPM-2010-logo_5F00_thumb.png" medium="image" />
	</item>
		<item>
		<title>Blackbuntu &#8211; Penetration testing distribution&#8230;.</title>
		<link>http://khairul07.wordpress.com/2011/10/08/blackbuntu-penetration-testing-distribution/</link>
		<comments>http://khairul07.wordpress.com/2011/10/08/blackbuntu-penetration-testing-distribution/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 21:55:51 +0000</pubDate>
		<dc:creator>khairul07</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://khairul07.wordpress.com/?p=328</guid>
		<description><![CDATA[Blackbuntu is distribution for penetration testing which was specially designed for security training students and practitioners of information security. Blackbuntu is Ubuntu base distro for Penetration Testing with GNOME Desktop Environment. It&#8217;s currently being built using the Ubuntu 10.10. Tools listed in Blackbuntu penetration testing distribution:- Information Gathering Network Mapping Vulnerability Identification Penetration Privilege Escalation [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=328&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blackbuntu.com/sites/all/themes/contrast/images/h_back.jpg"><img class="alignnone" src="http://www.blackbuntu.com/sites/all/themes/contrast/images/h_back.jpg" alt="" width="620" height="206" /></a></p>
<div id="mission">
<p>Blackbuntu is distribution for penetration testing which was specially designed for security training students and practitioners of information security.</p>
<p>Blackbuntu is Ubuntu base distro for Penetration Testing with <a href="http://www.gnome.org/"><strong>GNOME </strong></a>Desktop Environment. It&#8217;s currently being built using the <a href="http://www.ubuntu.com/"><strong>Ubuntu 10.10</strong></a>.</p>
</div>
<p>Tools listed in Blackbuntu penetration testing distribution:-</p>
<ul>
<li><a href="http://www.blackbuntu.com/information-gathering">Information Gathering</a></li>
<li><a href="http://www.blackbuntu.com/network-mapping">Network Mapping</a></li>
<li><a href="http://www.blackbuntu.com/vulnerability-identification">Vulnerability Identification</a></li>
<li><a href="http://www.blackbuntu.com/penetration">Penetration</a></li>
<li><a href="http://www.blackbuntu.com/privilege-escalation">Privilege Escalation</a></li>
<li><a href="http://www.blackbuntu.com/maintaining-access">Maintaining Access</a></li>
<li><a href="http://www.blackbuntu.com/radio-network-analysis">Radio Network Analysis</a></li>
<li><a href="http://www.blackbuntu.com/voip-analysis">VoIP Analysis</a></li>
<li><a href="http://www.blackbuntu.com/digital-forensic">Digital Forensic</a></li>
<li><a href="http://www.blackbuntu.com/reversing-engineering">Reverse Engineering</a></li>
<li><a href="http://www.blackbuntu.com/miscellaneous">Miscellanious</a></li>
</ul>
<div>
<p><strong>System requirements</strong></p>
<ul>
<li>1GHz x86 processor</li>
<li>768 MB of system memory (RAM)</li>
<li>10 GB of disk space for installation</li>
<li>Graphics card capable of 800×600 resolution</li>
<li>DVD-ROM drive or USB port</li>
</ul>
<p>Well , here&#8217;s is the download link for the iso &#8211; Blackbuntu. It&#8217;s a Blackbuntu Community Edition 0.3.</p>
</div>
<p><a href="http://sourceforge.net/projects/blackbuntu/files/Community%20Edition/Community%20Edition%200.3/bb03-amd64-final.iso/download">http://sourceforge.net/projects/blackbuntu/files/Community%20Edition/Community%20Edition%200.3/bb03-amd64-final.iso/download</a></p>
<p>P/S:- Steve Jobs , founder of Apple Inc had passed away peacefully&#8230;.He is one of the world&#8217;s creator and entrepreneur of computers , tablet pc , and smart phones. He&#8217;s creation of Iphone5 , Apple&#8217;s Ipad and Apple Mac-OSx Leopard operating system cannot challenge anyone in the world. He is like a computer genius and a guru. Without him , the world of smart phones and computers is silent&#8230;.Founder of Apple Inc.</p>
<p>P/S:- Hack In the Box (HITB) Security Conference 2011 is held at Hotel Intercontinental KL starting from 10th October till 13th October 2011 this year. Lab session starts on 10th October while Conferences starts on 12th October till 13th October . This year many presenters all around the glob attend and they present many interesting topic. Check this out:-</p>
<p><a href="https://conference.hitb.org/hitbsecconf2011kul/?page_id=24">https://conference.hitb.org/hitbsecconf2011kul/?page_id=24<br />
</a></p>
<p>Well , that&#8217;s all for this week post..Hope to see you guys next week&#8230;.Till then , have a nice weekend&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khairul07.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khairul07.wordpress.com/328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khairul07.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khairul07.wordpress.com/328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khairul07.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khairul07.wordpress.com/328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khairul07.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khairul07.wordpress.com/328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khairul07.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khairul07.wordpress.com/328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khairul07.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khairul07.wordpress.com/328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khairul07.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khairul07.wordpress.com/328/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=328&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://khairul07.wordpress.com/2011/10/08/blackbuntu-penetration-testing-distribution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7532e1bb4283340e07da8acff0bc7da1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">khairul07</media:title>
		</media:content>

		<media:content url="http://www.blackbuntu.com/sites/all/themes/contrast/images/h_back.jpg" medium="image" />
	</item>
		<item>
		<title>Microsoft Windows MultiPoint Server 2011&#8230;.</title>
		<link>http://khairul07.wordpress.com/2011/09/27/microsoft-windows-multipoint-server-2011/</link>
		<comments>http://khairul07.wordpress.com/2011/09/27/microsoft-windows-multipoint-server-2011/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 15:52:15 +0000</pubDate>
		<dc:creator>khairul07</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://khairul07.wordpress.com/?p=321</guid>
		<description><![CDATA[We also hear that they often lack necessary IT support. Windows MultiPoint Server 2011 is designed to address these challenges so teachers and students can tap into a single computer that supports multiple users. This eliminates the need to buy more computers, cutting down on hardware purchasing costs as well as ongoing operational costs for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=321&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-68-metablogapi/3108.wms2011_5F00_5BD30C22.png"><img title="wms2011" src="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-68-metablogapi/3034.wms2011_5F00_thumb_5F00_0D5E79B8.png" alt="wms2011" width="450" height="28" border="0" /></a></p>
<p>We also hear that they often lack necessary IT support. Windows MultiPoint Server 2011 is designed to address these challenges so teachers and students can tap into a single computer that supports multiple users. This eliminates the need to buy more computers, cutting down on hardware purchasing costs as well as ongoing operational costs for things like support and energy usage.</p>
<p>More students and teachers need access to technology to get ready to compete for 21st century jobs, but many schools don’t have sufficient budget to buy the computers they need. Plus, finding money for ongoing maintenance and support can be a challenge. In addition, schools need innovative ways to get the most out of older technology investments that they have already made.</p>
<p>Windows MultiPoint Server is a great solution. With Windows MultiPoint Server, one host computer is shared by multiple users simultaneously, enabling schools to reduce overall costs 66% by saving on hardware, energy and maintenance. Schools can effectively triple the number of Windows computers without increasing budget.</p>
<p>MultiPoint Server 2011 has been recently released to manufacturing and includes several new features and upgrades to MultiPoint Server 2010. Desktop Orchestration is a new administration feature. It gives admins a thumbnail view over all MultiPoint desktops in a network. With it, administrators can instantly block a station, close or open a stations&#8217;s applications, project one station to another and limit website browsing. Software integrators have new capabilities as well with MultiPoint Manager extensibility. They can add new tabs or sub-tabs to the MultiPoint Manager interface and create new controls. MultiPoint Server has a common SDK with both Windows Small Business Server 2011 and Windows Home Server 2011 and is built on the Windows Sever 2008 RS SP1 platform.</p>
<p>Other key features include a Windows 7 desktop experience at each station, multiple language support, private USB and unique IP addresses for each station.</p>
<p><img src="image/png;base64,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" alt="" /></p>
<p>Example: Windows Multipoint Server 2011 in school.</p>
<p><a href="http://www.microsoft.com/windows/multipoint/images/msHomeImage03.jpg"><img class="alignnone" src="http://www.microsoft.com/windows/multipoint/images/msHomeImage03.jpg" alt="" width="220" height="135" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khairul07.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khairul07.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khairul07.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khairul07.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khairul07.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khairul07.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khairul07.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khairul07.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khairul07.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khairul07.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khairul07.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khairul07.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khairul07.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khairul07.wordpress.com/321/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=321&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://khairul07.wordpress.com/2011/09/27/microsoft-windows-multipoint-server-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7532e1bb4283340e07da8acff0bc7da1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">khairul07</media:title>
		</media:content>

		<media:content url="http://windowsteamblog.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-53-68-metablogapi/3034.wms2011_5F00_thumb_5F00_0D5E79B8.png" medium="image">
			<media:title type="html">wms2011</media:title>
		</media:content>

		<media:content url="http://www.microsoft.com/windows/multipoint/images/msHomeImage03.jpg" medium="image" />
	</item>
		<item>
		<title>The new linux kernel 3.0&#8230;New features and add on&#8230;.</title>
		<link>http://khairul07.wordpress.com/2011/08/11/the-new-linux-kernel-3-0-new-features-and-add-on/</link>
		<comments>http://khairul07.wordpress.com/2011/08/11/the-new-linux-kernel-3-0-new-features-and-add-on/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 18:57:55 +0000</pubDate>
		<dc:creator>khairul07</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://khairul07.wordpress.com/?p=318</guid>
		<description><![CDATA[What&#8217;s new in Linux 3.0 The transition to the Linux kernel&#8217;s &#8216;third decade&#8217; sees numerous changes to the Btrfs filesystem. The kernel now includes all the major components needed to host guest systems under Xen and includes many new and revised drivers. Linus Torvalds and his collaborators have taken just two months to complete the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=318&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1><a href="http://www.h-online.com/open/imgs/45/6/7/5/3/5/1/KL.jpg-4677d3004996dcc3.jpeg"><img class="alignnone" src="http://www.h-online.com/open/imgs/45/6/7/5/3/5/1/KL.jpg-4677d3004996dcc3.jpeg" alt="" width="151" height="200" /></a></h1>
<h1></h1>
<h1>What&#8217;s new in Linux 3.0</h1>
<p><strong>The transition to the Linux kernel&#8217;s &#8216;third decade&#8217; sees numerous changes to the Btrfs filesystem. The kernel now includes all the major components needed to host guest systems under Xen and includes many new and revised drivers.</strong></p>
<p>Linus Torvalds and his collaborators have taken just two months to <a href="http://thread.gmane.org/gmane.linux.kernel/1170070" rel="external" target="_blank">complete</a> the latest kernel. The most notable change, however, is cosmetic rather than technical – the transition from version 2.6.39 to 3.0. This not been taken as a cue to insert major changes, however, and the new kernel is in fact a perfectly normal version increment, following the pattern set for the 2.6 series.</p>
<p>New features in Linux 3.0 include the addition of a storage backend for Xen, which means that the kernel now contains all the major components required to run as Dom0 – the merger of Xen support appeared tantalisingly close six years ago, but it has taken until now for it to actually happen. There have also been a number of changes to the Btrfs filesystem and to graphics drivers. Kernel developers have as ever also added several new drivers and have improved many existing drivers.</p>
<p>This article will provide a brief description of the new Linux version&#8217;s most important improvements. Many of these improvements affect not only servers but also notebooks and desktop PCs. The distribution kernels will bring the improvements to the majority of Linux systems in the short or medium term, as these kernels are based on the kernels released by Linus Torvalds.</p>
<p>&nbsp;</p>
<div>
<h4>In detail</h4>
<p>This article provides an overview of the most important changes of Linux version 3.0. More detailed information can be found in the Kernel Logs of the &#8220;Coming in 3.0&#8243; mini series, released over the past few weeks on <a href="http://www.h-online.com/open/" rel="external" target="_blank">The H Open</a>, which form the basis of this article.</p>
<ul>
<li>Part 1: <a href="http://www.h-online.com/open/features/Kernel-Log-Coming-in-3-0-Part-1-Networking-1257847.html">Networking</a></li>
<li>Part 2: <a href="http://www.h-online.com/open/features/Kernel-Log-Coming-in-3-0-Part-2-Filesystems-1263681.html">Filesystems</a></li>
<li>Part 3: <a href="http://www.h-online.com/open/features/Kernel-Log-Coming-in-3-0-Part-3-Infrastructure-1275463.html">Architecture, infrastructure and virtualisation</a></li>
<li>Part 4: <a href="http://www.h-online.com/open/features/Kernel-Log-Coming-in-3-0-Part-4-Drivers-1276887.html">Drivers</a></li>
</ul>
<p>In these articles, you will find the more detailed source articles that cover the important changes in each particular area. There is also the &#8220;Minor gems&#8221; section which lists the many other changes not mentioned in the main article but which, for many users, are still of great significance.</p>
<p>For example, in the article on Drivers, &#8220;Minor gems&#8221; lists the numerous patches to support the video hardware on different PCs, notebooks and motherboards, and lists the changes to the V4L/DVB subsystem, which includes the addition of product names for TV hardware that the Linux kernel now recognises.</p>
</div>
<h3>A great leap</h3>
<p>Incrementing the main version number and the introduction of a completely new numbering system have both been discussed in the past, but the transition to 3.0, when it came, came somewhat out of the blue. Last year, it <a href="https://lwn.net/Articles/413061/" rel="external" target="_blank">looked as if</a> kernel developers wanted to hit at least version 2.6.<a href="http://en.wikipedia.org/wiki/Phrases_from_The_Hitchhiker%27s_Guide_to_the_Galaxy#The_number_42" rel="external" target="_blank">42</a> before moving to 3.0. In the second half of May, one week after releasing Linux 2.6.39, Torvalds <a href="http://www.h-online.com/news/item/Linux-3-0-could-be-out-in-July-1248294.html">unexpectedly</a> mooted the idea of moving to version 2.8, because &#8220;the numbers are getting too big&#8221;. The discussion which ensued on LKML quickly threw up the idea of moving to 3.0 – the &#8217;3&#8242; is a nod to Linux entering its third decade, with the OS due to celebrate its 20th birthday shortly.</p>
<p>The actual decision to make the transition and shorten the version number to two, rather than three, sets of digits was taken by Torvalds a few days later, on releasing the first pre-release version of the newly released kernel. He appears to have taken the decision alone, as his position as the <a href="http://thread.gmane.org/gmane.linux.kernel/1147415" rel="external" target="_blank">alpha male</a> of Linux development enables him to do. In the <a href="http://thread.gmane.org/gmane.linux.kernel/1147415" rel="external" target="_blank">release email</a> for Linux 3.0-rc1, Torvalds was at pains to make clear that it really was to be just a new numbering system, and would not contain any major changes. He had previously rejected calls to use the version number change as an opportunity to ditch legacy items such as MCA, EISA and ISA support.</p>
<p>The new numbering system does, however, have some significance for users, as it messes up a number of applications, including system-related programs such as cryptsetup, device-mapper, LVM2, mdadm, module-init-tools and procps. To avoid problems, these applications should be updated when upgrading to kernel 3.0 or later. Some of these programs only activate mechanisms for working with recent kernels when the version number starts with 2.6, others assume that the version number contains three sets of digits. Torvalds has <a href="http://thread.gmane.org/gmane.linux.kernel/1154497/focus%3D1154880" rel="external" target="_blank">not held back</a> in criticising this approach. To <a href="http://thread.gmane.org/gmane.linux.kbuild.devel/6889" rel="external" target="_blank">get around</a> at least some manifestations of this problem, Linux 3.0 will identify itself as 3.0.0, and indeed it is likely that the next version will also add an extra &#8216;.0&#8242;. Sooner or later, however, this might be dropped. The next kernel version after 3.0 will be version 3.1. The third digit will replace the fourth in designating stable and long term kernels.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khairul07.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khairul07.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khairul07.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khairul07.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khairul07.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khairul07.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khairul07.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khairul07.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khairul07.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khairul07.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khairul07.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khairul07.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khairul07.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khairul07.wordpress.com/318/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=318&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://khairul07.wordpress.com/2011/08/11/the-new-linux-kernel-3-0-new-features-and-add-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7532e1bb4283340e07da8acff0bc7da1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">khairul07</media:title>
		</media:content>

		<media:content url="http://www.h-online.com/open/imgs/45/6/7/5/3/5/1/KL.jpg-4677d3004996dcc3.jpeg" medium="image" />
	</item>
		<item>
		<title>OpenDNS &#8211; A DNS Utility that give your computer/server full security&#8230;..</title>
		<link>http://khairul07.wordpress.com/2011/05/27/opendns-a-dns-utility-that-give-your-computerserver-full-security/</link>
		<comments>http://khairul07.wordpress.com/2011/05/27/opendns-a-dns-utility-that-give-your-computerserver-full-security/#comments</comments>
		<pubDate>Fri, 27 May 2011 16:36:29 +0000</pubDate>
		<dc:creator>khairul07</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://khairul07.wordpress.com/?p=315</guid>
		<description><![CDATA[OpenDNS is a great utility that protects your DNS server or computer from malware and other outsider attack. It provides you with filtering , malware protection , web content filtering , phishing and botnet protection , and it has a OpenDNS dashboard for use of administering the DNS and it&#8217;s features. I strongly recommend for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=315&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www-files.opendns.com/img/footer_logo.gif"><img class="alignnone" src="http://www-files.opendns.com/img/footer_logo.gif" alt="" width="167" height="67" /></a></p>
<p>OpenDNS is a great utility that protects your DNS server or computer from malware and other outsider attack. It provides you with filtering , malware protection , web content filtering , phishing and botnet protection , and it has a OpenDNS dashboard for use of administering the DNS and it&#8217;s features.</p>
<p>I strongly recommend for all of you to try out OpenDNS , if you guys really want to secure your Domain Name System (DNS) in your enterprise or local network. It&#8217;s actually free , all you have to do is just sign up , register your name and account , and set your DNS IP Address and from the dashboard , you will have all the authority to administer which feature you want to apply for your DNS , for example , web content filtering , or malware protection and much more.  I have tried it , and its just so easy to set it up. My DNS IP address now is pointing to my Streamyx Wireless Router , and from there , I can manage my router settings and my network. But I have to sign in first in the OpenDNS website.</p>
<p>Well , that&#8217;s all for this week post. I am quite busy for the past 3 month , and don&#8217;t have the time to update my blog. Fortunately , this week , I have the time to write something interesting in my blog post. If you guys want to share or comment on my blog , please feel free to do so&#8230;</p>
<p>See you guys next week&#8230;.bye&#8230;.</p>
<p>Khairul Azrin B. Azman.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khairul07.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khairul07.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khairul07.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khairul07.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khairul07.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khairul07.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khairul07.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khairul07.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khairul07.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khairul07.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khairul07.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khairul07.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khairul07.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khairul07.wordpress.com/315/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=khairul07.wordpress.com&amp;blog=1428000&amp;post=315&amp;subd=khairul07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://khairul07.wordpress.com/2011/05/27/opendns-a-dns-utility-that-give-your-computerserver-full-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7532e1bb4283340e07da8acff0bc7da1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">khairul07</media:title>
		</media:content>

		<media:content url="http://www-files.opendns.com/img/footer_logo.gif" medium="image" />
	</item>
	</channel>
</rss>
