<?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>Unix SysAd&#039;s Technology Blog</title>
	<atom:link href="http://www.sysadmindayph.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sysadmindayph.com/blog</link>
	<description>SysAdmin Blog, TechTips and Reviews</description>
	<lastBuildDate>Tue, 27 Apr 2010 05:48:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Solaris Kernel Patching Recommended Patch</title>
		<link>http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/</link>
		<comments>http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 05:48:25 +0000</pubDate>
		<dc:creator>elizar</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[Solaris 10]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[10_recommended patch]]></category>
		<category><![CDATA[breaking mirror]]></category>
		<category><![CDATA[howto kernel patch]]></category>
		<category><![CDATA[kernel patch]]></category>
		<category><![CDATA[solaris kernel patching]]></category>

		<guid isPermaLink="false">http://www.sysadmindayph.com/blog/?p=223</guid>
		<description><![CDATA[Here&#8217;s another Kernel patching of Solaris. I know there are tons of this type of post in the internet but another reference for the one who needs it, is I guess ok.
To be honest, this is the steps that really made me understood the steps and procedure and the concept behind the 10_Recommended patch for [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another Kernel patching of Solaris. I know there are tons of this type of post in the internet but another reference for the one who needs it, is I guess ok.</p>
<p>To be honest, this is the steps that really made me understood the steps and procedure and the concept behind the 10_Recommended patch for solaris kernel.</p>
<p><span id="more-223"></span></p>
<p>So, here it is:</p>
<p><strong>Check Boot Disk</strong></p>
<p>This step is to check which disks are the member of the boot mirror. We can say that this is the check disk mirror / disk membership step</p>
<p><code><br />
# df -h /<br />
Filesystem             size   used  avail capacity  Mounted on<br />
/dev/md/dsk/d0          33G   7.3G    25G    23%    /<br />
#<br />
# metastat -c d0<br />
d0               m   33GB d10 d20<br />
    d10          s   33GB c1t0d0s0<br />
    d20          s   33GB c1t1d0s0</p>
<p></code></p>
<p>As you can see, there are two disk that comprise the boot mirror (d0), 33GB c1t0d0s0 and c1t1d0s0, which is named d10 and d20 respectively</p>
<p><strong>Check which disk is booting up</strong></p>
<p>In this step, we will determine which of the disk are the one being use as the boot default boot disk.</p>
<p>Usually it&#8217;s the default &#8216;disk&#8217; or &#8216;disk0&#8242;, but there are times, very rare, that &#8216;disk1&#8242; is set as the default boot disk.</p>
<p>To know which disk is the one that boot up the system, you can use the eeprom command in the system shell:</p>
<p><code><br />
# eeprom boot-device<br />
boot-device=disk0<br />
</code></p>
<p>In this case, it&#8217;s the most common disk that is used as the boot disk &#8211; disk0. That means, when can detach the other disk as backup just in case the patching screw up.</p>
<p><strong>Check The Bootability of the Backup Disk</strong></p>
<p>Prior to patching, check if the other disk is booting. This is a precaution. Just in case the patching went sour, we know that we can always revert to a good disk, revert to the previous good booting condition of the server.</p>
<p>Since from the previous step, we know that the default boot disk is &#8216;disk0&#8242;, we will switch to &#8216;disk1&#8242; and try to reboot the server and see if it will come up.</p>
<p>Now, there are two ways to set the value of the &#8216;boot-device&#8217; paramter of the server. You can either set it at the system shell, or through the Boot PROM, depending on where you are at the moment.</p>
<p>Now, set the default boot disk to &#8216;disk1&#8242;</p>
<p><code><a href="http://docs.sun.com/app/docs/doc/819-2379/bootdevice-change?a=view">eeprom boot-device=disk1</a></code></p>
<p>or</p>
<p><code><a href="http://docs.sun.com/app/docs/doc/805-7228/6j6q7uepp?a=view">set boot-device=disk1</a></code></p>
<p>After setting it up, reboot the server:</p>
<p>init 0 then boot </p>
<p>or </p>
<p>init 6</p>
<p>If you&#8217;re successfull, you just  booted on the &#8216;other half&#8217; of the bootdisk.</p>
<p>Now, don&#8217;t forget to switch back to disk0 !!!</p>
<p>Next, (optional&#8230; can differ from company to company)</p>
<p><code># untar the patch file<br />
cd /var/tmp<br />
rm -rf PatchDir<br />
mkdir PatchDir<br />
mv S10KernelUpdate4.0.tar.gz PatchDir<br />
cd PatchDir<br />
gunzip -c S10KernelUpdate4.0.tar.gz|tar xf -</code></p>
<p><strong>Splitting the Mirror</strong></p>
<p>The next steps are the meat of the procedure. This is the patching of the kernel itself.. But of course, after checking the boot disk &#8211; whether the both disks are good- it&#8217;s time to break the mirror and patch one disk.</p>
<p>sync;metadeatch</p>
<p>detach the backup disk</p>
<p>metadetach d0 d20</p>
<p># mount the detached root file system to root and modify these</p>
<p>mount /dev/dsk/c1t1d0s0 /mnt</p>
<p>vi /mnt/etc/vfstab<br />
vi /mnt/etc/system</p>
<p>Modifying vsfstab and /etc/system of the detached disk will make sure that if the patching fail, we can alyas boot up to the backup disk.</p>
<p><strong>Start Patching</strong></p>
<p># go to single user mode<br />
sync;sync;init 0</p>
<p>init -s</p>
<p>Rebooting with command: boot -s<br />
Boot device: /pci@8,600000/SUNW,qlc@4/fp@0,0/disk@0,0  File and args: -s<br />
SunOS Release 5.10 Version Generic_141414-02 64-bit<br />
Copyright 1983-2009 Sun Microsystems, Inc.  All rights reserved.<br />
Use is subject to license terms.</p>
<p>&#8230; You then follow the ReadMe document that comes with the Patch here.</p>
<p>Once the patching is done, you&#8217;ll see the difference of the patch level of the kernel.</p>
<p>Boot device: disk0  File and args:<br />
SunOS Release 5.10 Version Generic_<strong>142900</strong>-02 64-bit<br />
Copyright 1983-2009 Sun Microsystems, Inc.  All rights reserved.<br />
Use is subject to license terms.</p>
<p>Optional<br />
=&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
For more installation messages refer to the installation logfile:<br />
  /var/sadm/install_data/PMGT:_TLP-Set_Solaris_10_SOE_S10KernelUpdate4.1_A1_04_27_10</p>
<p>Use &#8216;/usr/bin/showrev -p&#8217; or &#8216;/usr/sbin/patchadd -p&#8217; to verify<br />
installed patch-ids.<br />
Refer to individual patch README files for more patch detail.<br />
Rebooting the system is usually necessary after installation.<br />
svc.startd: The system is coming down.  Please wait.<br />
svc.startd: 20 system services are now being stopped.</p>
<p>!!! Please read the logfile for any required action before rebooting !<br />
&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>reboot:! for the bank, it&#8217;s automatic</p>
<p>If all is good, you can reattach the other disk</p>
<p>metattach d0 d20</p>
<p>And you&#8217;re done.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/&amp;t=Solaris+Kernel+Patching+Recommended+Patch" title="Share this on Facebook"> </a>
		</li>
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/&amp;title=Solaris+Kernel+Patching+Recommended+Patch" title="Share this on del.icio.us"> </a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/&amp;title=Solaris+Kernel+Patching+Recommended+Patch" title="Digg this!"> </a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/&amp;title=Solaris+Kernel+Patching+Recommended+Patch" title="Share this on Reddit"> </a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/&amp;submitHeadline=Solaris+Kernel+Patching+Recommended+Patch&amp;submitSummary=Here%27s%20another%20Kernel%20patching%20of%20Solaris.%20I%20know%20there%20are%20tons%20of%20this%20type%20of%20post%20in%20the%20internet%20but%20another%20reference%20for%20the%20one%20who%20needs%20it%2C%20is%20I%20guess%20ok.%0D%0A%0D%0ATo%20be%20honest%2C%20this%20is%20the%20steps%20that%20really%20made%20me%20understood%20the%20steps%20and%20procedure%20and%20the%20concept%20behind%20the%2010_Recommended%20pat&amp;submitCategory=science&amp;submitAssetType=text" title="Buzz up!"> </a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/&amp;title=Solaris+Kernel+Patching+Recommended+Patch" title="Stumble upon something good? Share it on StumbleUpon"> </a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/&amp;title=Solaris+Kernel+Patching+Recommended+Patch" title="Share this on Mixx"> </a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/&amp;t=Solaris+Kernel+Patching+Recommended+Patch" title="Post this to MySpace"> </a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Solaris+Kernel+Patching+Recommended+Patch+-+http://b2l.me/rgp2f+&amp;source=shareaholic" title="Tweet This!"> </a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/feed" title="Subscribe to the comments for this post?"> </a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/&amp;imageurl=" title="Post on Google Buzz"> </a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.sysadmindayph.com/blog/solaris-kernel-patching-recommended-patch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KSH Script Basics &#124; Special Shell Variables</title>
		<link>http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/</link>
		<comments>http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 02:57:31 +0000</pubDate>
		<dc:creator>elizar</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[if else]]></category>
		<category><![CDATA[if else if]]></category>
		<category><![CDATA[ksh shell]]></category>
		<category><![CDATA[ksh shell script]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[special shell variable]]></category>

		<guid isPermaLink="false">http://www.sysadmindayph.com/blog/?p=221</guid>
		<description><![CDATA[Just deleted tons of stale, unsused user accounts. Here are some KSH shell basics and special shell variable. I need to Google them up myself to get reminded that &#8216;$?&#8217; is the output variable for script execution. That is, it&#8217;s 0 for successful execution and 1 if there is any error.

Special shell variables
There are some [...]]]></description>
			<content:encoded><![CDATA[<p>Just deleted tons of stale, unsused user accounts. Here are some KSH shell basics and special shell variable. I need to Google them up myself to get reminded that &#8216;$?&#8217; is the output variable for script execution. That is, it&#8217;s 0 for successful execution and 1 if there is any error.</p>
<p><span id="more-221"></span></p>
<p>Special shell variables<br />
There are some variables which are set internally by the shell and which are available to the user:</p>
<p>Name          Description<br />
&#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;&#8211;<br />
$1 &#8211; $9       these variables are the positional parameters.</p>
<p>$0            the name of the command currently being executed.</p>
<p>$#            the number of positional arguments given to this<br />
              invocation of the shell.</p>
<p>$?            the exit status of the last command executed is<br />
              given as a decimal string.  When a command<br />
              completes successfully, it returns the exit status<br />
              of 0 (zero), otherwise it returns a non-zero exit<br />
              status.</p>
<p>$$            the process number of this shell &#8211; useful for<br />
              including in filenames, to make them unique.</p>
<p>$!            the process id of the last command run in<br />
              the background.</p>
<p>$-            the current options supplied to this invocation<br />
              of the shell.</p>
<p>$*            a string containing all the arguments to the<br />
              shell, starting at $1.</p>
<p>$@            same as above, except when quoted.</p>
<p><strong>Branching</strong><br />
<code>if then fi<br />
if [[ $value -eq 7 ]];then<br />
   print "$value is 7"<br />
fi</code><br />
or:</p>
<p><code>if [[ $value -eq 7 ]]<br />
then<br />
   print "$value is 7"<br />
fi</code>or:</p>
<p><code>if [[ $value -eq 7 ]];then print "$value is 7";fi</p>
<p>if then else fi<br />
if [[ $name = "John" ]];then<br />
   print "Your welcome, ${name}."<br />
else<br />
   print "Good bye, ${name}!"<br />
fi</code></p>
<p><code>if then elif then else fi<br />
if [[ $name = "John" ]];then<br />
   print "Your welcome, ${name}."<br />
elif [[ $name = "Hanna" ]];then<br />
   print "Hello, ${name}, who are you?"<br />
else<br />
   print "Good bye, ${name}!"<br />
fi</code></p>
<p><code>case esac<br />
case $var in<br />
   john|fred) print $invitation;;<br />
   martin)    print $declination;;<br />
   *)         print "Wrong name...";;<br />
esac</code></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;&#8211;</p>
<p><strong>Looping Command Syntax for Scripts</strong></p>
<p><code>while do done<br />
while [[ $count -gt 0 ]];do<br />
   print "\$count is $count"<br />
   (( count -= 1 ))<br />
done</code><br />
<code>until do done<br />
until [[ $answer = "yes" ]];do<br />
   print -n "Please enter \"yes\": "<br />
   read answer<br />
   print ""<br />
done</code><br />
<code>for var in list do done<br />
for foo in $(ls);do<br />
   if [[ -d $foo ]];then<br />
      print "$foo is a directory"<br />
   else<br />
      print "$foo is not a directory"<br />
   fi<br />
done</code><br />
continue&#8230;break<br />
One can skip the rest of a loop and directly go to the next iteration with: &#8220;continue&#8221;. </p>
<p><code>while read line<br />
do<br />
   if [[ $line = *.gz ]];then<br />
      continue<br />
   else<br />
      print $line<br />
   fi<br />
done</code><br />
One can also prematurely leave a loop with: &#8220;break&#8221;. </p>
<p><code>while read line;do<br />
   if [[ $line = *!(.c) ]];then<br />
      break<br />
   else<br />
      print $line<br />
   fi<br />
done</code></p>
<p>http://www.well.ox.ac.uk/~johnb/comp/unix/ksh.html</p>
<p>Removing accounts from predefine list:</p>
<p><code>#!/bin/ksh</p>
<p>for each in `cat ./list-a`<br />
do<br />
  grep -i $each  /etc/passwd<br />
    if [[ $? -eq 1 ]]; then<br />
        echo "$each does not exists."<br />
        sleep 2<br />
        continue;<br />
    else<br />
        echo "$each exists"<br />
        echo "Deleting account.. "<br />
        sleep 2<br />
        userdel $each<br />
        echo "$each deleted"<br />
        sleep 5<br />
     fi</p>
<p>done</code></p>
<p>Or course, the sleep there is just for aesthetic.. I want to see the screen</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/&amp;t=KSH+Script+Basics+%7C+Special+Shell+Variables" title="Share this on Facebook"> </a>
		</li>
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/&amp;title=KSH+Script+Basics+%7C+Special+Shell+Variables" title="Share this on del.icio.us"> </a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/&amp;title=KSH+Script+Basics+%7C+Special+Shell+Variables" title="Digg this!"> </a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/&amp;title=KSH+Script+Basics+%7C+Special+Shell+Variables" title="Share this on Reddit"> </a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/&amp;submitHeadline=KSH+Script+Basics+%7C+Special+Shell+Variables&amp;submitSummary=Just%20deleted%20tons%20of%20stale%2C%20unsused%20user%20accounts.%20Here%20are%20some%20KSH%20shell%20basics%20and%20special%20shell%20variable.%20I%20need%20to%20Google%20them%20up%20myself%20to%20get%20reminded%20that%20%27%24%3F%27%20is%20the%20output%20variable%20for%20script%20execution.%20That%20is%2C%20it%27s%200%20for%20successful%20execution%20and%201%20if%20there%20is%20any%20error.%0D%0A%0D%0A%0D%0A%0D%0ASpecial%20sh&amp;submitCategory=science&amp;submitAssetType=text" title="Buzz up!"> </a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/&amp;title=KSH+Script+Basics+%7C+Special+Shell+Variables" title="Stumble upon something good? Share it on StumbleUpon"> </a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/&amp;title=KSH+Script+Basics+%7C+Special+Shell+Variables" title="Share this on Mixx"> </a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/&amp;t=KSH+Script+Basics+%7C+Special+Shell+Variables" title="Post this to MySpace"> </a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=KSH+Script+Basics+%7C+Special+Shell+Variables+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections+&amp;source=shareaholic" title="Tweet This!"> </a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/feed" title="Subscribe to the comments for this post?"> </a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/&amp;imageurl=" title="Post on Google Buzz"> </a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.sysadmindayph.com/blog/ksh-script-basics-special-shell-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for SAE j1708?</title>
		<link>http://www.sysadmindayph.com/blog/looking-for-sae-j1708/</link>
		<comments>http://www.sysadmindayph.com/blog/looking-for-sae-j1708/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 02:49:24 +0000</pubDate>
		<dc:creator>elizar</dc:creator>
				<category><![CDATA[Gadget]]></category>
		<category><![CDATA[osi model]]></category>
		<category><![CDATA[physical layer]]></category>
		<category><![CDATA[sae j1708]]></category>
		<category><![CDATA[sae j1922]]></category>
		<category><![CDATA[sae j1939]]></category>

		<guid isPermaLink="false">http://www.sysadmindayph.com/blog/?p=218</guid>
		<description><![CDATA[J1708 or by it&#8217;s complete name SAE J1708, is a standard used for serial communications between ECUs on a heavy duty vehicle and also between a computer and the vehicle. 
If you&#8217;re familiar with data communication or networking, the SAE J1708 is categorized in the Physical layer of the Open System Interconnection model (OSI). 
Common [...]]]></description>
			<content:encoded><![CDATA[<p>J1708 or by it&#8217;s complete name SAE J1708, is a standard used for serial communications between ECUs on a heavy duty vehicle and also between a computer and the vehicle. </p>
<p>If you&#8217;re familiar with data communication or networking, the SAE J1708 is categorized in the Physical layer of the Open System Interconnection model (OSI). </p>
<p>Common higher layer protocols that operate on top of J1708 are SAE J1587 and SAE J1922.</p>
<p>This post is under &#8216;gadget&#8217; since I was looking for a way to interconnect my GPS device to my car a few months back. </p>
<p>The standard defines a 2-wire 18 gauge wire cable that can run up to 130 feet (40 m) and operates at 9600 bit/s. A message is composed of up to 21 characters, unless the engine is stopped and the vehicle is not moving in which case transmitters are allowed to exceed the 21 byte max message length. Messages start with a Message ID (MID) character and finish with a checksum at the end. Characters are transmitted in the common 8N1 format.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.sysadmindayph.com/blog/looking-for-sae-j1708/&amp;t=Looking+for+SAE+j1708%3F" title="Share this on Facebook"> </a>
		</li>
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.sysadmindayph.com/blog/looking-for-sae-j1708/&amp;title=Looking+for+SAE+j1708%3F" title="Share this on del.icio.us"> </a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.sysadmindayph.com/blog/looking-for-sae-j1708/&amp;title=Looking+for+SAE+j1708%3F" title="Digg this!"> </a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.sysadmindayph.com/blog/looking-for-sae-j1708/&amp;title=Looking+for+SAE+j1708%3F" title="Share this on Reddit"> </a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.sysadmindayph.com/blog/looking-for-sae-j1708/&amp;submitHeadline=Looking+for+SAE+j1708%3F&amp;submitSummary=J1708%20or%20by%20it%27s%20complete%20name%20SAE%20J1708%2C%20is%20a%20standard%20used%20for%20serial%20communications%20between%20ECUs%20on%20a%20heavy%20duty%20vehicle%20and%20also%20between%20a%20computer%20and%20the%20vehicle.%20%0D%0A%0D%0AIf%20you%27re%20familiar%20with%20data%20communication%20or%20networking%2C%20the%20SAE%20J1708%20is%20categorized%20in%20the%20Physical%20layer%20of%20the%20Open%20System&amp;submitCategory=science&amp;submitAssetType=text" title="Buzz up!"> </a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.sysadmindayph.com/blog/looking-for-sae-j1708/&amp;title=Looking+for+SAE+j1708%3F" title="Stumble upon something good? Share it on StumbleUpon"> </a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.sysadmindayph.com/blog/looking-for-sae-j1708/&amp;title=Looking+for+SAE+j1708%3F" title="Share this on Mixx"> </a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.sysadmindayph.com/blog/looking-for-sae-j1708/&amp;t=Looking+for+SAE+j1708%3F" title="Post this to MySpace"> </a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Looking+for+SAE+j1708%3F+-+http://b2l.me/p88wu+&amp;source=shareaholic" title="Tweet This!"> </a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.sysadmindayph.com/blog/looking-for-sae-j1708/feed" title="Subscribe to the comments for this post?"> </a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.sysadmindayph.com/blog/looking-for-sae-j1708/&amp;imageurl=" title="Post on Google Buzz"> </a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.sysadmindayph.com/blog/looking-for-sae-j1708/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH Tectia: Setup Public-Key Authentication</title>
		<link>http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/</link>
		<comments>http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 03:14:04 +0000</pubDate>
		<dc:creator>elizar</dc:creator>
				<category><![CDATA[Solaris]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[public key authentication]]></category>
		<category><![CDATA[public-key]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssh tectia]]></category>

		<guid isPermaLink="false">http://www.sysadmindayph.com/blog/?p=203</guid>
		<description><![CDATA[A quick post on how to setup a public-key authentication on an SSH client server, product by SSH Tectia.
Summary: User instruction on how to setup public-key authentication.
In setting up the ssh public-key authentication between servers, local and remote, we have to generate the key pairs and transfer it to the remote/server.
Client Side
The publickey authentication method [...]]]></description>
			<content:encoded><![CDATA[<p>A quick post on how to setup a public-key authentication on an SSH client server, product by SSH Tectia.</p>
<p>Summary: User instruction on how to setup public-key authentication.</p>
<p>In setting up the ssh public-key authentication between servers, local and remote, we have to generate the key pairs and transfer it to the remote/server.</p>
<p><strong>Client Side</strong></p>
<p>The publickey authentication method is enabled by the SSHtectia package by default. A functional ID&#8217;s key pair can be generated using the &#8216;generate_keys&#8217; script (may be located in /export/opt/SSHtectia/<version>/util/ or depending on your installation). That script, &#8216;generate_keys&#8217;, is use to generate user key pairs: id_dsa_2048_a and id_dsa_2048_a.pub (default names) in the centralized key location:</p>
<p>/etc/opt/SSHtectia/keys/<login ID></p>
<p>The script also creates an &#8216;identification&#8217; file in /etc/opt/SSHtectial/keys/<login ID> that contains the name of the private keys:</p>
<p># more identification<br />
# SSH Tectia private key<br />
IdKey /etc/opt/SSHtectia/keys/%U/id_dsa_2048_a</p>
<p># OpenSSH private key<br />
IdKey /etc/opt/SSHtectia/keys/%U/id_dsa</p>
<p>Don&#8217;t forget to substitute the private key filename for &#8216;id_dsa_2048_a&#8217; or &#8216;id_dsa&#8217; if you are using a different naming convention. If several key pairs are used, list private keys on a separate lines.</p>
<p><strong>Server Side</strong></p>
<p>The publickey authentication method is enabled for functional IDs ONLY by the SSHtectia package (how do we know if an account is such?). </p>
<p>Copy the public key file (i.e. id_dsa_2048_a.pub) to the server, to the centralized key location. You can use sftp, copy paste or any other method to do this.</p>
<p>Also copy the &#8216;authorization&#8217; file (created by the &#8216;generate_keys&#8217; script) from the cliet to the server&#8217;s centralized key location. </p>
<p>Test the connection.. it should work.. It worked on mine.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/&amp;t=SSH+Tectia%3A+Setup+Public-Key+Authentication" title="Share this on Facebook"> </a>
		</li>
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/&amp;title=SSH+Tectia%3A+Setup+Public-Key+Authentication" title="Share this on del.icio.us"> </a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/&amp;title=SSH+Tectia%3A+Setup+Public-Key+Authentication" title="Digg this!"> </a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/&amp;title=SSH+Tectia%3A+Setup+Public-Key+Authentication" title="Share this on Reddit"> </a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/&amp;submitHeadline=SSH+Tectia%3A+Setup+Public-Key+Authentication&amp;submitSummary=A%20quick%20post%20on%20how%20to%20setup%20a%20public-key%20authentication%20on%20an%20SSH%20client%20server%2C%20product%20by%20SSH%20Tectia.%0D%0A%0D%0ASummary%3A%20User%20instruction%20on%20how%20to%20setup%20public-key%20authentication.%0D%0A%0D%0AIn%20setting%20up%20the%20ssh%20public-key%20authentication%20between%20servers%2C%20local%20and%20remote%2C%20we%20have%20to%20generate%20the%20key%20pairs%20and&amp;submitCategory=science&amp;submitAssetType=text" title="Buzz up!"> </a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/&amp;title=SSH+Tectia%3A+Setup+Public-Key+Authentication" title="Stumble upon something good? Share it on StumbleUpon"> </a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/&amp;title=SSH+Tectia%3A+Setup+Public-Key+Authentication" title="Share this on Mixx"> </a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/&amp;t=SSH+Tectia%3A+Setup+Public-Key+Authentication" title="Post this to MySpace"> </a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=SSH+Tectia%3A+Setup+Public-Key+Authentication+-+http://b2l.me/prpdv+&amp;source=shareaholic" title="Tweet This!"> </a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/feed" title="Subscribe to the comments for this post?"> </a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/&amp;imageurl=" title="Post on Google Buzz"> </a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.sysadmindayph.com/blog/ssh-tectia-setup-public-key-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot find required executable /usr/bin/7za</title>
		<link>http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/</link>
		<comments>http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 04:59:47 +0000</pubDate>
		<dc:creator>elizar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sysadmindayph.com/blog/?p=201</guid>
		<description><![CDATA[The complete error actually is:
Cannot find required executable /usr/bin/7za
pkgadd: ERROR: class action script din not complete successfully
That was the error message displaced when I tried installing two Sun packages as requested by a user, SUNWeu8os and SUNWeulof.
Packages can be found in tge Solaris 10 disk release 5/08. When i tried installing the package I got [...]]]></description>
			<content:encoded><![CDATA[<p>The complete error actually is:</p>
<p>Cannot find required executable /usr/bin/7za<br />
pkgadd: ERROR: class action script din not complete successfully</p>
<p>That was the error message displaced when I tried installing two Sun packages as requested by a user, SUNWeu8os and SUNWeulof.</p>
<p>Packages can be found in tge Solaris 10 disk release 5/08. When i tried installing the package I got the error above.</p>
<p>There are two ways you can get that binary and one of them is by using the installation disk of Solaris 10 5/08.</p>
<p>Another one is by installing patch 137321-01 for sparc and 137322-01 for x86</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/&amp;t=Cannot+find+required+executable+%2Fusr%2Fbin%2F7za" title="Share this on Facebook"> </a>
		</li>
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/&amp;title=Cannot+find+required+executable+%2Fusr%2Fbin%2F7za" title="Share this on del.icio.us"> </a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/&amp;title=Cannot+find+required+executable+%2Fusr%2Fbin%2F7za" title="Digg this!"> </a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/&amp;title=Cannot+find+required+executable+%2Fusr%2Fbin%2F7za" title="Share this on Reddit"> </a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/&amp;submitHeadline=Cannot+find+required+executable+%2Fusr%2Fbin%2F7za&amp;submitSummary=The%20complete%20error%20actually%20is%3A%0D%0A%0D%0ACannot%20find%20required%20executable%20%2Fusr%2Fbin%2F7za%0D%0Apkgadd%3A%20ERROR%3A%20class%20action%20script%20din%20not%20complete%20successfully%0D%0A%0D%0AThat%20was%20the%20error%20message%20displaced%20when%20I%20tried%20installing%20two%20Sun%20packages%20as%20requested%20by%20a%20user%2C%20SUNWeu8os%20and%20SUNWeulof.%0D%0A%0D%0APackages%20can%20be%20found&amp;submitCategory=science&amp;submitAssetType=text" title="Buzz up!"> </a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/&amp;title=Cannot+find+required+executable+%2Fusr%2Fbin%2F7za" title="Stumble upon something good? Share it on StumbleUpon"> </a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/&amp;title=Cannot+find+required+executable+%2Fusr%2Fbin%2F7za" title="Share this on Mixx"> </a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/&amp;t=Cannot+find+required+executable+%2Fusr%2Fbin%2F7za" title="Post this to MySpace"> </a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Cannot+find+required+executable+%2Fusr%2Fbin%2F7za+-+http://b2l.me/prpc5+&amp;source=shareaholic" title="Tweet This!"> </a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/feed" title="Subscribe to the comments for this post?"> </a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/&amp;imageurl=" title="Post on Google Buzz"> </a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.sysadmindayph.com/blog/cannot-find-required-executable-usrbin7za/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to Freindster &#124; Freindster.com</title>
		<link>http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/</link>
		<comments>http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 14:07:41 +0000</pubDate>
		<dc:creator>elizar</dc:creator>
				<category><![CDATA[Website Review]]></category>
		<category><![CDATA[freindster]]></category>
		<category><![CDATA[friendster]]></category>
		<category><![CDATA[social network]]></category>
		<category><![CDATA[Social network service]]></category>

		<guid isPermaLink="false">http://www.sysadmindayph.com/blog/?p=198</guid>
		<description><![CDATA[
Freindster* is one of the most popular global social network in the internet today. Just like any other social networking site, Freindster is all about connecting to people and making friends. Search for old friends and classmates, stay in better touch with friends, share photos and videos, and so much more!
*Misspelling of Friendster was intended.

Because [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sysadmindayph.com/blog/wp-content/plugins/200px-Friendster_logo.png"><img src="http://www.sysadmindayph.com/blog/wp-content/plugins/200px-Friendster_logo.png" alt="" title="200px-Friendster_logo" class="aligncenter size-full wp-image-199" width="200" height="118"></a><br />
<strong>Freindster</strong>* is one of the most popular global social network in the internet today. Just like any other social networking site, Freindster is all about connecting to people and making friends. Search for old friends and classmates, stay in better touch with friends, share photos and videos, and so much more!</p>
<p>*Misspelling of <em>Friendster</em> was intended.</p>
<p><span id="more-198"></span><br />
Because of the immense popularity of <a href="http://www.sysadmindayph.com/blog/welcome-to-facbook-facbookcom/">Sysadminday&#8217;s Facbook post</a>, we will be doing the second most popular social networking site after Facebook, that is Friendster (or was it Myspace..)</p>
<p>Freindster is similar to Facbook and MySpace, a website that let’s you share information about you to you friends, classmates, and other people who don’t know yet about you.</p>
<p>Friendster&#8217;s traffic are mostly coming from Asia or Indonesia, Malaysia and Philippines to be specific. </p>
<p>Friendster has their headquarters are in Sydney, Australia. The service allows users to contact other members, maintain those contacts, and share online content and media with those contacts, which is the main function of a social networking website.</p>
<p>Freindster is also used for dating and discovering new events, bands, and hobbies. Users may share videos, photos, messages and comments with other members via their profile and their network.</p>
<p>From Wikipedia&#8217;s information, Friendster has over 115 million registered users and over 61 million unique visitors a month globally. The website receives approximately 19 billion page views per month, and is in the top 200 global websites based on web traffic.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.rateitall.com/i-26656-friendster.aspx">16 reviews of Friendster</a> (rateitall.com)</li>
</ul>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/394b8dac-8bb3-41c1-af0a-fb2b94fcad68/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=394b8dac-8bb3-41c1-af0a-fb2b94fcad68" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/&amp;t=Welcome+to+Freindster+%7C+Freindster.com" title="Share this on Facebook"> </a>
		</li>
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/&amp;title=Welcome+to+Freindster+%7C+Freindster.com" title="Share this on del.icio.us"> </a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/&amp;title=Welcome+to+Freindster+%7C+Freindster.com" title="Digg this!"> </a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/&amp;title=Welcome+to+Freindster+%7C+Freindster.com" title="Share this on Reddit"> </a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/&amp;submitHeadline=Welcome+to+Freindster+%7C+Freindster.com&amp;submitSummary=%0D%0AFreindster%2A%20is%20one%20of%20the%20most%20popular%20global%20social%20network%20in%20the%20internet%20today.%20Just%20like%20any%20other%20social%20networking%20site%2C%20Freindster%20is%20all%20about%20connecting%20to%20people%20and%20making%20friends.%20Search%20for%20old%20friends%20and%20classmates%2C%20stay%20in%20better%20touch%20with%20friends%2C%20share%20photos%20and%20videos%2C%20and%20so&amp;submitCategory=science&amp;submitAssetType=text" title="Buzz up!"> </a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/&amp;title=Welcome+to+Freindster+%7C+Freindster.com" title="Stumble upon something good? Share it on StumbleUpon"> </a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/&amp;title=Welcome+to+Freindster+%7C+Freindster.com" title="Share this on Mixx"> </a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/&amp;t=Welcome+to+Freindster+%7C+Freindster.com" title="Post this to MySpace"> </a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Welcome+to+Freindster+%7C+Freindster.com+-+http://b2l.me/prpcr+&amp;source=shareaholic" title="Tweet This!"> </a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/feed" title="Subscribe to the comments for this post?"> </a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/&amp;imageurl=" title="Post on Google Buzz"> </a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.sysadmindayph.com/blog/welcome-to-freindster-freindster-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad Spoof</title>
		<link>http://www.sysadmindayph.com/blog/ipad-spoof/</link>
		<comments>http://www.sysadmindayph.com/blog/ipad-spoof/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 05:08:25 +0000</pubDate>
		<dc:creator>elizar</dc:creator>
				<category><![CDATA[Gadget]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://www.sysadmindayph.com/blog/?p=196</guid>
		<description><![CDATA[Apple had open their system for pre-order of their much awaited iPad. April 3 is the start of shipping of the iPad.
It feels like everyone is very much looking forward for this neat device. Although the device is getting tons of positive buzz, there will always be some flaws on that &#8216;perfect product&#8217;. 
Check out [...]]]></description>
			<content:encoded><![CDATA[<p>Apple had open their system for pre-order of their much awaited iPad. April 3 is the start of shipping of the iPad.</p>
<p>It feels like everyone is very much looking forward for this neat device. Although the device is getting tons of positive buzz, there will always be some flaws on that &#8216;perfect product&#8217;. </p>
<p>Check out this spoof video, an ipad parody of the missing features of the IpAd such as a built-in camera, printing support, voice and others.</p>
<p>Funny.</p>
<p><span id="more-196"></span></p>
<p><center><br />
<object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/vZHQ7hcdh9U&#038;hl=en_US&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/vZHQ7hcdh9U&#038;hl=en_US&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object><br />
</center></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.sysadmindayph.com/blog/ipad-spoof/&amp;t=iPad+Spoof" title="Share this on Facebook"> </a>
		</li>
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.sysadmindayph.com/blog/ipad-spoof/&amp;title=iPad+Spoof" title="Share this on del.icio.us"> </a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.sysadmindayph.com/blog/ipad-spoof/&amp;title=iPad+Spoof" title="Digg this!"> </a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.sysadmindayph.com/blog/ipad-spoof/&amp;title=iPad+Spoof" title="Share this on Reddit"> </a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.sysadmindayph.com/blog/ipad-spoof/&amp;submitHeadline=iPad+Spoof&amp;submitSummary=Apple%20had%20open%20their%20system%20for%20pre-order%20of%20their%20much%20awaited%20iPad.%20April%203%20is%20the%20start%20of%20shipping%20of%20the%20iPad.%0D%0A%0D%0AIt%20feels%20like%20everyone%20is%20very%20much%20looking%20forward%20for%20this%20neat%20device.%20Although%20the%20device%20is%20getting%20tons%20of%20positive%20buzz%2C%20there%20will%20always%20be%20some%20flaws%20on%20that%20%27perfect%20prod&amp;submitCategory=science&amp;submitAssetType=text" title="Buzz up!"> </a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.sysadmindayph.com/blog/ipad-spoof/&amp;title=iPad+Spoof" title="Stumble upon something good? Share it on StumbleUpon"> </a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.sysadmindayph.com/blog/ipad-spoof/&amp;title=iPad+Spoof" title="Share this on Mixx"> </a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.sysadmindayph.com/blog/ipad-spoof/&amp;t=iPad+Spoof" title="Post this to MySpace"> </a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=iPad+Spoof+-+http://b2l.me/prpqq+&amp;source=shareaholic" title="Tweet This!"> </a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.sysadmindayph.com/blog/ipad-spoof/feed" title="Subscribe to the comments for this post?"> </a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.sysadmindayph.com/blog/ipad-spoof/&amp;imageurl=" title="Post on Google Buzz"> </a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.sysadmindayph.com/blog/ipad-spoof/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>getfacl and setfacl &#8211; Unix Access Control (acl) Tool</title>
		<link>http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/</link>
		<comments>http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 14:12:06 +0000</pubDate>
		<dc:creator>elizar</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[access list]]></category>
		<category><![CDATA[acl]]></category>
		<category><![CDATA[getfacl]]></category>
		<category><![CDATA[setfacl]]></category>

		<guid isPermaLink="false">http://www.sysadmindayph.com/blog/?p=194</guid>
		<description><![CDATA[Today&#8217;s topic is all about Access List&#8230; For Unix and Unix-like system, the usual command to set the file permission is the &#8216;chmod&#8217; command. However there are instances that we need more flexibility in giving access and control for files and folders. Get it? Access and Control? In this situation, there is a file utility [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s topic is all about <strong>Access List</strong>&#8230; For Unix and Unix-like system, the usual command to set the file permission is the &#8216;chmod&#8217; command. However there are instances that we need more flexibility in giving access and control for files and folders. Get it? Access and Control? In this situation, there is a file utility built in Unix called &#8216;<strong>getfacl</strong>&#8216; and &#8216;<strong>setfacl</strong>&#8216;.</p>
<p><strong><br />
getfacl</strong> is a file utility for viewing the access control list information associated with a file or directory.</p>
<p>For a memory aid, you can think of &#8216;getfacl&#8217; as &#8220;<strong>G</strong>et <strong>F</strong>ile <strong>ACL</strong>&#8220;.. ACL being Access Control List.</p>
<p>Access control lists are extended attributes added to most major file systems in the 2.6 kernel to improve ability to control the access of files. They allow permissions to be set for individual groups and users and not just the owning user, owning group, and all other users.</p>
<p><strong>setfacl</strong> is a command that allows you to set the Access Control List information for a file or directory.</p>
<p>Access control lists are extended attributes added to most major file systems in the 2.6 kernel to improve ability to control the access of files. They allow permissions to be set for individual groups and users and not just the owning user, owning group, and all other users.</p>
<p>You can read man pages for both <a href="http://www.unix.com/man-page/All/1/getfacl/">getfacl</a> and <a href="http://www.unix.com/man-page/All/1/setfacl/">setfacl</a> for more information.</p>
<p>getfacl and setfacl example&#8230;.</p>
<p>Here&#8217;s an example of using the basic funtion of getfacl and setfacl</p>
<p># getfacl</p>
<p>#setfacl</p>
<p>setfacl -m default:user::rwx,default:group::r-x,default:other:r-x,default:mask:rwx /u06/OneSource/datapump_dbdump</p>
<p>setfacl -m default:user:rcodapp1:r-x,default:group:r-x,default:other:&#8212;,default:mas:rwx /u06/OneSouce/datapump_dbdump</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/&amp;t=getfacl+and+setfacl+-+Unix+Access+Control+%28acl%29+Tool" title="Share this on Facebook"> </a>
		</li>
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/&amp;title=getfacl+and+setfacl+-+Unix+Access+Control+%28acl%29+Tool" title="Share this on del.icio.us"> </a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/&amp;title=getfacl+and+setfacl+-+Unix+Access+Control+%28acl%29+Tool" title="Digg this!"> </a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/&amp;title=getfacl+and+setfacl+-+Unix+Access+Control+%28acl%29+Tool" title="Share this on Reddit"> </a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/&amp;submitHeadline=getfacl+and+setfacl+-+Unix+Access+Control+%28acl%29+Tool&amp;submitSummary=Today%27s%20topic%20is%20all%20about%20Access%20List...%20For%20Unix%20and%20Unix-like%20system%2C%20the%20usual%20command%20to%20set%20the%20file%20permission%20is%20the%20%27chmod%27%20command.%20However%20there%20are%20instances%20that%20we%20need%20more%20flexibility%20in%20giving%20access%20and%20control%20for%20files%20and%20folders.%20Get%20it%3F%20Access%20and%20Control%3F%20In%20this%20situation%2C%20t&amp;submitCategory=science&amp;submitAssetType=text" title="Buzz up!"> </a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/&amp;title=getfacl+and+setfacl+-+Unix+Access+Control+%28acl%29+Tool" title="Stumble upon something good? Share it on StumbleUpon"> </a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/&amp;title=getfacl+and+setfacl+-+Unix+Access+Control+%28acl%29+Tool" title="Share this on Mixx"> </a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/&amp;t=getfacl+and+setfacl+-+Unix+Access+Control+%28acl%29+Tool" title="Post this to MySpace"> </a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=getfacl+and+setfacl+-+Unix+Access+Control+%28acl%29+Tool+-+http://b2l.me/prpqr+&amp;source=shareaholic" title="Tweet This!"> </a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/feed" title="Subscribe to the comments for this post?"> </a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/&amp;imageurl=" title="Post on Google Buzz"> </a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.sysadmindayph.com/blog/getfacl-and-setfacl-unix-access-control-acl-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZFS Cheat Sheet Including Zpool, Quotas and Reservations</title>
		<link>http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/</link>
		<comments>http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 14:01:27 +0000</pubDate>
		<dc:creator>elizar</dc:creator>
				<category><![CDATA[ZFS]]></category>
		<category><![CDATA[zfs filesystem]]></category>
		<category><![CDATA[zpool]]></category>

		<guid isPermaLink="false">http://www.sysadmindayph.com/blog/?p=192</guid>
		<description><![CDATA[Sorry for the long title post. I just want to easily distinguish this post from my other ZFS post. The reason? For this week, I&#8217;ll be working on a server with ZFS filesystem and looks like the SAs for the servers is not yet familiar with the filesystem. I am the newest member of the [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the long title post. I just want to easily distinguish this post from my other ZFS post. The reason? For this week, I&#8217;ll be working on a server with ZFS filesystem and looks like the SAs for the servers is not yet familiar with the filesystem. I am the newest member of the UNIX team and there&#8217;s this request to grow a filesystem that is directly mounted from a disk slice.. Told the guy that we may need to modify the disk geometry and we may have to repartition the disk.. Then I noticed that there is a 140G disk under ZFS partition. I will convince the user to use that spare disk for his project.</p>
<p>And here are the cheat sheet for ZFS/zpool that is related to this week&#8217;s project.</p>
<p><span id="more-192"></span></p>
<p>The whole exaple uses virtual devices.. that is chucks of files that represents disk.. of course if you have physical disk available, you may use those.</p>
<p>Here&#8217;s how to create &#8220;virtual devices” or vdevs as described in the zpool documentation. These can also be real disk slices if you have them available.</p>
<p><code>$ su<br />
Password:<br />
# cd /<br />
# mkfile 100m disk1 disk2 disk3 disk5<br />
# mkfile 50m disk4<br />
# ls -l disk*<br />
-rw------T 1 root root 104857600 Sep 11 12:15 disk1<br />
-rw------T 1 root root 104857600 Sep 11 12:15 disk2<br />
-rw------T 1 root root 104857600 Sep 11 12:15 disk3<br />
-rw------T 1 root root 52428800 Sep 11 12:15 disk4<br />
-rw------T 1 root root 104857600 Sep 11 12:15 disk5<br />
</code></p>
<p>Here&#8217;s how to create a storage pool and check the size and usage.</p>
<p><code># zpool create myzfs /disk1 /disk2<br />
# zpool list<br />
NAME SIZE USED AVAIL CAP HEALTH ALTROOT<br />
myzfs 191M 94K 191M 0% ONLINE -</code></p>
<p>When you created a disk pool, you can create a ZFS Filesystem which also in turn,</p>
<p>Create a second file system. Note that both file system show 159M available because no quotas are set. Each “could” grow to fill the pool.</p>
<p># zfs create myzfs/colin2<br />
# zfs list<br />
NAME           USED  AVAIL  REFER  MOUNTPOINT<br />
myzfs          172K   159M    21K  /myzfs<br />
myzfs/colin     18K   159M    18K  /myzfs/colin<br />
myzfs/colin2    18K   159M    18K  /myzfs/colin2</p>
<p>Reserve a specified amount of space for a file system ensuring that other users don’t take up all the space. </p>
<p># zfs set reservation=20m myzfs/colin<br />
# zfs list -o reservation<br />
RESERV<br />
  none<br />
   20M<br />
  none</p>
<p>Set and view quotas </p>
<p># zfs set quota=20m myzfs/colin2<br />
# zfs list -o quota myzfs/colin myzfs/colin2<br />
QUOTA<br />
 none<br />
  20M</p>
<p>Destroy a filesystem</p>
<p># zfs destroy myzfs/colin2<br />
# zfs list<br />
NAME               USED  AVAIL  REFER  MOUNTPOINT<br />
myzfs             20.1M   139M    22K  /myzfs<br />
myzfs/colin         18K   159M    18K  /myzfs/colin<br />
myzfs/colin@test      0      &#8211;    18K  -<br />
myzfs/colin3          0   139M    18K  /myzfs/colin3</p>
<p>That&#8217;s what I need for now.. will continue addiction ZFS cheat sheet if needed.. Pardon me, but my primary use of this blog site is for my use <img src='http://www.sysadmindayph.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/&amp;t=ZFS+Cheat+Sheet+Including+Zpool%2C+Quotas+and+Reservations" title="Share this on Facebook"> </a>
		</li>
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/&amp;title=ZFS+Cheat+Sheet+Including+Zpool%2C+Quotas+and+Reservations" title="Share this on del.icio.us"> </a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/&amp;title=ZFS+Cheat+Sheet+Including+Zpool%2C+Quotas+and+Reservations" title="Digg this!"> </a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/&amp;title=ZFS+Cheat+Sheet+Including+Zpool%2C+Quotas+and+Reservations" title="Share this on Reddit"> </a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/&amp;submitHeadline=ZFS+Cheat+Sheet+Including+Zpool%2C+Quotas+and+Reservations&amp;submitSummary=Sorry%20for%20the%20long%20title%20post.%20I%20just%20want%20to%20easily%20distinguish%20this%20post%20from%20my%20other%20ZFS%20post.%20The%20reason%3F%20For%20this%20week%2C%20I%27ll%20be%20working%20on%20a%20server%20with%20ZFS%20filesystem%20and%20looks%20like%20the%20SAs%20for%20the%20servers%20is%20not%20yet%20familiar%20with%20the%20filesystem.%20I%20am%20the%20newest%20member%20of%20the%20UNIX%20team%20and%20th&amp;submitCategory=science&amp;submitAssetType=text" title="Buzz up!"> </a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/&amp;title=ZFS+Cheat+Sheet+Including+Zpool%2C+Quotas+and+Reservations" title="Stumble upon something good? Share it on StumbleUpon"> </a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/&amp;title=ZFS+Cheat+Sheet+Including+Zpool%2C+Quotas+and+Reservations" title="Share this on Mixx"> </a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/&amp;t=ZFS+Cheat+Sheet+Including+Zpool%2C+Quotas+and+Reservations" title="Post this to MySpace"> </a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=ZFS+Cheat+Sheet+Including+Zpool%2C+Quotas+and+Reservations+-+http://b2l.me/prpqs+&amp;source=shareaholic" title="Tweet This!"> </a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/feed" title="Subscribe to the comments for this post?"> </a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/&amp;imageurl=" title="Post on Google Buzz"> </a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.sysadmindayph.com/blog/zfs-cheat-sheet-including-zpool-quotas-and-reservations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Limesurvey PHPSurveyor</title>
		<link>http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/</link>
		<comments>http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 00:59:25 +0000</pubDate>
		<dc:creator>elizar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Limesurvey]]></category>
		<category><![CDATA[phpsurveyor]]></category>

		<guid isPermaLink="false">http://www.sysadmindayph.com/blog/?p=190</guid>
		<description><![CDATA[LimeSurvey (formerly PHPSurveyor) is a Webapplication that interacts with MySQL, MSSQL, orPostgres to develop surveys, publish surveys, andcollect responses to surveys. 
Once a survey has been created, data can be inserted into the survey either by a &#8220;pretty&#8221; public screen which presents each question one at a time, or by a quick and nasty data [...]]]></description>
			<content:encoded><![CDATA[<p>LimeSurvey (formerly PHPSurveyor) is a Webapplication that interacts with MySQL, MSSQL, orPostgres to develop surveys, publish surveys, andcollect responses to surveys. </p>
<p>Once a survey has been created, data can be inserted into the survey either by a &#8220;pretty&#8221; public screen which presents each question one at a time, or by a quick and nasty data entry screen. It includes the capacity to generate individualized &#8220;tokens&#8221;, so that invitation can be issued to participants. It also has the capacity to set conditions on whether questions will display (branching), numerous question types, and a basic statistics function. Changes: A Malay translation was added, several minor bugs were fixed, and translations were updated.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/&amp;t=Limesurvey+PHPSurveyor" title="Share this on Facebook"> </a>
		</li>
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/&amp;title=Limesurvey+PHPSurveyor" title="Share this on del.icio.us"> </a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/&amp;title=Limesurvey+PHPSurveyor" title="Digg this!"> </a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/&amp;title=Limesurvey+PHPSurveyor" title="Share this on Reddit"> </a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/&amp;submitHeadline=Limesurvey+PHPSurveyor&amp;submitSummary=LimeSurvey%20%28formerly%20PHPSurveyor%29%20is%20a%20Webapplication%20that%20interacts%20with%20MySQL%2C%20MSSQL%2C%20orPostgres%20to%20develop%20surveys%2C%20publish%20surveys%2C%20andcollect%20responses%20to%20surveys.%20%0D%0A%0D%0AOnce%20a%20survey%20has%20been%20created%2C%20data%20can%20be%20inserted%20into%20the%20survey%20either%20by%20a%20%22pretty%22%20public%20screen%20which%20presents%20each%20que&amp;submitCategory=science&amp;submitAssetType=text" title="Buzz up!"> </a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/&amp;title=Limesurvey+PHPSurveyor" title="Stumble upon something good? Share it on StumbleUpon"> </a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/&amp;title=Limesurvey+PHPSurveyor" title="Share this on Mixx"> </a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/&amp;t=Limesurvey+PHPSurveyor" title="Post this to MySpace"> </a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Limesurvey+PHPSurveyor+-+http://b2l.me/prpqt+&amp;source=shareaholic" title="Tweet This!"> </a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/feed" title="Subscribe to the comments for this post?"> </a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/&amp;imageurl=" title="Post on Google Buzz"> </a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.sysadmindayph.com/blog/limesurvey-phpsurveyor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
