[zones-discuss] I have Joined the Wrong Forum?

2007-09-05 Thread Robert McCurdy
Okay, so this isn't a Zone Spade card game forum?

I play at here:
http://zone.msn.com/en/spades/zpadefault.htm

And for some reason can't login at intermittent times.
Seems to happen after I've been using Utorrent to download stuff.

I don't expect anyone will know what I'm on about, but I'd thought I'd try - 
you never know :)
OTOH if anyone needs help with Excel spreadsheeting - I'm your man.


Regards
Robert McCurdy
- Original Message - 
From: LaoTsao(Dr. Tsao) [EMAIL PROTECTED]
To: Chew Tian Hai [EMAIL PROTECTED]
Cc: zones-discuss@opensolaris.org
Sent: Tuesday, September 04, 2007 11:05 PM
Subject: Re: [zones-discuss] Memory Usage in Zones


if U are using nv build then U can cap zone's physical memory with 
project, s10u4 also has some memory cap feature due out soon
http://opensolaris.org/os/community/zones/files/Zones_RM_Improvements.html

Chew Tian Hai wrote:
 Hi,
 I have configured at 5 zones runing different application on the system.I 
 restrict the CPU cap usage  due to license issue.Do I have faced memory 
 shortage if one the zone application (DB2) grap all the memory,then the rest 
 of the application will have problem running due to memory shortage.Is it 
 best to let it dymically access the memory or cap it ?Pls advise.
  
  
 This message posted from opensolaris.org
 ___
 zones-discuss mailing list
 zones-discuss@opensolaris.org
   
___
zones-discuss mailing list
zones-discuss@opensolaris.org
___
zones-discuss mailing list
zones-discuss@opensolaris.org


Re: [zones-discuss] Memory Usage in Zones

2007-09-05 Thread Russ Petruzzelli




Looking at the website, it doesn't say anywhere what version this
is. 
ie: "Update 4" or some other version string.

If I'm a customer who already has update 2 or 3, how am I supposed to
know that this download is now update 4?
We need to do a lot better on our website.

Russ


Mike Gerdts wrote:

  On 9/4/07, LaoTsao(Dr. Tsao) [EMAIL PROTECTED] wrote:
  
  
if U are using nv build then U can cap zone's physical memory with
project, s10u4 also has some memory cap feature due out soon
http://opensolaris.org/os/community/zones/files/Zones_RM_Improvements.html

  
  
Update 4 (Solaris 10 8/07) can be downloaded from sun.com/solaris/get today.

Mike
___
zones-discuss mailing list
zones-discuss@opensolaris.org
  



___
zones-discuss mailing list
zones-discuss@opensolaris.org

[zones-discuss] Detect pkgs installed with -G?

2007-09-05 Thread Jeff Victor
How can someone learn whether a package was installed in the global zone 
*with* -G - or without it?

___
zones-discuss mailing list
zones-discuss@opensolaris.org


Re: [zones-discuss] Detect pkgs installed with -G?

2007-09-05 Thread Ihsan Zaghmouth




Hi Jeff,

Here is my 2 cents, after assuming that pkginfo should hold such an
information post installation.
The /var/sadm/pkg/pkgname/pkginfo file lists among
other info the SUNW_PKG_ALLZONES=true | false for the installed
package.
pkginfo should have an option to display that, I tried them all ... in
vain !

if you write a small script, you can display the
/var/sadm/pkg/pkgname/pkginfo, you should be able to
distinguish:
:
cat /var/sadm/pkg/pkgname/pkginfo | grep
SUNW_PKG_ALLZONES, and if:

  SUNW_PKG_ALLZONES=true ... Then installed on all Zones 
  
  SUNW_PKG_ALLZONES=false ... Only Global -G 

Ihsan

Jeff Victor wrote:

  How can someone learn whether a package was installed in the global zone 
*with* -G - or without it?

___
zones-discuss mailing list
zones-discuss@opensolaris.org
  


-- 



