Sponsored Content
Full Discussion: Zone cloning with zfs
Operating Systems Solaris Zone cloning with zfs Post 302392772 by Aphex on Friday 5th of February 2010 11:41:52 AM
Old 02-05-2010
Zone cloning with zfs

Sun documentation about zone cloning describe if zone cloning, which zonepath is on a ZFS pool, zone will be cloning by zfs snapshot. On my system zones cloned by files copying. How I can troubleshoot that?

Code:
root@sunhost # cat /etc/release 
                       Solaris 10 10/09 s10x_u8wos_08a X86 
           Copyright 2009 Sun Microsystems, Inc.  All Rights Reserved. 
                        Use is subject to license terms. 
                           Assembled 16 September 2009 
root@sunhost # zoneadm list -vc 
  ID NAME             STATUS     PATH                           BRAND    IP 
   0 global           running    /                              native   shared 
   - template         installed  /zones/template                native   shared 
root@sunhost # zfs list 
NAME                     USED  AVAIL  REFER  MOUNTPOINT 
rpool                   18.1G   181G    34K  /rpool 
rpool/ROOT              10.1G   181G    21K  legacy 
rpool/ROOT/s10x_u8      10.1G   181G  4.47G  / 
rpool/ROOT/s10x_u8/var  5.62G   181G  5.62G  /var 
rpool/dump              1.00G   181G  1.00G  - 
rpool/export            50.5K   181G    23K  /export 
rpool/export/home       27.5K   181G  27.5K  /export/home 
rpool/swap                 4G   185G    16K  - 
rpool/template          3.03G   181G  3.03G  /zones/template 
root@sunhost # zonecfg -z twiki -f /tmp/template 
root@sunhost # zonecfg -z twiki verify 
root@sunhost # time zoneadm -z twiki clone template 
Copying /zones/template... 

real    11m57.221s 
user    0m4.420s 
sys     0m56.695s 
root@sunhost # zfs list 
NAME                     USED  AVAIL  REFER  MOUNTPOINT 
rpool                   22.8G   176G    34K  /rpool 
rpool/ROOT              14.8G   176G    21K  legacy 
rpool/ROOT/s10x_u8      14.8G   176G  9.13G  / 
rpool/ROOT/s10x_u8/var  5.62G   176G  5.62G  /var 
rpool/dump              1.00G   176G  1.00G  - 
rpool/export            50.5K   176G    23K  /export 
rpool/export/home       27.5K   176G  27.5K  /export/home 
rpool/swap                 4G   180G    16K  - 
rpool/template          3.03G   176G  3.03G  /zones/template 
root@sunhost # zoneadm list -vc 
  ID NAME             STATUS     PATH                           BRAND    IP 
   0 global           running    /                              native   shared 
   - template         installed  /zones/template                native   shared 
   - twiki            installed  /zones/twiki                   native   shared

PS. sorry for my english.
 

8 More Discussions You Might Find Interesting

1. Solaris

Is any patch availabe for zone cloning?

Hello Guruz, I am unable see the zone cloning option in zoneadm command, I guess the option if not available with the current OS release (Solaris 10 1/06). Could some one let me know if there any specific patch is available for the same?. My zoneadm o/p as follows. Zoneadm usage: ... (18 Replies)
Discussion started by: bullz26
18 Replies

2. Solaris

Solaris zone on ZFS

..... (2 Replies)
Discussion started by: brusell
2 Replies

3. Solaris

Zone failes to boot due to mount issue, dir exists in zone.

I have two physical servers, with zones that mount local storage. We were using "raw device" in the zonecfg to point to a metadevice on the global zone (it was not mounted in the global zone at any point). It failed to mount on every boot because the directory existed in the zone. I... (6 Replies)
Discussion started by: BG_JrAdmin
6 Replies

4. Solaris

ZFS adding new filesystems to a non-global zone

Hi Guys I have one Global Zone and 2 non-global zones. root@solar109 # zoneadm list -icv ID NAME STATUS PATH BRAND IP 0 global running / native shared 20 solar109b running ... (1 Reply)
Discussion started by: fryzh
1 Replies

