Streamlining Zone Creation Thanks to ZFS Integration

Zone’s a wonderful and handy tools for developers and admins alike, but creating them can be a time consuming activity especially when you need to create more than one. Scripting can help but your not shortening the time, just automating the process. But around Nevada B43 ZFS and Zones were integrated, building on each others strengths. Now we can clone zones, which reduces the amount of wasted disk space when creating multiple zones that are initially identical. When you create a zone in a ZFS pool a new filesystem is automatically created instead of just a simple directory. And just in case your existing zones are on UFS and you want to migrate them to ZFS, you can use the handy move capabilities of zoneadm to move everything seemlessly for you.

Lets take a look at the process.

First lets create our initial zone, which I’m calling “puppet1″.

$ zonecfg -z puppet1 'create; set autoboot=true; set zonepath=/ultrastor/puppet1; add net;
set address=10.0.0.21; set physical=nge0; end; verify; commit; exit'
$ zonecfg -z puppet1 info
zonename: puppet1
zonepath: /ultrastor/puppet1
autoboot: true
bootargs:
pool:
limitpriv:
inherit-pkg-dir:
        dir: /lib
inherit-pkg-dir:
        dir: /platform
inherit-pkg-dir:
        dir: /sbin
inherit-pkg-dir:
        dir: /usr
net:
        address: 10.0.0.21
        physical: nge0

Note in the above that by default /usr, /sbin, /lib, and /platform are loopback mounted rather than copied, which is the default behavior. If you wanted a “blank” configuration with no defaults set you could have specified create -b to zonecfg.

zonecfg only creates the metadata required for my zone to function, the zone itself hasn’t actually been created. So now I’ll go ahead and “install” the zone.

$ time zoneadm -z puppet1 install
A ZFS file system has been created for this zone.
Preparing to install zone
.
Creating list of files to copy from the global zone.
Copying <35389> files to the zone.
Initializing zone product registry.
Determining zone package initialization order.
Preparing to initialize <1073> packages on the zone.
Initialized <1073> packages on zone.
Zone
 is initialized.
Installation of these packages generated warnings: 
The file  contains a log of the zone installation.

real    24m28.964s
user    1m0.522s
sys     1m50.353s

So that install took 25 minutes! Part of the hold up was due to my not inheriting /opt, and you see that in the output as the 35,000 files to copies. But because I want to write into /opt, it had to be done.

I personally can’t stand going through the sysid when you boot a zone for the first time (the curses interface that asks you all the questions), so I’ll insert a sysidcfg file before I boot the zone for the first time.

$ cat sysidcfg
system_locale=C
timezone=US/Pacific
terminal=xterms
security_policy=NONE
root_password=HsANA7Dt/0sXX
timeserver=localhost
name_service=NONE
network_interface=primary {hostname=puppet1
        netmask=255.255.255.0
        protocol_ipv6=no
        default_route=10.0.0.250}
name_service=NONE
nfs4_domain=dynamic
$ cp sysidcfg /ultrastor/puppet1/root/etc/
$ zoneadm -z puppet1 boot

Against, this first boot is going to take a while as it initializes everything. While its booting you should watch the console by using zlogin -C puppet1 in another window.

So I’ve now spent the better part of an hour getting this zone setup and configured. At this point I can do any last little tweeks I want within the zone.

Now comes the real magic. I liked that first zone, but I need 4 more. Rather than repeat the process, I can simply clone them off! This first requires that I create the zone configuration for them.

$ zonecfg -z puppet2 'create; set autoboot=true; set zonepath=/ultrastor/puppet2;
add net; set address=10.0.0.22; set physical=nge0; end; verify; commit; exit'
$ zonecfg -z puppet3 'create; set autoboot=true; set zonepath=/ultrastor/puppet3;
add net; set address=10.0.0.23; set physical=nge0; end; verify; commit; exit'
$ zonecfg -z puppet4 'create; set autoboot=true; set zonepath=/ultrastor/puppet4;
add net; set address=10.0.0.24; set physical=nge0; end; verify; commit; exit'