___
zones-discuss mailing list
zones-discuss@opensolaris.org

Re: [zones-discuss] Detect pkgs installed with -G?

2007-09-05 Thread Shawn Ferry

Jeff, Ihsan;

You want the command pkgparam, examples below.

Shawn

On Sep 5, 2007, at 2:54 PM, Ihsan Zaghmouth wrote:


Hi Jeff,

Here is my 2 cents, after assuming that pkginfo should hold such an  
information post installation.
The /var/sadm/pkg/pkgname/pkginfo file lists among other info the  
SUNW_PKG_ALLZONES=true | false for the installed package.
pkginfo should have an option to display that, I tried them all ...  
in vain !


pkgparam -v pkgname or pkgparam pkgname param

e.g.
pkgparam SUNWcsr SUNW_PKG_ALLZONES
true


pkgparam -v SUNWcsr
CLASSES='none ttydefs initd renamenew preserve cronroot passwd  
tiservices inetdconf definit etcremote nsswitch netconfig deflogin  
defsu syslogconf ttysrch group inittab etcrpc etcprofile mailxrc  
shadow locallogin localprofile logadmconf logindevperm nscd fstypes  
pamconf services rbac renameold dhcpinittab policyconf pkcs11confbase  
defpasswd vfstab manifest hosts'

BASEDIR='/'
LANG=''
TZ='GMT0'
PATH='/sbin:/usr/sbin:/usr/bin:/usr/sadm/install/bin'
OAMBASE='/usr/sadm/sysadm'
PKG='SUNWcsr'
NAME='Core Solaris, (Root)'
ARCH='i386'
VERSION='11.11,REV=2007.01.05.02.51'
SUNW_PRODNAME='SunOS'
SUNW_PRODVERS='5.11/snv_55'
SUNW_PKGTYPE='root'
MAXINST='1000'
CATEGORY='system'
DESC='core software for a specific instruction-set architecture'
VENDOR='Sun Microsystems, Inc.'
HOTLINE='Please contact your local service provider'
EMAIL=''
SUNW_PKGVERS='1.0'
SUNW_PKG_ALLZONES='true'
SUNW_PKG_HOLLOW='false'
SUNW_PKG_THISZONE='false'
PSTAMP='elpaso20070105025839'
PKGINST='SUNWcsr'
PKGSAV='/var/sadm/pkg/SUNWcsr/save'
MODIFIED_AFTER_INSTALLED=''
INSTDATE='Mar 23 2007 06:09'




if you write a small script, you can display the /var/sadm/pkg/ 
pkgname/pkginfo, you should be able to distinguish:

:
cat /var/sadm/pkg/pkgname/pkginfo | grep SUNW_PKG_ALLZONES, and if:
SUNW_PKG_ALLZONES=true  ... Then installed on all Zones
SUNW_PKG_ALLZONES=false ... Only Global -G
Ihsan

Jeff Victor wrote:
How can someone learn whether a package was installed in the  
global zone

*with* -G - or without it?

___
zones-discuss mailing list
zones-discuss@opensolaris.org



--
C:\Sun\Presentation2.jpg
C:\Sun\Presentation2.jpg
___
zones-discuss mailing list
zones-discuss@opensolaris.org


--
Shawn Ferry  shawn.ferry at sun.com
Senior Primary Systems Engineer
Sun Managed Operations




___
zones-discuss mailing list
zones-discuss@opensolaris.org

Re: [zones-discuss] Detect pkgs installed with -G?

2007-09-05 Thread Ihsan Zaghmouth




Much appreciated Shawn.

Shawn Ferry wrote:

  
  Jeff, Ihsan;
  
  
  You want the command pkgparam, examples below.
  
  
  Shawn
  
  
  On Sep 5, 2007, at 2:54 PM, Ihsan Zaghmouth wrote:
  
  
   Hi Jeff,

