<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>making IT happen - Latest Comments</title><link xmlns="http://www.w3.org/2005/Atom" rel="http://api.friendfeed.com/2008/03#sup" href="http://disqus.com/sup/all.sup#forumcomments-6a88d69c" type="application/json"/><link>http://makingithappen.disqus.com/</link><description></description><atom:link href="http://makingithappen.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Thu, 03 May 2012 05:10:47 -0000</lastBuildDate><item><title>Re: Setting up a CentOS repository</title><link>http://www.lanigera.com/wordpress/2011/07/setting-up-a-centos-repository/#comment-517467199</link><description>&lt;p&gt; &lt;/p&gt;

&lt;p&gt;I have tested it in VMWare 8 workstation.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;First put the dvd in to the cdrom.&lt;/p&gt;

&lt;p&gt;Then make a directory like this:&lt;/p&gt;

&lt;p&gt;#[root@localhost ~] mkdir&lt;br&gt;/home/centos6.2&lt;/p&gt;

&lt;p&gt;Then mount the cdrom into the directory /home/centos6.2&lt;/p&gt;

&lt;p&gt;Type this command:&lt;/p&gt;

&lt;p&gt;#[root@localhost ~] mount /dev/cdrom  /home/centos6.2&lt;/p&gt;

&lt;p&gt;Then the dvd will be mounted as read only.&lt;/p&gt;

&lt;p&gt;Then go to the mounted directory and type the following&lt;br&gt;command for mediaid. We will need it to make repo file.&lt;/p&gt;

&lt;p&gt;Type this commands:&lt;/p&gt;

&lt;p&gt;#[root@localhost ~]  cd /home/centos6.2&lt;/p&gt;

&lt;p&gt;#[root@localhost centos6.2&lt;br&gt;]  cat .discinfo&lt;/p&gt;

&lt;p&gt;xxxxxxxxxx.xxxxxx&lt;/p&gt;

&lt;p&gt;6.2&lt;/p&gt;

&lt;p&gt;i386&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;Please write that number with “xxxxxxxxxx.xxxxxx” into&lt;br&gt;notepad or somewhere else. We will need it later.&lt;/p&gt;

&lt;p&gt;Then go the yum.repos.d directory. Type the followings:&lt;/p&gt;

&lt;p&gt;#[root@localhost centos6.2]  cd /etc/yum.repos.d/&lt;/p&gt;

&lt;p&gt;Then type ls command. You will see three repo files. We need&lt;br&gt;to rename them. Use the command below to rename them.&lt;/p&gt;

&lt;p&gt;[root@localhost yum.repos.d]&lt;br&gt;ls&lt;/p&gt;

&lt;p&gt;[root@localhost&lt;br&gt;yum.repos.d] mv CentOS-Base.repo CentOS-Base.repo.disabled&lt;/p&gt;

&lt;p&gt;[root@localhost yum.repos.d]&lt;br&gt;mv CentOS-Base.repo CentOS-Debuginfo.repo.disabled&lt;/p&gt;

&lt;p&gt;[root@localhost&lt;br&gt;yum.repos.d] mv CentOS-Base.repo CentOS-Media.repo.disabled&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;Now we need to create a local repo file. So type the&lt;br&gt;following command:&lt;/p&gt;

&lt;p&gt;[root@localhost&lt;br&gt;yum.repos.d] vi centos.repo&lt;/p&gt;

&lt;p&gt;Now press i from the keyboard for insert text.&lt;/p&gt;

&lt;p&gt;Then type the followings:&lt;/p&gt;

&lt;p&gt;[Centos6.2]&lt;/p&gt;

&lt;p&gt;mediaid=”xxxxxxxxxx.xxxxxx”&lt;br&gt;{the discinfo will be typed here}&lt;/p&gt;

&lt;p&gt;name=Centos6.2&lt;/p&gt;

&lt;p&gt;baseurl=file:///home/centos6.2&lt;/p&gt;

&lt;p&gt;enabled=1&lt;/p&gt;

&lt;p&gt;gpgcheck=0&lt;/p&gt;

&lt;p&gt;Press Esc and type   &lt;br&gt;:wq     to save the file.&lt;/p&gt;

&lt;p&gt;Now we need to go the /etc/yum/pluginconf.d/ directory to&lt;br&gt;edit the fastestmirror.conf file.&lt;/p&gt;