Now I can clone the first zone, puppet1, to bypass the normal “install” phase of the other zones.

$ zoneadm list -vc
  ID NAME             STATUS         PATH
   0 global           running        /
  19 puppet1          running        /ultrastor/puppet1
   - puppet2          configured     /ultrastor/puppet2
   - puppet3          configured     /ultrastor/puppet3
   - puppet4          configured     /ultrastor/puppet4
$ zlogin puppet1 halt
$ time zoneadm -z puppet2 clone puppet1
Cloning snapshot ultrastor/puppet1@SUNWzone1
Instead of copying, a ZFS clone has been created for this zone.

real    0m53.895s
user    0m0.289s
sys     0m0.218s
$ zoneadm -z puppet3 clone puppet1
Cloning snapshot ultrastor/puppet1@SUNWzone2
Instead of copying, a ZFS clone has been created for this zone.
$ zoneadm -z puppet4 clone puppet1
Cloning snapshot ultrastor/puppet1@SUNWzone3
Instead of copying, a ZFS clone has been created for this zone.

You’ll notice that it created a new ZFS snapshot each time I cloned, I could have actually specified “-s SUNWzone1″ after the first clone to continue using that single snapshot.

Now we look again at our zone list to see that we’ve changed state for those 3 new zones from “configured” to “installed”:

$ zoneadm list -vc
  ID NAME             STATUS         PATH
   0 global           running        /
   - puppet1          installed      /ultrastor/puppet1
   - puppet2          installed      /ultrastor/puppet2
   - puppet3          installed      /ultrastor/puppet3
   - puppet4          installed      /ultrastor/puppet4

Perfect. To avoid any additional configuration I’ll take that sysidcfg I created earlier, change the hostname, and then copy it in. Once thats done, start ‘em up.

$ cp sysidcfg /ultrastor/puppet2/root/etc/
$ cp sysidcfg /ultrastor/puppet3/root/etc/
$ cp sysidcfg /ultrastor/puppet4/root/etc/
$ vi /ultrastor/puppet2/root/etc/sysidcfg
$ vi /ultrastor/puppet3/root/etc/sysidcfg
$ vi /ultrastor/puppet4/root/etc/sysidcfg
$ zoneadm -z puppet1 boot
$ zoneadm -z puppet2 boot
$ zoneadm -z puppet3 boot
$ zoneadm -z puppet4 boot

And we’re done! Cloning lets us really leverage that initial time we spent getting our zone right and relieves us of having to repeat it over and over. While creating that first zone might take 30 minutes or more, more can be created in minutes with ease. By using sysidcfg files as well we even further reduce the intervention on our part.

$ zoneadm list -vc | grep puppet
  23 puppet1          running        /ultrastor/puppet1
  27 puppet2          running        /ultrastor/puppet2
  28 puppet3          running        /ultrastor/puppet3
  29 puppet4          running        /ultrastor/puppet4

Just wrap some of this up in a script and things get even simpler. If you thought you were burning through your class C address space before, just watch your network admin cridge now!

