[osol-discuss] Does opensolaris support whole zone and sparse zones?

2010-10-04 Thread Sarah kho
Hi,

Can you please let me know whether OpenSolaris support whole zones and
sparse zones or just sparse zone?
Also, how I can create a solaris9 branded zones?

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

Re: [osol-discuss] Fwd: [website-discuss] XWiki Update on Monday Oct 4

2010-10-04 Thread Jim Grisanzio

 The XWiki update is finished and the site is back live.

One note on the watchlists: to receive watchlist email notifications of 
pages in your watchlist, you must first set the notification frequency. 
When logged in, mouse over your name [top right] and select 'Watchlist', 
choose the appropriate hourly, daily, or weekly notifier and save. Pages 
are added or removed from your watchlist by toggling the top right 
watch/unwatch menu button.


Any questions or problems, send mail to website-ad...@opensolaris.org.

Jim


On 10/04/2010 09:00 PM, Chris Phelan wrote:

This work is starting now.

Chris

 Original Message 
Subject: [website-discuss] XWiki Update on Monday Oct 4
Date: Fri, 01 Oct 2010 00:08:04 +0900
From: Jim Grisanzio 
To: website-disc...@opensolaris.org, 
opensolaris-discuss@opensolaris.org


Following the updates to auth/repo last week, we are now ready to update
XWiki on Monday Oct 4th starting at 5 a.m. PDT. XWiki will be down for
approximately 1/2 hour. In this deployment XWiki will have a new
lightweight skin, which has better organization for layout and page
editing. Additionally, the watch lists feature is fixed, the subsites
menu has been moved out of the left nav to be a drop down menu, and the
three Collectives pages have been automated when creating and deleting
groups. The other changes are integration code updates and won't be
visible to users.

Jim

___
website-discuss mailing list
website-disc...@opensolaris.org

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


Re: [osol-discuss] Solaris 11 Express

2010-10-04 Thread Dmitry G. Kozhinov
> And realistically, having the source code is nice and all, but how many 
> people really compile ON anyways? Most folks just want something they can 
> download, install, and use.

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


Re: [osol-discuss] Does opensolaris support whole zone and sparse zones?

2010-10-04 Thread Ian Collins

On 10/ 4/10 08:48 PM, Sarah kho wrote:

Hi,

Can you please let me know whether OpenSolaris support whole zones and 
sparse zones or just sparse zone?


OpenSolaris zones are closer to whole root zones.  Sparse root zones are 
not supported.



Also, how I can create a solaris9 branded zones?


I don't think you can on OpenSolaris.

--
Ian.

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


[osol-discuss] Fwd: [website-discuss] XWiki Update on Monday Oct 4

2010-10-04 Thread Chris Phelan

This work is starting now.

Chris

 Original Message 
Subject:[website-discuss] XWiki Update on Monday Oct 4
Date:   Fri, 01 Oct 2010 00:08:04 +0900
From:   Jim Grisanzio 
To: website-disc...@opensolaris.org, opensolaris-discuss@opensolaris.org



Following the updates to auth/repo last week, we are now ready to update
XWiki on Monday Oct 4th starting at 5 a.m. PDT. XWiki will be down for
approximately 1/2 hour. In this deployment XWiki will have a new
lightweight skin, which has better organization for layout and page
editing. Additionally, the watch lists feature is fixed, the subsites
menu has been moved out of the left nav to be a drop down menu, and the
three Collectives pages have been automated when creating and deleting
groups. The other changes are integration code updates and won't be
visible to users.

Jim

___
website-discuss mailing list
website-disc...@opensolaris.org

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


Re: [osol-discuss] osol 134 restarts when scrubbing on asus p6t ws xeon

2010-10-04 Thread Brian Ruthven - Solaris Network Sustaining - Oracle UK


Look in /var/adm/messages to see if there is a panic message (sounds 
like there will be). If so, post that plus the stack trace which 
follows. This should allow people to see whether you've hit a known bug 
or not.


The panic message will be of the form:

   panic[cpu0]/thread=0xaf234430: some message

