<?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>Javeed Abdul &#187; Sun Solaris</title>
	<atom:link href="http://www.javeedpassion.com/category/sun-solaris/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.javeedpassion.com</link>
	<description>It&#039;s not what you don&#039;t know that hurts you . It&#039;s what you think you know that&#039;s ain&#039;t so.</description>
	<lastBuildDate>Sun, 07 Feb 2010 23:42:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bash Shortcuts</title>
		<link>http://www.javeedpassion.com/2010/02/bash-shortcuts/</link>
		<comments>http://www.javeedpassion.com/2010/02/bash-shortcuts/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 10:02:07 +0000</pubDate>
		<dc:creator>Javeed Abdul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sun Solaris]]></category>
		<category><![CDATA[bash shortcuts]]></category>

		<guid isPermaLink="false">http://www.javeedpassion.com/?p=177</guid>
		<description><![CDATA[


Keyboard shortcut
Action


Navigation


Ctrl-A
Go to the beginning of the line (note that if you   use GNU screen, you can use the Home button to do this, especially   considering that Ctrl-A is a special control character in screen).


Ctrl-E
Go to the end of the line (note that if you use   GNU screen, you [...]]]></description>
			<content:encoded><![CDATA[<table border="1" cellspacing="0" cellpadding="0" width="563">
<tbody>
<tr>
<td width="140"><strong>Keyboard shortcut</strong></td>
<td width="423"><strong>Action</strong></td>
</tr>
<tr>
<td colspan="2" width="563">Navigation<strong></strong></td>
</tr>
<tr>
<td width="140"><strong>Ctrl-A</strong></td>
<td width="423"><em>Go </em>to the beginning of the line (note that if you   use GNU screen, you can use the Home button to do this, especially   considering that Ctrl-A is a special control character in screen).</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-E</strong></td>
<td width="423"><em>Go </em>to the end of the line (note that if you use   GNU screen, you can use the End button to do this).</td>
</tr>
<tr>
<td width="140"><strong>Alt-B (or ESC, left arrow)</strong></td>
<td width="423"><em>Jump </em>back one word using a non-alphanumeric   character as delimiter.</td>
</tr>
<tr>
<td width="140"><strong>Alt-F (or ESC, right arrow)</strong></td>
<td width="423"><em>Jump </em>forward one word using a non-alphanumeric   character as delimiter.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-PGUP or Shift-PGUP</strong></td>
<td width="423">This may or may not   work, and it works differently on different console apps. It will either <em>scroll</em> up one line at a time, 1 page at a time, or it may not work at all. I&#8217;m   inclined to think it&#8217;s not a bash shortcut at all.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-PGDN or Shift-PGDN</strong></td>
<td width="423">Same as the above but <em>scrolling</em> is done in the opposite direction.</td>
</tr>
<tr>
<td width="140"><strong>Up/Down</strong></td>
<td width="423"><em>Previous/Next</em> command in history. This one is way too   obvious but I&#8217;m including it for completeness.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-R</strong></td>
<td width="423">History <em>search</em>.   For example, Ctrl-R svn Ctrl-R Ctrl-R … will cycle through all recently run   commands with the ‘svn’ in them. It is one of the most useful shortcuts in   bash.</td>
</tr>
<tr>
<td colspan="2" width="563">Command Line Manipulation<strong></strong></td>
</tr>
<tr>
<td width="140"><strong>Ctrl-W</strong></td>
<td width="423"><em>Cut </em>one word backwards<em> </em>using white space as   delimiter.</td>
</tr>
<tr>
<td width="140"><strong>Alt-BACKSPACE</strong></td>
<td width="423"><em>Cut</em> one word backwards using a non-alphanumeric   character as delimiter (different from Ctrl-W, for example, abc;bcd will cut   to abc;).</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-K</strong></td>
<td width="423"><em>Cut </em>everything forward<em> </em>to end of line.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-U</strong></td>
<td width="423"><em>Cut </em>everything   backwards<em> </em>to beginning of   line.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-T</strong></td>
<td width="423"><em>Transpose </em>the current character with the previous one. I   almost never use this. Never mind, I never use it, but someone might find it   useful.</td>
</tr>
<tr>
<td width="140"><strong>Alt-T</strong></td>
<td width="423"><em>Transpose</em> the word at cursor with the one before   cursor. In other words, swap them around.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-Y</strong></td>
<td width="423"><em>Paste</em> whatever was cut by the last cut command.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-V</strong></td>
<td width="423"><em>Insert</em> the next character <em>literally</em>. For example, Ctrl-V TAB inserts the actual TAB   character. This shortcut is often misunderstood because of mistyping Ctrl-V   and not realizing what it does.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-_</strong></td>
<td width="423"><em>Undo </em>the last command. Don’t forget – it’s Ctrl-Shift-MINUS,   not Ctrl-MINUS.</td>
</tr>
<tr>
<td width="140"><strong>Alt-R</strong></td>
<td width="423"><em>Revert </em>all changes to current line. Very useful if   you accidentally modify a command in history.<em></em></td>
</tr>
<tr>
<td width="140"><strong>Alt-U/Alt-L/Alt-C</strong></td>
<td width="423"><em>Uppercase/lowercase/capitalize </em>from cursor to end of word and move cursor past   end of word.</td>
</tr>
<tr>
<td colspan="2" width="563">Terminal control<strong></strong></td>
</tr>
<tr>
<td width="140"><strong>Ctrl-L</strong></td>
<td width="423"><em>Clear</em> screen while keeping whatever is already   typed in the command line intact.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-S</strong></td>
<td width="423"><em>Suspend</em> currently running terminal.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-Q</strong></td>
<td width="423"><em>Unsuspend</em> the terminal suspended by Ctrl-S. You need to   be aware of this shortcut because 99% of the time you’ve accidentally pressed   Ctrl-S and need to undo its effects.</td>
</tr>
<tr>
<td width="140"><strong>Ctrl-Z</strong></td>
<td width="423"><em>Suspend </em>the currently running process (usually   followed by <em>bg</em> to resume it in the   background or <em>fg</em> to resume in the   foreground).</td>
</tr>
<tr>
<td width="140"><strong>TAB</strong></td>
<td width="423"><em>Autocomplete</em>. Start typing, then hit TAB. You will either   get a list of possible completion values (2 TABs needed) or the only choice   will be filled in (only 1 TAB is needed). This shortcut is quite obvious and   well known, so I put it at the bottom of the list.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.javeedpassion.com/2010/02/bash-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome OS in VirtualBox</title>
		<link>http://www.javeedpassion.com/2010/01/google-chrome-os-in-virtualbox/</link>
		<comments>http://www.javeedpassion.com/2010/01/google-chrome-os-in-virtualbox/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 14:44:02 +0000</pubDate>
		<dc:creator>Javeed Abdul</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sun Solaris]]></category>
		<category><![CDATA[google chrome]]></category>

		<guid isPermaLink="false">http://www.javeedpassion.com/?p=149</guid>
		<description><![CDATA[Recently a build of Google’s Chrome OS was released for testing. Though it’s not ready for prime time, you might want to test it out in a virtual machine. Today we take a look at how to setup and run it in VirtualBox.
Note: In this example we are using VirtualBox 3.0.12 running on a 32-bit [...]]]></description>
			<content:encoded><![CDATA[<p>Recently a build of Google’s Chrome OS was released for testing. Though it’s not ready for prime time, you might want to test it out in a virtual machine. Today we take a look at how to setup and run it in VirtualBox.</p>
<p><em>Note: In this example we are using VirtualBox 3.0.12 running on a 32-bit version of Windows 7 Ultimate.</em></p>
<p><strong><span id="more-149"></span>Setup VirtualBox</strong></p>
<p>The first thing to do is click on New to create a new machine in VirtualBox.</p>
<p><img title="1chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/1chrome.png" border="0" alt="1chrome" width="336" height="202" /></p>
<p>The New Virtual Machine wizard opens where you just want to click Next.</p>
<p><img title="2chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/2chrome.png" border="0" alt="2chrome" width="631" height="441" /></p>
<p>Type in a name for the machine and for OS Type you want to select Linux and the default version will be Ubuntu…you can leave that and click Next.</p>
<p><img title="3chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/3chrome.png" border="0" alt="3chrome" width="631" height="441" /></p>
<p>Now you want to select the amount of memory to allocate for the machine. In our test we used 512MB which seems adequate, but you can experiment with different amounts.</p>
<p><img title="4chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/4chrome.png" border="0" alt="4chrome" width="631" height="441" /></p>
<p>In the next step, select Use existing hard disk…</p>
<p><img title="5chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/5chrome.png" border="0" alt="5chrome" width="631" height="441" /></p>
<p>Then add the VMDK file you downloaded to Virtual Media Manager and select it.</p>
<p><img title="6chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/6chrome.png" border="0" alt="6chrome" width="629" height="526" /></p>
<p>You’re brought back to the wizard where the screen should look similar to this.</p>
<p><img title="7chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/7chrome.png" border="0" alt="7chrome" width="631" height="441" /></p>
<p>Then you’re presented with the summary of the new VM and if everything looks correct click Finish.</p>
<p><img title="8-chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/8chrome.png" border="0" alt="8-chrome" width="631" height="441" /></p>
<p>Now you will see the Chrome OS in the list of your virtual machines and you can start it up.</p>
<p><img title="9-chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/9chrome.png" border="0" alt="9-chrome" width="314" height="298" /></p>
<p>The Chrome OS will start up and the first screen you’re presented with is the log on. You need to enter in your Google account name and password to begin a session.</p>
<p><img title="10chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/10chrome.png" border="0" alt="10chrome" width="629" height="624" /></p>
<p>That is all there is to it. Now you can start playing around with the new OS from Google.</p>
<p><img title="11chrome" src="http://www.howtogeek.com/wp-content/uploads/2009/11/11chrome.png" border="0" alt="11chrome" width="640" height="566" /></p>
<p><strong>Conclusion</strong></p>
<p>For those of you who like to try out the newest technology, this is a good option for testing out the Chrome OS. At this time don’t expect a whole lot of awesomeness with this build of Chrome OS. At least you can geek out on it and see what the hype is all about. Of course you can run it in VMware Player as well, but if you’re partial to VirtualBox, this will get you going.</p>
<p><a href="http://gdgt.com/google/chrome-os/download/">Download Chrome OS from gdgt</a></p>
<p><a href="http://www.virtualbox.org/wiki/Downloads">Download VirtualBox</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.javeedpassion.com/2010/01/google-chrome-os-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>du and df show different results</title>
		<link>http://www.javeedpassion.com/2009/12/du-and-df-show-different-results/</link>
		<comments>http://www.javeedpassion.com/2009/12/du-and-df-show-different-results/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 03:03:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sun Solaris]]></category>

		<guid isPermaLink="false">http://www.javeedpassion.com/?p=45</guid>
		<description><![CDATA[SHORT ANSWER

There are 4 reasons why du and df can show different answers:
1. Inconsistent fileystem requiring fsck(1m).
2. Process with open file which does not exist in filesystem.
3. Mount point directory contains data.
4. du command is being run as non-root and there are directories which restrict read permissions
LONG ANSWER

Before going into detail for the 4 possibilities, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>SHORT ANSWER<br />
</strong><br />
There are 4 reasons why du and df can show different answers:</p>
<p>1. Inconsistent fileystem requiring fsck(1m).<br />
2. Process with open file which does not exist in filesystem.<br />
3. Mount point directory contains data.<br />
4. du command is being run as non-root and there are directories which restrict read permissions</p>
<p>LONG ANSWER</p>
<p><span id="more-45"></span><br />
Before going into detail for the 4 possibilities, it is important to<br />
recognize how du and df obtain their answers:</p>
<p>. du &#8220;walks&#8221; the filesystem (like &#8220;find&#8221; command would),<br />
checking the size of each file in turn, and keeping track of the total.</p>
<p>. df makes a system call to the filesystem itself and requests a<br />
number of details, one of which is the current disk space used.<br />
(it gets the info directly from the superblocks of the filesystem).</p>
<p>1. Inconsistent fileystem requiring fsck(1m).</p>
<p>If the filesystem becomes corrupt/inconsistent for some reason, it<br />
is quite likely that du and df will differ.  What can be seen by a<br />
process looking at the filesystem (i.e. du), does not match up with<br />
the view the filesystem itself has (i.e. what will be returned to<br />
the querying df process).</p>
<p>Corrupt/inconsistent filesystems should be repaired using fsck(1m).</p>
<p>2. Process with open file which does not exist in the filesystem directory<br />
structure.</p>
<p>This scenario commonly occurs when some process keeps writing to a file<br />
(usually a logfile) and a sysadmin deletes the file in panic to prevent<br />
the filesystem from filling up.  But the offending process keeps running<br />
and the space is not freed (the process keeps the file open).</p>
<p>The disk blocks associated with a file are actually deleted and made<br />
available for reuse when the last &#8220;reference&#8221; to the file is removed.<br />
When a Unix process opens a file, the reference count to that file is<br />
incremented.  Subsequently, if the file itself is removed from the<br />
filesystem, the data blocks remain in use until the process closes<br />
the file, either explicitly with close(2), or implicitly when the<br />
process dies.</p>
<p>Under these conditions, du will be unable to &#8220;see&#8221; the file in the<br />
filesystem (it was rm&#8217;d from the dir. structure), and therefore will<br />
not count its size, but df (in getting the answer from the filesystem<br />
itself) &#8220;knows&#8221; the file still exists.</p>
<p>When the process closes the file (explicitly, or implicitly when the<br />
process either quits or is killed, or the machine is rebooted), the<br />
disk blocks will return to the freelist and du and df will agree.<br />
Actually it is the unmount and remount of the filesystem that fixes<br />
this problem.  But obviously if some process has an open file on the<br />
filesystem, it will be impossible to unmount the filesystem (device busy).</p>
<p>3. Directory mount point containing data.</p>
<p>As filesystems are mounted on top of directories, if a directory<br />
mount point contains data, the du process will be unable to see this<br />
data (seeing only the mounted filesystem), but the underlying<br />
filesystem will still keep track of this data, consequently df will<br />
report the extra disk space in use.</p>
<p>Unmounting the filesystem will reveal the data.  However, if the mounted<br />
filesystem is being used by running processes it will not be possible<br />
to unmount it.  Either identify and kill the processes (fuser(1m), etc.),<br />
or reboot (possibly in single user mode) to check the mount point directory.</p>
<p>4. du cannot report on any files in a directory to which the user doesn&#8217;t have<br />
a read permission.  If the du command is run as root, this problem can be<br />
eliminated.  This can also be tested by running the du command with the -r<br />
option.  This will generate messages about directories that can be read,<br />
files that cannot be opened and so forth, rather than being silent (the<br />
default).</p>
<pre>Explanation and demonstration of the missing space plus procedures to track it down and resolve it</pre>
<p>Although the file was technically removed from the filesystem, the<br />
disk space will not be freed if other process(es) have the same file<br />
open. As soon as there are no active processes which have this file<br />
open, the disk space will be freed.</p>
<p>To illustrate:</p>
<p>1. Find a filesystem with a good amount of free space.</p>
<p>Run &#8220;df -k&#8221; and record the &#8220;used&#8221;, &#8220;avail&#8221; and &#8220;capacity&#8221;.</p>
<p>2. Use mkfile(1m) to create a large file in that filesystem.</p>
<p>3. Run another &#8220;df -k&#8221; and record &#8220;used&#8221;, &#8220;avail&#8221;, and  capacity .</p>
<p>The &#8220;used&#8221; should have increased, and the &#8220;avail&#8221; decreased.</p>
<p>4. From a second window, open the file you created. An easy way<br />
to do this is with mdb(1).</p>
<p>5. From the original window, use &#8220;rm&#8221; to delete the file. Use<br />
&#8220;ls&#8221; to confirm the file is gone.</p>
<p>6. Run another &#8220;df -k&#8221; and you&#8217;ll see the disk space is not freed.</p>
<p>7. From the second window, issue ^D to exit from mdb (thus<br />
closing the file.</p>
<p>8. Run another &#8220;df -k&#8221; and you should see the disk space was freed.</p>
<p>NOTE: Before removing the file, you can use the fuser(1m) command<br />
to identify processes that have a specified file open.</p>
<p>A common scenario is one in which a process is writing to a log file<br />
and it keeps filling up the filesystem.  Somebody tries to stop this<br />
and just deletes the file which is still opened by the running<br />
process. The only way to free the space at this point is to force the<br />
process to close the file. That can be done by killing the process (if<br />
you know which process it is) or unmounting the filesystem (as in<br />
reboot).</p>
<p>Alternately, instead of deleting the log file, you can &#8220;cat /dev/null<br />
&gt; /path/to/logfile&#8221;, which empties the file without deleting it. But<br />
the best way is generally to stop the offending process, delete the<br />
file, then restart the process.</p>
<p>If you have already deleted the file and then discover the disk space<br />
has not been released, you can use one of the following procedures to<br />
attempt to locate the process that is holding on to the file:</p>
<p>Using /proc<br />
-=-=-=-=-=-</p>
<p>The /proc filesystem gives access to all open files of all<br />
processes. Assuming a role with sufficient permissions a user can find<br />
all open files with a link count of zero. eg</p>
<p># find /proc/*/fd -type f -links 0 \! -size 0 -ls</p>
<p>You can view the (e.g) log file with commands like:</p>
<p># tail -f /proc/&lt;pid&gt;/fd/&lt;fd&gt;</p>
<p>If you find that there is a process that you can&#8217;t kill that has a<br />
huge file, you can truncate it with:</p>
<p># cp /dev/null /proc/&lt;pid&gt;/fd/&lt;fd&gt;</p>
<p>Be sure you have the right one.</p>
<p>Using other tools<br />
-=-=-=-=-=-=-=-=-</p>
<p>1. Identify the file system and mount point that contains the file</p>
<p># df /dirname</p>
<p>where /dirname is the name of the directory that contained the<br />
original file.</p>
<p>The first field of the output will be the name of the mount point<br />
(like / or /var).</p>
<p>2. Identify processes that have files open in this file system</p>
<p># fuser -c /mountpoint</p>
<p>Refer to fuser(1M) for a full description of the output from this<br />
command. In general, you will see a list of process IDs followed by<br />
letter codes which indicate how the process is using files and<br />
directories within the file system.</p>
<p>3. Narrow down the process list</p>
<p>This step is not an exact science. The list of processes obtained<br />
from fuser may be quite long, so you need to try to focus on the<br />
most likely suspects. For each process ID (PID) in your list, use<br />
ptree(1) to determine what the process is doing.</p>
<p># /usr/proc/bin/ptree PID</p>
<p>Another option is to use pcred(1) to identify the user and group<br />
credentials of each process, to look for users that would be likely<br />
to use the affected file.</p>
<p># /usr/proc/bin/pcred PID</p>
<p>The output from these two commands will often help you to narrow<br />
down the list of suspects to one or a few processes.</p>
<p>4. Identify the correct process</p>
<p>For each process in your short list, use pfiles(1) to identify all<br />
open files.</p>
<p># /usr/proc/bin/pfiles PID</p>
<p>The output from pfiles(1) will include a number of details about<br />
each open file. Fields that can be very helpful in identifying the<br />
file include: dev (device major and minor numbers), ino (inode<br />
number), uid (user ID), gid (group ID), and size (file size in<br />
bytes).</p>
<p>Note that the dev field for a regular file refers to the major and<br />
minor device numbers of the file system in which the file<br />
resides. You can generally identify the major and minor numbers of<br />
your target file system by running:</p>
<p># ls -lL /dev/block_device</p>
<p>where /dev/block_device is obtained from the second field in the<br />
output from the &#8220;df /dirname&#8221; command executed in step one.</p>
<p>The major and minor device numbers will be listed in the fifth and<br />
sixth fields of the output of the ls command (the location occupied<br />
by the file size for a regular file).</p>
<p>5. Terminate the process</p>
<p>If you are satisfied that you have identified the process that is<br />
using the file you tried to delete, you may decide to terminate the<br />
process to attempt to release the file and its associated<br />
space. Keep in mind that there might be more than one process that<br />
has the same file open. You should use caution when evaluating the<br />
best method and overall feasibility of terminating a single process<br />
or service on your system.</p>
<p>If you absolutely cannot identify the process that is holding the file<br />
open, or can not safely terminate the process or service with the<br />
system running, you will need to schedule a reboot of the system to<br />
terminate all active processes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.javeedpassion.com/2009/12/du-and-df-show-different-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris Man Pages</title>
		<link>http://www.javeedpassion.com/2009/12/solaris-man-pages/</link>
		<comments>http://www.javeedpassion.com/2009/12/solaris-man-pages/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 06:33:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sun Solaris]]></category>
		<category><![CDATA[Solaris Man pages]]></category>

		<guid isPermaLink="false">http://www.javeedpassion.com/?p=41</guid>
		<description><![CDATA[This is one my favorite site.Here you find  knowledge  you need prior googling online..
Every issue  encountered in the system generates an event,which then stores in /var/adm/messages by default.
Check the man pages to find further info about the  error messages.
This is my way of analysing &#8230; Hope you like it..
Reference Manual Collection

 [...]]]></description>
			<content:encoded><![CDATA[<p>This is one my favorite site.Here you find  knowledge  you need prior googling online..<br />
Every issue  encountered in the system generates an event,which then stores in /var/adm/messages by default.<br />
Check the man pages to find further info about the  error messages.<br />
This is my way of analysing &#8230; Hope you like it..</p>
<p><strong><a href="http://docs.sun.com/app/docs/coll/40.17" target="_blank">Reference Manual Collection<br />
</a></strong><span id="more-41"></span><br />
<strong> </strong></p>
<ul>
<li><strong><a href="http://docs.sun.com/app/docs/doc/819-2239/6n4hsf6e6?a=expand" target="_blank">User Commands</a></strong></li>
<li><strong><a href="http://docs.sun.com/app/docs/doc/819-2240" target="_blank">System Administration Commands</a></strong></li>
<li><strong><a href="http://docs.sun.com/app/docs/doc/819-2244/6n4i17p85?a=expand" target="_blank">Networking Library Functions</a></strong></li>
<li><strong><a href="http://docs.sun.com/app/docs/doc/819-2251/6n4i7td66?a=expand" target="_blank">File Formats</a></strong></li>
<li><strong><a href="http://docs.sun.com/app/docs/doc/819-2254/6n4iaous6?a=expand" target="_blank">Device and Network Interfaces</a> </strong></li>
<li><strong><a href="http://www.sun.com/download/index.jsp?tab=2">Solaris download page</a><br />
</strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.javeedpassion.com/2009/12/solaris-man-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Types of File systems</title>
		<link>http://www.javeedpassion.com/2009/12/types-of-file-systems/</link>
		<comments>http://www.javeedpassion.com/2009/12/types-of-file-systems/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 02:46:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sun Solaris]]></category>
		<category><![CDATA[comparision of file system]]></category>
		<category><![CDATA[file system]]></category>
		<category><![CDATA[types of file system]]></category>

		<guid isPermaLink="false">http://www.javeedpassion.com/?p=34</guid>
		<description><![CDATA[Type of Filesystem so far..Its a mess &#8230;&#8230;




File system
Creator
Year
introduced
Original operating system


DECtape
DEC
1964
PDP-6 Monitor


Level-D
DEC
1968
TOPS-10


George 2
ICT (later ICL)
1968
George 2


V6FS
Bell Labs
1972
Version 6 Unix


ODS-1
DEC
1972
RSX-11


RT-11 file system
DEC
1973
RT-11


DOS (GEC)
GEC
1973
Core Operating System


CP/M file system
Gary Kildall
1974
CP/M


OS4000
GEC
1977
OS4000


FAT12
Microsoft
1977
Microsoft Disk BASIC


DOS 3.x
Apple Computer
1978
Apple DOS


Pascal
Apple Computer
1978
Apple Pascal


CBM DOS
Commodore
1978
Microsoft BASIC (for CBM PET)


V7FS
Bell Labs
1979
Version 7 Unix


ODS-2
DEC
1979
OpenVMS


DFS
Acorn Computers Ltd
1982
Acorn BBC Micro MOS


ADFS
Acorn Computers Ltd
1983
Acorn Electron (later Arthur RISC OS)


FFS
Kirk McKusick
1983
4.2BSD


ProDOS
Apple [...]]]></description>
			<content:encoded><![CDATA[<p>Type of Filesystem so far..Its a mess &#8230;&#8230;<br />
<span id="more-34"></span></p>
<table id="sortable_table_id_0">
<tbody>
<tr>
<th style="text-align: left;">File system</th>
<th style="text-align: left;">Creator</th>
<th style="text-align: left;">Year<br />
introduced</th>
<th style="text-align: left;">Original <a title="Operating system" href="/wiki/Operating_system">operating system</a></th>
</tr>
<tr>
<th style="text-align: left;"><a title="DECtape" href="/wiki/DECtape">DECtape</a></th>
<td><a title="Digital Equipment Corporation" href="/wiki/Digital_Equipment_Corporation">DEC</a></td>
<td><a title="1964" href="/wiki/1964">1964</a></td>
<td><a title="PDP-6 Monitor (page does not exist)" href="/w/index.php?title=PDP-6_Monitor&amp;action=edit&amp;redlink=1">PDP-6 Monitor</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Level-D (page does not exist)" href="/w/index.php?title=Level-D&amp;action=edit&amp;redlink=1">Level-D</a></th>
<td><a title="Digital Equipment Corporation" href="/wiki/Digital_Equipment_Corporation">DEC</a></td>
<td><a title="1968" href="/wiki/1968">1968</a></td>
<td><a title="TOPS-10" href="/wiki/TOPS-10">TOPS-10</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="George 2 (page does not exist)" href="/w/index.php?title=George_2&amp;action=edit&amp;redlink=1">George 2</a></th>
<td><a title="International Computers and Tabulators" href="/wiki/International_Computers_and_Tabulators">ICT (later ICL)</a></td>
<td><a title="1968" href="/wiki/1968">1968</a></td>
<td><a title="George 2 (page does not exist)" href="/w/index.php?title=George_2&amp;action=edit&amp;redlink=1">George 2</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Version 6 Unix file system (page does not exist)" href="/w/index.php?title=Version_6_Unix_file_system&amp;action=edit&amp;redlink=1">V6FS</a></th>
<td><a title="Bell Labs" href="/wiki/Bell_Labs">Bell Labs</a></td>
<td><a title="1972" href="/wiki/1972">1972</a></td>
<td><a title="Version 6 Unix" href="/wiki/Version_6_Unix">Version 6 Unix</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Files-11" href="/wiki/Files-11">ODS-1</a></th>
<td><a title="Digital Equipment Corporation" href="/wiki/Digital_Equipment_Corporation">DEC</a></td>
<td><a title="1972" href="/wiki/1972">1972</a></td>
<td><a title="RSX-11" href="/wiki/RSX-11">RSX-11</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="RT-11" href="/wiki/RT-11">RT-11</a> file system</th>
<td style="text-align: left;"><a title="Digital Equipment Corporation" href="/wiki/Digital_Equipment_Corporation">DEC</a></td>
<td><a title="1973" href="/wiki/1973">1973</a></td>
<td><a title="RT-11" href="/wiki/RT-11">RT-11</a></td>
</tr>
<tr>
<th style="text-align: left;">DOS (<a title="GEC 4000 series" href="/wiki/GEC_4000_series">GEC</a>)</th>
<td><a title="The General Electric Company plc" href="/wiki/The_General_Electric_Company_plc">GEC</a></td>
<td><a title="1973" href="/wiki/1973">1973</a></td>
<td><a title="Core Operating System (page does not exist)" href="/w/index.php?title=Core_Operating_System&amp;action=edit&amp;redlink=1">Core Operating System</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="CP/M" href="/wiki/CP/M#File_system">CP/M</a> file system</th>
<td style="text-align: left;"><a title="Gary Kildall" href="/wiki/Gary_Kildall">Gary Kildall</a></td>
<td style="text-align: left;"><a title="1974" href="/wiki/1974">1974</a></td>
<td style="text-align: left;"><a title="CP/M" href="/wiki/CP/M">CP/M</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="OS4000" href="/wiki/OS4000">OS4000</a></th>
<td style="text-align: left;"><a title="The General Electric Company plc" href="/wiki/The_General_Electric_Company_plc">GEC</a></td>
<td style="text-align: left;"><a title="1977" href="/wiki/1977">1977</a></td>
<td style="text-align: left;"><a title="OS4000" href="/wiki/OS4000">OS4000</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="File Allocation Table" href="/wiki/File_Allocation_Table">FAT12</a></th>
<td><a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td><a title="1977" href="/wiki/1977">1977</a></td>
<td><a title="Microsoft BASIC" href="/wiki/Microsoft_BASIC">Microsoft Disk BASIC</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Apple DOS" href="/wiki/Apple_DOS">DOS 3.x</a></th>
<td><a title="Apple Computer" href="/wiki/Apple_Computer">Apple Computer</a></td>
<td><a title="1978" href="/wiki/1978">1978</a></td>
<td><a title="Apple DOS" href="/wiki/Apple_DOS">Apple DOS</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Apple Pascal" href="/wiki/Apple_Pascal">Pascal</a></th>
<td><a title="Apple Computer" href="/wiki/Apple_Computer">Apple Computer</a></td>
<td><a title="1978" href="/wiki/1978">1978</a></td>
<td><a title="Apple Pascal" href="/wiki/Apple_Pascal">Apple Pascal</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Commodore DOS" href="/wiki/Commodore_DOS">CBM DOS</a></th>
<td style="text-align: left;"><a title="Commodore International" href="/wiki/Commodore_International">Commodore</a></td>
<td style="text-align: left;"><a title="1978" href="/wiki/1978">1978</a></td>
<td style="text-align: left;"><a title="Microsoft BASIC" href="/wiki/Microsoft_BASIC">Microsoft BASIC (for CBM PET)</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Version 7 Unix file system (page does not exist)" href="/w/index.php?title=Version_7_Unix_file_system&amp;action=edit&amp;redlink=1">V7FS</a></th>
<td><a title="Bell Labs" href="/wiki/Bell_Labs">Bell Labs</a></td>
<td><a title="1979" href="/wiki/1979">1979</a></td>
<td><a title="Version 7 Unix" href="/wiki/Version_7_Unix">Version 7 Unix</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Files-11" href="/wiki/Files-11">ODS-2</a></th>
<td><a title="Digital Equipment Corporation" href="/wiki/Digital_Equipment_Corporation">DEC</a></td>
<td><a title="1979" href="/wiki/1979">1979</a></td>
<td><a title="OpenVMS" href="/wiki/OpenVMS">OpenVMS</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Disc Filing System" href="/wiki/Disc_Filing_System">DFS</a></th>
<td><a title="Acorn Computers Ltd" href="/wiki/Acorn_Computers_Ltd">Acorn Computers Ltd</a></td>
<td><a title="1982" href="/wiki/1982">1982</a></td>
<td><a title="BBC Micro" href="/wiki/BBC_Micro">Acorn BBC Micro</a> <a title="Acorn MOS" href="/wiki/Acorn_MOS">MOS</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Advanced Disc Filing System" href="/wiki/Advanced_Disc_Filing_System">ADFS</a></th>
<td style="text-align: left;"><a title="Acorn Computers Ltd" href="/wiki/Acorn_Computers_Ltd">Acorn Computers Ltd</a></td>
<td><a title="1983" href="/wiki/1983">1983</a></td>
<td><a title="Acorn Electron" href="/wiki/Acorn_Electron">Acorn Electron</a> (later <a title="Arthur" href="/wiki/Arthur">Arthur</a> <a title="RISC OS" href="/wiki/RISC_OS">RISC OS</a>)</td>
</tr>
<tr>
<th style="text-align: left;"><a title="Berkeley Fast File System" href="/wiki/Berkeley_Fast_File_System">FFS</a></th>
<td><a title="Marshall Kirk McKusick" href="/wiki/Marshall_Kirk_McKusick">Kirk McKusick</a></td>
<td><a title="1983" href="/wiki/1983">1983</a></td>
<td><a title="BSD" href="/wiki/BSD">4.2BSD</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="PRODOS" href="/wiki/PRODOS">ProDOS</a></th>
<td><a title="Apple Computer" href="/wiki/Apple_Computer">Apple Computer</a></td>
<td><a title="1983" href="/wiki/1983">1983</a></td>
<td><a title="PRODOS" href="/wiki/PRODOS">ProDOS 8</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Macintosh File System" href="/wiki/Macintosh_File_System">MFS</a></th>
<td><a title="Apple Computer" href="/wiki/Apple_Computer">Apple Computer</a></td>
<td><a title="1984" href="/wiki/1984">1984</a></td>
<td><a title="Mac OS" href="/wiki/Mac_OS">Mac OS</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Elektronika BK" href="/wiki/Elektronika_BK">Elektronika BK</a> tape format</th>
<td>NPO &#8220;Scientific centre&#8221; (now <a title="Sitronics" href="/wiki/Sitronics">Sitronics</a>)</td>
<td><a title="1985" href="/wiki/1985">1985</a></td>
<td><a title="Vilnius Basic" href="/wiki/Vilnius_Basic">Vilnius Basic</a>, BK monitor program</td>
</tr>
<tr>
<th style="text-align: left;"><a title="Hierarchical File System" href="/wiki/Hierarchical_File_System">HFS</a></th>
<td><a title="Apple Computer" href="/wiki/Apple_Computer">Apple Computer</a></td>
<td style="text-align: left;"><a title="1985" href="/wiki/1985">1985</a></td>
<td><a title="Mac OS" href="/wiki/Mac_OS">Mac OS</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Amiga Old File System" href="/wiki/Amiga_Old_File_System">Amiga OFS</a><sup><a href="#fn_54">54</a></sup></th>
<td><a title="Metacomco" href="/wiki/Metacomco">Metacomco</a> for <a title="Commodore International" href="/wiki/Commodore_International">Commodore</a></td>
<td><a title="1985" href="/wiki/1985">1985</a></td>
<td><a title="Amiga OS" href="/wiki/Amiga_OS">Amiga OS</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="High Sierra Format" href="/wiki/High_Sierra_Format">High Sierra</a></th>
<td style="text-align: left;"><a title="Ecma International" href="/wiki/Ecma_International">Ecma International</a></td>
<td style="text-align: left;"><a title="1985" href="/wiki/1985">1985</a></td>
<td style="text-align: left;"><a title="MS-DOS" href="/wiki/MS-DOS">MS-DOS</a>, <a title="Microsoft Windows" href="/wiki/Microsoft_Windows">Microsoft Windows</a>, <a title="Mac OS" href="/wiki/Mac_OS">Mac OS</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="NetWare File System" href="/wiki/NetWare_File_System">NWFS</a></th>
<td><a title="Novell" href="/wiki/Novell">Novell</a></td>
<td><a title="1985" href="/wiki/1985">1985</a></td>
<td><a title="Novell NetWare" href="/wiki/Novell_NetWare">NetWare 286</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="File Allocation Table" href="/wiki/File_Allocation_Table">FAT16</a></th>
<td><a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td><a title="1987" href="/wiki/1987">1987</a></td>
<td><a title="MS-DOS" href="/wiki/MS-DOS">MS-DOS</a> 3.31</td>
</tr>
<tr>
<th style="text-align: left;"><a title="Minix file system" href="/wiki/Minix_file_system">Minix V1 FS</a></th>
<td><a title="Andrew S. Tanenbaum" href="/wiki/Andrew_S._Tanenbaum">Andrew S. Tanenbaum</a></td>
<td><a title="1987" href="/wiki/1987">1987</a></td>
<td><a title="Minix" href="/wiki/Minix">Minix</a> 1.0</td>
</tr>
<tr>
<th style="text-align: left;"><a title="Amiga Fast File System" href="/wiki/Amiga_Fast_File_System">Amiga FFS</a></th>
<td><a title="Commodore International" href="/wiki/Commodore_International">Commodore</a></td>
<td><a title="1988" href="/wiki/1988">1988</a></td>
<td><a title="Amiga OS" href="/wiki/Amiga_OS">Amiga OS</a> 1.3</td>
</tr>
<tr>
<th style="text-align: left;"><a title="High Performance File System" href="/wiki/High_Performance_File_System">HPFS</a></th>
<td><a title="IBM" href="/wiki/IBM">IBM</a> &amp; <a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td><a title="1988" href="/wiki/1988">1988</a></td>
<td><a title="OS/2" href="/wiki/OS/2">OS/2</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="ISO 9660" href="/wiki/ISO_9660">ISO 9660:1988</a></th>
<td><a title="Ecma International" href="/wiki/Ecma_International">Ecma International</a>, <a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td><a title="1988" href="/wiki/1988">1988</a></td>
<td><a title="MS-DOS" href="/wiki/MS-DOS">MS-DOS</a>, <a title="Microsoft Windows" href="/wiki/Microsoft_Windows">Microsoft Windows</a>, <a title="Linux" href="/wiki/Linux">Linux</a>, <a title="Mac OS X" href="/wiki/Mac_OS_X">Mac OS X</a>, <a title="FreeBSD" href="/wiki/FreeBSD">FreeBSD</a>, and <a title="AmigaOS" href="/wiki/AmigaOS">AmigaOS</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="JFS file system" href="/wiki/JFS_file_system">JFS1</a></th>
<td><a title="IBM" href="/wiki/IBM">IBM</a></td>
<td><a title="1990" href="/wiki/1990">1990</a></td>
<td><a title="IBM AIX (operating system)" href="/wiki/IBM_AIX_(operating_system)">AIX</a><sup><a href="#cite_note-note-11-0">[1]</a></sup></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Veritas File System" href="/wiki/Veritas_File_System">VxFS</a></th>
<td><a title="Veritas Software" href="/wiki/Veritas_Software">VERITAS</a></td>
<td><a title="1991" href="/wiki/1991">1991</a></td>
<td style="text-align: left;"><a title="System V" href="/wiki/System_V">SVR4.0</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Write Anywhere File Layout" href="/wiki/Write_Anywhere_File_Layout">WAFL</a></th>
<td><a title="NetApp" href="/wiki/NetApp">NetApp</a></td>
<td><a title="1992" href="/wiki/1992">1992</a></td>
<td>Data ONTAP</td>
</tr>
<tr>
<th style="text-align: left;"><a title="AdvFS" href="/wiki/AdvFS">AdvFS</a></th>
<td><a title="Digital Equipment Corporation" href="/wiki/Digital_Equipment_Corporation">DEC</a></td>
<td><a title="1993" href="/wiki/1993">1993</a> <sup><a href="#cite_note-1">[2]</a></sup></td>
<td><a title="Digital Unix" href="/wiki/Digital_Unix">Digital Unix</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="NTFS" href="/wiki/NTFS">NTFS</a> Version 1.0</th>
<td><a title="Microsoft" href="/wiki/Microsoft">Microsoft</a>, <a title="Gary Kimura" href="/wiki/Gary_Kimura">Gary Kimura</a>, <a title="Tom Miller (computer programmer)" href="/wiki/Tom_Miller_(computer_programmer)">Tom Miller</a></td>
<td><a title="1993" href="/wiki/1993">1993</a></td>
<td><a title="Windows NT" href="/wiki/Windows_NT">Windows NT 3.1</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Log-structured File System (BSD)" href="/wiki/Log-structured_File_System_(BSD)">LFS</a></th>
<td><a title="Margo Seltzer" href="/wiki/Margo_Seltzer">Margo Seltzer</a></td>
<td><a title="1993" href="/wiki/1993">1993</a></td>
<td><a title="Sprite operating system" href="/wiki/Sprite_operating_system">Berkeley Sprite</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Ext2" href="/wiki/Ext2">ext2</a></th>
<td><a title="Rémy Card" href="/wiki/R%C3%A9my_Card">Rémy Card</a></td>
<td><a title="1993" href="/wiki/1993">1993</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a>,<a title="Hurd" href="/wiki/Hurd">Hurd</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Unix File System" href="/wiki/Unix_File_System">UFS1</a></th>
<td><a title="Marshall Kirk McKusick" href="/wiki/Marshall_Kirk_McKusick">Kirk McKusick</a></td>
<td><a title="1994" href="/wiki/1994">1994</a></td>
<td><a title="BSD" href="/wiki/BSD">4.4BSD</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="XFS" href="/wiki/XFS">XFS</a></th>
<td><a title="Silicon Graphics" href="/wiki/Silicon_Graphics">SGI</a></td>
<td><a title="1994" href="/wiki/1994">1994</a></td>
<td><a title="IRIX" href="/wiki/IRIX">IRIX</a>,<a title="Linux" href="/wiki/Linux">Linux</a>,<a title="FreeBSD" href="/wiki/FreeBSD">FreeBSD</a></td>
</tr>
<tr>
<th style="text-align: left;">HFS</th>
<td><a title="IBM" href="/wiki/IBM">IBM</a></td>
<td><a title="1994" href="/wiki/1994">1994</a></td>
<td><a title="MVS/ESA" href="/wiki/MVS/ESA">MVS/ESA</a> (now <a title="Z/OS" href="/wiki/Z/OS">z/OS</a>)</td>
</tr>
<tr>
<th style="text-align: left;"><a title="Joliet (file system)" href="/wiki/Joliet_(file_system)">Joliet (&#8220;CDFS&#8221;)</a></th>
<td><a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td><a title="1995" href="/wiki/1995">1995</a></td>
<td><a title="Microsoft Windows" href="/wiki/Microsoft_Windows">Microsoft Windows</a>, <a title="Linux" href="/wiki/Linux">Linux</a>, <a title="Mac OS X" href="/wiki/Mac_OS_X">Mac OS X</a>, and <a title="FreeBSD" href="/wiki/FreeBSD">FreeBSD</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Universal Disk Format" href="/wiki/Universal_Disk_Format">UDF</a></th>
<td><a title="International Organization for Standardization" href="/wiki/International_Organization_for_Standardization">ISO</a>/<a title="Ecma International" href="/wiki/Ecma_International">ECMA</a>/<a title="Optical Storage Technology Association" href="/wiki/Optical_Storage_Technology_Association">OSTA</a></td>
<td><a title="1995" href="/wiki/1995">1995</a></td>
<td>-</td>
</tr>
<tr>
<th style="text-align: left;"><a title="File Allocation Table" href="/wiki/File_Allocation_Table">FAT32</a></th>
<td><a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td><a title="1996" href="/wiki/1996">1996</a></td>
<td><a title="Windows 95" href="/wiki/Windows_95">Windows 95b</a><sup><a href="#cite_note-note-10-2">[3]</a></sup></td>
</tr>
<tr>
<th style="text-align: left;"><a title="QFS" href="/wiki/QFS">QFS</a></th>
<td>LSC Inc, <a title="Sun Microsystems" href="/wiki/Sun_Microsystems">Sun Microsystems</a></td>
<td><a title="1996" href="/wiki/1996">1996</a></td>
<td><a title="Solaris Operating System" href="/wiki/Solaris_Operating_System">Solaris</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="GPFS" href="/wiki/GPFS">GPFS</a></th>
<td><a title="IBM" href="/wiki/IBM">IBM</a></td>
<td><a title="1996" href="/wiki/1996">1996</a></td>
<td><a title="IBM AIX (operating system)" href="/wiki/IBM_AIX_(operating_system)">AIX</a>,<a title="Linux" href="/wiki/Linux">Linux</a>,<a title="Microsoft Windows" href="/wiki/Microsoft_Windows">Windows</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Be File System" href="/wiki/Be_File_System">Be File System</a></th>
<td><a title="Be Inc." href="/wiki/Be_Inc.">Be Inc.</a>, <a title="Dominic Giampaolo" href="/wiki/Dominic_Giampaolo">D. Giampaolo</a>, <a title="Cyril Meurillon (page does not exist)" href="/w/index.php?title=Cyril_Meurillon&amp;action=edit&amp;redlink=1">C. Meurillon</a></td>
<td><a title="1996" href="/wiki/1996">1996</a></td>
<td><a title="BeOS" href="/wiki/BeOS">BeOS</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Minix file system" href="/wiki/Minix_file_system">Minix V2 FS</a></th>
<td><a title="Andrew S. Tanenbaum" href="/wiki/Andrew_S._Tanenbaum">Andrew S. Tanenbaum</a></td>
<td><a title="1997" href="/wiki/1997">1997</a></td>
<td><a title="Minix" href="/wiki/Minix">Minix</a> 2.0</td>
</tr>
<tr>
<th style="text-align: left;"><a title="HFS Plus" href="/wiki/HFS_Plus">HFS Plus</a></th>
<td><a title="Apple Computer" href="/wiki/Apple_Computer">Apple Computer</a></td>
<td><a title="1998" href="/wiki/1998">1998</a></td>
<td><a title="Mac OS 8" href="/wiki/Mac_OS_8">Mac OS 8.1</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Novell Storage Services" href="/wiki/Novell_Storage_Services">NSS</a></th>
<td><a title="Novell" href="/wiki/Novell">Novell</a></td>
<td><a title="1998" href="/wiki/1998">1998</a></td>
<td><a title="Novell NetWare" href="/wiki/Novell_NetWare">NetWare 5</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="PolyServe File System (PSFS) (page does not exist)" href="/w/index.php?title=PolyServe_File_System_(PSFS)&amp;action=edit&amp;redlink=1">PolyServe File System (PSFS)</a></th>
<td><a title="PolyServe (page does not exist)" href="/w/index.php?title=PolyServe&amp;action=edit&amp;redlink=1">PolyServe</a></td>
<td><a title="1998" href="/wiki/1998">1998</a></td>
<td><a title="Microsoft Windows" href="/wiki/Microsoft_Windows">Windows</a>, <a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Files-11" href="/wiki/Files-11">ODS-5</a></th>
<td><a title="Digital Equipment Corporation" href="/wiki/Digital_Equipment_Corporation">DEC</a></td>
<td><a title="1998" href="/wiki/1998">1998</a></td>
<td><a title="OpenVMS" href="/wiki/OpenVMS">OpenVMS</a> 7.2</td>
</tr>
<tr>
<th style="text-align: left;"><a title="Ext3" href="/wiki/Ext3">ext3</a></th>
<td><a title="Stephen Tweedie" href="/wiki/Stephen_Tweedie">Stephen Tweedie</a></td>
<td><a title="1999" href="/wiki/1999">1999</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="ISO 9660" href="/wiki/ISO_9660">ISO 9660:1999</a></th>
<td><a title="Ecma International" href="/wiki/Ecma_International">Ecma International</a>, <a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td><a title="1999" href="/wiki/1999">1999</a></td>
<td><a title="Microsoft Windows" href="/wiki/Microsoft_Windows">Microsoft Windows</a>, <a title="Linux" href="/wiki/Linux">Linux</a>, <a title="Mac OS X" href="/wiki/Mac_OS_X">Mac OS X</a>, <a title="FreeBSD" href="/wiki/FreeBSD">FreeBSD</a>, and <a title="AmigaOS" href="/wiki/AmigaOS">AmigaOS</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Lustre (file system)" href="/wiki/Lustre_(file_system)">Lustre</a></th>
<td><a title="Sun Microsystems" href="/wiki/Sun_Microsystems">Sun Microsystems</a>/<a title="Cluster File Systems" href="/wiki/Cluster_File_Systems">Cluster File Systems</a></td>
<td><a title="2002" href="/wiki/2002">2002</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="JFS file system" href="/wiki/JFS_file_system">JFS</a></th>
<td><a title="IBM" href="/wiki/IBM">IBM</a></td>
<td><a title="1999" href="/wiki/1999">1999</a></td>
<td><a title="OS/2" href="/wiki/OS/2">OS/2</a> Warp Server for e-business</td>
</tr>
<tr>
<th style="text-align: left;"><a title="Global File System" href="/wiki/Global_File_System">GFS</a></th>
<td><a title="Sistina Software" href="/wiki/Sistina_Software">Sistina</a> (<a title="Red Hat" href="/wiki/Red_Hat">Red Hat</a>)</td>
<td><a title="2000" href="/wiki/2000">2000</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="NTFS" href="/wiki/NTFS">NTFS</a> Version 5.1</th>
<td><a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td><a title="2001" href="/wiki/2001">2001</a></td>
<td><a title="Windows XP" href="/wiki/Windows_XP">Windows XP</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="ReiserFS" href="/wiki/ReiserFS">ReiserFS</a></th>
<td><a title="Namesys" href="/wiki/Namesys">Namesys</a></td>
<td><a title="2001" href="/wiki/2001">2001</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;">zFS</th>
<td><a title="IBM" href="/wiki/IBM">IBM</a></td>
<td><a title="2001" href="/wiki/2001">2001</a></td>
<td><a title="Z/OS" href="/wiki/Z/OS">z/OS</a> (backported to <a title="OS/390" href="/wiki/OS/390">OS/390</a>)</td>
</tr>
<tr>
<th style="text-align: left;"><a title="FATX" href="/wiki/FATX">FATX</a></th>
<td style="text-align: left;"><a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td style="text-align: left;"><a title="2002" href="/wiki/2002">2002</a></td>
<td style="text-align: left;"><a title="Xbox" href="/wiki/Xbox">Xbox</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Unix File System" href="/wiki/Unix_File_System">UFS2</a></th>
<td style="text-align: left;"><a title="Marshall Kirk McKusick" href="/wiki/Marshall_Kirk_McKusick">Kirk McKusick</a></td>
<td style="text-align: left;"><a title="2002" href="/wiki/2002">2002</a></td>
<td style="text-align: left;"><a title="FreeBSD" href="/wiki/FreeBSD">FreeBSD</a> 5.0</td>
</tr>
<tr>
<th style="text-align: left;"><a title="OCFS" href="/wiki/OCFS">OCFS</a></th>
<td><a title="Oracle Corporation" href="/wiki/Oracle_Corporation">Oracle Corporation</a></td>
<td><a title="2002" href="/wiki/2002">2002</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="VMware VMFS" href="/wiki/VMware_VMFS">VMFS2</a></th>
<td><a title="VMware" href="/wiki/VMware">VMware</a></td>
<td><a title="2002" href="/wiki/2002">2002</a></td>
<td><a title="VMware ESX Server" href="/wiki/VMware_ESX_Server">VMware ESX Server</a> 2.0</td>
</tr>
<tr>
<th style="text-align: left;"><a title="Fossil (file system)" href="/wiki/Fossil_(file_system)">Fossil</a></th>
<td style="text-align: left;"><a title="Bell Labs" href="/wiki/Bell_Labs">Bell Labs</a></td>
<td style="text-align: left;"><a title="2003" href="/wiki/2003">2003</a></td>
<td style="text-align: left;"><a title="Plan 9 from Bell Labs" href="/wiki/Plan_9_from_Bell_Labs">Plan 9 from Bell Labs</a> 4</td>
</tr>
<tr>
<th style="text-align: left;"><a title="Google File System" href="/wiki/Google_File_System">Google File System</a></th>
<td><a title="Google" href="/wiki/Google">Google</a></td>
<td><a title="2003" href="/wiki/2003">2003</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="ZFS" href="/wiki/ZFS">ZFS</a></th>
<td><a title="Sun Microsystems" href="/wiki/Sun_Microsystems">Sun Microsystems</a></td>
<td><a title="2004" href="/wiki/2004">2004</a></td>
<td><a title="Solaris Operating System" href="/wiki/Solaris_Operating_System">Solaris</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Reiser4" href="/wiki/Reiser4">Reiser4</a></th>
<td style="text-align: left;"><a title="Namesys" href="/wiki/Namesys">Namesys</a></td>
<td style="text-align: left;"><a title="2004" href="/wiki/2004">2004</a></td>
<td style="text-align: left;"><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Non-Volatile File System" href="/wiki/Non-Volatile_File_System">Non-Volatile File System</a></th>
<td style="text-align: left;"><a title="Palm, Inc." href="/wiki/Palm,_Inc.">Palm, Inc.</a></td>
<td style="text-align: left;"><a title="2004" href="/wiki/2004">2004</a></td>
<td style="text-align: left;"><a title="Palm OS Garnet" href="/wiki/Palm_OS_Garnet">Palm OS Garnet</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Minix file system" href="/wiki/Minix_file_system">Minix V3 FS</a></th>
<td><a title="Andrew S. Tanenbaum" href="/wiki/Andrew_S._Tanenbaum">Andrew S. Tanenbaum</a></td>
<td><a title="2005" href="/wiki/2005">2005</a></td>
<td><a title="Minix 3" href="/wiki/Minix_3">MINIX 3</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="OCFS2" href="/wiki/OCFS2">OCFS2</a></th>
<td><a title="Oracle Corporation" href="/wiki/Oracle_Corporation">Oracle Corporation</a></td>
<td><a title="2005" href="/wiki/2005">2005</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="NILFS" href="/wiki/NILFS">NILFS</a></th>
<td><a title="Nippon Telegraph and Telephone" href="/wiki/Nippon_Telegraph_and_Telephone">NTT</a></td>
<td><a title="2005" href="/wiki/2005">2005</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a>, <a title="NetBSD" href="/wiki/NetBSD">NetBSD</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="VMware VMFS" href="/wiki/VMware_VMFS">VMFS3</a></th>
<td style="text-align: left;"><a title="VMware" href="/wiki/VMware">VMware</a></td>
<td style="text-align: left;"><a title="2005" href="/wiki/2005">2005</a></td>
<td style="text-align: left;">VMware ESX Server 3.0</td>
</tr>
<tr>
<th style="text-align: left;"><a title="Global File System 2" href="/wiki/Global_File_System_2">GFS2</a></th>
<td><a title="Red Hat" href="/wiki/Red_Hat">Red Hat</a></td>
<td><a title="2006" href="/wiki/2006">2006</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Ext4" href="/wiki/Ext4">ext4</a></th>
<td>various</td>
<td><a title="2006" href="/wiki/2006">2006</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="ExFAT" href="/wiki/ExFAT">exFAT</a></th>
<td style="text-align: left;"><a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td style="text-align: left;"><a title="2006" href="/wiki/2006">2006</a>,<a title="2009" href="/wiki/2009">2009</a></td>
<td style="text-align: left;"><a title="Windows CE 6.0" href="/wiki/Windows_CE_6.0">Windows CE 6.0</a>, <a title="Windows XP" href="/wiki/Windows_XP">Windows XP SP3</a>, <a title="Windows Vista" href="/wiki/Windows_Vista">Windows Vista SP1</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Transaction-Safe FAT File System" href="/wiki/Transaction-Safe_FAT_File_System">TexFAT/TFAT</a></th>
<td><a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td><a title="2006" href="/wiki/2006">2006</a></td>
<td><a title="Windows CE 6.0" href="/wiki/Windows_CE_6.0">Windows CE 6.0</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="NTFS" href="/wiki/NTFS">NTFS</a> Version 6.0</th>
<td><a title="Microsoft" href="/wiki/Microsoft">Microsoft</a></td>
<td><a title="2006" href="/wiki/2006">2006</a></td>
<td><a title="Windows Vista" href="/wiki/Windows_Vista">Windows Vista</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="Btrfs" href="/wiki/Btrfs">Btrfs</a></th>
<td><a title="Oracle Corporation" href="/wiki/Oracle_Corporation">Oracle Corporation</a></td>
<td><a title="2007" href="/wiki/2007">2007</a></td>
<td><a title="Linux" href="/wiki/Linux">Linux</a></td>
</tr>
<tr>
<th style="text-align: left;"><a title="HAMMER" href="/wiki/HAMMER">HAMMER</a></th>
<td><a title="Matthew Dillon (computer scientist)" href="/wiki/Matthew_Dillon_(computer_scientist)">Matthew Dillon</a></td>
<td><a title="2008" href="/wiki/2008">2008</a></td>
<td><a title="Dragonfly BSD" href="/wiki/Dragonfly_BSD">Dragonfly BSD</a></td>
</tr>
<tr>
<th style="text-align: left;">WBFS</th>
<td><a title="Nintendo" href="/wiki/Nintendo">Nintendo</a></td>
<td><a title="2009" href="/wiki/2009">2009</a></td>
<td><a title="Wii" href="/wiki/Wii">Wii</a>, <a title="Wii" href="/wiki/Wii">Wii</a> <a title="Linux" href="/wiki/Linux">Linux</a>, <a title="Windows" href="/wiki/Windows">Windows</a> using WBFS Manager</td>
</tr>
</tbody>
</table>
<p><a href="http://en.wikipedia.org/wiki/Comparison_of_file_systems" target="_blank">Click here for more info</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.javeedpassion.com/2009/12/types-of-file-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
