<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6955042</id><updated>2011-08-02T23:45:24.536-07:00</updated><title type='text'>UnixAdminsDiary</title><subtitle type='html'>Informations about Unix problems and their solutions, as they occur during my daily work.
If you have better solutions or comments to the problems listed in this blog, you are welcome to comment it.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>19</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6955042.post-9123356218209630760</id><published>2010-03-02T12:01:00.000-08:00</published><updated>2010-03-02T12:19:19.611-08:00</updated><title type='text'>Switching hardware between AIX partitions</title><content type='html'>You know the problem: you have one of these black pSeries POWER-boxes running VIO as virtualisation management layer. So far, so good. But this box has only one optical drive and you have to switch it from one AIX LPAR to another. The (virtual) hardware switching with eg the VIO web interface is no problem, but how do I tell the LPARs this change?&lt;br /&gt;&lt;br /&gt;It is done by using the device management tools.&lt;br /&gt;Assume that machine A currently owns the CD drive cd0, and machine B wants to have it:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-family: courier new;"&gt; umount /dev/cd0&lt;/span&gt; on machine A&lt;/li&gt;&lt;li&gt;deactivate the device on machine A:&lt;span style="font-family: courier new;"&gt; rmdev -l cd0&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;or as alternative remove the device  &lt;span style="font-family: courier new;"&gt;rmdev -dl cd0&lt;/span&gt;  , but be careful, because this removes also all device configurations (no problem for a CD drive, but not so good for eg a network interface card!)&lt;/li&gt;&lt;li&gt;do the (virtual) hardware switch using VIO web interface or something similar&lt;/li&gt;&lt;li&gt;activate the CD drive on machine B: &lt;span style="font-family: courier new;"&gt;cfgmgr&lt;/span&gt;  (this runs the configuration manager, that automatically detects and configures the "new" hardware)&lt;/li&gt;&lt;li&gt;now you can use the hardware on machine B - in our case we will mount the CD-ROM: &lt;span style="font-family: courier new;"&gt;mount -v cdrfs -o ro /dev/cd0 /mnt&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-9123356218209630760?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/9123356218209630760/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=9123356218209630760' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/9123356218209630760'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/9123356218209630760'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2010/03/switching-hardware-between-aix.html' title='Switching hardware between AIX partitions'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-2040682682273125793</id><published>2010-03-02T11:41:00.000-08:00</published><updated>2010-03-02T11:49:45.800-08:00</updated><title type='text'>How to change the keyboard setting under Solaris</title><content type='html'>Today I had the problem that I got my brand new Sun USB keyboard. But - it's a UK layout, and my old one was a german layout. So - how to change this?&lt;br /&gt;Quite simple - the file /etc/default/kbd contains the keyboard setting that overrides the eeprom defaults during system start. The (usually last) line LAYOUT=UK-English defines the desired setting for me.&lt;br /&gt;&lt;br /&gt;Step-by-step:&lt;br /&gt;The command kbd -s lists all possible keymaps.&lt;br /&gt;The command kbd -i changes the new setting to the one in /etc/default/kbd&lt;br /&gt;The next reboot loads the new keymap into the kernel&lt;br /&gt;&lt;br /&gt;As usual, man kbd tells you all the details ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-2040682682273125793?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/2040682682273125793/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=2040682682273125793' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/2040682682273125793'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/2040682682273125793'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2010/03/how-to-change-keyboard-setting-under.html' title='How to change the keyboard setting under Solaris'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-2532987576910900303</id><published>2009-06-19T04:23:00.000-07:00</published><updated>2009-06-19T04:27:11.574-07:00</updated><title type='text'>strace pendant for AIX</title><content type='html'>AIX provides an strace commando, but this has nothing to do with the strace someone may know from linux systems. But AIX also provides an commando that has similar functionality: truss&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-2532987576910900303?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/2532987576910900303/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=2532987576910900303' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/2532987576910900303'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/2532987576910900303'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2009/06/strace-pendant-for-aix.html' title='strace pendant for AIX'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-8972370017236619327</id><published>2007-10-16T23:43:00.000-07:00</published><updated>2007-10-16T23:47:47.294-07:00</updated><title type='text'>How to get a console during hp-ux startup</title><content type='html'>Sometimes a problem appears during the startup of hp-ux (eg network problems) and the startup process hangs (eg when trying to connect to NIS server or something else). A fix like temporary deactivation of NIS could be done easily - but how to get a login to do this?&lt;br /&gt;&lt;br /&gt;Just press Crtl-Shift-\ (on US-keyboard, so this is: Crtl-|) and a login prompt will appear!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-8972370017236619327?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/8972370017236619327/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=8972370017236619327' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/8972370017236619327'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/8972370017236619327'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2007/10/how-to-get-console-during-hp-ux-startup.html' title='How to get a console during hp-ux startup'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-2024048354163752404</id><published>2007-09-24T00:28:00.000-07:00</published><updated>2007-09-24T00:39:58.760-07:00</updated><title type='text'>ssh_exchange_identification: Connection closed by remote host</title><content type='html'>This sometimes happens on my long-running RHEL4 server that has lot of ssh traffic. It happens unexpectedly, and no log entries are produced.&lt;br /&gt;As mentioned in &lt;a href="http://www.raditha.com/blog/archives/000604.html"&gt;The Site With the Lamp&lt;/a&gt;, this seems to be a problem with too much (old?) ssh connections. &lt;br /&gt;&lt;br /&gt;But the solution recommended there (waiting) is usually not meeting my needs, I need an immediate solution.  &lt;br /&gt;/etc/init.d/sshd restart does not work, but a simple &lt;br /&gt;killall -9 sshd&lt;br /&gt;followed by a&lt;br /&gt;/etc/init.d/sshd start&lt;br /&gt;saves the day!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-2024048354163752404?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/2024048354163752404/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=2024048354163752404' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/2024048354163752404'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/2024048354163752404'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2007/09/sshexchangeidentification-connection.html' title='ssh_exchange_identification: Connection closed by remote host'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-114949530475640375</id><published>2006-06-05T01:10:00.000-07:00</published><updated>2006-06-05T01:15:04.760-07:00</updated><title type='text'>Arg list too long on IRIX systems</title><content type='html'>A common problem: you are running a script or program on your IRIX machine, that automatically generates the command line call for another script or program - but the call fails with the following error message:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;bad interpreter: Arg list too long&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Ok, the cause is clear - the generated call exceeds the system's max args limit. Luckily, this can be fixed very easily on IRIX systems - as also explained at &lt;a href="http://techpubs.sgi.com/library/tpl/cgi-bin/getdoc.cgi?cmd=getdoc&amp;coll=0650&amp;db=man&amp;fname=2%20intro"&gt;SGI Techpubs library&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;First, lets have a look whats the actual limit. This can be examined using sysconf:&lt;br /&gt;&lt;br /&gt;shell&gt; &lt;span style="font-weight:bold;"&gt;sysconf | grep ARG_MAX&lt;/span&gt;&lt;br /&gt;ARG_MAX   &lt;span style="font-weight:bold;"&gt;20480&lt;/span&gt;&lt;br /&gt;...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Well, the actual (IRIX default) limit is about 20k for the max command line lenght, which is definitly not very much. Now we check whats the allowed maximum for the actual kernel. We open /var/sysgen/mtune/kernel with any ascii viewer and search for the definition of ncargs or we just use grep like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;grep ncargs /var/sysgen/mtune/kernel&lt;/span&gt;&lt;br /&gt;* ncargs is max # bytes of arguments passed during an exec(2)&lt;br /&gt;ncargs                  20480           5120            262144&lt;br /&gt;&lt;br /&gt;There we can see that the legal range for ncargs is from 5120 to &lt;span style="font-weight:bold;"&gt;262144&lt;/span&gt;, which seems to be the right value for us. IRIXs systune cat set this value during runtime:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;systune -b ncargs 262144&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After this (without logout, reboot or something else), the new value is active:&lt;br /&gt;&lt;br /&gt;shell&gt; &lt;span style="font-weight:bold;"&gt;sysconf | grep ARG_MAX&lt;/span&gt;&lt;br /&gt;ARG_MAX                          262144&lt;br /&gt;...&lt;br /&gt;&lt;br /&gt;Now our script should have plenty argument space to operate ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-114949530475640375?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/114949530475640375/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=114949530475640375' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/114949530475640375'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/114949530475640375'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2006/06/arg-list-too-long-on-irix-systems.html' title='Arg list too long on IRIX systems'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-114663696971000745</id><published>2006-05-02T23:09:00.000-07:00</published><updated>2006-05-02T23:16:09.720-07:00</updated><title type='text'>Some X Clients work with ssh X forwarding, some not</title><content type='html'>It seems like a really strange issue: you connected to a unix machine (running opensshd) with ssh -X, you can run X clients like xterm there, but some applications fail to start with the following error message:&lt;br /&gt;&lt;span style="font-style:italic;"&gt;&lt;br /&gt;X11 connection rejected because of wrong authentication.&lt;br /&gt;Unable to continue communications with the X display.&lt;br /&gt;Please ensure that the X Server is still running, and the&lt;br /&gt;connection to it is still valid.&lt;/span&gt;&lt;br /&gt;But the solution is very simple: the client tries to connect localhost instead of the machine, for which the auth may not be set. OpenSSH has an server option to configure this behavoir. In sshd_config, change the (usually commented) line&lt;br /&gt;&lt;span style="font-style:italic;"&gt;#X11UseLocalhost yes&lt;/span&gt;&lt;br /&gt;to&lt;br /&gt;&lt;span style="font-style:italic;"&gt;X11UseLocalhost no&lt;/span&gt;&lt;br /&gt;and restart the sshd. Now this problem should not appear anymore.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-114663696971000745?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/114663696971000745/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=114663696971000745' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/114663696971000745'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/114663696971000745'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2006/05/some-x-clients-work-with-ssh-x.html' title='Some X Clients work with ssh X forwarding, some not'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-111822233534234186</id><published>2005-06-08T02:13:00.000-07:00</published><updated>2005-06-08T02:27:47.846-07:00</updated><title type='text'>What the hell are the Solaris slices</title><content type='html'>When I tried to get a dd-mirror of a complete disk running under Solaris, I had the problem how to find out how to do this with these strange solaris slices (that also always confuse me when I set up a Solaris machine). But the online Solaris documentation (&lt;a href="http://docs.sun.com"&gt;docs.sun.com&lt;/a&gt;, very good, always worth the look) had the right answer: &lt;br /&gt;&lt;span style="font-style:italic;"&gt;slice 2:&lt;br /&gt;refers to the entire disk, by convention. This slice is defined&lt;br /&gt;automatically by the format utility and the Solaris installation&lt;br /&gt;programs. The size of this slice should not be changed.&lt;/span&gt;&lt;br /&gt;The meaning of all slices can also be found in the &lt;a href="http://docs.sun.com/db/doc/806-4073/6jd67r9ft?a=view"&gt;SUN online documentation&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-111822233534234186?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/111822233534234186/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=111822233534234186' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/111822233534234186'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/111822233534234186'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2005/06/what-hell-are-solaris-slices.html' title='What the hell are the Solaris slices'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-111822178145525696</id><published>2005-06-08T02:05:00.000-07:00</published><updated>2005-06-08T02:09:41.460-07:00</updated><title type='text'>IBM AIX: cannot log in because its not the lowest login shell</title><content type='html'>Sometimes, common problems lead to very strange error messages.&lt;br /&gt;Last time I got the following message when I tried to login via telnet to an IBM IntelliStation running AIX 5.1: &lt;span style="font-style:italic;"&gt;You must "exec" login from the lowest login shell.&lt;/span&gt;, and the login process failed.&lt;br /&gt;&lt;br /&gt;The reason for this error is trivial: the root filesystem (/) was 100% full, so the solution was just to delete some unneded files (some old cores, in my case) and everything was fine.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-111822178145525696?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/111822178145525696/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=111822178145525696' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/111822178145525696'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/111822178145525696'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2005/06/ibm-aix-cannot-log-in-because-its-not.html' title='IBM AIX: cannot log in because its not the lowest login shell'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-111822148512549835</id><published>2005-06-08T01:58:00.000-07:00</published><updated>2005-06-08T02:04:45.130-07:00</updated><title type='text'>NIS on SGI/IRIX</title><content type='html'>IRIX (AFAIK) has no direct support (I mean a GUI tool) to manage the use of NIS for passwd and groups - you can just turn NIS client on and configure the host resolution order.&lt;br /&gt;So take care that nsswitch.conf is set up correctly (usually, it is!) and the /etc/passwd and /etc/group contains +::::: (or +:::) in the last line (or something similar ;-))&lt;br /&gt;Otherwise you will have the problem that ypcat passwd delivers the expected useres, but non of these users can log in (&lt;span style="font-style:italic;"&gt;Unknown user id&lt;/span&gt;).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-111822148512549835?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/111822148512549835/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=111822148512549835' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/111822148512549835'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/111822148512549835'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2005/06/nis-on-sgiirix.html' title='NIS on SGI/IRIX'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-111822087646145309</id><published>2005-06-08T01:41:00.000-07:00</published><updated>2005-06-08T01:57:06.776-07:00</updated><title type='text'>Some pitfalls when setting up a SGI/MIPS machine</title><content type='html'>When I set up a SGI/Irix Octane 2 (with 2 MIPS R12k CPUs) the last time, I ran into two pitfalls I want to mention here:&lt;br /&gt;&lt;br /&gt;1) On newer machines (which does not use the old-fashioned R10k-CPUs anymore, I assume) you cannot install any IRIX 6.5 version you want. On my machine, it had to be at least 6.5.10, otherwise the starting of the miniroot (Installation Tools) failed (machine hang up completely)&lt;br /&gt;Although IRIX releasenote contains some information about some hardware support, I found nothing about R12k or Octane2 there :-(&lt;br /&gt;&lt;br /&gt;2) NFS installation failed with following error:&lt;br /&gt;&lt;span style="font-style:italic;"&gt;ERROR: this software distribution is not meant to install on the version of IRIX currently running on this machine. Sorry&lt;/span&gt;&lt;br /&gt;This happend for me when I tried to install form the ONC/NFS CD that comes with IRIX 6.5. The reason of this problem is that this CD is also suited for the use of IRIX 6.2, 6.3 and 6.4, not only 6.5, which means that the distribution is not located in /CDROM/dist (as usual), but in /CDROM/dist6.5&lt;br /&gt;Changing the path in the instalaltion tools to the right distribution directory solves the problem!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-111822087646145309?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/111822087646145309/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=111822087646145309' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/111822087646145309'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/111822087646145309'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2005/06/some-pitfalls-when-setting-up-sgimips.html' title='Some pitfalls when setting up a SGI/MIPS machine'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-111821999995891309</id><published>2005-06-08T01:31:00.000-07:00</published><updated>2005-06-08T01:39:59.963-07:00</updated><title type='text'>SGI Irix: how to start System Manager without desktop?</title><content type='html'>Every SGI user knows the System Manager - usually to be reached from the Desktop menu. But if you just shot the desktop - as i did the last time - where the hell is the System manager located?&lt;br /&gt;The easy-to-find-out (if everyting is running as it should:-) answer: /usr/sysadm/bin/sysmgr&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-111821999995891309?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/111821999995891309/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=111821999995891309' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/111821999995891309'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/111821999995891309'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2005/06/sgi-irix-how-to-start-system-manager.html' title='SGI Irix: how to start System Manager without desktop?'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-110027652237386204</id><published>2004-11-12T07:49:00.000-08:00</published><updated>2004-11-12T08:22:02.373-08:00</updated><title type='text'>Remote X login on Suse Linux</title><content type='html'>Regarding to the former post, you will not really be able to do this with a Suse Linux System. As SuSE has a little confusing XDM/GDM/KDM configuration strategy (eg, an actual KDM configuration is spread over KDM config AND over XDM config), it is recommended not to change this by hand. Instead, use SuSEs sysconfig to do this. Sysconfig is included in YaST2:&lt;br /&gt;&lt;br /&gt;Yast Control Center&lt;br /&gt; -&gt; Sysconfig-Editor&lt;br /&gt; --&gt; Desktop&lt;br /&gt; ---&gt; Display-Manager&lt;br /&gt; ----&gt; DISPLAYMANAGER_REMOTE_ACCESS=yes&lt;br /&gt; ----&gt; if needed: DISPLAYMANAGER_ROOT_LOGIN_REMOTE=yes&lt;br /&gt;&lt;br /&gt;This should enable full remote X access to a SuSE box.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-110027652237386204?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/110027652237386204/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=110027652237386204' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/110027652237386204'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/110027652237386204'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2004/11/remote-x-login-on-suse-linux.html' title='Remote X login on Suse Linux'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-109044400766604971</id><published>2004-07-21T14:00:00.000-07:00</published><updated>2004-07-21T14:14:48.316-07:00</updated><title type='text'>Linux: execution of a program fails with permission denied, but the file has r_xr_xr_x mode</title><content type='html'>You have an executeable; all modes are ok (eg r_xr_xr_x), but if you try to run the program, you get an "permission denied"-error.&lt;br /&gt;AFAIK there are two possible reasons for this:&lt;br /&gt;First, you try to start an old libc5-executeable on an libc6-machine without compat-libs.&lt;br /&gt;Solution: install the libc5-compat-libs that comes with your distribution and hope that they work.&lt;br /&gt;Second, maybe you try to start the executeable from a mount point that has not set the &lt;i&gt;exec&lt;/i&gt;-Flag (the location of the executeable, NOT the current working directory). Take a look at /etc/fstab, if you see a line like&lt;br /&gt;&lt;i&gt;/dev/scd0  /cdrom  iso9660 ro,user,noauto  0  0&lt;/i&gt;, &lt;br /&gt;than you can see that the exec flag is not set. &lt;br /&gt;Solution: change the line to  &lt;br /&gt;&lt;i&gt;/dev/scd0  /cdrom  iso9660 ro,user,noauto,exec  0  0&lt;/i&gt;,&lt;br /&gt;then the "permission denied"-error will disappear.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-109044400766604971?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/109044400766604971/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=109044400766604971' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/109044400766604971'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/109044400766604971'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2004/07/linux-execution-of-program-fails-with.html' title='Linux: execution of a program fails with permission denied, but the file has r_xr_xr_x mode'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-108566904729916126</id><published>2004-05-27T07:35:00.000-07:00</published><updated>2004-05-27T07:44:07.300-07:00</updated><title type='text'>AIX: ftp login fails if user uses a non-standard shell</title><content type='html'>Someday, you may have the following problem: your machine works fine, everything is ok, the users are happy - but somedays, one user trys to connect to the machine via ftp, and he gets the following error:&lt;br /&gt;&lt;em&gt;ftp: Login failed.&lt;/em&gt;&lt;br /&gt;Well, if you have an out-of-the-box AIX configuration and you try to connect to ftp as root, it works fine.&lt;br /&gt;Assuming that you are an experienced unix admin, you look at the users login shell settings - and there you may find a non-standard login-shell, so you put this into /etc/shells, as known from other unix systems.&lt;br /&gt;This is nothing very exciting until now, but - surprise: the logon still fails!&lt;br /&gt;&lt;br /&gt;But you can be happy, because the solution is very simple: look into /etc/security, there you will find a file named &lt;em&gt;login.cfg&lt;/em&gt;, which contains a line beginning with &lt;em&gt;shells =&lt;/em&gt; , followed by all standard systems shells. Put the shell used by the user into this line, and ftp will work.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-108566904729916126?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/108566904729916126/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=108566904729916126' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/108566904729916126'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/108566904729916126'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2004/05/aix-ftp-login-fails-if-user-uses-non.html' title='AIX: ftp login fails if user uses a non-standard shell'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-108487056931285205</id><published>2004-05-18T01:42:00.000-07:00</published><updated>2004-05-18T01:56:09.313-07:00</updated><title type='text'>AIX 4.3: ypcat problems after connection to NIS server lost</title><content type='html'>Assume that your AIX machine gets passwd via NIS from a NIS server. Assume that the server crashes, that it stays offline a longer time (eg some hours) and, after the server is up again, ypcat passwd on the NIS machine doesnt show the NIS users.&lt;br /&gt;No problem at all, you might think - simple restart the ypbind daemon and everything will be fine.&lt;br /&gt;But - after restarting, you still dont get the desired user list when performing a ypcat passwd.&lt;br /&gt;Ok, if you are a MS Windows approved admin, you will now reboot the AIX machine, but after rebooting, ypcat passwd still doesnt show the NIS users.&lt;br /&gt;&lt;br /&gt;AFAIK this is caused because the AIX ypbind doesnt always ask the NIS server. Look at /var/yp/binding - you will find files like &lt;em&gt;your_nis_domain.1&lt;/em&gt; and &lt;em&gt;your_nis_domain.2&lt;/em&gt; there.&lt;br /&gt;Just try the following: stop the ypbind, delete these files, and then, restart ypbind.&lt;br /&gt;Usually, a ypcat passwd should show you the expected user list.&lt;br /&gt;But in most cases, you dont have to do this. It seems theses files are fetchted automatically if they are too old. This means that if you wait long enough, the files become updated and ypcat passwd works right without manual deletion of these files. &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-108487056931285205?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/108487056931285205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=108487056931285205' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/108487056931285205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/108487056931285205'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2004/05/aix-43-ypcat-problems-after-connection.html' title='AIX 4.3: ypcat problems after connection to NIS server lost'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-108447884967740543</id><published>2004-05-13T12:46:00.000-07:00</published><updated>2004-05-13T13:07:29.676-07:00</updated><title type='text'>Debian: can not open a X window from a remote machine on my display</title><content type='html'>Well, this is not only a Debian problem - it can appear on ever Linux (and also on Unix) platform, and it is a feature, not a bug ;-)&lt;br /&gt;But I mention this with Debian, because Debian is the only system I know which has this security feature by default.&lt;br /&gt;The situation is the following: you are sitting in front of your Debian box, running the local Xsession, managed by xdm/gdm/kdm (lets assume that we use kdm, but the others behave identically). You want to login to another Unix machine and want to run remote a X application (eg a xterm). &lt;br /&gt;No problem, you just type on the debian box&lt;br /&gt;&lt;em&gt;xhost +&lt;/em&gt; and eg&lt;br /&gt;&lt;em&gt;telnet remote_machine&lt;/em&gt; (yes I know that it is better to use ssh instead of telnet ;-)&lt;br /&gt;&lt;br /&gt;and after the login you type (on the remote machine)&lt;br /&gt;&lt;em&gt;export DISPLAY=debian_box:0.0&lt;/em&gt;&lt;br /&gt;&lt;em&gt;xterm&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;and - surprise, surprise - this fails ( ... can't open display .. and so on)&lt;br /&gt;&lt;br /&gt;The solution is very easy:&lt;br /&gt;all remote X access is controlled by xdm/gdm/kdm, and Debian configs them in a way that every remote X connection is denied. Eg in /etc/kde2/kdm/Xservers you will find a line looking like this:&lt;br /&gt;&lt;em&gt;:0 local@tty1 /usr/X11R6/bin/X  -dpi 100 -nolisten tcp vt7&lt;/em&gt;&lt;br /&gt;The &lt;em&gt;-nolisten tcp&lt;/em&gt; denies the remote connection, so just remove it:&lt;br /&gt;&lt;em&gt;:0 local@tty1 /usr/X11R6/bin/X  -dpi 100 vt7&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;After restaring the display manager, the remote X connects will work fine.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-108447884967740543?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/108447884967740543/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=108447884967740543' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/108447884967740543'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/108447884967740543'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2004/05/debian-can-not-open-x-window-from.html' title='Debian: can not open a X window from a remote machine on my display'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-108434159767193753</id><published>2004-05-11T22:50:00.000-07:00</published><updated>2004-05-11T22:59:57.670-07:00</updated><title type='text'>HP-UX: console (ie telnet) login works, but CDE login fails</title><content type='html'>This very strange behaviour appeared after setting up a HP-UX 11 machine as NIS client. Only passwd and group are shared by NIS. After doing the appropriate setup with SAM, ypcat passwd and ypcat group worked fine and remote telnet logins to the machine were successful. But remote and locale CDE logins faild with the "usual" CDE communications error.&lt;br /&gt;The solutions is strange, but simple:&lt;br /&gt;Set the Name Service Switch entries "netgroup" and "networks" to NIS as first service and put the files /etc/netgroup and /etc/networks as the second service. Although wether netgroups nor networks are shared by the NIS server, all of our HP-UX 11.00 and HP-UX 11.22 clients worked fine with this setting.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-108434159767193753?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/108434159767193753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=108434159767193753' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/108434159767193753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/108434159767193753'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2004/05/hp-ux-console-ie-telnet-login-works.html' title='HP-UX: console (ie telnet) login works, but CDE login fails'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6955042.post-108430708726405472</id><published>2004-05-11T13:19:00.000-07:00</published><updated>2004-05-11T13:24:47.263-07:00</updated><title type='text'>First Entry</title><content type='html'>Well, this starts up my &lt;em&gt;Unix Admin's Diary&lt;/em&gt;!&lt;br /&gt;From this day on, I will post the cognitions I get at my daily work with Linux, AIX, HP-UX, IRIX and Solaris boxes (and sometimes with Wintendos, too ;-).&lt;br /&gt;I hope that the information collected here will help other people around the world fixing some Unix troubles a little bit faster ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6955042-108430708726405472?l=unixadminsdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://unixadminsdiary.blogspot.com/feeds/108430708726405472/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6955042&amp;postID=108430708726405472' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/108430708726405472'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6955042/posts/default/108430708726405472'/><link rel='alternate' type='text/html' href='http://unixadminsdiary.blogspot.com/2004/05/first-entry.html' title='First Entry'/><author><name>Blue.Balloon</name><uri>http://www.blogger.com/profile/13243598108616566239</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