followed by lines of hex. Find the panic line and copy-and-paste 
everything up to and including the next "Solaris Release snv_XX" line.


Regards,
Brian

ace wrote:

I am never able to complete a scrub/resilver on the asus p6t ws xeon e5520 
12gbecc with re4-gp and wd20eads drives. Opensolaris 134 will restart an hour 
or more into a scrub/resilver regardless if I put the most intensively used 
disks on the ich10 (ide or ahci) or the 1068e controller. Eon 130 and sxce 130 
restart the same.

At first I assumed it was the mpt/1068e driver/chip issue but I exported the 
pool and imported it on a dual xeon 5520 supermicro MBD-X8DTH-iF-O motherboard 
which completed a resilver successfully on the pool using the same 1068e 
controller and onboard ich.

I will search the forum to identify where to look for errors, logs, etc to troubleshoot this. 


In the meantime, I would appreciate any recommendations as to troubleshooting 
this problem.
  


--
Brian Ruthven
Solaris Network RPE (Sustaining)
Oracle UK

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


Re: [osol-discuss] C programming, invalid argc value

2010-10-04 Thread George Vasick

Hi Alan,

I can reproduce the problem on my system running bash so I don't think 
it is related the the shell:


(gdb) b main
Breakpoint 1 at 0x8050ccc: file g.c, line 4.
(gdb) r
Starting program: /home/gvasick/a.out

Breakpoint 1, main (argc=260904, argv=0xfef90018) at g.c:4
4   {

I also notice that stepping one statement seems to resolve the problem:

(gdb) n
main (argc=1, argv=0x8047a88) at g.c:5
5   printf ("hello world!\n");
(gdb) p argc
$1 = 1
(gdb) p *argv
$2 = 0x8047b60 "/home/gvasick/a.out"

I get worse behavior with dbx:

(dbx) run
Running: a.out
(process id 3625)
stopped in main at line 4 in file "g.c"
4   {
(dbx) print argc
argc = -16795644
(dbx) print *argv
*argv = 0x3fb28 ""
(dbx) next
stopped in main at line 5 in file "g.c"
5   printf ("hello world!\n");
(dbx) print argc
argc = 134511124
(dbx) print *argv
*argv = 0x1 ""

although the program itself correctly prinst out argc and argv:

1, /home/gvasick/a.out


George


On 10/1/2010 2:06 AM, Alan Burlison wrote:

On 01/10/2010 03:17, Saadia Fatima wrote:


Invalid argc value is passed to main, when I run the program with no
cmmand line arguments

main(argc = 134551360, argv=0x8047b2a) // from gdb

How to fix this??


Which shell are you using?


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


Re: [osol-discuss] C programming, invalid argc value

2010-10-04 Thread Alan Burlison

On 04/10/2010 18:45, George Vasick wrote:


I can reproduce the problem on my system running bash so I don't think
it is related the the shell:


OK, was just wondering if it might be related to 
http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6974936


--
Alan Burlison
--
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] C programming, invalid argc value

2010-10-04 Thread Scott Rotondo

On 10/ 4/10 10:45 AM, George Vasick wrote:

Hi Alan,

I can reproduce the problem on my system running bash so I don't think
it is related the the shell:

(gdb) b main
Breakpoint 1 at 0x8050ccc: file g.c, line 4.
(gdb) r
Starting program: /home/gvasick/a.out

Breakpoint 1, main (argc=260904, argv=0xfef90018) at g.c:4
4 {

I also notice that stepping one statement seems to resolve the problem:

(gdb) n
main (argc=1, argv=0x8047a88) at g.c:5
5 printf ("hello world!\n");
(gdb) p argc
$1 = 1
(gdb) p *argv
$2 = 0x8047b60 "/home/gvasick/a.out"


Isn't that a well-known issue with x86 debuggers - needing to break at 
+3 so that the frame pointer is set up before you try to 
examine arguments or local variables?


Scott

--
Scott Rotondo
Senior Principal Engineer, Solaris Core OS Engineering
President, Trusted Computing Group
Phone: +1 408 276 6987 (Internal x66987)
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org