&lt;p&gt;Type the following commands:&lt;/p&gt;

&lt;p&gt;[root@localhost&lt;br&gt;yum.repos.d] cd /etc/yum/pluginconf.d/&lt;/p&gt;

&lt;p&gt;[root@localhost pluginconf.d]&lt;br&gt;ls&lt;/p&gt;

&lt;p&gt;[root@localhost&lt;br&gt;pluginconf.d] vi fastestmirror.conf &lt;/p&gt;

&lt;p&gt;Press i from the keyboard to edit the file&lt;/p&gt;

&lt;p&gt;And make change under the main section the following.&lt;/p&gt;

&lt;p&gt;enabled=1&lt;/p&gt;

&lt;p&gt;enabled=0&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;Press Esc and type :wq for save the file&lt;/p&gt;

&lt;p&gt;Now we are almost ready.&lt;/p&gt;

&lt;p&gt;To update yum repository type the following commands:&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;[root@localhost pluginconf.d]&lt;br&gt;yum clean all&lt;/p&gt;

&lt;p&gt;[root@localhost&lt;br&gt;pluginconf.d] yum update&lt;/p&gt;

&lt;p&gt;[root@localhost&lt;br&gt;pluginconf.d] yum list&lt;/p&gt;

&lt;p&gt;To test type the following commands:&lt;/p&gt;

&lt;p&gt;[root@localhost&lt;br&gt;pluginconf.d] yum intall httpd*&lt;/p&gt;

&lt;p&gt;It will ask your permission to run :y/n&lt;/p&gt;

&lt;p&gt;Type : y&lt;/p&gt;

&lt;p&gt;If it run successfully then everything is ok.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;Good luck to all.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Khandakershahi</dc:creator><pubDate>Thu, 03 May 2012 05:10:47 -0000</pubDate></item><item><title>Re: SMTP error 553, RFC 822, and Barracuda Spam Firewall</title><link>http://www.lanigera.com/wordpress/2011/01/smtp-error-553-rfc-822-and-barracuda-spam-firewall/#comment-428981189</link><description>&lt;p&gt;I also want to thank you for this post. A customer's Barracuda suddenly started blocking all external email or nearly all.&lt;/p&gt;

&lt;p&gt;I was nearly at a loss until I found this via Google. I was born 2 yrs after that RFC was released and I have never seen any reference to the requirement of enclosing mail from / rcpt to in &amp;lt;&amp;gt;.&lt;/p&gt;

&lt;p&gt;In fact, numerous reference websites with instructions for testing smtp from telnet omit the &amp;lt;&amp;gt;: &lt;a href="http://www.yuki-onna.co.uk/email/smtp.html" rel="nofollow"&gt;http://www.yuki-onna.co.uk/ema...&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Apparently Gmail and many other mail providers omit the &amp;lt;&amp;gt;. An email from a gmail account getting bounced is why I was looking at the issue to begin with.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mark Pippin</dc:creator><pubDate>Fri, 03 Feb 2012 18:27:11 -0000</pubDate></item><item><title>Re: SMTP error 553, RFC 822, and Barracuda Spam Firewall</title><link>http://www.lanigera.com/wordpress/2011/01/smtp-error-553-rfc-822-and-barracuda-spam-firewall/#comment-415064970</link><description>&lt;p&gt;Allan,&lt;/p&gt;

&lt;p&gt;Glad the site had the info you needed.  Thanks for posting the info on disabling RFC822 compliance.&lt;/p&gt;

&lt;p&gt;Tom&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tom K</dc:creator><pubDate>Thu, 19 Jan 2012 03:38:50 -0000</pubDate></item><item><title>Re: SMTP error 553, RFC 822, and Barracuda Spam Firewall</title><link>http://www.lanigera.com/wordpress/2011/01/smtp-error-553-rfc-822-and-barracuda-spam-firewall/#comment-414862382</link><description>&lt;p&gt;Thanks for posting this. Was trying to figure out why I was getting this error with a new Barracuda and found the answer here :)&lt;/p&gt;

