<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>kickstart &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/kickstart/</link>
	<description>Feed of posts on WordPress.com tagged "kickstart"</description>
	<pubDate>Sun, 29 Nov 2009 21:41:10 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Install RHEL/CentOS secara otomatis menggunakan kickstart]]></title>
<link>http://moefid.net/2009/11/24/install-rhel-centos-secara-otomatis-menggunakan-kickstart/</link>
<pubDate>Tue, 24 Nov 2009 08:31:15 +0000</pubDate>
<dc:creator>Moefid</dc:creator>
<guid>http://moefid.net/2009/11/24/install-rhel-centos-secara-otomatis-menggunakan-kickstart/</guid>
<description><![CDATA[Untuk mengotomatiskan proses instalasi linux RHEL/Centos kita dapat menggunakan kickstart. File kick]]></description>
<content:encoded><![CDATA[Untuk mengotomatiskan proses instalasi linux RHEL/Centos kita dapat menggunakan kickstart. File kick]]></content:encoded>
</item>
<item>
<title><![CDATA[Prebuilt distributions part 2]]></title>
<link>http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-2/</link>
<pubDate>Mon, 23 Nov 2009 17:35:07 +0000</pubDate>
<dc:creator>rich</dc:creator>
<guid>http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-2/</guid>
<description><![CDATA[In part 1 I discussed how these days Linux Live CDs usually come with a prebuilt disk image of the d]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-1/">In part 1</a> I discussed how these days Linux Live CDs usually come with a prebuilt disk image of the distro which is simply copied over to the hard disk during installation.  (The &#8220;old&#8221; method was to rpm/dpkg-install the packages which is much more time-consuming).  However my first test wasn&#8217;t very successful because I was using the &#8220;cp&#8221; command to copy files.</p>
<p><a href="http://fedoraproject.org/wiki/Anaconda">Anaconda (the Fedora installer)</a> is smarter than this.  It &#8220;dd&#8221;s the prebuilt disk image to the hard disk and then uses an ext2/3/4 utility called <a href="http://linux.die.net/man/8/resize2fs">resize2fs</a> to expand it to the correct size.</p>
<p>I changed the <a href="http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-1/#more-985">previous guestfish script</a> to take this approach.</p>
<p>The new/Anaconda approach is much faster.  Our total time is down from over 18 minutes to <b>2&#189; minutes</b> (approximately 2 minutes for the &#8220;dd&#8221;, 2 <i>seconds</i> for the resize2fs, and the rest of the time taken doing the partitioning and LVM creation).</p>
<p>Unfortunately we have to leave Ubuntu behind at this point.  Ubuntu ships with a squashfs, and I&#8217;m not aware of any way to turn this into an ext3 partition efficiently (except to use &#8220;cp&#8221; which we showed in part 1 was very slow).  The new script only works with Fedora Live CD ISOs.</p>
<p>The new script is after the cut.</p>
<p><!--more--></p>
<pre style="background-color:#fcfcfc;border-left:6px solid #f0f0f0;margin-left:1em;font-size:120%;padding:5px;">
<font color="red">#!/bin/bash -</font>

function usage ()
{
    echo "virt-prebuilt.sh live.iso disk.img size"
    echo "  where 'live.iso' is a Fedora Live ISO"
    echo "        'disk.img' is the target disk image"
    echo "        'size' is the target size in Gigabytes"
    exit 1
}

if [ $# -ne 3 ]; then
    usage
fi

<font color="red"># Work out size of target LV.</font>
target_boot_mb=200
target_lv_mb=$(($3 * 1024 - $target_boot_mb - 128))

<font color="red"># Run guestfish.</font>
time \
guestfish -x -a "$1" &#60;&#60;EOF
<font color="red"># The source ISO will be /dev/sda.  The target drive will be /dev/sdb.</font>
<font color="green">alloc "$2" "$3G"
run

<font color="red"># Get to the packed ext3 filesystem.</font>
mkmountpoint /t
mount-ro /dev/sda /t
mkmountpoint /tt
mount-loop /t/LiveOS/squashfs.img /tt

<font color="red"># Make a separate /boot partition on the target disk.</font>
sfdiskM /dev/sdb ",$target_boot_mb ,"
mkfs ext3 /dev/sdb1

<font color="red"># Make the root LV.</font>
pvcreate /dev/sdb2
vgcreate vg_live /dev/sdb2
lvcreate lv_live vg_live $target_lv_mb

<font color="red"># Copy the packed filesystem to the root LV and resize.</font>
time dd /tt/LiveOS/ext3fs.img /dev/vg_live/lv_live
time resize2fs /dev/vg_live/lv_live

<font color="red"># Mount the root filesystem and copy /boot to /dev/sdb1</font>
mkmountpoint /root
mount /dev/vg_live/lv_live /root
mkmountpoint /boot
mount /dev/sdb1 /boot
glob cp-a /root/boot/* /boot
df-h

<font color="red"># Unmount everything and exit.</font>
unmount /root
unmount /boot
unmount /tt
unmount /t

echo Done.</font>
EOF
</pre>
<p>Anaconda doesn&#8217;t just do a straight copy, it also does a whole lot of munging of the filesystem afterwards, including replacing <code>/etc/fstab</code> and rebuilding the initramfs.  The script above avoids that so you can only boot it in qemu using an external -kernel and -initrd.</p>
<p>I think this technique is promising.  It certainly sounds wonderful to &#8220;stamp out&#8221; new distro installs in a minute or two.  But &#8230;</p>
<ol>
<li> Distributions would all have to start shipping filesystem images.
<li> Distro-specific munging would have to be kept to an absolute minimum.
<li> Get rid of initramfs&#8217;s that contain hard-coded details about the specific platform on which they boot (a very good idea in general IMHO).
</ol>
<p>In part 3 I&#8217;m going to compare how this approach compares to others: virt-install, manual installation, kickstart, cobbler, debootstrap and ubuntu-vm-builder.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Prebuilt distributions part 1]]></title>
<link>http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-1/</link>
<pubDate>Mon, 23 Nov 2009 11:02:23 +0000</pubDate>
<dc:creator>rich</dc:creator>
<guid>http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-1/</guid>
<description><![CDATA[Previously I took a look at unpacking Fedora and Ubuntu live CDs to find out what&#8217;s inside the]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://rwmj.wordpress.com/2009/11/21/looking-closer-at-fedora-ubuntu-live-cds/">Previously I took a look at unpacking Fedora and Ubuntu live CDs</a> to find out what&#8217;s inside them and to ask the question can we use the prebuilt filesystem image that these live CDs contain to quickly create a Fedora or Ubuntu &#8220;all-defaults&#8221; virtual machine?</p>
<p>This is my first attempt, and it&#8217;s not successful, but it does demonstrate a large and interesting <a href="http://libguestfs.org/guestfish.1.html">guestfish</a> <a href="http://libguestfs.org/recipes.html">script</a> doing a non-trivial amount of work.</p>
<p>This script:</p>
<ol>
<li> mounts the prebuilt filesystem from either a Fedora or Ubuntu live CD
<li> creates a disk image with a 200 MB /boot partition and a single / (root) logical volume covering the remainder of the disk
<li> uses the <a href="http://libguestfs.org/guestfish.1.html#cp_a">cp -a command</a> to recursively copy the prebuilt filesystem to the disk
</ol>
<p>Where it fails is that &#8220;cp&#8221; isn&#8217;t very fast.  On my local machine it took 18 minutes to copy all the files across, which means this isn&#8217;t a practical &#8220;instant install&#8221; method.  (I didn&#8217;t in the end try to boot the final disk image).</p>
<p>In part 2 this week, I&#8217;ll look at the approach that <a href="http://fedoraproject.org/wiki/Anaconda">anaconda</a> takes: It dd&#8217;s the disk image and then runs <a href="http://linux.die.net/man/8/resize2fs">resize2fs</a> on it to expand it into the available space.</p>
<p>In part 3 I&#8217;ll compare this approach to others: virt-install, manual installation, kickstart, cobbler, debootstrap and ubuntu-vm-builder.</p>
<p>The script itself follows after the cut:</p>
<p><!--more--></p>
<pre style="background-color:#fcfcfc;border-left:6px solid #f0f0f0;margin-left:1em;font-size:120%;padding:5px;">
<font color="red">#!/bin/bash -</font>

function usage ()
{
    echo "virt-prebuilt.sh live.iso disk.img size"
    echo "  where 'live.iso' is a Fedora or Ubuntu Live ISO"
    echo "        'disk.img' is the target disk image"
    echo "        'size' is the target size in Gigabytes"
    exit 1
}

if [ $# -lt 3 ]; then
    usage
fi

<font color="red"># Make the commands to unpack the ISO.
# See:
# http://rwmj.wordpress.com/2009/11/21/looking-closer-at-fedora-ubuntu-live-cds</font>
case $(basename $1) in
    ubuntu-*.iso)
	mount_cmds=<font color="green">"
mkmountpoint /t1
mount-ro /dev/sda /t1
mkmountpoint /fs
mount-loop /t1/casper/filesystem.squashfs /fs
"</font>
	;;
    Fedora-*Live.iso)
	mount_cmds=<font color="green">"
mkmountpoint /t1
mount-ro /dev/sda /t1
mkmountpoint /t2
mount-loop /t1/LiveOS/squashfs.img /t2
mkmountpoint /fs
mount-loop /t2/LiveOS/ext3fs.img /fs
"</font>
	;;
    --help&#124;-help)
	usage
	;;
    *)
	echo "$1: unknown ISO image type (must be Ubuntu or Fedora ISO)"
	usage
esac

<font color="red"># Work out size of target LV.</font>
target_boot_mb=200
target_lv_mb=$(($3 * 1024 - $target_boot_mb - 128))

<font color="red"># Run guestfish.</font>
guestfish -x -a "$1" &#60;&#60;EOF
<font color="red"># The source ISO will be /dev/sda.  The target drive will be /dev/sdb.</font>
<font color="green">alloc "$2" "$3G"
run

<font color="red"># This mounts up the ISO filesystem on /fs</font>
$mount_cmds

echo fstab on target:
cat /fs/etc/fstab

<font color="red"># Make a separate /boot partition on the target disk.</font>
sfdiskM /dev/sdb ",$target_boot_mb ,"
mkmountpoint /target
mkfs ext3 /dev/sdb1

<font color="red"># Make the root LV.</font>
pvcreate /dev/sdb2
vgcreate vg_live /dev/sdb2
lvcreate lv_live vg_live $target_lv_mb
mkfs ext3 /dev/vg_live/lv_live

<font color="red"># Mount up the target disks.</font>
mount /dev/vg_live/lv_live /target
mkdir /target/boot
mount /dev/sdb1 /target/boot

<font color="red"># Copy everything across.</font>
time cp-a /fs /target

unmount /target
-unmount /fs
-unmount /t2
-unmount /t1

echo Done.</font>
EOF
</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Classic 80's TV - don't put your foot down!]]></title>
<link>http://08fx.wordpress.com/2009/11/12/classic-80s-tv-dont-put-your-foot-down/</link>
<pubDate>Thu, 12 Nov 2009 14:21:42 +0000</pubDate>
<dc:creator>08fx</dc:creator>
<guid>http://08fx.wordpress.com/2009/11/12/classic-80s-tv-dont-put-your-foot-down/</guid>
<description><![CDATA[Whilst riding my push bike to work the other day along a rather muddy and leafy road I remembered th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Whilst riding my push bike to work the other day along a rather muddy and leafy road I remembered the classic 80&#8217;s TV programme junior kick start.</p>
<p>Presented by Blue Peter&#8217;s Peter Purves, contestants would compete in motorcycle time trials over an obstacle course. You would have seconds added to your time if you put your foot down or touched or knocked an obsacle over. I remember aged 8 pretending to be in Kick start whilst riding round on my Raleigh BMX mini burner!</p>
<p>Check out this classic clip from Junior Kickstart when Mark Scofield fell from an obstacle, two St Johns Ambulance men rush to help him but comically fall over!</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/y4OosFHsjjo&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/y4OosFHsjjo&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mysterious Letters]]></title>
<link>http://theclickclickpress.com/2009/10/30/mysterious-letters/</link>
<pubDate>Fri, 30 Oct 2009 14:43:47 +0000</pubDate>
<dc:creator>theclickclickpress</dc:creator>
<guid>http://theclickclickpress.com/2009/10/30/mysterious-letters/</guid>
<description><![CDATA[I defy any decent human being not to read these letters and have their heart-warmed, their day brigh]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I defy any decent human being not to read <a title="Mysterious Letters" href="http://www.mysteriousletters.blogspot.com/" target="_blank">these</a> letters and have their heart-warmed, their day brightened or their face smiled. It&#8217;s a beautiful, beautiful idea and you can even get involved in the next phase over at <a title="Kickstart" href="http://www.kickstarter.com/projects/646138685/mysterious-letters" target="_blank">Kickstart</a> (which, in itself, is also a beautiful beautiful idea).</p>
<p>Michael and Lenka decided one day to write a letter to every person in the world, starting with <a title="Cushendall" href="http://en.wikipedia.org/wiki/Cushendall" target="_blank">Cushendall</a> in Northern Ireland. Their letters are generally about not much at all &#8211; that isn&#8217;t intended to do a dis-service to them, as this makes the project even more momentous &#8211; that they find something new to write about with each letter.</p>
<p><img class="alignnone size-full wp-image-339" title="07_dalriada_avenue" src="http://theclickclickpress.wordpress.com/files/2009/10/07_dalriada_avenue.jpg" alt="07_dalriada_avenue" width="395" height="509" /></p>
<p><img class="alignnone size-full wp-image-340" title="19_dalriada_crescent" src="http://theclickclickpress.wordpress.com/files/2009/10/19_dalriada_crescent.jpg" alt="19_dalriada_crescent" width="395" height="641" /></p>
<p><img class="alignnone size-full wp-image-341" title="20_high_street" src="http://theclickclickpress.wordpress.com/files/2009/10/20_high_street.jpg" alt="20_high_street" width="395" height="531" /></p>
<p>Head on over <a title="Mysterious Letters" href="http://www.mysteriousletters.blogspot.com/" target="_blank">here</a>, for more wonderful letters and <a title="Kickstarter" href="http://www.kickstarter.com/projects/646138685/mysterious-letters" target="_blank">here</a>, to get involved!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Project funded! Congrats Matt]]></title>
<link>http://aldorf.wordpress.com/2009/10/06/project-funded-congrats-matt/</link>
<pubDate>Tue, 06 Oct 2009 07:34:38 +0000</pubDate>
<dc:creator>aldorf</dc:creator>
<guid>http://aldorf.wordpress.com/2009/10/06/project-funded-congrats-matt/</guid>
<description><![CDATA[Matt Held got Phase II of his Facebook paintings funded thru Kickstarter. That is awesome. Congratul]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.heldstudios.com" target="_blank">Matt Held</a> got Phase II of his Facebook paintings funded thru <a href="http://www.kickstarter.com" target="_blank">Kickstarter</a>. That is awesome. Congratulations Matt and rock on.</p>
<p><a href="http://www.facebook.com/album.php?aid=2034158&#38;id=1333585700#/mattheldstudios?ref=ts" target="_blank"><img class="alignleft size-full wp-image-224" title="Matt Held" src="http://aldorf.wordpress.com/files/2009/10/matt-held.jpg" alt="Matt Held" width="350" height="466" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Camper Kart by Kevin Cyr]]></title>
<link>http://whitewallsnews.com/2009/10/05/camper-kart-by-kevin-cyr/</link>
<pubDate>Mon, 05 Oct 2009 15:00:32 +0000</pubDate>
<dc:creator>whitewallssf</dc:creator>
<guid>http://whitewallsnews.com/2009/10/05/camper-kart-by-kevin-cyr/</guid>
<description><![CDATA[Kevin Cyr is a talented painter known for his objective portraits of vehicles. Worn and torn, these ]]></description>
<content:encoded><![CDATA[Kevin Cyr is a talented painter known for his objective portraits of vehicles. Worn and torn, these ]]></content:encoded>
</item>
<item>
<title><![CDATA[Designing Obama | The Book]]></title>
<link>http://sophistikaet.com/2009/09/18/designing-obama-the-book/</link>
<pubDate>Fri, 18 Sep 2009 21:24:37 +0000</pubDate>
<dc:creator>hmb</dc:creator>
<guid>http://sophistikaet.com/2009/09/18/designing-obama-the-book/</guid>
<description><![CDATA[The Obama presidential campaign was innovative. For the first time in American politics, a candidate]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone size-full wp-image-1532" title="designingobama" src="http://lambsandgoats.wordpress.com/files/2009/09/designingobama.jpg" alt="designingobama" width="600" height="509" /></p>
<p>The Obama presidential campaign was innovative. For the first time in American politics, a candidate used art and design to bring together the American people—capturing their voices in a visual way.</p>
<p>The Design Director of the Obama campaign, Scott Thomas, has collaborated with artists  				and designers to create <em>Designing Obama</em>, a chronicle of the art from the historic campaign.  				Get the inside story on how design was used by the campaign, and scope out the pieces,  				created unofficially, by grassroots supporters.</p>
<p>The 360-page book is full-color and hardbound, highly crafted with an embossed sleeve. Forewords written by Steven Heller and Michael Bierut.</p>
<p>If you would like to order multiple copies please pledge the total for the quantity you  				desire and email <a href="mailto:orders@designing-obama.com">orders@designing-obama.com</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Kenya: water or the web?]]></title>
<link>http://washafrica.wordpress.com/2009/09/15/kenya-water-or-the-web/</link>
<pubDate>Tue, 15 Sep 2009 21:42:06 +0000</pubDate>
<dc:creator>dietvorst</dc:creator>
<guid>http://washafrica.wordpress.com/2009/09/15/kenya-water-or-the-web/</guid>
<description><![CDATA[What does Africa need more &#8211; easy access to fresh water or better cheaper internet connections]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>What does Africa need more &#8211; easy access to fresh water or better cheaper internet connections?</p>
<p>Rory Cellan-Jones, who <a href="http://www.bbc.co.uk/blogs/technology/">blogs on technology</a> for the BBC, travels to Mombassa, Kenya to see how a local NGO is using broadband Internet to bring water pumps to farmers. Here are excerpts from his blog entry of 15 September 2009.</p>
<div class="wp-caption alignleft" style="width: 185px"><a href="http://kickstart.org/tech/technologies/micro-irrigation.html"><img class="   " style="margin:7px;" src="http://kickstart.org/images/pump_photo.jpg" alt="The Super MoneyMaker Pump. Photo: KickStart" width="175" height="253" /></a><p class="wp-caption-text">The Super MoneyMaker Pump. Photo: KickStart</p></div>
<p>&#8220;My guide was Martin Rogena, a Kenyan working for an organisation called <a href="http://kickstart.org">KickStart</a>, which supplies <a href="http://kickstart.org/tech/technologies/micro-irrigation.html">irrigation pumps</a> to farmers across East Africa. Martin is also a big believer in the power of the internet to transform countries like Kenya&#8221;.</p>
<p>&#8220;We set off [to] a poor suburb of Mombasa [where every shop] seemed to be selling mobile phones or offering to recharge them &#8211; and every few yards there was a stand selling fresh water at around 20p a litre&#8221;.</p>
<p>&#8220;Martin explained that Kickstart was a charity but it didn&#8217;t give away the &#8220;Moneymaker&#8221; pumps it supplies [but was charging] around £50 for a portable pump &#8211; far short of the cost of making and supplying them &#8211; and they are now in use right across drought-stricken areas of Kenya, Tanzania and Uganda&#8221;.</p>
<p>&#8220;[At a] little settlement [...] about 10 miles from the beach where the Seacom cable bringing broadband to the region comes ashore, [Cellan-Jones met a group of] farmers who [...] had clubbed together to buy a pump. [The farmers supported around 20 people by growing tomatoes,] maize and some other vegetables&#8221;.</p>
<p>&#8220;These people had very little [and there was no electricity] but nearly all of them had mobile phones. [...] The farmers explained that the phones [...] had made them feel much more connected to the rest of Kenya&#8221;.</p>
<div class="wp-caption alignright" style="width: 236px"><img class="  " style="margin:7px;" src="http://www.bbc.co.uk/blogs/technology/martin_rory226.jpg" alt="Martin Rogena of Kickstart on broadband. Photo: BBC" width="226" height="170" /><p class="wp-caption-text">Martin Rogena of Kickstart on broadband. Photo: BBC</p></div>
<p>&#8220;Outside one of the huts, Martin Rogena got out his laptop, plugged in a broadband <a href="http://en.wikipedia.org/wiki/Dongle">dongle</a> [broadband wireless USB adaptor], and went online at a reasonable speed &#8211; he was picking up the signal from the nearby mast, which is in turn linked to the fibre-optic cable at the coast. But why, I asked, did a faster internet connection matter to a charity which was trying to alleviate the impact of drought?&#8221;.</p>
<p>&#8220;He explained that Kickstart collects data from every pump it supplies across the region, sending staff armed with laptops to talk to the farmers and make sure they are getting the right results. From its Nairobi office, It also needs to communicate with donors around the world and with its branch office in Tanzania&#8221;.</p>
<p>&#8220;The charity is already finding that faster broadband is making communication easier &#8211; and is cutting costs, though perhaps not to quite the extent that has been promised&#8221;.</p>
<p>&#8220;The farmers had never been on the internet &#8211; but they too were excited about what it might mean for them. &#8220;It will help us find information to help us improve the way we farm.&#8221; said one. &#8220;We will use it for marketing our crops to other countries outside Kenya,&#8221; said another&#8221;.</p>
<p>&#8220;We headed back into Mombasa, past lines of women carrying water containers on their heads. This country is short of lots of things &#8211; water, electricity, books for schools. But there is a great thirst for better connectivity &#8211; and who are we to say that they&#8217;ve got their priorities wrong?&#8221;.</p>
<p><strong>Source</strong>: Rory Cellan-Jones, <a href="http://www.bbc.co.uk/blogs/technology/2009/09/day_two_water_or_the_web.html">BBC dot.life</a>, 15 Sep 2009</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Have you read Robin Sloan's Mr. Penumbra's Twenty-Four-Hour Book Store?]]></title>
<link>http://monjayaki.wordpress.com/2009/09/14/have-you-read-robin-sloans-mr-penumbras-twenty-four-hour-book-store/</link>
<pubDate>Mon, 14 Sep 2009 23:39:08 +0000</pubDate>
<dc:creator>Jayson</dc:creator>
<guid>http://monjayaki.wordpress.com/2009/09/14/have-you-read-robin-sloans-mr-penumbras-twenty-four-hour-book-store/</guid>
<description><![CDATA[If not, then take a few min and you should enjoy it. Then check out his other project, referred to b]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If not, then take a few min and you should enjoy it. Then check out his other project, referred to below.</p>
<p><a href="http://robinsloan.com/2009/41/" target="_blank">http://robinsloan.com/2009/41/</a></p>
<p>This story was read by someone in a pod cast recently and Cory blogged it. I bookmarked the text and looked into this Robin Sloan that day because I had some time, but not enough to enjoy reading yet. I found the guy has some pretty neat ideas for his current book, and I do not mean the content as we actually have no idea what it will be about; his ideas for getting it done are interesting. It seems, for naming the main character he made Google Adwords campains for names he liked, and associated keywords relevant to the book, I guess. This produced a ranking by the public, based on search terms, and he found which name is most popular. Another interesting thing, and the reason I am posting this here, is how he is getting the work done; he is using VC, sort of. He made the book a  projecton this funding site kickstarter.</p>
<p><a target="_blank" href='http://www.kickstarter.com/projects/robinsloan/robin-writes-a-book-and-you-get-a-copy'><img border='0' src='http://www.kickstarter.com/projects/robinsloan/robin-writes-a-book-and-you-get-a-copy/widget/card.jpg' /></a><br />
 </p>
<p>Make a donation to pay for his salary to write a book and get the book. I signed up before reading the short linked to in the beginning of this post, just because I thought it was a cool idea. Now I have read his short and am satisfied with my donation.</p>
<p>Check it out</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Robin Sloan + Adwords]]></title>
<link>http://runmotherfuckerrun.wordpress.com/2009/09/09/robin-sloan-adwords/</link>
<pubDate>Wed, 09 Sep 2009 20:31:45 +0000</pubDate>
<dc:creator>runmotherfuckerrun</dc:creator>
<guid>http://runmotherfuckerrun.wordpress.com/2009/09/09/robin-sloan-adwords/</guid>
<description><![CDATA[Robin Sloan escreve um dos sites mais fodas que tem por aí, SnarkMarket, que descobri via Noah. A úl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Robin Sloan escreve um dos sites mais fodas que tem por aí, <a href="http://snarkmarket.com/blog/" target="_blank">SnarkMarket</a>, que descobri via <a href="http://www.noahbrier.com/" target="_blank">Noah</a>. A última do cara envolve a <a href="http://www.kickstarter.com" target="_blank">KickStart</a>, uma empresa com uma premissa foda.  Pesquisem sobre pois eu tenho mais o que fazer do que ficar dando link na boquinha de vagabundo. Adiante.</p>
<p>Deixemos que o <a href="http://www.kickstarter.com/projects/robinsloan/robin-writes-a-book-and-you-get-a-copy/posts/1210" target="_blank">Robin explique</a>:</p>
<blockquote><p>In this book, I&#8217;m trying to craft a central character with some of that same iconic strangeness that makes Sherlock Holmes so appealing. There&#8217;s a lot that goes into that, but for now, focus on the name. Sherlock Holmes. It leaves an indelible mark on the brain.</p>
<p>So, I have a name in mind for this character, and I was looking for a meaningful way to test it out—without giving it away.</p>
<p>That&#8217;s where AdWords comes in.</p></blockquote>
<blockquote><p>Here&#8217;s what I did:</p>
<p>Created a campaign attached to a bundle of search terms: mystery, detective story, sherlock holmes, noir, and more like those.</p>
<p>Came up with a whole set of names, basically wide variations on a theme. One was my original pick, but I liked all of them. Then, I created an ad for each one, all with the same body text but each with a different name swapped in for the headline.</p>
<p>Allocated a small budget ($40, to be exact) and kicked off the campaign. And wow there are a lot of people searching for stuff on Google. Over the span of 24 hours, my ads made about 100,000 impressions.</p></blockquote>
<p><a href="http://runmotherfuckerrun.wordpress.com/files/2009/09/robin.jpg"><img class="alignleft size-full wp-image-3518" title="robin" src="http://runmotherfuckerrun.wordpress.com/files/2009/09/robin.jpg" alt="robin" width="465" height="541" /></a></p>
<p>Conclui-se da imagem o seguinte:</p>
<blockquote><p>The four names at the top all did about the same. I wouldn&#8217;t choose a name with an 0.23% click-through rate over a name with an 0.20% just because of that measly 0.03 margin.</p>
<p>But the 0.07% at the bottom? I think there&#8217;s real signal there. As it happens, the name at 0.07% was one I really liked—but it didn&#8217;t make the cut. Alas.</p>
<p>My original idea—the name I came into the exercise with—is the one at 0.21%. So basically, I see this as validation: The name works. People don&#8217;t see it and go &#8220;ew&#8221; or &#8220;meh.&#8221;</p></blockquote>
<p>Quando nego falar que a internet é o melhor focus group que tem, leve muito a sério. Mas não leve os focus groups a sério demais.</p>
<p>Robin conclui:</p>
<blockquote><p>But okay, I&#8217;ll be honest. <strong>This was mostly just an excuse to try a new tool</strong>. Any nerd will tell you that tools can provide their own intrinsic rewards. There&#8217;s an aspect of exploration to it, too: <strong>you&#8217;re pressing out into new tool-territory, learning about what you can and can&#8217;t do.</strong></p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[IJL - International Jewellery London 2009]]></title>
<link>http://clarepardoephioro.wordpress.com/2009/09/07/ijl-international-jewellery-london/</link>
<pubDate>Mon, 07 Sep 2009 12:31:21 +0000</pubDate>
<dc:creator>clarepardoephioro</dc:creator>
<guid>http://clarepardoephioro.wordpress.com/2009/09/07/ijl-international-jewellery-london/</guid>
<description><![CDATA[IJL is here! &#8220;The Uk&#8217;s only dedicated jewellery event, where the most talented, cutting ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h3>IJL is here!</h3>
<p>&#8220;The Uk&#8217;s only dedicated jewellery event, where the most talented, cutting edge British and International designers and manufacturers showcase an inspiring collection of <a href="http://www.phioro.com" target="_blank">jewellery, contemporary</a> and classic.&#8221;</p>
<p>Yesterday I visited <a href="http://www.jewellerylondon.com/" target="_blank">IJL</a> to suss out the compeition and to introduce my links with Dubai to the potential designers whose work I think would be very popular. I am currently setting up a bridge between the two countries and will be organising Jewellery Parties in <a href="http://goingtomeet.com/img/lx/jewel.jpg" target="_blank">Dubai </a>to target a market whom don&#8217;t have the freedom to try on jewellery within shops as we Westerners do. As you can imagine, the <a href="http://kelliegoins.files.wordpress.com/2009/07/hijab.jpg" target="_blank">hijab</a> is quite restrictive in being able to see if a piece of jewellery suits you and many muslim women are forbidden to remove it in public places.</p>
<p><a href="http://www.jewellerylondon.com/" target="_blank">IJL</a> is a collection of everyone from the jewellery industry. It is a treasure trove of <a href="http://www.davidandsonsjewelers.com/files/uploads/1/image/san-diego-diamonds.jpg" target="_blank">dazzling gems</a>, precious and semi-precious stones, pearls dripping from stands, diamonds scattered in glass boxes. It has the newest most contemporary designs under the same roof as the biggest brands and in contrst the very commercial enterprises. It is a jewellery lovers HEAVEN.</p>
<p>Among the designers I picked out there are a few who really shone through. In particular <a href="http://www.feiliu.co.uk/page67.asp" target="_blank">Fei Liu Fine Jewellery</a>, <a href="http://www.babette-wasserman.com/jewellerypopups/3.htm" target="_blank">Babette Wasserman</a> and <a href="http://www.jasminealexander.com/" target="_blank">Jasmine Alexander</a>. The latter of which has picked up a lot of interest from the press for her beautiful &#8216;Bleeding Hearts and Artists&#8230;precious patterns&#8217; necklace. This consists of an 18kt rose gold heart (human in form) set with brilliant cut rubies that represent the dripping blood! Unfortunately I don&#8217;t have an image of it but check out the &#8216;Index&#8217; section of her page and it is listed there &#8211; trust me, you won&#8217;t be disappointed. Jasmine is showing at IJL as part of the &#8216;<a href="http://www.jewellerylondon.com/page.cfm/link=171" target="_blank">Kickstart</a>&#8216; stand K980 hosted by the British Jewellers Association.</p>
<div id="attachment_604" class="wp-caption aligncenter" style="width: 284px"><img class="size-full wp-image-604" title="Babette Wasserman" src="http://clarepardoephioro.wordpress.com/files/2009/09/babette-wasserman1.jpg" alt="Babette Wasserman - Chameleon rings" width="274" height="274" /><p class="wp-caption-text">Babette Wasserman - Chameleon rings</p></div>
<p><a href="http://www.feiliu.co.uk/PAGE75.ASP" target="_blank">Fei Liu</a>&#8217;s work really struck me, I have known him as one-to-watch for a while now, but from a distance! I had the pleasure of meeting him in person at the show and was happy to find him extremely welcoming and charming. His fine jewellery &#8216;Whispering Collection&#8217; incorporates elegant pearls with striking cut precious stones such as Amethysts and Citrines. This takes inspiration from the Orchid Flower and is all set on 18kt white, yellow or black gold.  His divine designs incorporate decorative, pave set, swirling stems which frame beautiful larger stones and catch the light in an indescribable way. Not even the beautiful images on his website can truly represent how stunning this work is. Not only is it beautiful, the well thought out designs are also extremely functional often working as more than one item of jewellery. For example a pendant is also a brooch, a long necklace can also be made into two shorter ones.</p>
<div id="attachment_602" class="wp-caption aligncenter" style="width: 507px"><img class="size-full wp-image-602" title="Fei Liu Image" src="http://clarepardoephioro.wordpress.com/files/2009/09/fei-liu-image.jpg" alt="Fei Liu - Whispering Collection" width="497" height="304" /><p class="wp-caption-text">Fei Liu - Whispering Collection</p></div>
<p>Others to watch out for are the &#8216;Bright Young Gems&#8217; who have been nominated by a prestigious panel of leading editors and industry gurus. These are: Kity Sun, Andy Farrow, Haruko Horikawa, Daisy Knights andAnthony Roussel. Among those, I was especially struck by the innovative and crazy designs of Andy Farrow, using patterned layers of gold and silver over bejewelled back panels this work is sure to create a stir. More elegant and sophisticated was Haruko Horikawa&#8217;s work, more in line with my own, I loved the fluidity of her designs. She says she &#8220;strives to express the essence of the natural world&#8221; and I would agree she has captured the absolute best bits of it!</p>
<p>For more inspiration please go to: <a href="http://www.jewellerylondon.com/" target="_blank">www.jewellerylondon.com/</a> and my website: <a href="http://www.phioro.com">www.phioro.com</a></p>
<p><img src="/Users/Clare/AppData/Local/Temp/moz-screenshot-1.jpg" alt="" /></p>
<p><img src="/Users/Clare/AppData/Local/Temp/moz-screenshot-2.jpg" alt="" /></p>
<table border="0" cellspacing="0" cellpadding="0" width="580">
<tbody>
<tr>
<td></td>
</tr>
<tr>
<td style="height:174px;" valign="top">
<table style="height:100%;" border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td></td>
</tr>
<tr>
<td style="height:100%;" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td style="padding:2px 8px 0 0;"></td>
</tr>
<tr>
<td style="padding:2px 8px 0 0;"></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ESX 3.5 U4 Kickstart for IBM xSeries and QLA4050]]></title>
<link>http://virtualandy.wordpress.com/2009/08/27/esx-3-5-u4-kickstart-for-ibm-xseries-and-qla4050/</link>
<pubDate>Thu, 27 Aug 2009 20:10:37 +0000</pubDate>
<dc:creator>vandyblog</dc:creator>
<guid>http://virtualandy.wordpress.com/2009/08/27/esx-3-5-u4-kickstart-for-ibm-xseries-and-qla4050/</guid>
<description><![CDATA[This was our shop&#8217;s first real dive into kickstarts. The material I read in Visible Ops really]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This was our shop&#8217;s first real dive into kickstarts. The material I read in <a href="http://www.amazon.com/Visible-Ops-Handbook-Implementing-Practical/dp/0975568612">Visible Ops</a> really emphasized track able/repeatable processes for setting up systems. One great way to do that is through kickstart scripts and some kind of version control system. We used <a href="http://subversion.tigris.org/">Subversion</a>.</p>
<p>I&#8217;ve edited a few parts out of this, but I spent a while finding several kickstart scripts that accomplished parts of what we needed. I highly customized one for our environment.</p>
<p>What it does:</p>
<ul>
<li>Configures licensing for the host using a license server</li>
<li>Configures NTP</li>
<li>Adds users, expires their accounts and configures a sudo group</li>
<li>MOTD</li>
<li>Configures NICs and VMware ESX Networking</li>
<li>Creates a script to download and install IBM iSCSI Host Utilities Kit</li>
<li>Creates a script to download and install QLA4050C BIOS and firmware updates</li>
</ul>
<p>Thanks to <a href="http://blog.core-it.com.au/?p=147">Leo&#8217;s ESX 3.5 Kickstart script – part 3</a>.</p>
<p>You will need to download IBM iSCSI Host Utilities Kit from IBM and the QLA4050C BIOS and Firmware from QLogic to a server with scp capabilities.</p>
<pre class="brush: jscript;">
# make sure this file is UNIX formatted so the line breaks can be handled.
install
lang en_US.UTF-8
langsupport --default en_US.UTF-8
keyboard us
mouse genericwheelps/2 --device psaux
skipx
network --device eth0 --bootproto static --ip &lt;ip&gt; --netmask &lt;netmask&gt; --gateway &lt;gw&gt; --nameserver &lt;dns1&gt;,&lt;dns2&gt; --hostname &lt;hostname&gt; --addvmportgroup=0 --vlanid=0
# Encrypted root password
rootpw --iscrypted
&lt;password&gt;
firewall --enabled
authconfig --enableshadow --enablemd5
timezone America/Chicago
bootloader --location=mbr
# The following is the partition information you requested
# Note that any partitions you deleted are not expressed
# here so unless you clear all partitions first, this is
# not guaranteed to work
vmaccepteula
# test license server
vmlicense --mode=server --server=27000@&lt;vc&gt; --edition=esxFull --features=vsmp,backup
reboot
firewall --enable
clearpart --exceptvmfs --drives=sda
part /boot --fstype ext3 --size=100 --ondisk=sda
part / --fstype ext3 --size=1800 --grow --maxsize=5000 --ondisk=sda
part swap --size=544 --grow --maxsize=544 --ondisk=sda
part /var/log --fstype ext3 --size=100 --grow --ondisk=sda

%packages
grub
@base

%post
cat &gt; /etc/rc.d/rc3.d/S11servercfg &lt;&lt; EOF

#Configure NTP
echo &quot;Configuring NTP&quot;
chkconfig --level 345 ntpd on
echo &quot;restrict kod nomodify notrap noquery nopeer&quot; &gt; /etc/ntp.conf
echo &quot;restrict 127.0.0.1&quot; &gt;&gt; /etc/ntp.conf
echo &quot;server &lt;ntp&gt; &gt;&gt; /etc/ntp.conf
echo &quot;driftfile /var/lib/ntp/drift&quot; &gt;&gt; /etc/ntp.conf
echo &lt;ntp&gt;&quot; &gt; /etc/ntp/step-tickers
service ntpd start

#Adding users with default password &quot;changeme&quot; generated with `openssl passwd changeme`

echo &quot;Adding users&quot;
adduser &lt;user1&gt; -p MKgX23V6snwoc
chage -d 0 -M 99999 &lt;user1&gt;
adduser &lt;user2&gt; -p MKgX23V6snwoc
chage -d 0 -M 99999 &lt;user2&gt;
adduser &lt;user3&gt;  -p MKgX23V6snwoc
chage -d 0 -M 99999 &lt;user3&gt;
usermod -G wheel user
usermod -G wheel user2
usermod -G wheel user3
echo &quot;Done adding users&quot;

echo &quot;Configuring sudoers&quot;
cat &gt; /etc/sudoers &lt;&lt; SUDO
# sudoers file.
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the sudoers man page for the details on how to write a sudoers file.
#
# Host alias specification
# User alias specification
# Cmnd alias specification
# Defaults specification
Defaults syslog=local2
# User privilege specification
root ALL=(ALL) ALL
# Uncomment to allow people in group wheel to run all commands
%wheel ALL=(ALL) ALL
# Same thing without a password
# %wheel ALL=(ALL) NOPASSWD: ALL
# Samples
# %users ALL=/sbin/mount /cdrom,/sbin/umount /cdrom
# %users localhost=/sbin/shutdown -h now
SUDO
echo &quot;Done configuring sudoers&quot;

echo &quot;Configuring MOTD&quot;
echo &quot;MOTD HERE&quot; &gt; /etc/motd
echo &quot;Done configuring MOTD&quot;

echo &quot;Configuring hosts file&quot;
echo &quot;ip hostname.fqdn hostname&quot; &gt;&gt; /etc/hosts
echo &quot;Done configuring hosts file&quot;

# we have 6 nics
echo &quot;Configuring NIC duplex/speeds&quot;
/usr/sbin/esxcfg-nics -s 1000 -d full vmnic0
/usr/sbin/esxcfg-nics -s 1000 -d full vmnic1
/usr/sbin/esxcfg-nics -s 1000 -d full vmnic2
/usr/sbin/esxcfg-nics -s 1000 -d full vmnic3
/usr/sbin/esxcfg-nics -s 1000 -d full vmnic4
/usr/sbin/esxcfg-nics -s 1000 -d full vmnic5
echo &quot;Configuring NIC duplex/speeds&quot;

echo &quot;Configuring networking&quot;
# VMNetwork
/usr/sbin/esxcfg-vswitch -a vSwitch1
# Blind Switch
/usr/sbin/esxcfg-vswitch -a vSwitch2
# VMkernel
/usr/sbin/esxcfg-vswitch -a vSwitch3
# Add NIC 1 and 3 to vSwitch1 (VMNetwork)
/usr/sbin/esxcfg-vswitch -L vmnic1 vSwitch1
/usr/sbin/esxcfg-vswitch -L vmnic3 vSwitch1
# Add NIC 2 to vSwitch0 (Service Console, already contains NIC 0)
/usr/sbin/esxcfg-vswitch -L vmnic2 vSwitch0
# Add NIC 4 and 5 to vSwitch3 (VMkernel)
/usr/sbin/esxcfg-vswitch -L vmnic4 vSwitch3
/usr/sbin/esxcfg-vswitch -L vmnic5 vSwitch3
# Give appropriate port group labels to vSwitches
/usr/sbin/esxcfg-vswitch -A &quot;Blind Switch&quot; vSwitch2
/usr/sbin/esxcfg-vswitch -A &quot;VMkernel&quot; vSwitch3
/usr/sbin/esxcfg-vswitch -A &quot;VMNetwork&quot; vSwitch1
# Configure IP addresses for service console and VMkernel
/usr/sbin/esxcfg-vswif -i &lt;ip&gt; -n 255.255.255.0 vswif0
/usr/sbin/esxcfg-vmknic -a -i &lt;vmotion address&gt; -n 255.255.255.0 VMotion
/usr/sbin/esxcfg-vswif -E
# Enable SSH Client through firewall
/usr/sbin/esxcfg-firewall -e sshClient
echo &quot;Done configuring networking&quot;

# generate script to download/install HUK, make it executable
echo &quot;Generating host utilities download/install script&quot;
cat &gt; /root/huk-install.sh &lt;&lt; HUK
cd /home/user/
scp user@host:/home/user/ibm_iscsi_esx_host_utilities_3_1.tar.gz .
tar -zxf ibm_iscsi_esx_host_utilities_3_1.tar.gz
cd ibm_iscsi_esx_host_utilities_3_1
./install
echo &quot;Done generating host utilities download/install script&quot;
HUK
chmod a+x /root/huk-install.sh

# generate script to download/install iscli and firmware/BIOS updates, make it executable
echo &quot;Generating iscli and firmware update script&quot;
cat &gt; /root/iscli-script.sh &lt;&lt; ISCLI
cd /home/user/
scp user@host:/home/user/iscli-1.2.00-15_linux_i386.install.tar.gz user@host:/home/user/ql4022rm.BIN user@host:/home/user/VER4032_03_00_01_53.zip .
tar -xvzf iscli-1.2.00-15_linux_i386.install.tar.gz
unzip VER4032_03_00_01_53.zip
chmod +x iscli.dkms.install.sh
./iscli.dkms.install.sh install
# HBA 0
/usr/local/bin/iscli -f 0 /home/user/qla4022.dl
sleep 5
/usr/local/bin/iscli -bootcode 0 /home/user/ql4022rm.BIN
sleep 5
# HBA 1
/usr/local/bin/iscli -f 1 /home/user/qla4022.dl
sleep 5
/usr/local/bin/iscli -bootcode 1 /home/user/ql4022rm.BIN
sleep 5
reboot
ISCLI
echo &quot;Done generating iscli and firmware script&quot;

# Moves this file so it will not be called on next host boot
mv /etc/rc.d/rc3.d/S11servercfg /root/unsw-setup.sh
rm -f /root/system-info
EOF
/bin/chmod a+x /etc/rc.d/rc3.d/S11servercfg
</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Upgrading ESX 3.5 to ESX 3.5 U4 and Virtual Center 2.5 to vCenter 2.5 U4]]></title>
<link>http://virtualandy.wordpress.com/2009/08/27/upgrading-esx-3-5-to-esx-3-5-u4-and-virtual-center-2-5-to-vcenter-2-5-u4/</link>
<pubDate>Thu, 27 Aug 2009 20:10:34 +0000</pubDate>
<dc:creator>vandyblog</dc:creator>
<guid>http://virtualandy.wordpress.com/2009/08/27/upgrading-esx-3-5-to-esx-3-5-u4-and-virtual-center-2-5-to-vcenter-2-5-u4/</guid>
<description><![CDATA[Here&#8217;s the &#8217;script&#8217; read from while doing our ESX upgrades: In general: Do lots of]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Here&#8217;s the &#8217;script&#8217; read from while doing our ESX upgrades:</p>
<p>In general:</p>
<ul>
<li>Do lots of up front work with kickstarts and analysis</li>
</ul>
<p><strong>Each ESX Host</strong></p>
<ul>
<li>Put host in maintenance mode</li>
<li>Shut Down</li>
<li>File request with storage administrator to make only boot LUN is visible to host as we are about to do some potentially damaging operations</li>
<li>Put in new HBA (QLA4050)</li>
<li>Boot to floppy diskette with QLA 4050 BIOS firmware updates</li>
<li>Upgrade HBA BIOS</li>
<li>iFlash</li>
<li>If the system detects a QLx40xx controller, it displays the following message:</li>
<li> QLx40xx Adapter found at I/O address: xxxxxxxx</li>
<li>You will need to enter the adapter address</li>
<li>Select &#8220;FB&#8221; to flash the BIOS. The iFlash program will write flash to the adapter using ql4022rm.BIN found in the same directory.</li>
<li>Reboot. Press CTRL+Q on the second (new) HBA to manage boot settings</li>
<li>Configure Host Adapter according to IP / initiator name</li>
<li>Configure iSCSI Target
<ul>
<li>You will need:</li>
<li> iSCSI name</li>
<li> IP Address</li>
<li> Subnet Mask</li>
<li> Default Gateway</li>
<li> iSCSI Target</li>
<li> IP Address:port</li>
<li> Target Name</li>
<li> Host Boot Settings = MANUAL</li>
<li> Exit and Reboot</li>
</ul>
</li>
<li>Insert ESX 3.5 U4 CD (We don&#8217;t have PXE boot available yet)</li>
<li>Reboot system to boot from ESX 3.5 U4 CD</li>
<li>Install ESX 3.5 U4</li>
<li>type &#8216;<code>esx ks=&#60;url to kickstart file&#62; ksdevice=eth0 method=cdrom</code>&#8216;</li>
<li><a href="http://virtualandy.wordpress.com/2009/08/27/esx-3-5-u4-kickstart-for-ibm-xseries-and-qla4050/">More on the kickstart file is here</a></li>
<li>Press enter. This installs ESX with all appropriate settings. Ask someone for the root password.</li>
<li>Log in as root</li>
<li>sh iscli-script.sh (from the kickstart)</li>
<li>sh huk-install.sh (from the kickstart)</li>
<li>Launch VirtualCenter</li>
<li>Disconnect the host from VirtualCenter (Right click, disconnect)</li>
<li>Reconnect the host to VirtualCenter (Right click, connect)</li>
<li>Enter maintenance mode (so no VMs are vMotioned on)</li>
<li><strong>VMotion doesn&#8217;t get set up correctly via kickstart because the host does not have shared storage. Contact the SAN Administrator to make the other ESX LUNs  visible and rescan.</strong></li>
<li>Delete the VMKernel Switch</li>
<li>Add the VMkernel switch (nic4 and nic5), enabling vmotion. &#60;IP address&#62; subnet &#60;subnet&#62; &#8211; no default GW since not routed</li>
<li>Configuration -&#62; Memory -&#62; Increase Service Console RAM to 800MB</li>
<li>Configure Storage Paths in Active/Passive</li>
<li>Reboot Host (to enact Service Console RAM changes)</li>
<li>Exit Maintenance Mode</li>
</ul>
<p><strong>vCenter Database Server</strong></p>
<ul>
<li>Manually  backup VMware database</li>
</ul>
<pre class="brush: sql;">BACKUP DATABASE [VMWare] TO  DISK =  N'C:\Program Files\Microsoft SQL  Server\MSSQL.1\MSSQL\Backup\VMWare\VMWare_backup_preupgrade.bak' WITH NOFORMAT,  NOINIT,  NAME = N'VMWare-Full Database Backup', SKIP, NOREWIND, NOUNLOAD,  STATS  = 10
	GO</pre>
<ul>
<li>Manually  backup UpdateManager</li>
</ul>
<pre class="brush: sql;">BACKUP DATABASE [UpdateManager] TO  DISK =  N'C:\Program Files\Microsoft SQL  Server\MSSQL.1\MSSQL\Backup\UpdateManager\UpdateManager_backup_preupgrade.bak'  WITH NOFORMAT, NOINIT,  NAME = N'UpdateManager-Full Database Backup', SKIP,  NOREWIND, NOUNLOAD,  STATS = 10
GO
</pre>
<ul>
<li>Grant MSDB owner permissions for SQL user</li>
</ul>
<pre class="brush: sql;">USE [msdb]GO

EXEC sp_addrolemember  N'db_owner', N'USER'

GO</pre>
<p><strong>vCenter Server</strong></p>
<ul>
<li>Log in  as local administrator</li>
<li>Back up  the License File
<ul>
<li><code>copy "C:\Program Files\VMware\VMware  License Server\Licenses\vmware.lic"  \\server\share\vmware-license-backup.lic</code></li>
</ul>
</li>
<li>Mount  vCenter DVD ISO</li>
<li>Back up  sysprep files for templates
<ul>
<li><code>copy C:\Documents and Settings\All  Users\Application Data\VMware\VMware VirtualCenter\sysprep\.*  \\server\share</code></li>
</ul>
</li>
<li>Run vCenter Install</li>
<li>Reboot  Server</li>
<li>Notify  users of upgrades</li>
<li>Schedule  times for VMware Tools Upgrades</li>
</ul>
<p><strong>vCenter Database Server</strong></p>
<ul>
<li>Revoke MSDB owner permissions for SQL user</li>
</ul>
<pre class="brush: sql;">USE [msdb]GO
	EXEC  sp_droprolemember N'db_owner', N'USER'
        GO
</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[bike share program kick off party]]></title>
<link>http://pattycakebakery.wordpress.com/2009/08/22/bike-share-program-kick-off-party/</link>
<pubDate>Sat, 22 Aug 2009 22:36:11 +0000</pubDate>
<dc:creator>pattycakebakery</dc:creator>
<guid>http://pattycakebakery.wordpress.com/2009/08/22/bike-share-program-kick-off-party/</guid>
<description><![CDATA[This Sunday @ 6 p.m. in kickstart&#8217;s parking lot we will be celebrating Columbus&#8217; first b]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone size-medium wp-image-609" title="bike" src="http://pattycakebakery.wordpress.com/files/2009/08/bike2.jpg?w=300" alt="bike" width="300" height="207" /></p>
<p>This Sunday @ 6 p.m. in kickstart&#8217;s parking lot we will be celebrating <a href="http://www.everyonebikes.org/">Columbus&#8217; first bike share program</a>. Come and join us for a bike ride highlighting the businesses in the short north sponsoring this program followed by a party in the parking lot. There will be <a href="http://raddogveg.blogspot.com/">rad dog</a>, free pattycake cupcakes, and much more. We are hoping that a program like this will be developed in the Clintonville area as well. Hope to see you all there.</p>
<p>xo sarah + pattycake</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Why Will the Phone Not Stop Ringing?]]></title>
<link>http://theimaginariumofmycorpulence.wordpress.com/2009/08/18/why-will-the-phone-not-stop-ringing/</link>
<pubDate>Tue, 18 Aug 2009 08:32:56 +0000</pubDate>
<dc:creator>Krispykitchen</dc:creator>
<guid>http://theimaginariumofmycorpulence.wordpress.com/2009/08/18/why-will-the-phone-not-stop-ringing/</guid>
<description><![CDATA[First it&#8217;s the dietician.  With this litany of things I can and cannot do.  2 weeks out from s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft size-medium wp-image-24" style="margin-right:5px;" title="hypercolor" src="http://theimaginariumofmycorpulence.wordpress.com/files/2009/08/hypercolor.jpg?w=300" alt="hypercolor" width="300" height="146" />First it&#8217;s the dietician.  With this litany of things I can and cannot do.  2 weeks out from surgery it&#8217;s weird-ass diet time for me.  Don&#8217;t know if you&#8217;ve heard of Optifast? or Sureslim or Tony Ferguson&#8217;s?  Well that&#8217;s what I have to do for 2 weeks. Liquid fake food.</p>
<p>As it happened our health fund had just asked my husband to participate in a trial of some sort for a new one called Kickstart.  So I got it for free!  It ain&#8217;t cheap so this was a big win.  3 synthetic-fruit flavoured shakes 3 times a day.  Plus 2 cups of vegetables a day &#8211; to keep you regular. Right on!  I feel like an old woman already.</p>
<p>Kickstart wasn&#8217;t so bad.  Tasted ok.  Was pretty filling and each hit was only 139 calories.  I won&#8217;t suggest that I was by any means perfect in my adherence to the Kickstart diet.  I had family birthdays and work lunches that were unavoidable.  And I had more salad than I was supposed to most days.  But I still lost about 8kg in that two weeks so can&#8217;t complain about that!</p>
<p>Next I got a phone call was from the anaesthetist office.  We sent you an invoice that said you needed to pay the fee of $1200 a week before surgery.  The bill arrived a week before surgery.  Thanks for the notice guys.  The call came 3 days later.  So there&#8217;s another $1200 I&#8217;ve gotta pony up this week.  Hadn&#8217;t really planned on that sucker.  Oh well, good thing it&#8217;s pay day!</p>
<p>Finally I got a call from the hospital.  With a litany of questions and instructions that just did my head in.  Clearly the caller had read this list out a million, trillion, billion times.  For me it was my first time and it was WAAAAAY too quick and WAAAAAY too much.  An email follow-up would be have been a worth while exercise cos I forgot stuff I was supposed to do (like showering with anti-bacterial wash for 2 days beforehand &#8211; oops).  Fortunately noone seemed to give a toss on the day.</p>
<p>The day before surgery the hospital called again.  This time to tell me I have to pay $475 dollars on check-in.  I mean, admission.  Well, there&#8217;s another few buckaroos I hadn&#8217;t budgeted for.</p>
<p>All of these calls were so brain numbing. Not in a boring sense&#8230; in a I can&#8217;t compute sense&#8230; too much.</p>
<p>But none of that came close to what was going on in my head.</p>
<p>Second thoughts?  Lordy yes!  None of it seemed real to be honest, until the call came asking for my money.  Then it became so real.  Hyper-real.  In living colour.  Hyper-colour, in fact.  Or not.  (I&#8217;ll let the joke go now, I&#8217;m not one to cling.  Or am I?).</p>
<p>I didn&#8217;t know if it was the right thing to do.  Fear of the unknown was paralysing in many ways.  My ignorance and stupidity was profoundly daft.  For example, I mistakenly believed I would have a hole in my side for the rest of my life.  There is no hole.  I am just an idiot.  Thank god my husband is not.  Many shed tears will attest to my unbounded relief.  Really though, I just questioned everything I was doing.  Then I ignored it and put my head in the sand.  Then I got excited and philosophical.  It changed from day to day.</p>
<p>In the end I stuck with it.  I chose NOT to let my fear paralyse me any more.  God, now I sound like Tony Robbins.  Or the father from Little Miss Sunshine.  Or Tom Cruise in Magnolia.  (let the joke go, loser!).  I just kept on keeping on.  I took faith from those around me who never faltered.  Who believed in me and what I had decided to do.  And so I went under the knife.</p>
<p>And that was that.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Kickstart Your Job Search After A Summer Break ]]></title>
<link>http://sixfigurestart.wordpress.com/2009/08/14/kickstart-your-job-search-after-a-summer-break/</link>
<pubDate>Fri, 14 Aug 2009 11:30:29 +0000</pubDate>
<dc:creator>ccenizalevine</dc:creator>
<guid>http://sixfigurestart.wordpress.com/2009/08/14/kickstart-your-job-search-after-a-summer-break/</guid>
<description><![CDATA[Many of my clients are back from vacations and realizing that the end of summer (and the faster pace]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Many of my clients are back from vacations and realizing that the end of summer (and the faster pace of fall) is coming. For those of you who might have taken a break from your job search to enjoy the summer, see my tips to get back into the swing of things in my latest post for Vault.com Insider Career Advice:</p>
<p><a href="http://bit.ly/2XP2nk">http://bit.ly/2XP2nk</a><a href="http://www.vault.com/wps/portal/na/!ut/p/c5/hZDbboJAEIafpU-wCygul8j5sAsIq8gNQVEKKlChIDx9t4kXbVLTmczVl2_mz4AEsK6zoSyyvmzq7ApikIipyEkkXJk89BaGDC0UGDrCFlwGS8b3PzhjbAxTUQyq8ZBb_mPvQAwXaVihFk997M7KEFVzAIka8Fj1OKzSCfemn283dC0rnGGpiDnJr61_3Pzm8EXJEBCzuZ3AHiSrl9lEEUTPbLDFblfjWfJ8F_fYjc_ORNGQd_DuHBnLD898a76LmyuwQVJcmwP73Y75tEJj44S3kVbbgITF55wTd-6kLQnfLVe7Mz_zla4ZXHrpYZNaDhJseDzdYX95PEic-1MxCb2nG97u81zq2ocQTyg-ms5MIY60YmHdkUBmOthOMDU2TYOiSpNxqqXNWD7cKNRyfROo0BMPOWhvdGjNkUOj_PYFxA0sOw!!/dl3/d3/L0lDU0lKSmdwcGlRb0tVUW9LVVFvS1VRb0tVUW9LVVJnL1lMVUlBQUlJSUlNTUlDS0NFQUFJQUNHSUtBR0lPQkpCSk9CRk5GTk9GRExETE9ESFBIUE9IQW9nb3VBa2lFQU1BQUEhLzRDMWI5V19OcjBnQ1VneEVtUkNVd3BNbDRvUlNaS0pSaWt5Y1NtRkprRWxKSUEhIS83XzYxOU5TN0gyME80R0EwSThRR0Y4TUkwNTY2L1ZBTl95NzI1OTAwMTkvMTExMzA2NTkyOTQ3L1JvdXRlci9udWxsL3ZpZXdCbG9nc0VudHJpZXMvZW50cnlJZC85Njg3L2NhdGVnb3J5SWQvYmxvZ0lkLzE0NDA!/"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Netezza FPGA]]></title>
<link>http://techdb.wordpress.com/2009/08/09/netezza-fpga/</link>
<pubDate>Sun, 09 Aug 2009 15:28:12 +0000</pubDate>
<dc:creator>sidn</dc:creator>
<guid>http://techdb.wordpress.com/2009/08/09/netezza-fpga/</guid>
<description><![CDATA[There is not a whole lot of discussion on this topic. Here is an interesting article that talks abou]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>There is not a whole lot of discussion on this topic. Here is <a href="http://people.inf.ethz.ch/jteubner/publications/fpga-tutorial-sigmod2009.pdf">an interesting article</a> that talks about FPGA for databases, FPGA is very popular in network and graphics area, now gaining more acceptance in database applications. As mentioned below, Netezza uses FPGA to do front line processing by filtering data from disk and applying additional logic before passing that to memory on SPU. Main advantages from data processing:</p>
<ul>
<li>Parallelism and processing power now shifted away from CPU, closer to data / disk. FPGA has similar dimensions as a CPU, consumes 5 times less power and clock speed is about 5 times less.</li>
<li>Filtering out unnecessary data.</li>
<li>Low latency, high throughput.</li>
<li>More caching capability.</li>
</ul>
<p>There is also &#8216;another&#8217; implementation of FPGA for DW databases<em><a href="http://www.xtremedatainc.com/sql.php"></a></em>. In this implementation, FPGA is like another CPU with higher parallelism. This architecture looks like a general implementation, not specifically for DW databases and appears to be lacking &#8217;share nothing&#8217; approach. Their product is known as Kickfire and was implemented using mySQL. FPGA shares RAM with CPU (what?!!) and this usually results in . Just as Netezza claims phenomenal processing results, Kickstart has demonstrated 15 x CPU transactions AND 5 times lower power consumption. Check this nice <em><a href="http://www.xtremedatainc.com/sql.php">presentation</a></em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Kickstart, FAI oder Preseeding?]]></title>
<link>http://rorschachstagebuch.wordpress.com/2009/08/07/kickstart-fai-oder-preseeding/</link>
<pubDate>Fri, 07 Aug 2009 16:28:35 +0000</pubDate>
<dc:creator>Rorschach</dc:creator>
<guid>http://rorschachstagebuch.wordpress.com/2009/08/07/kickstart-fai-oder-preseeding/</guid>
<description><![CDATA[Ich werde bald eine automatische Ubuntu Installations-CD basteln. Dies wird das Standardinstallation]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ich werde bald eine automatische Ubuntu Installations-CD basteln. Dies wird das Standardinstallationsmedium für eine etwas grössere Netzwerkumgebung mit zahlreichen Clients sein. Bis jetzt läuft da Fedora drauf. Installiert und konfiguriert (Netzwerk, NFS, NIS, OpenSSH, Root- und Grub-Passwort, Cfengine) wird per Kickstart. Danach übernimmt Cfengine die Konfiguration.</p>
<p>Wie gesagt, es wird jetzt auf Ubuntu umgestellt. Also hab ich mir angeschaut was es da an automatischen Installationsmöglichkeiten gibt. Können sollte es: automatisches Partitionieren, Installation von gewünschten Paketen und Möglichkeiten zur Konfiguration von Paketen, wie oben bereits genannt, ausführen von Programmen nach der Installation (zum Schluss soll also Cfengine ausgeführt werden). Ausserdem soll sogut wie alles auf der CD die ich erstelle enthalten sein und nur sehr wenig vom Mirror nachgezogen werden.</p>
<p>Gefunden habe ich drei Möglichkeiten:<br />
1.) <a href="https://help.ubuntu.com/community/KickstartCompatibility">Kickstart</a>, das eigentlich für Redhat und ähnliche Distris zugeschnitten ist, funktioniert anscheinend auch mit Ubuntu.<br />
2.) <a href="http://faiwiki.informatik.uni-koeln.de/index.php/FAI_multi-distribution">FAI</a> steht für Full Automated Installer und wurde eigentlich für Debian entwickelt, funktioniert aber auch mit Ubuntu.<br />
3.) <a href="https://help.ubuntu.com/9.04/installation-guide/i386/appendix-preseed.html">Preseeding</a> ist die &#8220;offizielle&#8221; Ubuntu-Methode, die auch im Ubuntu Installationsguide genannt wird.</p>
<p>Ich wollte euch mal fragen ob ihr mit einer der drei Varianten und Ubuntu schonmal gearbeitet habt und ihr mir was dazu sagen könnt, irgendwelche Tips habt oder einfach was ihr, aus welchen Gründen nehmen würdet.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Svält? äh, bara GI kickstart för länge...]]></title>
<link>http://deltaxperiment.wordpress.com/2009/07/29/svalt-ah-bara-gi-kickstart-for-lange/</link>
<pubDate>Wed, 29 Jul 2009 05:54:19 +0000</pubDate>
<dc:creator>Δ</dc:creator>
<guid>http://deltaxperiment.wordpress.com/2009/07/29/svalt-ah-bara-gi-kickstart-for-lange/</guid>
<description><![CDATA[Svält är svält även om det bara är för en kort stund. GI metoden kallar svälten för kickstart. Kicks]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.aftonbladet.se/wendela/article5577189.ab" target="_blank">Svält</a> är svält även om det bara är för en kort stund.<br />
GI metoden kallar svälten för kickstart.<br />
Kickstart mot en snabbare död kanske?<br />
Nä, inte för alla, bara för de envisa. </p>
<p>Att föra ut sin lära, har sina sidor.<br />
Oavsett (bra) bantningsmetod, så måste det vara kristallklart hur överdrifter ser ut.</p>
<p>Socker behövs, fast inte så mycket.<br />
Hur mycket?</p>
<p>Δ</p>
<p>Ketogen diet:  även Atkins, LHCF</p>
<p>Från Fass:</p>
<p>Ketogenes (<a href="http://sv.wikipedia.org/wiki/Ketogenes" target="_blank">från wiki</a>)</p>
<p>Bildande av s.k. ketonkroppar. Ketonkroppar kan bildas när nedbrytning av fett och aminosyror inte är fullständig. Exempel på tillstånd med ökad ketogenes är diabetes och svält.<br />
<a id="Syn6587"></a></p>
<p>Ketogrupp</p>
<p>En molekyldel bestående av en kolatom och en dubbelbunden syreatom.<br />
<a id="Syn4387"></a></p>
<p>Ketos</p>
<p>När kroppen bildar onormalt mycket s.k. ketonkroppar. Detta sker främst vid diabetes eller svält. Ketonkroppar gör så att pH-värdet i blodet sjunker, och alltså blir surare.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New Google Search page]]></title>
<link>http://greentasreno.wordpress.com/2009/07/27/new-google-search-page/</link>
<pubDate>Mon, 27 Jul 2009 09:38:42 +0000</pubDate>
<dc:creator>greentasreno</dc:creator>
<guid>http://greentasreno.wordpress.com/2009/07/27/new-google-search-page/</guid>
<description><![CDATA[A while ago Mandy &amp; I were approached by an advertising agency and asked if we were interested i]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A while ago Mandy &#38; I were approached by an advertising agency and asked if we were interested in being part of a Google campaign that kickstarts your searching by having several different topics, each one faced by real people. We were asked if we would face the Building and Renovation page.</p>
<p>After a few months and a few emails Hey Presto. Follow the link <a href="http://www.google.com.au/intl/en/landing/kickstartyoursearch/#tab=5">http://www.google.com.au/intl/en/landing/kickstartyoursearch/#tab=5</a></p>
<p>This blog sure has taken us in a few unexpected directions</p>
<p style="text-align:center;"> <a href="http://greentasreno.wordpress.com/files/2009/07/screenhunter_020.jpg"><img class="size-full wp-image-729  aligncenter" title="ScreenHunter_020" src="http://greentasreno.wordpress.com/files/2009/07/screenhunter_020.jpg" alt="ScreenHunter_020" width="468" height="452" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[another wordpress is born (lahirnya sebuah mjindhar.wordpress.com)]]></title>
<link>http://mjindhar.wordpress.com/2009/07/23/another-wordpress-is-born-lahirnya-sebuah-mjindhar-wordpress-com/</link>
<pubDate>Thu, 23 Jul 2009 11:48:54 +0000</pubDate>
<dc:creator>mjindhar</dc:creator>
<guid>http://mjindhar.wordpress.com/2009/07/23/another-wordpress-is-born-lahirnya-sebuah-mjindhar-wordpress-com/</guid>
<description><![CDATA[mjindhar.wordpress.com just opened! gara&#8221; gw nonton film &#8220;Kambing Jantan&#8221; gw jadi ]]></description>
<content:encoded><![CDATA[mjindhar.wordpress.com just opened! gara&#8221; gw nonton film &#8220;Kambing Jantan&#8221; gw jadi ]]></content:encoded>
</item>
<item>
<title><![CDATA[Kickstarting Ubuntu ...]]></title>
<link>http://castrojo.wordpress.com/2009/07/22/kickstarting-ubuntu/</link>
<pubDate>Wed, 22 Jul 2009 21:47:07 +0000</pubDate>
<dc:creator>jcastro</dc:creator>
<guid>http://castrojo.wordpress.com/2009/07/22/kickstarting-ubuntu/</guid>
<description><![CDATA[My friend Andrew came over yesterday and helped me set up dhcp/dns/kickstart on a spare machine beca]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>My friend Andrew came over yesterday and helped me set up dhcp/dns/kickstart on a spare machine because it would help me out for testing karmic and after 2 years I basically have no idea how to sysadmin anything. <a href="https://help.ubuntu.com/community/PXEInstallServer">Here</a> are the basic instructions.</p>
<p>I have a squid proxy at home that I use to cache my .deb files (See this <a href="http://shadow-file.blogspot.com/2008/12/ditching-apt-cacher-ng-for-squid.html">great post</a> for more information) so that I am not constantly hammering my local mirror with my 6+ machines in the household. Last cycle I was getting frustrated at how long it took me to do testing, so I vowed to make it all efficient so I can do real hardware and VM installs easily. Plus you know sometimes we have dinner parties and whatnot and it&#8217;s polite to offer Ubuntu to your guests. So after we set up kickstart I wanted the installer to use my squid proxy so that I could take advantage of all the caching goodness. That&#8217;s when I discovered that one can use preseed arguments in your kickstart file and it Just Works(tm):</p>
<blockquote><p>
preseed mirror/http/proxy string http://chichi:3128/<br />
preseed popularity-contest popularity-contest/participate boolean true<br />
preseed finish-install/reboot_in_progress note<br />
#NTP<br />
preseed clock-setup/ntp boolean true<br />
preseed clock-setup/ntp-server string ntp.ubuntu.com<br />
#One big partition<br />
preseed partman-auto/choose_recipe select atomic<br />
#Add local repo</p>
<p># Tasks<br />
preseed tasksel tasksel/ubuntu-desktop</p>
<p># Packages<br />
%packages<br />
banshee<br />
gnome-do<br />
openoffice.org<br />
ubuntu-restricted-extras<br />
&#8230; etc&#8230;
</p></blockquote>
<p>I didn&#8217;t know you could do this!! Now I can get my preseed goodness and not have to relearn a whole new system. (Right now some of you are going omg use d-i, FAI, or one of the other million ways to do this). I prefer ks for two reasons, a) everyone I know uses it in production, and b) I can rip off other people&#8217;s ks scripts since they seem to be more common. This (and other) features have probably been around for a while, I need to spend more time hanging out with installer people. </p>
<p>Help needed: For some reason the karmic installer installs ubuntu-desktop, and the package gets installed, but none of the dependencies do. So after the install I get a semi-complete ubuntu desktop. After removing ubuntu-desktop and then reinstalling it /then/ it goes and grabs firefox, tomboy, and the rest of the desktop. I&#8217;ve tried the preseed line you see above and mentioning ubuntu-desktop explicitly in the %packages section to no avail. It doesn&#8217;t feel like a bug as much as I think I missed a step myself. On a positive note, installing ubuntu-restricted-extras is automated, I don&#8217;t get bothered for licenses or any of that, so woo hoo on that front.</p>
<p>Other random thing: Why not run a local ubuntu mirror? I set up an rsync and everything and started with main, then I realized that throughout the course of a cycle I am constantly updating and installing stuff, so it&#8217;s already in my squid cache, why have rsync firing off hitting my mirror when I keep most of the .debs locally anyway? Sure if I was at a University or something a full mirror would make more sense.</p>
<p>Related story on LWN about <a href="http://lwn.net/Articles/318658/">package repository proxies</a>. I still find the squid method to be the most reliable for me, though hopefully apt-zeroconf will make this transparent and easy for normal people. (The caching part, not the kickstarting part.)</p>
<p>What ways are you sysadmins out there deploying Ubuntu? Share your tips and tricks in the comments.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Kickstarter]]></title>
<link>http://carriekravetz.wordpress.com/2009/07/04/kickstarter/</link>
<pubDate>Sat, 04 Jul 2009 17:38:45 +0000</pubDate>
<dc:creator>missenscene</dc:creator>
<guid>http://carriekravetz.wordpress.com/2009/07/04/kickstarter/</guid>
<description><![CDATA[http://www.kickstarter.com/ Someone sent me this website! I think it&#8217;s fabulous.  Kickstarter ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="size-full wp-image-1097 aligncenter" title="postcard" src="http://carriekravetz.wordpress.com/files/2009/07/postcard.jpg" alt="postcard" width="460" height="345" /></p>
<p style="text-align:center;"><a href="http://www.kickstarter.com/">http://www.kickstarter.com/</a></p>
<p style="text-align:left;">Someone sent me this website! I think it&#8217;s fabulous.  Kickstarter is a funding platform for artists, designers, musicians, inventors, explorers, filmmakers, journalists and more. The girl above creates postcards everyday of the year based on her travels.</p>
<p style="text-align:left;"><img class="aligncenter size-full wp-image-1098" title="records" src="http://carriekravetz.wordpress.com/files/2009/07/records.jpg" alt="records" width="460" height="345" /></p>
<div id="video-section">Above: &#8220;Polyvinyl needs your help! Some of our distributor’s warehouses around the world are being downsized or consolidated and we either need to destroy over 10,000 records or face some high storage costs.</div>
<p>Destroying the records is not an option (it’s too wasteful and besides, these are great records, they’re just overstocked)! Storing the records at our warehouse is not an option (we cannot afford the storage costs). So to keep them from destruction, we’re hoping to have all the records shipped back to our office.&#8221;</p>
<p><img class="aligncenter size-full wp-image-1100" title="prints" src="http://carriekravetz.wordpress.com/files/2009/07/prints.jpg" alt="prints" width="460" height="345" />Another project:</p>
<p>&#8220;I have rolls and rolls of images of decay, mostly the industrial sort, and having recently digitized a number of them, I would like to get some digital chromogenic prints made in order to hang them on a wall in an as yet undetermined location.&#8221;</p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/kitgeary/sets/72157620542242721/">http://www.flickr.com/photos/kitgeary/sets/72157620542242721/</a></p>
<p>These are just a few of the numerous ideas waiting to be funded from people all over the world. I&#8217;m in love with this site! One of my friends and I were looking for something like this to fund a public art idea we have. It seems like people are really funding these projects, so if you have a great idea&#8211;put it out there!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Fearful Backbends]]></title>
<link>http://joulebody.wordpress.com/2009/06/18/fearful-backbends/</link>
<pubDate>Thu, 18 Jun 2009 19:04:21 +0000</pubDate>
<dc:creator>joulebody</dc:creator>
<guid>http://joulebody.wordpress.com/2009/06/18/fearful-backbends/</guid>
<description><![CDATA[I have been doing yoga for over 15 years. 5 years ago I began teacher training. I remember learning ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://joulebody.wordpress.com/2009/06/18/fearful-backbends/backbend/" rel="attachment wp-att-147"><img src="http://joulebody.wordpress.com/files/2009/06/backbend.jpg?w=150" alt="BackBend" title="BackBend" width="150" height="150" class="alignnone size-thumbnail wp-image-147" /></a><br />
I have been doing yoga for over 15 years.  5 years ago I began teacher training.  I remember learning that there are different physical poses for different emotions.  One emotion that has controlled and consumed me is FEAR!  Fear of public speaking, fear of acceptance, fear of rejection, fear of failure, and on and on and on.  </p>
<p>On this particular day, Thursday, I had a meeting with Patti, I had to teach a yoga class to some very strong ladies and I had to public speak. Just writing about it now brings this vibariton thru my body that triggers my heart to beat a little faster.  My eyebrows crunch and I am slightly sweating.  Yes that is how serious my fears are.  Fast forward to Tuesday when I meet with Patti yet again.  Scared all day that she is going to be like, &#8220;Sign this paper or else!&#8221;  I even wore my bracelets, proact and react to remind me to stay grounded.</p>
<p>The went excellent yet again.  The partnership papers weren&#8217;t so daunting and she did not ask me to sign there or else and Patti definitly sees the potential of <a href="https://www.joulebody.com/kickstart.html">kickstart</a>and is on board as much as I am.  Yes there are details that need to be sorted but nothing that I beleive will stop the process.</p>
<p>That night I took a long shower and as I was thinking, i starting doing a full wheel backbend from standing.  I have never done this before, especially in the shower!  It was as if my body was releasing all this fear.  All this anxiety I have built over the years of public speaking, legal paper work and communication.  I am so looking forward to the opportunity of public speaking, signing papers, and telling people more about what I have to offer.</p>
<p>Backbends<br />
Wouldn&#8217;t you know it.  This months issue of Yoga Journal has a <a href="http://www.yogajournal.com/free_practice">Free Video by John Friend, Master of backbends and founder of Anusara Yoga</a>.  </p>
<p>So if you are feeling like there is fear stuck in your outer physical body get connected to your spiritual and emotional inner body so that you can let loose and finally let go.  Talk about freedom.<br />
&#8220;Always be content in your every stage of the pose, yet continuing to make progress.&#8221; &#8212; well said.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