5. Solaris

Creation of zone based on zfs root file system

Hi all I want to know if suppose my global zone has UFS root file system & now I want to create non global zone with ZFS root file system. Is it possible.....If this is possible then how will I able to create zone based on ZFS root file system in global zone having UFS based root file system (5 Replies)
Discussion started by: sb200
5 Replies

6. Solaris

New ZFS FS not seen on local zone

Hi , I added a new fs to the global zone and also did the zonecfg to add the FS to the zone but finally I do not see the new "FS" on the local zone. Even in th e/etc/zones/zone.xml the fs and the correct directory is mentioned. Any Idea please ? (4 Replies)
Discussion started by: manni2
4 Replies

7. Solaris

ZFS does not release space even after deleting application log files in a non-global zone

Hi Guys, I have a non-global zone in which has apache application on it. There is a ZFS filesystem where the app saves the log. Even after deleting the logfiles I dont see the space being freed up. There are no snapshots or anything at all Zpool info NAME SIZE ALLOC FREE CAP HEALTH ALTROOT... (8 Replies)
Discussion started by: RDX
8 Replies

8. UNIX for Advanced & Expert Users

Solaris 10: I forgot to detach a zone before zpool export. Uninstall zone?

Dear all, recently, I migrated a solaris zone from one host to another. The zone was inside of a zpool. The zpool cotains two volumes. I did the following: host1: $ zlogin zone1 shutdown -y -g0 -i0 #Zone status changes from running to installed $ zpool export zone1 host2: $ zpool... (2 Replies)
Discussion started by: custos
2 Replies
MooseX::Clone(3pm)					User Contributed Perl Documentation					MooseX::Clone(3pm)

NAME
MooseX::Clone - Fine grained cloning support for Moose objects. SYNOPSIS
package Bar; use Moose; with qw(MooseX::Clone); has foo => ( isa => "Foo", traits => [qw(Clone)], # this attribute will be recursively cloned ); package Foo; use Moose; # this API is used/provided by MooseX::Clone sub clone { my ( $self, %params ) = @_; # ... } # used like this: my $bar = Bar->new( foo => Foo->new ); my $copy = $bar->clone( foo => [ qw(Args for Foo::clone) ] ); DESCRIPTION
Out of the box Moose only provides very barebones cloning support in order to maximize flexibility. This role provides a "clone" method that makes use of the low level cloning support already in Moose and adds selective deep cloning based on introspection on top of that. Attributes with the "Clone" trait will handle cloning of data within the object, typically delegating to the attribute value's own "clone" method. TRAITS
Clone By default Moose objects are cloned like this: bless { %$old }, ref $old; By specifying the Clone trait for certain attributes custom behavior the value's own "clone" method will be invoked. By extending this trait you can create custom cloning for certain attributes. By creating "clone" methods for your objects (e.g. by composing MooseX::Compile) you can make them interact with this trait. NoClone Specifies attributes that should be skipped entirely while cloning. METHODS
clone %params Returns a clone of the object. All attributes which do the MooseX::Clone::Meta::Attribute::Trait::Clone role will handle cloning of that attribute. All other fields are plainly copied over, just like in "clone_object" in Class::MOP::Class. Attributes whose "init_arg" is in %params and who do the "Clone" trait will get that argument passed to the "clone" method (dereferenced). If the attribute does not self-clone then the param is used normally by "clone_object" in Class::MOP::Class, that is it will simply shadow the previous value, and does not have to be an array or hash reference. TODO
Refactor to work in term of a metaclass trait so that "meta->clone_object" will still do the right thing. THANKS
clkao made the food required to write this module VERSION CONTROL
<http://code2.0beta.co.uk/moose/svn/>. Ask on #moose for commit bits. AUTHOR
Yuval Kogman <nothingmuch@woobling.org> COPYRIGHT
Copyright (c) 2008 Yuval Kogman. All rights reserved This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-01-14 MooseX::Clone(3pm)
All times are GMT -4. The time now is 05:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy