<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>usefulthings.org.uk</title>
	
	<link>http://usefulthings.org.uk</link>
	<description />
	<lastBuildDate>Sun, 18 Jul 2010 20:44:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Usefulthingsorguk" /><feedburner:info uri="usefulthingsorguk" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Amod AGL3080 GPS Data Logger</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/7jlJ-medOVQ/amod-agl3080-gps-data-logger</link>
		<comments>http://usefulthings.org.uk/index.php/archives/amod-agl3080-gps-data-logger#comments</comments>
		<pubDate>Sun, 18 Jul 2010 20:44:07 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=224</guid>
		<description><![CDATA[I got one of these for my birthday. It outputs NMEA format files, which I  normally convert into the more widely used GPX files, using GPSBabel. Once I have my GPX file I use the excellemt GPSPhotoLinker to embed the GPS coordinate information into the EXIF of my photos.]]></description>
			<content:encoded><![CDATA[<p>I got one of <a href="http://www.amod.com.tw/Product/?tLGIqc6FuoJK">these</a> for my birthday.</p>
<p>It outputs NMEA format files, which I  normally convert into the more widely used GPX files, using <a href="http://www.gpsbabel.org/">GPSBabel</a>. Once I have my GPX file I use the excellemt <a href="http://www.earlyinnovations.com/gpsphotolinker/">GPSPhotoLinker</a> to embed the GPS coordinate information into the EXIF of my photos.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/amod-agl3080-gps-data-logger/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/amod-agl3080-gps-data-logger</feedburner:origLink></item>
		<item>
		<title>mdadm Linux software Raid raidhotadd</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/-qkIjzq12p0/mdadm-linux-software-raid-raidhotadd</link>
		<comments>http://usefulthings.org.uk/index.php/archives/mdadm-linux-software-raid-raidhotadd#comments</comments>
		<pubDate>Sat, 17 Jul 2010 05:53:56 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Redhat/Centos]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[software raid]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=221</guid>
		<description><![CDATA[I&#8217;m sure there used to be a thing called raidhotadd, anyway these days it seems to be mdadm. We have a few machines with software raid, and very occasionally a md device flags a disk as dead but adding it back into the array fixes the problem. Anyway, I never remember this, so to remove [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure there used to be a thing called raidhotadd, anyway these days it seems to be mdadm. We have a few machines with software raid, and very occasionally a md device flags a disk as dead but adding it back into the array fixes the problem.</p>
<p>Anyway, I never remember this, so to remove and then re-add a disk from a md device do the following:</p>
<p><code><br />
[root@host ~]# cat /proc/mdstat<br />
Personalities : [raid1]<br />
md1 : active raid1 sdb1[1] sda1[0]<br />
104320 blocks [2/2] [UU]</code></p>
<p><code>md0 : active raid1 sdc1[0] sdd1[2](F)<br />
143371968 blocks [2/1] [U_]</p>
<p>md2 : active raid1 sdb2[1] sda2[0]<br />
71577536 blocks [2/2] [UU]</p>
<p>unused devices:<br />
[root@host ~]# fdisk -l /dev/sdd</p>
<p>Disk /dev/sdd: 146.8 GB, 146815737856 bytes<br />
255 heads, 63 sectors/track, 17849 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes</p>
<p>Device Boot      Start         End      Blocks   Id  System<br />
/dev/sdd1   *           1       17849   143372061   fd  Linux raid autodetect<br />
[root@host ~]# mdadm /dev/md0 --remove /dev/sdd1<br />
mdadm: hot removed /dev/sdd1<br />
[root@host ~]# mdadm /dev/md0 --add /dev/sdd1<br />
mdadm: re-added /dev/sdd1<br />
[root@host ~]# cat /proc/mdstat<br />
Personalities : [raid1]<br />
md1 : active raid1 sdb1[1] sda1[0]<br />
104320 blocks [2/2] [UU]</p>
<p>md0 : active raid1 sdd1[2] sdc1[0]<br />
143371968 blocks [2/1] [U_]<br />
[&gt;....................]  recovery =  0.2% (297280/143371968) finish=32.0min speed=74320K/sec</p>
<p>md2 : active raid1 sdb2[1] sda2[0]<br />
71577536 blocks [2/2] [UU]</p>
<p></code></p>
<p><code>unused devices:<br />
[root@host ~]#<br />
</code></p>
<p>And there we can see from /proc/mdstat that the md device will be synchronised and happy again soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/mdadm-linux-software-raid-raidhotadd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/mdadm-linux-software-raid-raidhotadd</feedburner:origLink></item>
		<item>
		<title>Parted, GPT and LVM</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/8g7fPNh3oHo/parted-gpt-and-lvm</link>
		<comments>http://usefulthings.org.uk/index.php/archives/parted-gpt-and-lvm#comments</comments>
		<pubDate>Sat, 12 Sep 2009 20:25:15 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[disks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[parted]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=216</guid>
		<description><![CDATA[Always forget this: (parted) mklabel gpt (parted) mkpart primary 0 100% (parted) set 1 lvm on That is all.]]></description>
			<content:encoded><![CDATA[<p>Always forget this:</p>
<p><code><br />
(parted) mklabel gpt<br />
(parted) mkpart primary 0 100%<br />
(parted) set 1 lvm on<br />
</code></p>
<p>That is all.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/parted-gpt-and-lvm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/parted-gpt-and-lvm</feedburner:origLink></item>
		<item>
		<title>CentOS 4.x and OMSA 6.1 – Update breaks IPMI</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/w7fKo46-GsA/centos-4-x-and-omsa-6-1-update-breaks-ipmi</link>
		<comments>http://usefulthings.org.uk/index.php/archives/centos-4-x-and-omsa-6-1-update-breaks-ipmi#comments</comments>
		<pubDate>Fri, 24 Jul 2009 14:18:34 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Dell]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Redhat/Centos]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[omsa]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=213</guid>
		<description><![CDATA[Just recently I upgraded a Centos 4 machine which broke OMSA, this post helped me fix it.]]></description>
			<content:encoded><![CDATA[<p>Just recently I upgraded a Centos 4 machine which broke OMSA, <a href="http://www.mail-archive.com/linux-poweredge@lists.us.dell.com/msg00047.html">this</a> post helped me fix it.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/centos-4-x-and-omsa-6-1-update-breaks-ipmi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/centos-4-x-and-omsa-6-1-update-breaks-ipmi</feedburner:origLink></item>
		<item>
		<title>Linux Setting processor affinity for a certain task or process</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/VEUPfAIKeNo/linux-setting-processor-affinity-for-a-certain-task-or-process</link>
		<comments>http://usefulthings.org.uk/index.php/archives/linux-setting-processor-affinity-for-a-certain-task-or-process#comments</comments>
		<pubDate>Wed, 17 Jun 2009 12:37:38 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[affinity]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=209</guid>
		<description><![CDATA[Just recently I wanted to be able to lock a single process to a specific CPU for testing purposes. A bit of googling lead me to thisnice explanation of how it works. Essentially you use the taskset command to run a new proc locked to a specific CPU: % taskset -c 1 sleep 10 Will [...]]]></description>
			<content:encoded><![CDATA[<p>Just recently I wanted to be able to lock a single process to a specific CPU for testing purposes. A bit of googling lead me to <a href="http://www.cyberciti.biz/tips/setting-processor-affinity-certain-task-or-process.html">this</a>nice explanation of how it works. </p>
<p>Essentially you use the taskset command to run a new proc locked to a specific CPU:</p>
<p><code>% taskset -c 1 sleep 10</code></p>
<p>Will run &#8216;sleep 10&#8242; locked to CPU #0.</p>
<p><code>% taskset -c -p 1<br />
pid 1's current affinity list: 0,1</code></p>
<p>Shows you what PID 1 has its affinity set to.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/linux-setting-processor-affinity-for-a-certain-task-or-process/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/linux-setting-processor-affinity-for-a-certain-task-or-process</feedburner:origLink></item>
		<item>
		<title>Connecting HUAWEI E220 to your Mac</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/Zu2OD8rIA1M/connecting-huawei-e220-to-your-mac</link>
		<comments>http://usefulthings.org.uk/index.php/archives/connecting-huawei-e220-to-your-mac#comments</comments>
		<pubDate>Thu, 21 May 2009 10:10:32 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[modem]]></category>
		<category><![CDATA[three]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=206</guid>
		<description><![CDATA[Every time I need to use this modem on a new mac I end up fighting with it and often giving up. I&#8217;ve made it work this time, so I intend to document the process here so I dont spend hours googling next time. These instructions worked on my iMac and my MacBook Pro both [...]]]></description>
			<content:encoded><![CDATA[<p>Every time I need to use this modem on a new mac I end up fighting with it and often giving up. I&#8217;ve made it work this time, so I intend to document the process here so I dont spend hours googling next time.</p>
<p>These instructions worked on my iMac and my MacBook Pro both of which were running 10.5.7.</p>
<p>Before you start, make sure the modem is not connected. </p>
<p>First off download the drivers, the ones buried in the three.co.uk support site lack a actual installer even though the documentation suggests you just need to run the installer. WTF am I supposed to do with a bunch of .kext files three? Have you heard of a nice user experience? Clearly not.  Click <a href="http://usefulthings.org.uk/wp-content/uploads/2009/05/huaweidatacarddriver26-intelpkg.zip">this link</a> and download the zip file from here, inside is a standard OSX installer package. run that.</p>
<p>After that has installed, you dont need to reboot. Plug in the modem and wait a few minutes. The little LED started flashing blue occasionally for me which I think means I&#8217;ve got 3G coverage.</p>
<p>Once its calmed down open up network preferences where you should see a few new devices down the left hand side:</p>
<p><img src="http://usefulthings.org.uk/wp-content/uploads/2009/05/network-preferences.png" alt="network-preferences" title="network-preferences" width="691" height="556" class="aligncenter size-full wp-image-189" /></p>
<p>The device you are interested in is the HUAWEI Mobile, select that. Then in the &#8216;Telephone Number&#8217; field enter *99#:</p>
<p><img src="http://usefulthings.org.uk/wp-content/uploads/2009/05/modem-options.png" alt="modem-options" title="modem-options" width="458" height="370" class="aligncenter size-full wp-image-188" /></p>
<p>After you have done that click the &#8216;Advanced&#8217; button. On the resulting pane, select &#8216;Generic&#8217; from the Vendor drop down. Then select &#8216;GPRS (GSM/3G)&#8217; from the Model field. If you are in the UK, enter &#8216;three.co.uk&#8217; into the APN field and leave the CID as 1:</p>
<p><img src="http://usefulthings.org.uk/wp-content/uploads/2009/05/advanced-modem-options.png" alt="advanced-modem-options" title="advanced-modem-options" width="682" height="546" class="aligncenter size-full wp-image-186" /></p>
<p>Click ok, and then click Apply on the main Network Preferences pane. After you&#8217;ve done this try clicking connect and you should see the following connection confirmation:</p>
<p><img src="http://usefulthings.org.uk/wp-content/uploads/2009/05/connected.png" alt="connected" title="connected" width="458" height="370" class="aligncenter size-full wp-image-187" /> </p>
<p>A nice little utility to monitor your connection is CheetahWatch which you can get from <a href="http://m.ac.nz/cheetahwatch/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/connecting-huawei-e220-to-your-mac/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/connecting-huawei-e220-to-your-mac</feedburner:origLink></item>
		<item>
		<title>Enabling vmware-tools clock sync from inside the guest</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/iyq2yXmT6oE/enabling-vmware-tools-clock-sync-from-inside-the-guest</link>
		<comments>http://usefulthings.org.uk/index.php/archives/enabling-vmware-tools-clock-sync-from-inside-the-guest#comments</comments>
		<pubDate>Tue, 28 Apr 2009 09:24:56 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=183</guid>
		<description><![CDATA[Just found out how to turn on vmware-tools clocking syncing from inside the guest, rather than editing the .vmx file on the host. Once you have vmware-tools installed and configured try this: /usr/sbin/vmware-guestd --cmd "vmx.set_option synctime 0 1" To verify this has worked look for this line in the corresponding .vmx file: tools.syncTime = "TRUE"]]></description>
			<content:encoded><![CDATA[<p>Just found out how to turn on vmware-tools clocking syncing from inside the guest, rather than editing the .vmx file on the host.</p>
<p>Once you have vmware-tools installed and configured try this:</p>
<p><code>/usr/sbin/vmware-guestd --cmd "vmx.set_option synctime 0 1"</code></p>
<p>To verify this has worked look for this line in the corresponding .vmx file:</p>
<p><code>tools.syncTime = "TRUE"</code></p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/enabling-vmware-tools-clock-sync-from-inside-the-guest/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/enabling-vmware-tools-clock-sync-from-inside-the-guest</feedburner:origLink></item>
		<item>
		<title>vmrun – Control VMware Fusion from the command line</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/520ILbK270I/vmrun-control-vmware-fusion-from-the-command-line</link>
		<comments>http://usefulthings.org.uk/index.php/archives/vmrun-control-vmware-fusion-from-the-command-line#comments</comments>
		<pubDate>Tue, 31 Mar 2009 15:04:36 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=177</guid>
		<description><![CDATA[I&#8217;ve just needed to snapshot a virtual machine running under VMware Fusion on my Mac but I only had SSH access. I&#8217;ve discovered the vmrun utility which is hidden away in XXX. VMware have a PDF of how to use it here. Very handy! % export PATH=/Library/Application\ Support/VMware\ Fusion/:$PATH % vmrun listSnapshots SpaceWalk.vmx Total snapshots: [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just needed to snapshot a virtual machine running under <a href="http://www.vmware.com/products/fusion/">VMware Fusion</a> on my Mac but I only had SSH access. I&#8217;ve discovered the vmrun utility which is hidden away in XXX. VMware have a PDF of how to use it <a href="http://www.vmware.com/pdf/vix162_vmrun_command.pdf">here</a>. Very handy!</p>
<p><code>% <strong>export PATH=/Library/Application\ Support/VMware\ Fusion/:$PATH<br />
% vmrun listSnapshots SpaceWalk.vmx</strong><br />
Total snapshots: 1<br />
Fresh 5.2 all updates<br />
% <strong>vmrun -T fusion  snapshot SpaceWalk.vmx "SpaceWalk Installed"</strong><br />
% <strong>vmrun listSnapshots SpaceWalk.vmx</strong><br />
Total snapshots: 2<br />
Fresh 5.2 all updates<br />
SpaceWalk Installed<br />
%</code></p>
<p>Bravo!</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/vmrun-control-vmware-fusion-from-the-command-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/vmrun-control-vmware-fusion-from-the-command-line</feedburner:origLink></item>
		<item>
		<title>Scripting DynDNS</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/A0LfbC-UBHU/scripting-dyndns</link>
		<comments>http://usefulthings.org.uk/index.php/archives/scripting-dyndns#comments</comments>
		<pubDate>Wed, 10 Dec 2008 22:50:55 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[dyndns]]></category>

		<guid isPermaLink="false">http://usefulthings.org.uk/?p=173</guid>
		<description><![CDATA[I recently needed to bulk load some entries to the DynDNS custom DNS service, I ended up using wget and a couple of bash for loops. This was the crux of it: To login: wget --keep-session-cookies \ --save-cookies cookies.txt \ --post-data="__login=1&#38;username=${USERNAME}&#38;password=${PASSWORD}" \ https://www.dyndns.com/account/ To check you are logged in: wget --keep-session-cookies \ --load-cookies cookies.txt \ [...]]]></description>
			<content:encoded><![CDATA[<p>I recently needed to bulk load some entries to the DynDNS custom DNS service, I ended up using wget and a couple of bash for loops. This was the crux of it:</p>
<p>To login:</p>
<pre>
wget --keep-session-cookies \
--save-cookies cookies.txt \
--post-data="__login=1&amp;username=${USERNAME}&amp;password=${PASSWORD}" \

https://www.dyndns.com/account/
</pre>
<p>To check you are logged in:</p>
<pre>
wget --keep-session-cookies \
--load-cookies cookies.txt \

https://www.dyndns.com/account/services/zones/dns/
</pre>
<p>grep the page for &#8216;Logged&#8217; you should see it say something like &#8216;Logged in user: blah&#8217;.</p>
<p>Also look towards the bottom of the page for the &#8216;multiform&#8217; hidden form element, you need the value which is a string, something like &#8216;jaoEEPpxzAhfadQZ/dpO/A341374&#8242;</p>
<p>To add an entry:</p>
<pre>
NAME=test
IP=1.2.3.4
MULTIFORM="jaoEEPpxzAhfadQZ/dpO/A341374"
wget --keep-session-cookies \
--load-cookies cookies.txt \
--post-data="name_new=${NAME}&amp;ttl_new=600&amp;type_new=A&amp;data_new=${IP}&amp;submit=submit&amp;multiform=${MULTIFORM}" \

https://www.dyndns.com/account/services/zones/dns/
</pre>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/scripting-dyndns/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/scripting-dyndns</feedburner:origLink></item>
		<item>
		<title>Solaris Ping</title>
		<link>http://feedproxy.google.com/~r/Usefulthingsorguk/~3/6akRbjP3z6M/solaris-ping</link>
		<comments>http://usefulthings.org.uk/index.php/archives/solaris-ping#comments</comments>
		<pubDate>Fri, 14 Nov 2008 11:59:00 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://usefulthings2.wordpress.com/2008/11/14/solaris-ping/</guid>
		<description><![CDATA[I never remember how to make Solaris ping show the time of each ping, like GNU Ping does, without any arguments the output is like: % ping foo foo is alive % If you want to see the time of each ping, use -s which makes it more like the GNU Ping you find on [...]]]></description>
			<content:encoded><![CDATA[<p>I never remember how to make Solaris ping show the time of each ping, like GNU Ping does, without any arguments the output is like:
<pre>% ping foo
foo is alive
%</pre>
<p>If you want to see the time of each ping, use -s which makes it more like the GNU Ping you find on linux:</p>
<pre>% ping -s foo
PING foo: 56 data bytes
64 bytes from foo.somedomain.com (10.44.101.16): icmp_seq=0. time=0. ms
64 bytes from foo.somedomain.com (10.44.101.16): icmp_seq=1. time=0. ms
^C
----foo PING Statistics----
2 packets transmitted, 2 packets received, 0% packet loss
round-trip (ms)  min/avg/max = 0/0/0
%</pre>
<p>That is all.</p>
]]></content:encoded>
			<wfw:commentRss>http://usefulthings.org.uk/index.php/archives/solaris-ping/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://usefulthings.org.uk/index.php/archives/solaris-ping</feedburner:origLink></item>
	</channel>
</rss>