&lt;p&gt;FYI if anyone's looking at disabling the RFC822 (it's actually recommended by Barracuda) you can do this from Advanced &amp;gt; Email Protocol &amp;gt; Enforce RFC 821 Compliance&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;Allan&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Allan</dc:creator><pubDate>Wed, 18 Jan 2012 19:57:02 -0000</pubDate></item><item><title>Re: Setting up a CentOS repository</title><link>http://www.lanigera.com/wordpress/2011/07/setting-up-a-centos-repository/#comment-414848119</link><description>&lt;p&gt;Nice configuration, I got it all to work except for the Addons rsync portion for Centos 6 which fails to retrieve any data.  Is the path wrong or isn't there anything there?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pete</dc:creator><pubDate>Wed, 18 Jan 2012 19:31:53 -0000</pubDate></item><item><title>Re: Setting up a CentOS repository</title><link>http://www.lanigera.com/wordpress/2011/07/setting-up-a-centos-repository/#comment-396005416</link><description>&lt;p&gt;Good catch.  I've fixed the path in the mkdir.  Thanks!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tom K</dc:creator><pubDate>Wed, 28 Dec 2011 16:38:56 -0000</pubDate></item><item><title>Re: Setting up a CentOS repository</title><link>http://www.lanigera.com/wordpress/2011/07/setting-up-a-centos-repository/#comment-395799398</link><description>&lt;p&gt;Is the script and the directory structure created previous meant to work with each other?  The mkdir says '/repo/6/.  .  .'  but the script defines local as /repo/Centos  which would make '$rsync $remote $local/$ver/$base/$arch/' expand to '/repo/CentOS/6/.  .  .' if I am reading things aright.  Should one or the other be corrected?  or, am I missing something obvious?&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Byrnejb</dc:creator><pubDate>Wed, 28 Dec 2011 11:58:30 -0000</pubDate></item><item><title>Re: Disabling caching on a primary stgpool and deleting the volumes in TSM</title><link>http://www.lanigera.com/wordpress/2011/09/disabling-caching-on-a-primary-stgpool-and-deleting-the-volumes-in-tsm/#comment-380966096</link><description>&lt;p&gt;Hi Mauro,&lt;/p&gt;

&lt;p&gt;In this case, I wasn't able to free the space with migration, since the cached data had previously been migrated.  Using "move data" on the volume deletes cached data.&lt;/p&gt;

&lt;p&gt;I don't believe it's necessary to vary the volume offline, since you are deleting the volume from the storage pool.  It certainly couldn't hurt, though.  Either way, I always query to verify that the volume is no longer defined; I probably could have included that step in my example.  To be &lt;s&gt;paranoid&lt;/s&gt; thorough, system utilities like fuser and lsof can be used.&lt;/p&gt;