Here is my 2 cents, after assuming that pkginfo should hold such an
information post installation.
The /var/sadm/pkg/pkgname/pkginfo file lists among
other info the SUNW_PKG_ALLZONES=true | false for the installed
package.
pkginfo should have an option to display that, I tried them all ... in
vain !
  
  
  pkgparam -v pkgname or pkgparam pkgname
param
  
  
  
  e.g.
  
  pkgparam SUNWcsr SUNW_PKG_ALLZONES
  true
  
  
  
  
  
  
  pkgparam -v SUNWcsr   
  CLASSES='none ttydefs initd renamenew preserve cronroot passwd
tiservices inetdconf definit etcremote nsswitch netconfig deflogin
defsu syslogconf ttysrch group inittab etcrpc etcprofile mailxrc shadow
locallogin localprofile logadmconf logindevperm nscd fstypes pamconf
services rbac renameold dhcpinittab policyconf pkcs11confbase defpasswd
vfstab manifest hosts'
  BASEDIR='/'
  LANG=''
  TZ='GMT0'
  PATH='/sbin:/usr/sbin:/usr/bin:/usr/sadm/install/bin'
  OAMBASE='/usr/sadm/sysadm'
  PKG='SUNWcsr'
  NAME='Core Solaris, (Root)'
  ARCH='i386'
  VERSION='11.11,REV=2007.01.05.02.51'
  SUNW_PRODNAME='SunOS'
  SUNW_PRODVERS='5.11/snv_55'
  SUNW_PKGTYPE='root'
  MAXINST='1000'
  CATEGORY='system'
  DESC='core software for a specific instruction-set architecture'
  VENDOR='Sun Microsystems, Inc.'
  HOTLINE='Please contact your local service provider'
  EMAIL=''
  SUNW_PKGVERS='1.0'
  SUNW_PKG_ALLZONES='true'
  SUNW_PKG_HOLLOW='false'
  SUNW_PKG_THISZONE='false'
  PSTAMP='elpaso20070105025839'
  PKGINST='SUNWcsr'
  PKGSAV='/var/sadm/pkg/SUNWcsr/save'
  MODIFIED_AFTER_INSTALLED=''
  INSTDATE='Mar 23 2007 06:09'
  
  
  
  
  

if you write a small script, you can display the
/var/sadm/pkg/pkgname/pkginfo, you should be able to
distinguish:
:
cat /var/sadm/pkg/pkgname/pkginfo | grep
SUNW_PKG_ALLZONES, and if:

  SUNW_PKG_ALLZONES=true ... Then installed on all Zones 
  
  SUNW_PKG_ALLZONES=false ... Only Global -G 

Ihsan

Jeff Victor wrote:

  How can someone learn whether a package was installed in the global zone 
*with* -G - or without it?

___
zones-discuss mailing list
zones-discuss@opensolaris.org
  


-- 
C:\Sun\Presentation2.jpg
C:\Sun\Presentation2.jpg
___
zones-discuss mailing list
zones-discuss@opensolaris.org
  
  
  
   
  --
  Shawn Ferry shawn.ferry at sun.com
  Senior Primary Systems Engineer
  Sun Managed Operations
  
  
  
  
  
   
  
  
  
  

___
zones-discuss mailing list
zones-discuss@opensolaris.org
  


-- 



___
zones-discuss mailing list
zones-discuss@opensolaris.org

Re: [zones-discuss] Detect pkgs installed with -G?

2007-09-05 Thread Ethan Quach
Two ways a pkg can be installed in the global zone only.

a)  SUNW_PKG_ALLZONES=false
SUNW_PKG_THISZONE=true

b)  SUNW_PKG_ALLZONES=false
SUNW_PKG_THISZONE=false
# pkgadd was run with -G


Trolling though the installed pkginfo files will give you (a), but
not (b).  What you're probably looking for is
/var/sadm/install/gz-only-packages.  That's a private interface though.


-ethan