55 Responses to “Streamlining Zone Creation Thanks to ZFS Integration”

  1. Francois says:

    I really hope Sun will add DHCP support to zone soon, it would be so much easier for testing, no even necessary to talk to the network admin !

  2. benr says:

    The problem is that a zone doesn’t have a unique MAC address… that’ll be fixed with Project Crossbow and VNIC’s: http://www.opensolaris.org/os/project/crossbow/

  3. Patrick says:

    Hey Ben,

    you’re the Master of Puppets.

    Rock on :D

  4. ux-admin says:

    How would you solve this same problem if you had 2000 servers that needed 4 zones each, without any human interaction whatsoever?

  5. Chris Ridd says:

    Very nifty trick – I’ll try that at work!

    One typo though – shouldn’t “zlogin puppet1 halt” be “zoneadm puppet1 halt”?

  6. benr says:

    Chris: No its not a typo. There are two ways to halt a zone, one is to use zoneadm, which would actually be “zoneadm -z puppet1 halt”. The other is to log into the zone and run the “halt” command, which can be done be done in one command from the global zone as “zlogin puppet1 halt”. The diff is, if halt with zoneadm nothing in the zone is stopped, its just halted. If you halt from within the zone it actually shuts down cleanly.

    This is something I learned at Joyent/Textdrive… in my testing enviroment it never made a diffrence, but appearently here in production its bit them in the butt.

  7. Chris Ridd says:

    Oh, that’s definitely something to be wary of. Thanks for the tip!

  8. Terry Greene says:

    Ben,
    its one of your padawon learners in sacramento
    hey I am trying to take a snapshot of a zfs file system dedicated for a zone, I see that you are cloning your new zone images from actual snapshots.. I tried to emulate what you did and it seemed like it cloned from the target zone and not a snapshot?
    help

  9. worms says:

    Xanax (Generic) 60 pills x 2mg – Price: $199.00
    Xanax is a tranquilizer used in the short-term relief of symptoms of anxiety or the treatment of anxiety disorders. Anxiety disorder is marked by unrealistic worry or excessive fears and concerns. Anxiety associated with depression is also responsive to Xanax.
    Xanax and the extended-release formulation, Xanax XR, are also used in the treatment of panic disorder, which appears as unexpected panic attacks and may be accompanied by a fear of open or public places called agoraphobia. Only your doctor can diagnose panic disorder and best advise you about treatment.
    Some doctors prescribe Xanax to treat alcohol withdrawal, fear of open spaces and strangers, depression, irritable bowel syndrome, and premenstrual syndrome.
    Klonopin, Valium, Ambien – Low prices. Worldwide shipping (FEDEX, DHL, EMS, etc.), 100% Satisfaction Guaranteed, No prior prescription required, 24/7 customer support. AmEx, WU and E-CHECK.

  10. Josephine says:

    024ae30f e2c33ec0 8c9 ancor1|ancor2|ancor3|ancor4|ancor5 He says I must select [URL= http://google4.com.com ]ancor1ancor2ancor3ancor4ancor5[/URL] , and knows I cant.
    Are they all http://google4.com.net rel=”nofollow”>download ancor1ancor2ancor3ancor4ancor5 out to destroy our country?
    http://google4.com.org Hot ancor1ancor2ancor3ancor4ancor5 round out the eighth and ninth positions.

    I\\\\\\\’m love this great website. Many thanks guy

  11. zithromax says:

    shop zithromax welcome

  12. zithromax says:

    shop zithromax welcome

  13. hutopire says:

    Hello. Please tell me. What is it online pharmacy? Whether it is possible to trust online pharmacy?

  14. Google says:

    If you do not wish to receive similar messages please inform us on it by mail ban.site[dog]gmail.com

  15. yon says:

    is there a way to browse the different entries in http://www.cuddletech.com/blog/pivot/entry.php. I just want to search a different topic about Solaris

  16. Mary-pv says:

    http://index1.napoir.com rel=”nofollow”>florida marlins and pax
    http://index1.diopst.com rel=”nofollow”>catholic charities jobs long island

  17. nanny_[!2] says:

    http://index1.arolew.com rel=”nofollow”>pictures of a sally growler http://index2.arolew.com rel=”nofollow”>hahnemann unversity hospital careers http://index3.arolew.com rel=”nofollow”>john berry your love amazes me http://index4.arolew.com rel=”nofollow”>boat retail whole sales http://index5.arolew.com rel=”nofollow”>screen printed t shirt
    http://index5.dupolk.com rel=”nofollow”>camaer http://index2.dupolk.com rel=”nofollow”>surfcasting for striped bass http://index4.dupolk.com rel=”nofollow”>topthrilldragster http://index1.dupolk.com rel=”nofollow”>how much does a tower cost by its self http://index3.dupolk.com rel=”nofollow”>pine wreaths

  18. Mary-uq says:

    http://index1.8opana.com rel=”nofollow”>oakwood apartments bellingham http://index2.8opana.com rel=”nofollow”>ameran idol http://index3.8opana.com rel=”nofollow”>surveilance and target aquisition marines http://index4.8opana.com rel=”nofollow”>prosytems fx http://index5.8opana.com rel=”nofollow”>extended network generator myspace alcohol http://index6.8opana.com rel=”nofollow”>westlakebilling http://index7.8opana.com rel=”nofollow”>free limewire installer http://index8.8opana.com rel=”nofollow”>lawr http://index9.8opana.com rel=”nofollow”>teen red aol http://index10.8opana.com rel=”nofollow”>traveka nazarene
    http://index4.fioopk.com rel=”nofollow”>drag racing n michigan http://index6.fioopk.com rel=”nofollow”>austin and central texas http://index9.fioopk.com rel=”nofollow”>sanford clark http://index8.fioopk.com rel=”nofollow”>blow job and family reunion http://index3.fioopk.com rel=”nofollow”>the prodigy mp3 breathe http://index1.fioopk.com rel=”nofollow”>dozzy cards http://index2.fioopk.com rel=”nofollow”>arthartmann http://index5.fioopk.com rel=”nofollow”>philly paper http://index7.fioopk.com rel=”nofollow”>hegner saw http://index10.fioopk.com rel=”nofollow”>2007 calendars online

  19. nanny_[!2] says:

    http://index1.sabrob.com rel=”nofollow”>truck liners http://index2.sabrob.com rel=”nofollow”>professional writing services for cover letters http://index3.sabrob.com rel=”nofollow”>camletoes http://index4.sabrob.com rel=”nofollow”>cowboy hat for kids under 30 http://index5.sabrob.com rel=”nofollow”>erics bbq pembroke pines florida
    http://index2.naloga.com rel=”nofollow”>glenby inc. http://index4.naloga.com rel=”nofollow”>the austin chronicle and publisher http://index1.naloga.com rel=”nofollow”>true voice http://index5.naloga.com rel=”nofollow”>black female american poets http://index3.naloga.com rel=”nofollow”>jerry klauer

  20. Mary-nt says:

    http://index1.supols.com rel=”nofollow”>baywatch tv tome http://index2.supols.com rel=”nofollow”>best tasting chocolate cake http://index3.supols.com rel=”nofollow”>websites for transporting services needing independent contractors http://index4.supols.com rel=”nofollow”>brighton court http://index5.supols.com rel=”nofollow”>george washington 500 000 loan from pennsylvania farmer
    http://index1.sizirk.com rel=”nofollow”>pvc threaded fittings http://index4.sizirk.com rel=”nofollow”>308 winchester http://index3.sizirk.com rel=”nofollow”>buy bernadette icon http://index2.sizirk.com rel=”nofollow”>real estsate http://index5.sizirk.com rel=”nofollow”>the differance between a dds dentist and a pdd

  21. nanny_[!2] says:

    http://index1.orpili.com rel=”nofollow”>why i feel what i feel inside blackstreet lyrics http://index2.orpili.com rel=”nofollow”>aegea medi-spa and salon in conroe texas http://index3.orpili.com rel=”nofollow”>kirtland ohio lds tourist sites http://index4.orpili.com rel=”nofollow”>atlanta apparel mart http://index5.orpili.com rel=”nofollow”>looking for info on homeing pigeons in beloit wisc
    http://index1.zarpli.com rel=”nofollow”>grammatica http://index4.zarpli.com rel=”nofollow”>mythical dragon pictures http://index3.zarpli.com rel=”nofollow”>meet local nude men http://index2.zarpli.com rel=”nofollow”>ocean life drawings http://index5.zarpli.com rel=”nofollow”>sacramento and infinity and kovr

  22. Mary-up says:

    http://index1.rivned.com rel=”nofollow”>paper doll bannana republic bebe http://index2.rivned.com rel=”nofollow”>sell your house tips http://index3.rivned.com rel=”nofollow”>talking about getting myself off. http://index4.rivned.com rel=”nofollow”>freddie jackson live dvd http://index5.rivned.com rel=”nofollow”>unpretty
    http://index3.ysyast.com rel=”nofollow”>printable crossword for kids http://index1.ysyast.com rel=”nofollow”>free hunting magazines http://index4.ysyast.com rel=”nofollow”>traffic on 405 north http://index2.ysyast.com rel=”nofollow”>wake up ona saturday night http://index5.ysyast.com rel=”nofollow”>dont want to back

  23. nanny_[!2] says:

    http://index1.pereez.com rel=”nofollow”>brthdayexpress http://index2.pereez.com rel=”nofollow”>wright industries http://index3.pereez.com rel=”nofollow”>cheaper engagementrings http://index4.pereez.com rel=”nofollow”>monologue from closer http://index5.pereez.com rel=”nofollow”>stator brothers
    http://index1.akyort.com rel=”nofollow”>cheap flights to myrtle beach http://index5.akyort.com rel=”nofollow”>federal agent mad cuz http://index2.akyort.com rel=”nofollow”>lasalle apartment ratings birmingham http://index4.akyort.com rel=”nofollow”>king george v http://index3.akyort.com rel=”nofollow”>teacher interview letters and thank you letters

  24. Antoinette says:

    video422 [url=http://my.opera.com/skazzi9/blog/2008/10/13/2]video422[/url]
    video523 [url=http://my.opera.com/skazzi9/blog/2008/10/13/19]video523[/url]
    video26 [url=http://my.opera.com/wearerobots/blog/2008/10/13/5]video26[/url]
    video109 [url=http://my.opera.com/wearerobots/blog/2008/10/13/4]video109[/url]
    video230 [url=http://my.opera.com/skazzi9/blog/2008/10/13/20]video230[/url]
    video165 [url=http://my.opera.com/wearerobots/blog/2008/10/13/18]video165[/url]
    video182 [url=http://my.opera.com/skazzi9/blog/2008/10/13/14]video182[/url]
    video438 [url=http://my.opera.com/skazzi9/blog/2008/10/13/18]video438[/url]
    video352 [url=http://my.opera.com/skazzi9/blog/2008/10/13/16]video352[/url]
    video399 [url=http://my.opera.com/skazzi9/blog/2008/10/13/21]video399[/url]
    video348 [url=http://my.opera.com/skazzi9/blog/2008/10/13/12]video348[/url]
    video424 [url=http://my.opera.com/skazzi9/blog/2008/10/13/4]video424[/url]
    video95 [url=http://my.opera.com/skazzi9/blog/2008/10/13/11]video95[/url]
    video280 [url=http://my.opera.com/wearerobots/blog/2008/10/13/7]video280[/url]
    video335 [url=http://my.opera.com/wearerobots/blog/2008/10/13/20]video335[/url]
    video299 [url=http://my.opera.com/skazzi9/blog/show.dml/2631336]video299[/url]
    video445 [url=http://my.opera.com/wearerobots/blog/2008/10/13/4]video445[/url]
    video543 [url=http://my.opera.com/wearerobots/blog/2008/10/13/18]video543[/url]
    video288 [url=http://my.opera.com/wearerobots/blog/2008/10/13/15]video288[/url]
    video630 [url=http://my.opera.com/wearerobots/blog/2008/10/13/21]video630[/url]
    video38 [url=http://my.opera.com/wearerobots/blog/2008/10/13/17]video38[/url]
    video242 [url=http://my.opera.com/wearerobots/blog/2008/10/13/11]video242[/url]
    video19 [url=http://my.opera.com/skazzi9/blog/2008/10/13/19]video19[/url]
    video302 [url=http://my.opera.com/skazzi9/blog/2008/10/13/8]video302[/url]
    video533 [url=http://my.opera.com/wearerobots/blog/2008/10/13/8]video533[/url]
    video114 [url=http://my.opera.com/wearerobots/blog/2008/10/13/9]video114[/url]
    video348 [url=http://my.opera.com/skazzi9/blog/2008/10/13/12]video348[/url]
    video557 [url=http://my.opera.com/skazzi9/blog/2008/10/13/11]video557[/url]
    video564 [url=http://my.opera.com/skazzi9/blog/2008/10/13/18]video564[/url]
    video557 [url=http://my.opera.com/skazzi9/blog/2008/10/13/11]video557[/url]
    video413 [url=http://my.opera.com/wearerobots/blog/2008/10/13/14]video413[/url]
    video279 [url=http://my.opera.com/wearerobots/blog/2008/10/13/6]video279[/url]
    video448 [url=http://my.opera.com/wearerobots/blog/2008/10/13/7]video448[/url]
    video289 [url=http://my.opera.com/wearerobots/blog/2008/10/13/16]video289[/url]
    video361 [url=http://my.opera.com/wearerobots/blog/2008/10/13/4]video361[/url]
    video37 [url=http://my.opera.com/wearerobots/blog/2008/10/13/16]video37[/url]
    video161 [url=http://my.opera.com/wearerobots/blog/2008/10/13/14]video161[/url]
    video383 [url=http://my.opera.com/skazzi9/blog/show.dml/2631336]video383[/url]
    video3 [url=http://my.opera.com/skazzi9/blog/2008/10/13/3]video3[/url]
    video62 [url=http://my.opera.com/skazzi9/blog/2008/10/13/20]video62[/url]
    video21 [url=http://my.opera.com/skazzi9/blog/2008/10/13/21]video21[/url]
    video228 [url=http://my.opera.com/skazzi9/blog/2008/10/13/18]video228[/url]
    video159 [url=http://my.opera.com/wearerobots/blog/2008/10/13/12]video159[/url]
    video248 [url=http://my.opera.com/wearerobots/blog/2008/10/13/17]video248[/url]
    video5 [url=http://my.opera.com/skazzi9/blog/show.dml/2631336]video5[/url]

  25. nanny_[!2] says:

    http://index1.soboye.com rel=”nofollow”>ohio sate and wbns-tv http://index2.soboye.com rel=”nofollow”>ocean tag http://index3.soboye.com rel=”nofollow”>landlord complaints new jersey http://index4.soboye.com rel=”nofollow”>comcast spotlight and miami and interconnect http://index5.soboye.com rel=”nofollow”>the honeycombs
    http://index2.doirep.com rel=”nofollow”>sun shine kids club md http://index3.doirep.com rel=”nofollow”>online associates degree in nursing http://index5.doirep.com rel=”nofollow”>purchase confront weed killer http://index1.doirep.com rel=”nofollow”>haisten woodlawn funeral home http://index4.doirep.com rel=”nofollow”>apa bibliography

  26. nanny_[!2] says:

    http://index1.tivopo.com rel=”nofollow”>mysry skatebording http://index2.tivopo.com rel=”nofollow”>parakeets preaning http://index3.tivopo.com rel=”nofollow”>waldorf astoria in new york city http://index4.tivopo.com rel=”nofollow”>dc government unclaimed properties http://index5.tivopo.com rel=”nofollow”>usmcr
    http://index1.zarplu.com rel=”nofollow”>ron adrian artwork http://index3.zarplu.com rel=”nofollow”>physicians formuls http://index2.zarplu.com rel=”nofollow”>stacey deffenbaugh http://index4.zarplu.com rel=”nofollow”>telemundo and kphz and phoenix http://index5.zarplu.com rel=”nofollow”>seven wors of the world

  27. Chester says:

    pics544 [url=http://my.opera.com/miramiar/blog/2008/10/14/34]pics544[/url]
    pics350 [url=http://my.opera.com/miramiar/blog/2008/10/14/10]pics350[/url]
    pics278 [url=http://my.opera.com/miramiar/blog/2008/10/14/6]pics278[/url]
    pics214 [url=http://my.opera.com/miramiar/blog/2008/10/14/10]pics214[/url]
    pics287 [url=http://my.opera.com/miramiar/blog/2008/10/14/15]pics287[/url]
    pics260 [url=http://my.opera.com/miramiar/blog/2008/10/14/22]pics260[/url]
    pics195 [url=http://my.opera.com/miramiar/blog/2008/10/14/25]pics195[/url]
    pics290 [url=http://my.opera.com/miramiar/blog/2008/10/14/18]pics290[/url]
    pics220 [url=http://my.opera.com/miramiar/blog/2008/10/14/16]pics220[/url]
    pics227 [url=http://my.opera.com/miramiar/blog/2008/10/14/23]pics227[/url]
    pics497 [url=http://my.opera.com/miramiar/blog/2008/10/14/21]pics497[/url]
    pics519 [url=http://my.opera.com/miramiar/blog/2008/10/14/9]pics519[/url]
    pics395 [url=http://my.opera.com/miramiar/blog/2008/10/14/21]pics395[/url]
    pics372 [url=http://my.opera.com/miramiar/blog/2008/10/14/32]pics372[/url]
    pics12 [url=http://my.opera.com/miramiar/blog/2008/10/14/12]pics12[/url]
    pics338 [url=http://my.opera.com/miramiar/blog/2008/10/14/32]pics338[/url]
    pics45 [url=http://my.opera.com/miramiar/blog/2008/10/14/11]pics45[/url]
    pics541 [url=http://my.opera.com/miramiar/blog/2008/10/14/31]pics541[/url]
    pics15 [url=http://my.opera.com/miramiar/blog/2008/10/14/15]pics15[/url]
    pics03 [url=http://my.opera.com/miramiar/blog/2008/10/14/3]pics03[/url]
    pics311 [url=http://my.opera.com/miramiar/blog/2008/10/14/5]pics311[/url]
    pics310 [url=http://my.opera.com/miramiar/blog/2008/10/14/4]pics310[/url]
    pics421 [url=http://my.opera.com/miramiar/blog/2008/10/14/13]pics421[/url]
    pics41 [url=http://my.opera.com/miramiar/blog/2008/10/14/7]pics41[/url]
    pics427 [url=http://my.opera.com/miramiar/blog/2008/10/14/19]pics427[/url]
    pics70 [url=http://my.opera.com/miramiar/blog/2008/10/14/2]pics70[/url]
    pics328 [url=http://my.opera.com/miramiar/blog/2008/10/14/22]pics328[/url]
    pics163 [url=http://my.opera.com/miramiar/blog/2008/10/14/27]pics163[/url]
    pics444 [url=http://my.opera.com/miramiar/blog/2008/10/14/2]pics444[/url]
    pics482 [url=http://my.opera.com/miramiar/blog/2008/10/14/6]pics482[/url]
    pics196 [url=http://my.opera.com/miramiar/blog/2008/10/14/26]pics196[/url]
    pics352 [url=http://my.opera.com/miramiar/blog/2008/10/14/12]pics352[/url]
    pics142 [url=http://my.opera.com/miramiar/blog/2008/10/14/6]pics142[/url]
    pics307 [url=http://my.opera.com/miramiar/blog/2008/10/14/1]pics307[/url]
    pics211 [url=http://my.opera.com/miramiar/blog/2008/10/14/7]pics211[/url]
    pics319 [url=http://my.opera.com/miramiar/blog/2008/10/14/13]pics319[/url]
    pics114 [url=http://my.opera.com/miramiar/blog/2008/10/14/12]pics114[/url]
    pics208 [url=http://my.opera.com/miramiar/blog/2008/10/14/4]pics208[/url]
    pics290 [url=http://my.opera.com/miramiar/blog/2008/10/14/18]pics290[/url]
    pics47 [url=http://my.opera.com/miramiar/blog/2008/10/14/13]pics47[/url]
    pics141 [url=http://my.opera.com/miramiar/blog/2008/10/14/5]pics141[/url]
    pics31 [url=http://my.opera.com/miramiar/blog/2008/10/14/31]pics31[/url]
    pics74 [url=http://my.opera.com/miramiar/blog/2008/10/14/6]pics74[/url]
    pics335 [url=http://my.opera.com/miramiar/blog/2008/10/14/29]pics335[/url]
    pics273 [url=http://my.opera.com/miramiar/blog/2008/10/14/1]pics273[/url]

  28. viagra buy
    http://hellgate.incgamers.com/forums/member.php?u=9133
    online buying viagra cheapest
    http://www.eugclan.com/forums/index.php?showuser=1549
    buying viagra no prescription
    http://sdnforum.com/forums/member.php?u=294
    viagra buy without a prescription
    buying viagra without a prescription – viagra buying without prescription
    online buying viagra
    online buy viagra cheapest – buy viagra
    cheap viagra buy
    online viagra buy – buying viagra without a prescription
    buying viagra no prescription
    viagra buy without a prescription – viagra buying no prescription
    buying viagra without prescription
    online viagra buy – viagra buy without a prescription
    viagra buy without prescription
    cheap buying viagra – online buying viagra cheapest
    viagra buy without a prescription
    online viagra buy – online buying viagra cheapest
    buy viagra without prescription
    online buying viagra cheapest – online viagra buying cheapest
    online viagra buy
    buy viagra – buy viagra
    viagra buy without a prescription
    buy viagra – buy viagra without a prescription
    online viagra buying cheapest
    viagra buy no prescription – cheap buying viagra
    cheap buy viagra
    online viagra buy – cheap viagra buying
    buying viagra without prescription
    buying viagra without prescription – viagra buy
    online viagra buy cheapest
    cheap viagra buy – viagra buying without prescription
    online viagra buy cheapest
    buy viagra without prescription

  29. sharpbobby says:

    Did you see it ? :) It’s simply beautyfull thing [u]http://adventures.110mb.com[/u]

  30. infeliant says:

    - Emu oil is a natural substance which is found in the form of bracelets and necklaces, or even as bedding sheets and pillows which can help relieve arthritis pain through the use of essential oils which can be consumed as capsules, paste or in food. 1992 soma cyclone truck

  31. This story is very useful. Really I like it. Thanks for sharing with us.

  32. Bab says:

    Very interesting article: “Streamlining Zone Creation Thanks to ZFS Integration”

  33. Wow you just saved me hours of time.

  34. he content of the articles there will be a lot of attractive people to appreciate, I have to thank you such an article. As hard as it is to answer those questions, it would definitely not help by burying our head in the sand and refusing to talk about them

  35. p90x says:

    P90x .It really is not expensive if you factor in the cost

    of a gym membership,P90x workout . The cost for P90X is

    about three months of a paid gym membership but you get to

    keep the program foreverP90x . You can try many of the

    online sites, but it will be the same as buying from the

    company or a Beachbody Coach. Make sure you are getting

    original DVD’s. People are selling copies all over. The

    problem is how long will they last, P90x workout ,and you

    truly need the exercise and nutrition guide to even follow

    the program. You can go to any site or you can go to

    http://www.p90xmall.com and click on products. P90x dvd You can

    order directly from the site,P90x dvd.

  36. Buy Nike Air Max 90 Shoes just $45-55 USD inhttp://www.iofferitems.com, 40-70% Off. Cheap Air Max 90 Shoes, Free Shipping! Buy Air Max 90 Now!

  37. Buy Nike Air Max 90 Shoes just $45-55 USD in http://www.iofferitems.com, 40-70% Off. Cheap Air Max 90 Shoes, Free Shipping! Buy Air Max 90 Now!

  38. I’ve just started using Zone recently. I find it really helpful for the work i’m doing.

  39. p90x says:

    I have read this post.It’s really awesome.I have noted some point which make this post excellent. I hope you will keep continue to write other informative and interesting post.Thank you.

  40. cool stuff says:

    very cool article ,thanks for sharing the article!like my cool stuff .very useful.
    uCoolStuff is the leading China wholesaler for http://www.ucoolstuff.com cool stuff , http://www.ucoolstuff.com cool gifts, unusual gadgets and other unique gift ideas. We provide the very latest cool stuff and cool gifts for you

  41. excellent article , I added you to my http://www.china-wholesale-directory.com Top China Wholesalers category.. thanks for sharing the article!