&lt;p&gt;Thanks for the comment!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tom K</dc:creator><pubDate>Wed, 07 Dec 2011 02:42:43 -0000</pubDate></item><item><title>Re: Disabling caching on a primary stgpool and deleting the volumes in TSM</title><link>http://www.lanigera.com/wordpress/2011/09/disabling-caching-on-a-primary-stgpool-and-deleting-the-volumes-in-tsm/#comment-378894578</link><description>&lt;p&gt;just worndering.....  why you didn't use migration process instead of "move data". On the other hands, that volume should be marked as offline before you remove it from aix system, right?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mauro_caldeira</dc:creator><pubDate>Sun, 04 Dec 2011 07:15:48 -0000</pubDate></item><item><title>Re: Enabling deduplication on a primary storage pool in TSM 6.2</title><link>http://www.lanigera.com/wordpress/2011/08/enabling-deduplication-on-a-primary-storage-pool-in-tsm-6-2/#comment-374034213</link><description>&lt;p&gt;Agreed, this is not something I would do or recommend doing with data that did not also exist in another location(s).  I've used it in only one situation - to dedupe virtual volumes on a remote server when we word came down that we needed to retain all backups indefinitely, starting immediately.  Oh, and additional capacity was not going to be an option anytime soon.  The local TSM server had a fair amount of capacity in its tape library, but the remote server only had local storage and was almost full.  They lifted the requirement a few weeks later, and let us know a few weeks after that.  As you can imagine, it got pretty messy:  there's a reason you don't do dedupe on RAID5 with very few spindles!  &lt;br&gt;Thanks for sharing your experiences!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tom K</dc:creator><pubDate>Mon, 28 Nov 2011 02:00:13 -0000</pubDate></item><item><title>Re: Enabling deduplication on a primary storage pool in TSM 6.2</title><link>http://www.lanigera.com/wordpress/2011/08/enabling-deduplication-on-a-primary-storage-pool-in-tsm-6-2/#comment-374019803</link><description>&lt;p&gt;Gutsy move.  Personally, we have experienced data loss due to TSM's deduplication algorithm not being solid enough.  We got duplicate hash-id's generated for separate pieces of data.  Sure it's rare, but it's already happened to us, so I would never set "DedupRequiresBackup" to "no".&lt;br&gt;BTW, we are running on TSM 6.2.3, and this problem still applies - IBM have said they are in no hurry to change the product to any other hash that will avoid this problem.  Even though TSM does double-hashing to make certain there aren't duplicates created, it's not a guarantee - as we found out the hard way.&lt;br&gt;Basically you're playing Russian roulette with your data.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Not</dc:creator><pubDate>Mon, 28 Nov 2011 01:18:41 -0000</pubDate></item><item><title>Re: Top 10 Reasons to go to Work Every Day</title><link>http://www.lanigera.com/wordpress/2011/02/top-10-reasons-to-go-to-work-every-day/#comment-370015977</link><description>&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Great entry dude!! I&lt;br&gt;appreciate IT work sector because their have many enjoyment issue beside work boring&lt;br&gt;and therefore this job can be able to touch any stuff heart easily. Thanks mate&lt;br&gt;:)&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Online contest</dc:creator><pubDate>Tue, 22 Nov 2011 07:56:39 -0000</pubDate></item><item><title>Re: TSM 6.2.3 released</title><link>http://www.lanigera.com/wordpress/2011/08/tsm-6-2-3-released/#comment-362208252</link><description>&lt;p&gt;Hi Tom,&lt;br&gt; This server is experincing hardware problems and still is ... The problems with 6.2 are still very DB2 based and the main issues still go back to design you have to build it in so that server does have extended disk que wait's. I can send you the macro of the tables to run the reorg's from the command line if it's Windows please reboot or you will earn yourself a lot of off-line archiving and backup clean up.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Aaron N Martin</dc:creator><pubDate>Sun, 13 Nov 2011 03:24:26 -0000</pubDate></item><item><title>Re: TSM 6.2.3 released</title><link>http://www.lanigera.com/wordpress/2011/08/tsm-6-2-3-released/#comment-294140088</link><description>&lt;p&gt;Aaron, can you elaborate?  Do you have a PMR open?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tom K</dc:creator><pubDate>Tue, 23 Aug 2011 21:42:37 -0000</pubDate></item><item><title>Re: TSM 6.2.3 released</title><link>http://www.lanigera.com/wordpress/2011/08/tsm-6-2-3-released/#comment-294089255</link><description>&lt;p&gt;Don't it does not fix it I have to run it from the db2 command line processer.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Aaron N Martin</dc:creator><pubDate>Tue, 23 Aug 2011 19:50:21 -0000</pubDate></item><item><title>Re: Oracle and TSM for Databases: Part 1</title><link>http://www.lanigera.com/wordpress/2011/02/oracle-and-tdp-part-one/#comment-204988551</link><description>&lt;p&gt;Cool, look forward to reading it Tom.&lt;br&gt;Many thanks...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">H8mmer</dc:creator><pubDate>Tue, 17 May 2011 08:17:04 -0000</pubDate></item><item><title>Re: Oracle and TSM for Databases: Part 1</title><link>http://www.lanigera.com/wordpress/2011/02/oracle-and-tdp-part-one/#comment-197797113</link><description>&lt;p&gt;Good question!  I had written up a draft but lost it somehow.  I'll rewrite and post soonish.&lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tom K</dc:creator><pubDate>Thu, 05 May 2011 12:56:22 -0000</pubDate></item><item><title>Re: Oracle and TSM for Databases: Part 1</title><link>http://www.lanigera.com/wordpress/2011/02/oracle-and-tdp-part-one/#comment-197523127</link><description>&lt;p&gt;A good informative start but wheres part2?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">H8mmer</dc:creator><pubDate>Thu, 05 May 2011 04:58:41 -0000</pubDate></item><item><title>Re: Chrysler F-bomb Twitterer blames his software</title><link>http://www.lanigera.com/wordpress/2011/03/chrysler-f-bomb-twitterer-blames-his-software/#comment-168535237</link><description>&lt;p&gt;They had an employee doing that?  I thought submitting official Twitter thoughts was relegated to interns along with the rest of the real work.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">The Director</dc:creator><pubDate>Sun, 20 Mar 2011 08:30:41 -0000</pubDate></item></channel></rss>