Ihsan Zaghmouth wrote:
 Much appreciated Shawn.
 
 Shawn Ferry wrote:
 Jeff, Ihsan;

 You want the command pkgparam, examples below.

 Shawn

 On Sep 5, 2007, at 2:54 PM, Ihsan Zaghmouth wrote:

 Hi Jeff,

 Here is my 2 cents, after assuming that pkginfo should hold such an 
 information post installation.
 The */var/sadm/pkg/pkgname/pkginfo* file lists among other info the 
 *SUNW_PKG_ALLZONES*=true | false for the installed package.
 pkginfo should have an option to display that, I tried them all ... 
 in vain !

 pkgparam -v pkgname or pkgparam pkgname param

 e.g.
 pkgparam SUNWcsr SUNW_PKG_ALLZONES
 true


 pkgparam -v SUNWcsr   
 CLASSES='none ttydefs initd renamenew preserve cronroot passwd 
 tiservices inetdconf definit etcremote nsswitch netconfig deflogin 
 defsu syslogconf ttysrch group inittab etcrpc etcprofile mailxrc 
 shadow locallogin localprofile logadmconf logindevperm nscd fstypes 
 pamconf services rbac renameold dhcpinittab policyconf pkcs11confbase 
 defpasswd vfstab manifest hosts'
 BASEDIR='/'
 LANG=''
 TZ='GMT0'
 PATH='/sbin:/usr/sbin:/usr/bin:/usr/sadm/install/bin'
 OAMBASE='/usr/sadm/sysadm'
 PKG='SUNWcsr'
 NAME='Core Solaris, (Root)'
 ARCH='i386'
 VERSION='11.11,REV=2007.01.05.02.51'
 SUNW_PRODNAME='SunOS'
 SUNW_PRODVERS='5.11/snv_55'
 SUNW_PKGTYPE='root'
 MAXINST='1000'
 CATEGORY='system'
 DESC='core software for a specific instruction-set architecture'
 VENDOR='Sun Microsystems, Inc.'
 HOTLINE='Please contact your local service provider'
 EMAIL=''
 SUNW_PKGVERS='1.0'
 SUNW_PKG_ALLZONES='true'
 SUNW_PKG_HOLLOW='false'
 SUNW_PKG_THISZONE='false'
 PSTAMP='elpaso20070105025839'
 PKGINST='SUNWcsr'
 PKGSAV='/var/sadm/pkg/SUNWcsr/save'
 MODIFIED_AFTER_INSTALLED=''
 INSTDATE='Mar 23 2007 06:09'



 if you write a small script, you can display the 
 /var/sadm/pkg/pkgname/pkginfo, you should be able to distinguish:
 :
 cat /var/sadm/pkg/pkgname/pkginfo* | *grep SUNW_PKG_ALLZONES, and if:

1. SUNW_PKG_ALLZONES=true  ... Then installed on all Zones
2. SUNW_PKG_ALLZONES=false ... *Only Global -G*

 Ihsan

 Jeff Victor wrote:
 How can someone learn whether a package was installed in the global zone 
 *with* -G - or without it?

 ___
 zones-discuss mailing list
 zones-discuss@opensolaris.org
   

 -- 
 C:\Sun\Presentation2.jpg
 C:\Sun\Presentation2.jpg
 ___
 zones-discuss mailing list
 zones-discuss@opensolaris.org mailto:zones-discuss@opensolaris.org

 --
 Shawn Ferry  shawn.ferry at sun.com
 Senior Primary Systems Engineer
 Sun Managed Operations




 

 ___
 zones-discuss mailing list
 zones-discuss@opensolaris.org
   
 
 -- 
 
 
 
 
 ___
 zones-discuss mailing list
 zones-discuss@opensolaris.org
___
zones-discuss mailing list
zones-discuss@opensolaris.org


[zones-discuss] Patching a machine with local zones

2007-09-05 Thread Ron Halstead
When patching a machine with local zones, should the local zones be halted or 
left running? I can't seem to find a definitive answer.

ron
 
 
This message posted from opensolaris.org
___
zones-discuss mailing list
zones-discuss@opensolaris.org