<?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>InstaCarma Blog &#187; Linux</title>
	<atom:link href="http://www.instacarma.com/blog/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.instacarma.com/blog</link>
	<description>Information Resource for Web Hosting Technical Support and Server Management</description>
	<lastBuildDate>Sat, 10 Mar 2012 21:44:10 +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>Moving/renaming a file name with space(s)</title>
		<link>http://www.instacarma.com/blog/technical/movingrenaming-a-file-name-with-spaces/</link>
		<comments>http://www.instacarma.com/blog/technical/movingrenaming-a-file-name-with-spaces/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 20:55:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Quick fixes]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://instacarma.com/blog/?p=686</guid>
		<description><![CDATA[Filed under: Linux Issue : How to move/rename a file which has space(s) in it ? Solution : Considering that the file name is My file name.zip and you want to rename it to Myfilename.zip, there are two ways to achieve this. First, mv &#8220;My file name.zip&#8221; Myfilename.zip Second, mv My\ file\ name.zip Myfilename.zip]]></description>
			<content:encoded><![CDATA[<p>Filed under: <a href='http://www.instacarma.com/blog/tag/linux/'>Linux</a></p>
<p><strong>Issue : </strong></p>
<p>How to move/rename a file which has space(s) in it ?</p>
<p><strong>Solution : </strong></p>
<p>Considering that the file name is <em>My file name.zip</em> and you want to rename it to <em>Myfilename.zip</em>, there are two ways to achieve this. </p>
<p>First,</p>
<blockquote><p>mv &#8220;My file name.zip&#8221; Myfilename.zip</p></blockquote>
<p>Second,</p>
<blockquote><p>mv My\ file\ name.zip Myfilename.zip</p></blockquote>
<div class="alignright"><div class="g-plusone" data-href="http://www.instacarma.com/blog/technical/movingrenaming-a-file-name-with-spaces/" size="standard" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.instacarma.com/blog/technical/movingrenaming-a-file-name-with-spaces/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>64 Bit Vs 32 Bit</title>
		<link>http://www.instacarma.com/blog/technical/64-bit-vs-32-bit/</link>
		<comments>http://www.instacarma.com/blog/technical/64-bit-vs-32-bit/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 14:14:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles and tutorials]]></category>
		<category><![CDATA[Popular Posts]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://instacarma.com/blog/?p=665</guid>
		<description><![CDATA[Filed under: Linux In computer architecture, 64-bit integers, memory addresses, or other data units are those that are at most 64 bits (8 octets) wide. Also, 64-bit CPU and ALU architectures are those that are based on registers, address buses, or data buses of that size. Similar is the case with 32-bit CPU &#038; ALU [...]]]></description>
			<content:encoded><![CDATA[<p>Filed under: <a href='http://www.instacarma.com/blog/tag/linux/'>Linux</a></p>
<p>In computer architecture, 64-bit integers, memory addresses, or other data units are those that are at most 64 bits (8 octets) wide. Also, 64-bit CPU and ALU architectures are those that are based on registers, address buses, or data buses of that size. Similar is the case with 32-bit CPU &#038; ALU will have 32 bits wide registers, address buses or data buses.</p>
<p><strong>Linux Memory Architecture</strong></p>
<p>To execute a process, the Linux kernel allocates a portion of the memory area to the requesting process. The process uses the memory area as workspace and performs the required work. Today we are faced with the choice of 32-bit systems and 64-bit systems. One of the most important differences for enterprise-class clients is the possibility of virtual memory addressing above 4 GB. From a performance point of view, it is interesting to understand how the Linux kernel maps physical memory into virtual memory on both 32-bit and 64-bit systems.</p>
<p>As you can see in Figure 1  there are obvious differences in the way the Linux kernel has to address memory in 32-bit and 64-bit systems. Exploring the physical-to-virtual<br />
mapping in detail is beyond the scope of this article , so  I  highlight some specifics in the Linux memory architecture.</p>
<p>On 32-bit architectures such as the IA-32, the Linux kernel can directly address only the first gigabyte of physical memory (896 MB when considering the reserved range). Memory above the so-called ZONE_NORMAL must be mapped into the lower 1 GB. This mapping is completely transparent to applications, but allocating a memory page in ZONE_HIGHMEM causes a small performance degradation.</p>
<p>On the other hand, with 64-bit architectures such as x86-64 (also x64), ZONE_NORMAL extends all the way to 64 GB or to 128 GB in the case of IA-64 systems. As you can see, the overhead of mapping memory pages from ZONE_HIGHMEM into ZONE_NORMAL can be  eliminated by using a 64-bit architecture.</p>
<p><img src="http://instacarma.com/blog/wp-content/uploads/2009/07/65bit1.jpg" alt="65bit" title="65bit" width="600" height="470" class="aligncenter size-full wp-image-670" /></p>
<p><strong><br />
Advantages of 64-bit over 32-bit</strong></p>
<p>A common misconception is that 64-bit architectures are no better than 32-bit architectures unless the computer has more than 4 GB of main memory. This is not entirely true.</p>
<p>Some operating systems reserve portions of process address space for OS use, effectively reducing the total address space available for mapping memory for user programs. For instance, Windows XP DLLs and other user mode OS components are mapped into each process&#8217;s address space, leaving only 2 to 3 GB (depending on the settings) address space available. This restriction is not present in 64-bit operating systems.</p>
<p>Memory-mapped files are becoming more difficult to implement in 32-bit architectures, especially due to the introduction of relatively cheap recordable DVD technology. A 4 GB file is no longer uncommon, and such large files cannot be memory mapped easily to 32-bit architectures.Some programs such as data encryption software can benefit greatly from 64-bit registers (if the software is 64-bit compiled) and effectively execute 3 to 5 times faster on 64-bit than on 32-bit.</p>
<p>Some complex numerical analysis algorithms are limited in their precision by the errors that can creep in because not all floating point numbers can be accurately represented with a small number of bits.</p>
<p>On 32-bit architectures the maximum address space a single process can access is 4 GB. On the other hand, on 64-bit architecture such as x86_64 and ia64, no such restriction exists.</p>
<p>Each single process can benefit from the vast and huge address space.</p>
<p><img src="http://instacarma.com/blog/wp-content/uploads/2009/07/64bit1.jpg" alt="64bit" title="64bit" width="601" height="297" class="aligncenter size-full wp-image-672" /></p>
<p><strong>Disadvantage of 64-bit</strong></p>
<p>The main disadvantage of 64-bit architectures is that relative to 32-bit architectures the same data occupies more space in memory (due to swollen pointers and possibly other types and alignment padding). This increases the memory requirements of a given process and can have implications for efficient processor cache utilization.</p>
<p><strong>How to identify whether CPU is 64 bit or 32 bit ?</strong></p>
<p>Linux users should type the <strong>uname</strong> command. Depending on the platform, you may see</p>
<blockquote><p>[root@server1 ~]$ uname -a<br />
Linux 2.6.11-1.27_FC3 #1 Tue May 17 20:24:57 EDT 2005 x86_64 x86_64 x86_64 GNU/Linux</p>
<p>[root@server2 ~]$ uname -a<br />
Linux 2.6.9-5.0.5.EL #1 SMP Fri Apr 8 14:20:58 EDT 2005 ia64 ia64 ia64 GNU/Linux</p>
<p>[root@server3 ~]$ uname -a<br />
Linux 2.6.10-1.771_FC2smp #1 SMP Mon Mar 28 01:10:51 EST 2005 i686 i686 i386 GNU/Linux</p></blockquote>
<p>In the above listing, &#8216;server1&#8242; (x86_64 GNU/Linux) and &#8216;server2&#8242; (ia64 GNU/Linux) are 64-bit compliant. While &#8216;server3&#8242; (i386 GNU/Linux) is only a 32-bit platform.</p>
<p><strong>Microsoft Windows Server 2003</strong></p>
<p><em>Method 1</em></p>
<p>1.Click Start, click Run, type sysdm.cpl, and then click OK.<br />
2.Click the General tab. The operating system appears as follows:<br />
For a 64-bit version operating system: Microsoft Windows Server 2003 Enterprise x64 Edition appears under System.<br />
For a 32-bit version operating system: Microsoft Windows Server 2003 Enterprise Edition appears under System.</p>
<p><em>Method 2</em></p>
<p>1.Click Start, click Run, type winmsd.exe, and then click OK.<br />
2.In the details pane, locate Processor under Item. Note the value.<br />
If the value that corresponds to Processor starts with x86, the computer is running a 32-bit version of the Windows operating system.<br />
If the value that corresponds to Processor starts with EM64T or ia64, the computer is running a 64-bit version of the Windows operating system.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>References:</strong></p>
<p>Wikepedia.org</p>
<p>Linux Performance and Tuning Guidelines (ibm.com/redbooks)</p>
<div class="alignright"><div class="g-plusone" data-href="http://www.instacarma.com/blog/technical/64-bit-vs-32-bit/" size="standard" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.instacarma.com/blog/technical/64-bit-vs-32-bit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Linux Booting Process</title>
		<link>http://www.instacarma.com/blog/technical/linux-booting-process/</link>
		<comments>http://www.instacarma.com/blog/technical/linux-booting-process/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 19:53:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles and tutorials]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://instacarma.com/blog/?p=646</guid>
		<description><![CDATA[Filed under: boot, Linux The Booting process starts when the system/machine power is switched &#8220;On&#8221;. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Stage 1 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; The processor will execute the codes contained in BIOS[basic input and output system]. The BIOS is actually a program stored in ROM [Read only memory]. &#8212;&#8212; The processor runs the instruction located at the memory location [...]]]></description>
			<content:encoded><![CDATA[<p>Filed under: <a href='http://www.instacarma.com/blog/tag/boot/'>boot</a>, <a href='http://www.instacarma.com/blog/tag/linux/'>Linux</a></p>
<p>The Booting process starts when the system/machine power is switched &#8220;On&#8221;.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Stage 1</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
The processor will execute the codes contained in <strong>BIOS</strong>[basic input and output system]. The BIOS is actually a program stored in <strong>ROM</strong> [Read only memory].</p>
<p>&#8212;&#8212;</p>
<p>The processor runs the instruction located at the memory location CS:IP FFFF:0000 of the BIOS, which is located at the 0xFFFF0 address. This memory location is close to the end of the 1MB of system memory accessible in real mode. It typically contains a jump instruction that transfers execution to the location of the BIOS start-up program.</p>
<p>&#8212;&#8212;</p>
<p>The BIOS will next run <strong>POST</strong>[power on self test] to find certain hardware and its working at the basic level. It compares the hardware settings in the <strong>CMOS</strong> (Complementary Metal Oxide Semiconductor) to what is physically on the system. It then initializes the hardware devices.</p>
<p>Once the POST is completed, the processor jumps to a specific, predefined location in RAM. The instructions located here are relatively simple and basically tell the hardware to go look for a boot device.</p>
<p>The BIOS goes through a pre-configured list of non-volatile storage devices (&#8220;boot device sequence&#8221;) until it finds one that is bootable [Depending on how your CMOS is configured]. A <em>bootable</em> device is defined as one that can be read from, and the last two bytes of the first sector contain the word 0xAA55 (also known as the boot signature).</p>
<p>When a boot device is found (let&#8217;s assume that it&#8217;s a hard disk), the hardware is told to go to the 0th (first) sector (cylinder 0, head 0, sector 0), then load and execute the instructions there. This is the master boot record, or <strong>MBR</strong> .<br />
&#8212;&#8212;<br />
The conventional MBR code checks the MBR&#8217;s partition table for a partition set as bootable (the one with active flag set)[12]. If an active partition is found, the MBR code loads the boot sector code from that partition and executes it.<br />
&#8212;&#8212;</p>
<p>The BIOS will first load the MBR into memory which is only 512 bytes in size and points to the boot loader (<strong>LILO</strong>: Linux boot loader) or <strong>GRUB</strong> [GRand Unified Bootloader].</p>
<p>Once the BIOS finds and loads the boot loader program into memory, it yields control of the boot process to it.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Stage 2 &#8211; Boot Loader</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
LILO or GRUB allows the root user to set up the boot process as menu-driven or command-line, and permits the user to choose from amongst several boot options.<br />
It also allows for a default boot option after a configurable timeout, and current versions are designed to allow booting from broken Level 1 (mirrored) <strong>RAID</strong> arrays.<br />
It has the ability to create a highly configurable, &#8220;GUI-fied&#8221; boot menu, or a simple, text-only, command-line prompt.<br />
&#8212;&#8212;<br />
Due to the very small amount of data the BIOS can access, most boot loaders load in two stages. In the first stage of the boot, the BIOS loads a part of the boot loader known as the initial program loader, or IPL. The IPL interrogates the partition table and subsequently is able to load data wherever it may exist on the various media. This action is used initially to locate the second stage boot loader, which holds the remainder of the loader.</p>
<p>The second stage boot loader is the real meat of the boot loader; many consider it the only real part of the boot loader. This contains the more disk-intensive parts of the loader, such as user interfaces and kernel loaders. These user interfaces can range from a simple command line to the all-singing, all-dancing GUIs.</p>
<p>Boot loaders are usually configured in one of two ways: either as a primary boot loader or as a secondary boot loader. Primary boot loaders are where the first stage of the boot loader is installed on the MBR (per the previous description). Secondary boot loaders are where the first stage of the boot loader is installed onto a bootable partition. A separate boot loader must then be installed into the MBR and configured to pass control to the secondary boot loader.<br />
&#8212;&#8212;</p>
<p>Depending on the kernel boot option chosen or set as default, lilo or grub will load that kernel .<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Stage 3 &#8211; Kernel</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>When the kernel is loaded, it immediately initializes and configures the computer&#8217;s memory and configures the various hardware attached to the system, including all processors, I/O subsystems, and storage devices.</p>
<p>It then looks for the compressed initrd image in a predetermined location in memory, decompresses it, mounts it, and loads all necessary drivers.</p>
<p>Next, it initializes virtual devices related to the file system, such as LVM or software RAID before unmounting the initrd disk image and freeing up all the memory the disk image once occupied.</p>
<p>The kernel then creates a root device, mounts the root partition read-only, and frees any unused memory.</p>
<p>At this point, the kernel is loaded into memory and operational.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Stage 4 &#8211; Init</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
The first thing the kernel does after completing the boot process is to execute init program.<br />
The /sbin/init program (also called init) coordinates the rest of the boot process and configures the environment for the user.<br />
Init is the root/parent of all processes executing on Linux which becomes process number 1.<br />
&#8212;&#8212;<br />
The first few process Ids are given below:-<br />
1 &#8211; Init Process<br />
2 &#8211; kflushd(bdflush) : Started by update &#8211; does a more imperfect sync more frequently<br />
3 &#8211; kupdate : Does a sync every 30 seconds<br />
4 &#8211; kpiod<br />
5 &#8211; kswapd<br />
6 &#8211; mdrecoveryd</p>
<p>Processes 2, 3, 4, 5 and 6 are kernel daemons. The kernel daemons are started after init, so they get process numbers like normal processes do. But their code and data lives in the kernel&#8217;s part of the memory.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Kflushd and Kupdate<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Input and output is done via buffers in memory. This allows things to run faster and the data in the buffer are written to disk in larger more efficient chunks.<br />
The daemons kflushd and kupdate handle this work. kupdate runs periodically (5 seconds) to check whether there are any dirty buffers. If there are, it gets kflushd to flush them to disk.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Kswap and Kpiod<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
System memory can be better managed by shifting unused parts of running programs out to the swap partition(s) of the hard disk.<br />
Moving this data in and out of memory as needed is done by kpiod and kswapd.<br />
Every second or so, kswapd wakes up to check out the memory situation, and if something on the disk is needed in memory, or there is not enough free memory, kpiod is called in.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Mdrecoveryd<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
mdrecoveryd is part of the Multiple Devices package used for software RAID and combining multiple disks into one virtual disk Basically it is part of the kernel.<br />
It can be removed from the kernel by deselecting it (CONFIG_BLK_DEV_MD) and recompiling the kernel.<br />
&#8212;&#8212;</p>
<p>When the init command starts, it becomes the parent or grandparent of all of the processes that start up automatically on a Red Hat Linux system.</p>
<p>Based on the appropriate run-level in the /etc/inittab file , scripts are executed to start various processes to run the system and make it functional.<br />
1]The init command then runs the /etc/inittab script.<br />
2]The first thing init runs out of the inittab is the script /etc/rc.d/rc.sysinit , which sets the environment path, starts swap, checks the file systems, and takes care of everything the system needs to have done at system initialization.<br />
3]init looks through /etc/inittab for the line with &#8220;initdefault&#8221; in the third field. The initdefault entry tells the system what run-level to enter initially.<br />
&#8211;<br />
id:5:initdefault: ( 5 is the default runlevel)<br />
&#8211;</p>
<p>Depending on the run level, the init program starts all of the background processes by using scripts from the appropriate &#8220;rc&#8221; directory for the runlevel.<br />
For instance, /etc/rc.d/rc5.d/ is the directory for runlevel 5. Run the following command in your local machine and check the contents of this directory. I am pasting a trace of the output below.</p>
<blockquote><p>[user@localhost ~]$ ls -al /etc/rc.d/rc5.d/<br />
total 20<br />
drwxr-xr-x  2 root root 4096 Jun 24 19:10 .<br />
drwxr-xr-x 10 root root 4096 Jul 10  2008 ..<br />
lrwxrwxrwx  1 root root   22 Dec 23  2008 K02avahi-daemon -> ../init.d/avahi-daemon<br />
lrwxrwxrwx  1 root root   24 Dec 23  2008 K02avahi-dnsconfd -> ../init.d/avahi-dnsconfd<br />
lrwxrwxrwx  1 root root   16 Dec 23  2008 K02dhcdbd -> ../init.d/dhcdbd<br />
lrwxrwxrwx  1 root root   24 Dec 23  2008 K02NetworkManager -> ../init.d/NetworkManager<br />
lrwxrwxrwx  1 root root   34 Dec 23  2008 K02NetworkManagerDispatcher -> ../init.d/NetworkManagerDispatcher<br />
&#8230;&#8230;&#8230;&#8230;<br />
&#8230;&#8230;&#8230;..<br />
&#8230;&#8230;&#8230;.<br />
lrwxrwxrwx  1 root root   25 Dec 23  2008 S04readahead_early -> ../init.d/readahead_early<br />
lrwxrwxrwx  1 root root   15 Dec 23  2008 S05kudzu -> ../init.d/kudzu<br />
lrwxrwxrwx  1 root root   18 Dec 23  2008 S06cpuspeed -> ../init.d/cpuspeed<br />
lrwxrwxrwx  1 root root   17 Dec 23  2008 S10network -> ../init.d/network<br />
lrwxrwxrwx  1 root root   21 Dec 23  2008 S10restorecond -> ../init.d/restorecond<br />
lrwxrwxrwx  1 root root   16 Dec 23  2008 S11auditd -> ../init.d/auditd<br />
lrwxrwxrwx  1 root root   16 Dec 23  2008 S12syslog -> ../init.d/syslog<br />
lrwxrwxrwx  1 root root   20 Dec 23  2008 S13irqbalance -> ../init.d/irqbalance<br />
lrwxrwxrwx  1 root root   18 Dec 23  2008 S13mcstrans -> ../init.d/mcstrans<br />
lrwxrwxrwx  1 root root   17 Feb  6 20:20 S13portmap -> ../init.d/portmap
</p></blockquote>
<p>You can find &#8220;S&#8221; , &#8220;K&#8221; prefix on the the 9th field [last field]. Scripts beginning with S denote startup scripts while scripts beginning with K denote shutdown (kill) scripts.<br />
Numbers follow these letters to denote the order of execution. (lowest to highest)</p>
<p>Adding a script to the /etc/rc.d/rc#.d/ directory with either an S or K prefix, adds the script to the boot or shutdown process.Hence these scripts are executed to start all the system services which starts at S for run level 5 in the example above. One of the last things the init program executes is the /etc/rc.d/rc.local file. This file is useful for system customization. </p>
<p>Adding commands to this script is an easy way to perform necessary tasks like starting special services or initialize devices without writing complex initialization scripts in the /etc/rc.d/init.d/ directory and creating symbolic links.</p>
<p>Init typically will start multiple instances of &#8220;getty&#8221; which waits for console logins which spawn one&#8217;s user shell process.</p>
<p>Upon system shutdown init controls the sequence and processes for shutdown. The init process is never shut down. It is a user process and not a kernel system process although it does run as root.</p>
<p>That explains the Booting process.</p>
<p><em>References : </em></p>
<p>http://www.ibm.com/developerworks/linux/library/l-bootload.html</p>
<p>http://www.xs4all.nl/~lennartb/bootloaders/node3.html</p>
<div class="alignright"><div class="g-plusone" data-href="http://www.instacarma.com/blog/technical/linux-booting-process/" size="standard" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.instacarma.com/blog/technical/linux-booting-process/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux Kernel 2.6.30 &#8211; Released</title>
		<link>http://www.instacarma.com/blog/technical/linux-kernel-2-6-30-released/</link>
		<comments>http://www.instacarma.com/blog/technical/linux-kernel-2-6-30-released/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 18:01:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles and tutorials]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[ARM]]></category>
		<category><![CDATA[Ftrace]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[KVM]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NFS]]></category>
		<category><![CDATA[NILFS2]]></category>
		<category><![CDATA[POHMELFS]]></category>
		<category><![CDATA[RDS]]></category>
		<category><![CDATA[Tomoyo]]></category>
		<category><![CDATA[USB 3.0]]></category>

		<guid isPermaLink="false">http://instacarma.com/blog/?p=546</guid>
		<description><![CDATA[Filed under: ARM, Ftrace, kernel, KVM, Linux, NFS, NILFS2, POHMELFS, RDS, Tomoyo, USB 3.0 New architecture switches the kernel to a &#8220;New world order&#8221;, says Linus Torvalds about the Linux Kernel 2.6.30 which was released just few days back with hundreds of changes. Let us see what&#8217;s really new in it and why is it [...]]]></description>
			<content:encoded><![CDATA[<p>Filed under: <a href='http://www.instacarma.com/blog/tag/arm/'>ARM</a>, <a href='http://www.instacarma.com/blog/tag/ftrace/'>Ftrace</a>, <a href='http://www.instacarma.com/blog/tag/kernel/'>kernel</a>, <a href='http://www.instacarma.com/blog/tag/kvm/'>KVM</a>, <a href='http://www.instacarma.com/blog/tag/linux/'>Linux</a>, <a href='http://www.instacarma.com/blog/tag/nfs/'>NFS</a>, <a href='http://www.instacarma.com/blog/tag/nilfs2/'>NILFS2</a>, <a href='http://www.instacarma.com/blog/tag/pohmelfs/'>POHMELFS</a>, <a href='http://www.instacarma.com/blog/tag/rds/'>RDS</a>, <a href='http://www.instacarma.com/blog/tag/tomoyo/'>Tomoyo</a>, <a href='http://www.instacarma.com/blog/tag/usb-3-0/'>USB 3.0</a></p>
<p>New architecture switches the kernel to a &#8220;New world order&#8221;, says<strong> Linus Torvalds</strong> about the <strong>Linux Kernel 2.6.30 </strong>which was released just few days back with hundreds of changes.</p>
<p>Let us see what&#8217;s really new in it and why is it  creating a buzz.</p>
<p>First of all , It now boots faster. It has been designed to speed up the <strong>Linux  boot process</strong>. </p>
<p>This release adds lot more file system support. For example, it supports object-based storage device file system <strong>NILFS2</strong> (New implementation of a log-structured file system (LFS)), adds a caching layer for local caching of <strong>NFS</strong> data, the <strong>RDS protocol</strong> has been added for high-performance and reliable connections between the servers in a cluster, the<strong> POHMELFS</strong> distributed networking file system and automatic flushing of files on renaming in ext3, ext4 and btrfs file systems. Another key addition is <strong>Ftrace</strong>, a framework for tracing system calls. </p>
<p>Besides this, there have been many other changes and enhancements in storage, graphics, network, sound, Digital TV, USB , FireWire and bluetooth device support. One more good news, Linux is going to be the first Operating system to support <strong>USB 3.0</strong>. </p>
<p>More virtualization support for <strong>KVM</strong>. Now you can use KVM hypercalls. Few more developments have happened at the  CPU level around the x86 desktop, server and <strong>ARM</strong> mobile architectures. </p>
<p>The <strong>Tomoyo</strong> framework adds new features to boost Security. It&#8217;s an alternate approach to <strong>SELinux</strong> (Security Enhanced Linux) access-control solution. Besides the permissive or enforcing modes that you could see in SELinux, Tomoyo provides a learning mode. Its a distinguishable feature when compared to SELinux.</p>
<p>All this is for <strong>better end-user experience</strong>. Expecting devices to work &#8220;out-of-the-box&#8221; with this brand new kernel.</p>
<p><em>Read more:</em></p>
<p>You can read more about the USB 3.0 Driver groundwork on &#8220;Sarah Sharp&#8221;&#8216;s Blog  &#8211; <a href="http://www.linuxpromagazine.com/online/news/first_driver_for_usb_3_0">http://www.linuxpromagazine.com/online/news/first_driver_for_usb_3_0</a></p>
<p>Japan&#8217;s NTT&#8217;s Tomoyo project &#8211; <a href="http://tomoyo.sourceforge.jp/wiki-e/?WhatIs#comparison">http://tomoyo.sourceforge.jp/wiki-e/?WhatIs#comparison</a></p>
<p>NILFS Project &#8211; <a href="http://www.nilfs.org/en/about_nilfs.html">http://www.nilfs.org/en/about_nilfs.html<br />
</a><br />
Interested in learning more about Linux 2.6.30 features ? <a href="http://kernelnewbies.org/Linux_2_6_30">http://kernelnewbies.org/Linux_2_6_30</a></p>
<div class="alignright"><div class="g-plusone" data-href="http://www.instacarma.com/blog/technical/linux-kernel-2-6-30-released/" size="standard" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.instacarma.com/blog/technical/linux-kernel-2-6-30-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

