<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Information Technology Knowledgebase</title>
	<atom:link href="http://ittopix.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ittopix.wordpress.com</link>
	<description>Let Share Our Knowledge in Information Technology</description>
	<lastBuildDate>Wed, 07 Sep 2011 07:03:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ittopix.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Information Technology Knowledgebase</title>
		<link>http://ittopix.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ittopix.wordpress.com/osd.xml" title="Information Technology Knowledgebase" />
	<atom:link rel='hub' href='http://ittopix.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing zabbix agent on linux machine</title>
		<link>http://ittopix.wordpress.com/2011/06/25/installing-zabbix-agent-on-linux-machine/</link>
		<comments>http://ittopix.wordpress.com/2011/06/25/installing-zabbix-agent-on-linux-machine/#comments</comments>
		<pubDate>Sat, 25 Jun 2011 14:10:34 +0000</pubDate>
		<dc:creator>Majid Varzideh</dc:creator>
				<category><![CDATA[Linux administration]]></category>

		<guid isPermaLink="false">http://ittopix.wordpress.com/?p=136</guid>
		<description><![CDATA[I have tested this on different versions of centos and it works fine for system which deployment tools has been installed on it. 1-tar -xzvf zabbix-1.6.2.tar.gz 2-cd zabbix-1.8.4 3-./configure &#8211;enable-agent &#8211;prefix=/usr/local/zabbix 4-make install Possible errors = error: no acceptable C compiler found in $PATH The solution depends on what has already been installed on the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=136&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have tested this on different versions of centos and it works fine for system which deployment tools has been installed on it.<br />
1-tar -xzvf zabbix-1.6.2.tar.gz<br />
2-cd zabbix-1.8.4<br />
3-./configure &#8211;enable-agent &#8211;prefix=/usr/local/zabbix<br />
4-make install<br />
Possible errors = error: no acceptable C compiler found in $PATH<br />
The solution depends on what has already been installed on the server. Usually ‘yum install gcc’ is all that is required.</p>
<p>    yum install gcc<br />
    yum install gcc.x86_64<br />
    Still not working? Try ‘yum update yum’, then ‘yum remove gcc gcc.x86_64’ then ‘yum install gcc’. It should work!</p>
<p>In this step we should configure the agent that we installed:<br />
1-adduser zabbix<br />
Add the zabbix agent ports to your /etc/services file.<br />
2-echo ‘zabbix_agent 10050/tcp’ &gt;&gt; /etc/services<br />
3-echo ‘zabbix_trap 10051/tcp’ &gt;&gt; /etc/services<br />
Copy the sample configs to /etc/zabbix for the agentd.<br />
4-mkdir /etc/zabbix<br />
5-cd zabbix-1.8.4<br />
6-cp misc/conf/zabbix_agentd.conf /etc/zabbix<br />
Now go to /etc/zabbix/zabbix_agentd.conf, and edit:<br />
7-Server=10.0.84.114[Example IP address of the Zabbix Server]<br />
8-Hostname=Mail_Server 	[Exactly the same name as our zabbix host name – See #1 above. NOTE:This name is case sensitive!]<br />
Next, configure /etc/init.d/<br />
Note: If you are not using a redhat OS, look in zabbix-1.6.2/misc/init.d/ and choose a more appropriate directory before executing the following command.<br />
9-cp misc/init.d/redhat/zabbix_agentd_ctl /etc/init.d/zabbix_agentd<br />
10-Now go to /etc/init.d/zabbix_agentd, and edit<br />
Just below #!/bin/sh: add these two lines, including the # hash marks.<br />
# chkconfig: 345 95 95<br />
# description: Zabbix Agentd<br />
11-Then edit these two lines, to read as shown below:<br />
BASEDIR=/usr/local/zabbix<br />
ZABBIX_AGENTD=$BASEDIR/sbin/zabbix_agentd [change bin to sbin]<br />
12-Configure automatic starting and stopping of services:<br />
 chkconfig &#8211;level 345 zabbix_agentd on<br />
13-Next, edit /etc/hosts.allow on the Linux agent to allow the Zabbix Server IP address.<br />
14-Dealing with the Firewall:<br />
If using Webmin, you need to insert a line such as this:<br />
If protocol is TCP and source is  and destination port is 10050<br />
This will result in a line in iptables as follows:<br />
ACCEPT tcp –  0.0.0.0/0 tcp dpt: 10050<br />
If you don’t have Webmin, you may need to ‘man iptables’ to check the commands necessary to insert that line in your iptables.</p>
<p>Almost there now:<br />
 /etc/init.d/zabbix_agentd start<br />
Check the zabbix_agentd log to see if all is okay!<br />
cat /tmp/zabbix_agentd.log<br />
  5392:20090202:115848 zabbix_agentd started. ZABBIX 1.6.2.<br />
  5393:20090202:115848 zabbix_agentd collector started<br />
  5394:20090202:115848 zabbix_agentd listener started<br />
  5395:20090202:115848 zabbix_agentd listener started<br />
  5396:20090202:115848 zabbix_agentd listener started<br />
  5397:20090202:115848 zabbix_agentd active check started [10.0.84.114:10051]<br />
Log looks ok!</p>
<p>Now go back to the Zabbix Server web-interface and enable the Mail_Server host. After a few moments you should be able to see data in Monitoring –&gt; Latest data.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittopix.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittopix.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittopix.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittopix.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittopix.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittopix.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittopix.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittopix.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittopix.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittopix.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittopix.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittopix.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittopix.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittopix.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=136&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittopix.wordpress.com/2011/06/25/installing-zabbix-agent-on-linux-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8617165ad26313c55c1ba1fff316868?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Majid Varzideh</media:title>
		</media:content>
	</item>
		<item>
		<title>DB2 initializing in batch mode</title>
		<link>http://ittopix.wordpress.com/2011/05/28/db2-initializing-in-batch-mode/</link>
		<comments>http://ittopix.wordpress.com/2011/05/28/db2-initializing-in-batch-mode/#comments</comments>
		<pubDate>Sat, 28 May 2011 10:45:44 +0000</pubDate>
		<dc:creator>Majid Varzideh</dc:creator>
				<category><![CDATA[Database servers]]></category>

		<guid isPermaLink="false">http://ittopix.wordpress.com/?p=132</guid>
		<description><![CDATA[we can use the following script to initialize db2 environment in command line mode of windows server and run any sql query on it. @echo off rem If we&#8217;re not called from DB2CLP, call ourselves again if &#8220;%DB2CLP%&#8221; == &#8220;&#8221; db2cmd /c /i /w %0 %* &#38; goto :eof rem Now the real stuff db2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=132&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>we can use the following script to initialize db2 environment in command line mode of windows server and run any sql query on it.<br />
@echo off<br />
rem If we&#8217;re not called from DB2CLP, call ourselves again<br />
if &#8220;%DB2CLP%&#8221; == &#8220;&#8221; db2cmd /c /i /w %0 %* &amp; goto :eof<br />
rem Now the real stuff<br />
db2 connect to MYDB<br />
db2 select * from sysibm.sysdummy1<br />
db2 connect reset<br />
rem etc.<br />
this is a nice solution to run db2 scripts in windows batch mode.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittopix.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittopix.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittopix.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittopix.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittopix.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittopix.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittopix.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittopix.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittopix.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittopix.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittopix.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittopix.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittopix.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittopix.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=132&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittopix.wordpress.com/2011/05/28/db2-initializing-in-batch-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8617165ad26313c55c1ba1fff316868?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Majid Varzideh</media:title>
		</media:content>
	</item>
		<item>
		<title>linux default startup mode</title>
		<link>http://ittopix.wordpress.com/2011/05/04/linux-default-startup-mode/</link>
		<comments>http://ittopix.wordpress.com/2011/05/04/linux-default-startup-mode/#comments</comments>
		<pubDate>Wed, 04 May 2011 03:11:54 +0000</pubDate>
		<dc:creator>Majid Varzideh</dc:creator>
				<category><![CDATA[Linux administration]]></category>

		<guid isPermaLink="false">http://ittopix.wordpress.com/?p=130</guid>
		<description><![CDATA[when installing linux in graphical mode, it will enter to gui when starting. to prevent this we should modify /etc/inittab file as below: id:5:initdefault: change this to : id:3:initdefault: or vise versa.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=130&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>when installing linux in graphical mode, it will enter to gui when starting.<br />
to prevent this we should modify /etc/inittab file as below:<br />
id:5:initdefault:<br />
change this to :<br />
id:3:initdefault:<br />
or vise versa.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittopix.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittopix.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittopix.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittopix.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittopix.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittopix.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittopix.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittopix.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittopix.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittopix.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittopix.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittopix.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittopix.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittopix.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=130&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittopix.wordpress.com/2011/05/04/linux-default-startup-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8617165ad26313c55c1ba1fff316868?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Majid Varzideh</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Linux disable X Windows KDE during system boot</title>
		<link>http://ittopix.wordpress.com/2011/05/02/how-to-linux-disable-x-windows-kde-during-system-boot/</link>
		<comments>http://ittopix.wordpress.com/2011/05/02/how-to-linux-disable-x-windows-kde-during-system-boot/#comments</comments>
		<pubDate>Mon, 02 May 2011 10:33:55 +0000</pubDate>
		<dc:creator>Majid Varzideh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ittopix.wordpress.com/?p=127</guid>
		<description><![CDATA[How can I configure my system to disable X Windows KDE during Linux system coming up / booting up? A. Usually almost all Linux distribution use following runlevels for text and GUI mode: =&#62; Runlevel &#8211; 2/3 : Text mode =&#62; Runlevel &#8211; 5 : GUI mode These modes are defined in /etc/inittab file. Open [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=127&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How can I configure my system to disable X Windows KDE during Linux system coming up / booting up?</p>
<p>A. Usually almost all Linux distribution use following runlevels for text and GUI mode:</p>
<p>=&gt; Runlevel &#8211; 2/3 : Text mode<br />
=&gt; Runlevel &#8211; 5 : GUI mode</p>
<p>These modes are defined in /etc/inittab file.</p>
<p>Open file /etc/inittab<br />
# vi /etc/inittab</p>
<p>Find out entry that read as follows:<br />
id:5:initdefault:</p>
<p>Set the default runlevel to 3 (text mode)<br />
id:3:initdefault:</p>
<p>Save and close the file</p>
<p>Reboot the system<br />
# reboot</p>
<p>Now you will boot into text mode only. If you want to see GUI (KDE desktop) type the following command:<br />
$ startx</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittopix.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittopix.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittopix.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittopix.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittopix.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittopix.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittopix.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittopix.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittopix.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittopix.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittopix.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittopix.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittopix.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittopix.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=127&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittopix.wordpress.com/2011/05/02/how-to-linux-disable-x-windows-kde-during-system-boot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8617165ad26313c55c1ba1fff316868?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Majid Varzideh</media:title>
		</media:content>
	</item>
		<item>
		<title>java environment variable</title>
		<link>http://ittopix.wordpress.com/2011/03/16/java-environment-variable/</link>
		<comments>http://ittopix.wordpress.com/2011/03/16/java-environment-variable/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 05:08:26 +0000</pubDate>
		<dc:creator>Majid Varzideh</dc:creator>
				<category><![CDATA[Linux administration]]></category>

		<guid isPermaLink="false">http://ittopix.wordpress.com/?p=124</guid>
		<description><![CDATA[after applying necessary setting, my .bash_profile looks like this: # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs PATH=$PATH:$HOME/bin export PATH export java_home=/usr/java/jdk1.6.0_20 export PATH=$java_home/bin:$PATH unset USERNAME<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=124&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>after applying necessary setting, my .bash_profile looks like this:<br />
# .bash_profile</p>
<p># Get the aliases and functions<br />
if [ -f ~/.bashrc ]; then<br />
        . ~/.bashrc<br />
fi</p>
<p># User specific environment and startup programs</p>
<p>PATH=$PATH:$HOME/bin</p>
<p>export PATH<br />
<strong>export java_home=/usr/java/jdk1.6.0_20<br />
export PATH=$java_home/bin:$PATH</strong><br />
unset USERNAME</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittopix.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittopix.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittopix.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittopix.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittopix.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittopix.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittopix.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittopix.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittopix.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittopix.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittopix.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittopix.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittopix.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittopix.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=124&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittopix.wordpress.com/2011/03/16/java-environment-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8617165ad26313c55c1ba1fff316868?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Majid Varzideh</media:title>
		</media:content>
	</item>
		<item>
		<title>Disabling Time Synchronization in vmware</title>
		<link>http://ittopix.wordpress.com/2010/12/19/disabling-time-synchronization-in-vmware/</link>
		<comments>http://ittopix.wordpress.com/2010/12/19/disabling-time-synchronization-in-vmware/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 09:21:07 +0000</pubDate>
		<dc:creator>Majid Varzideh</dc:creator>
				<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://ittopix.wordpress.com/?p=121</guid>
		<description><![CDATA[In virtual environment, time is an important issue.you can use vmware tools interface, we can configure client machine not to sync its time with host. The time synchronization checkbox controls only whether time is periodically resynchronized while the virtual machine is running. Even if this box is unselected, VMware Tools by default synchronizes the virtual [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=121&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In virtual environment, time is an important issue.you can use vmware tools interface, we can configure client machine not to sync its time with host.<br />
The time synchronization checkbox controls only whether time is periodically resynchronized while the virtual machine is running. Even if this box is unselected, VMware Tools by default synchronizes the virtual machine&#8217;s time after a few specific events that are likely to leave the time incorrect.<br />
To completely disable time synchronization in the guest, perform one of these options:<br />
Open the virtual machine&#8217;s configuration file (.vmx) in a text editor and set these options to zero. If the entries do not exist, add them.<br />
      Note: 0 = disabled, 1 = enabled.<br />
      tools.syncTime = &#8220;0&#8243;<br />
      time.synchronize.continue = &#8220;0&#8243;<br />
      time.synchronize.restore = &#8220;0&#8243;<br />
      time.synchronize.resume.disk = &#8220;0&#8243;<br />
      time.synchronize.shrink = &#8220;0&#8243;<br />
      time.synchronize.tools.startup = &#8220;0&#8243;<br />
Select the virtual machine in the VMware Infrastructure Client inventory. On the Summary tab, click Edit Settings, then click the Options tab and select General (under Advanced). Click Configuration Parameters, then click Add Row and add this information:<br />
    tools.syncTime = &#8220;0&#8243;<br />
    time.synchronize.continue = &#8220;0&#8243;<br />
    time.synchronize.restore = &#8220;0&#8243;<br />
    time.synchronize.resume.disk = &#8220;0&#8243;<br />
    time.synchronize.shrink = &#8220;0&#8243;<br />
    time.synchronize.tools.startup = &#8220;0&#8243;<br />
# In some cases, the virtual machine may need to be rebooted.<br />
look at this <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1189">VMware K</a>B for more information</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittopix.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittopix.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittopix.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittopix.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittopix.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittopix.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittopix.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittopix.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittopix.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittopix.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittopix.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittopix.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittopix.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittopix.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=121&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittopix.wordpress.com/2010/12/19/disabling-time-synchronization-in-vmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8617165ad26313c55c1ba1fff316868?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Majid Varzideh</media:title>
		</media:content>
	</item>
		<item>
		<title>linux ntp client and server configuration</title>
		<link>http://ittopix.wordpress.com/2010/12/18/linux-ntp-client-and-server-configuration/</link>
		<comments>http://ittopix.wordpress.com/2010/12/18/linux-ntp-client-and-server-configuration/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 09:28:59 +0000</pubDate>
		<dc:creator>Majid Varzideh</dc:creator>
				<category><![CDATA[Linux administration]]></category>

		<guid isPermaLink="false">http://ittopix.wordpress.com/?p=114</guid>
		<description><![CDATA[we can use linux ntp to sync all lan machines time from a linux ntp server. after installing ntp rpm package, we will modify default ntp.conf file as below: restrict default kod nomodify notrap nopeer noquery restrict -6 default kod nomodify notrap nopeer noquery restrict 127.0.0.1 restrict -6 ::1 restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=114&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>we can use linux ntp to sync all lan machines time from a linux ntp server.<br />
after installing ntp rpm package, we will modify default ntp.conf file as below:<br />
restrict default kod nomodify notrap nopeer noquery<br />
restrict -6 default kod nomodify notrap nopeer noquery<br />
restrict 127.0.0.1<br />
restrict -6 ::1<br />
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap<br />
server 127.127.1.0<br />
driftfile /var/lib/ntp/drift<br />
keys /etc/ntp/keys<br />
this cause the machine hardware clock to be used as our time source.<br />
in client machine we just need to have this in ntp.conf file:<br />
server 192.168.1.110<br />
useful links:<br />
<a href="http://linuxwave.blogspot.com/2007/08/setting-up-your-own-ntp-server.html">http://linuxwave.blogspot.com/2007/08/setting-up-your-own-ntp-server.html</a><br />
<a href="http://www.cyberciti.biz/tips/howto-linux-kill-and-logout-users.html">http://www.cyberciti.biz/tips/howto-linux-kill-and-logout-users.html</a><br />
<a href="http://www.cyberciti.biz/faq/rhel-fedora-centos-configure-ntp-client-server">http://www.cyberciti.biz/faq/rhel-fedora-centos-configure-ntp-client-server</a><br />
<a href="http://www.brennan.id.au/09-Network_Time_Protocol.html">http://www.brennan.id.au/09-Network_Time_Protocol.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittopix.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittopix.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittopix.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittopix.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittopix.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittopix.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittopix.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittopix.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittopix.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittopix.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittopix.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittopix.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittopix.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittopix.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=114&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittopix.wordpress.com/2010/12/18/linux-ntp-client-and-server-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8617165ad26313c55c1ba1fff316868?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Majid Varzideh</media:title>
		</media:content>
	</item>
		<item>
		<title>Enable SSH on Solaris 10</title>
		<link>http://ittopix.wordpress.com/2010/12/04/enable-ssh-on-solaris-10/</link>
		<comments>http://ittopix.wordpress.com/2010/12/04/enable-ssh-on-solaris-10/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 10:53:03 +0000</pubDate>
		<dc:creator>Majid Varzideh</dc:creator>
				<category><![CDATA[Linux administration]]></category>

		<guid isPermaLink="false">http://ittopix.wordpress.com/?p=112</guid>
		<description><![CDATA[1. Change the file /etc/ssh/sshd_config with PermitRootLogin yes to replace PermitRootLogin no 2. restart the services by the following command: #svcadm restart svc:/network/ssh:default<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=112&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. Change the file /etc/ssh/sshd_config with PermitRootLogin yes to replace PermitRootLogin no</p>
<p>2. restart the services by the following command:</p>
<p>#svcadm restart svc:/network/ssh:default</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittopix.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittopix.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittopix.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittopix.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittopix.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittopix.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittopix.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittopix.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittopix.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittopix.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittopix.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittopix.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittopix.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittopix.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=112&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittopix.wordpress.com/2010/12/04/enable-ssh-on-solaris-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8617165ad26313c55c1ba1fff316868?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Majid Varzideh</media:title>
		</media:content>
	</item>
		<item>
		<title>failed to update disk partition information-step by step fix</title>
		<link>http://ittopix.wordpress.com/2010/12/01/failed-to-update-disk-partition-information-step-by-step-fix/</link>
		<comments>http://ittopix.wordpress.com/2010/12/01/failed-to-update-disk-partition-information-step-by-step-fix/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 14:43:36 +0000</pubDate>
		<dc:creator>Majid Varzideh</dc:creator>
				<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://ittopix.wordpress.com/?p=110</guid>
		<description><![CDATA[the following link describe the problem and solution completely:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=110&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>the following link describe the problem and solution completely:<br />
<a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1001489"></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittopix.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittopix.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittopix.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittopix.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittopix.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittopix.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittopix.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittopix.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittopix.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittopix.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittopix.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittopix.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittopix.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittopix.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=110&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittopix.wordpress.com/2010/12/01/failed-to-update-disk-partition-information-step-by-step-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8617165ad26313c55c1ba1fff316868?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Majid Varzideh</media:title>
		</media:content>
	</item>
		<item>
		<title>Unsupported Console and SSH on ESXi 4</title>
		<link>http://ittopix.wordpress.com/2010/11/21/unsupported-console-and-ssh-on-esxi-4/</link>
		<comments>http://ittopix.wordpress.com/2010/11/21/unsupported-console-and-ssh-on-esxi-4/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 08:47:40 +0000</pubDate>
		<dc:creator>Majid Varzideh</dc:creator>
				<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://ittopix.wordpress.com/?p=107</guid>
		<description><![CDATA[This will likely not generate as much fanfare as it did for the 3.5 release of ESXi, however I can confirm that it does indeed still work in vSphere ESXi 4. This is the procedure I used to get it up and running on my “Lab” box. 1. alt-f1 (Note: As pointed out below, you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=107&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This will likely not generate as much fanfare as it did for the 3.5 release of ESXi, however I can confirm that it does indeed still work in vSphere ESXi 4. This is the procedure I used to get it up and running on my “Lab” box.</p>
<p>   1. alt-f1 (Note: As pointed out below, you will not see your typing on this screen, just trust us, it is there).<br />
   2.type  &#8220;unsupported<br />
   3. root pw<br />
   4. vi /etc/inetd.conf<br />
   5. delete the “#” from ssh<br />
   6. services.sh restart</p>
<p>then you can connect to this host through any ssh client.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittopix.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittopix.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittopix.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittopix.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittopix.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittopix.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittopix.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittopix.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittopix.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittopix.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittopix.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittopix.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittopix.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittopix.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittopix.wordpress.com&amp;blog=7056187&amp;post=107&amp;subd=ittopix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittopix.wordpress.com/2010/11/21/unsupported-console-and-ssh-on-esxi-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8617165ad26313c55c1ba1fff316868?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Majid Varzideh</media:title>
		</media:content>
	</item>
	</channel>
</rss>
