Re: [osol-discuss] Marvell 9128

2010-03-14 Thread matthew.nawro...@gmail.com
No... It is a SATA chipset. Does Marvell have a proprietary driver for that? It is a new SATA 3.0 device that has only been around for a short while. Matt -- Sent from my Palm Pre On Mar 14, 2010 12:59 PM, Maurizio Lombardi wrote: > Hi... is the Marvell 9128 chip s

Re: [osol-discuss] When system crashes, how to get log / crash info for troubleshooting

2010-03-14 Thread Jeffrey M Freeman
Quick question - is there a way from the Kernel debugger to create the directory - I don't have access to a live cd at our NOC and would love to get this system back up again? Thanks Jeff Jeffrey M Freeman Bassoonist/ContraBassoonist Member: Boston Musicians Association - Local 9-535 Music Webs

Re: [osol-discuss] Ultra 20 suspend automatically, how to disable

2010-03-14 Thread Christopher Mi
Thank you all. To delete autopm solves the problem. -Chris On 03/11/10 11:18 AM, Christopher Mi wrote: Hi, I have a Ultra 20 and install OpenSolaris build 133. (I want to do some testing on VirtualBox.) But I found that Ultra 20 will suspend automatically if it doesn't have any work to do. S

Re: [osol-discuss] failure upgrading from snv_131 to snv_134

2010-03-14 Thread Shawn Walker
On 03/14/10 11:15 AM, James Carlson wrote: On 3/14/2010 3:56 AM, Alan Coopersmith wrote: James Carlson wrote: How is it that a bug fixed back in build 127 didn't affect me in build 131 but started affecting me in build 134 ... ? The great renaming brought it back to life in 133: http://defect

Re: [osol-discuss] Usage of psinfo_t from procfs.h

2010-03-14 Thread Ivan Petrov
Unfortunately I can't use libproc.h because it's not shipped with solaris which means I'm stuck with procfs.h only. Could someone please give me a hand? 10x -- This message posted from opensolaris.org ___ opensolaris-discuss mailing list opensolaris-di

Re: [osol-discuss] Usage of psinfo_t from procfs.h

2010-03-14 Thread Ivan Petrov
exactly! psargs is more close to what I need, actually it's almost exactly what I need. However the code looks as complicated as http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/ps/ps.c I just want to obtain the command line string for a given process ID. 10x -- This message po

Re: [osol-discuss] Why im not staying with Opensolaris

2010-03-14 Thread B
I really like the Porsche--minivan analogy. :-) -- This message posted from opensolaris.org ___ opensolaris-discuss mailing list opensolaris-discuss@opensolaris.org

Re: [osol-discuss] Usage of psinfo_t from procfs.h

2010-03-14 Thread Ivan Petrov
Thanks for your answer. pr_psargs won't work for me as it's limited to only 80 chars while my processes have a lot more than that. That's why I wanted to go for the arg vector. -- This message posted from opensolaris.org ___ opensolaris-discuss mailing

[osol-discuss] Timeslider in snv_134 fresh install -or- /home vs /export/home

2010-03-14 Thread Raphael Barabas
Hi, I did a fresh installation of osol-dev-134-x86.iso to a notebook pc. After turning on time slider for rpool/export/home/xxx i waited for about 90 minutes to gather a few automatic snapshots. When starting nautilus via "Places" -> "Home folder" (which opens up /home/xxx) the button for tim

Re: [osol-discuss] failure upgrading from snv_131 to snv_134

2010-03-14 Thread Sean Johnson
On Sun, Mar 14, 2010 at 11:15 AM, James Carlson wrote: > Even with poring over the release announcements, it seems to be hard to > keep up with the bumps.  I hope it gets smoother soon. I think it would be fair to expect that the development branch will remain bumpy. If you're needing more stabil

Re: [osol-discuss] Marvell 9128

2010-03-14 Thread Maurizio Lombardi
> Hi... is the Marvell 9128 chip supported in OpenSolaris? I looked around the > HCL but didn't find any instance of it. Is it a ethernet card chipset? Try the Marvell's proprietary driver for Solaris x64. www.marvell.com -- Maurizio Lombardi OpenSolaris 2009.06 -

Re: [osol-discuss] about zfs exported on nfs

2010-03-14 Thread Matthias Pfützner
You (Harry Putnam) wrote: > Matthias Pfützner > writes: > > So, if user "willi" on the Linux client hat UID 4711, then on the SERVER you > > should see "4711" as the owner of a file, that had been created by "willi" > > on > > a filesystems that had been mounted from the server. The server does n

Re: [osol-discuss] about zfs exported on nfs

2010-03-14 Thread Matthias Pfützner
Edward, You (Edward Ned Harvey) wrote: > > Do you have any linux clients to osol nfs server? > > > > If not Matthias, then is there anyone else here who has an osol NFS > > server with a linux client, where you can show a simple `ls -l' (on > > the client) in a directory created on the mounted nf

Re: [osol-discuss] failure upgrading from snv_131 to snv_134

2010-03-14 Thread James Carlson
On 3/14/2010 3:56 AM, Alan Coopersmith wrote: > James Carlson wrote: >> How is it that a bug fixed back in build 127 didn't affect me in build >> 131 but started affecting me in build 134 ... ? > > The great renaming brought it back to life in 133: > http://defect.opensolaris.org/bz/show_bug.cgi?i

[osol-discuss] When will opensolaris fix the poweroff problem?

2010-03-14 Thread keithk
Hi: I have been installed opensolaris since when it was svn 96 on my Dell XPS Studio Desktop (upgrading to the latest every time). Opensolaris has never able to poweroff my machine when I shutdown the machine every time. There was a defect which has been filed, http://defect.opensolaris.org/bz/

[osol-discuss] When will opensolaris fix the poweroff problem?

2010-03-14 Thread keithk
Hi: I have been installed opensolaris since when it was svn 96 on my Dell XPS Studio Desktop (upgrading to the latest every time). Opensolaris has never able to poweroff my machine when I shutdown the machine every time. There was a defect which has been filed, http://defect.opensolaris.org/bz/

Re: [osol-discuss] Usage of psinfo_t from procfs.h

2010-03-14 Thread Mike Gerdts
On Sun, Mar 14, 2010 at 6:01 AM, Ivan Petrov wrote: > Hi, > I'm trying to write a small piece of code that should be capable of getting > the command line arguments for a given process. Similar to the ps(1) tool. > What I can't figure out is how exactly to use the pr_argv field of the > psinfo_

Re: [osol-discuss] Usage of psinfo_t from procfs.h

2010-03-14 Thread Peter Tribble
On Sun, Mar 14, 2010 at 12:01 PM, Ivan Petrov wrote: > Hi, > I'm trying to write a small piece of code that should be capable of getting > the command line arguments for a given process. Similar to the ps(1) tool. > What I can't figure out is how exactly to use the pr_argv field of the > psinfo

[osol-discuss] Usage of psinfo_t from procfs.h

2010-03-14 Thread Ivan Petrov
Hi, I'm trying to write a small piece of code that should be capable of getting the command line arguments for a given process. Similar to the ps(1) tool. What I can't figure out is how exactly to use the pr_argv field of the psinfo_t struct... Here's the code: #include #include #include #in

Re: [osol-discuss] Why im not staying with Opensolaris

2010-03-14 Thread valrh...@gmail.com
At the risk of getting my own head bitten off: One the one hand, your message should be a good indication of how OpenSolaris affects brand new users. It's not Linux, and that's a good thing in many ways. What you need to realize is that getting all of the user interface tweaks correct is not th

Re: [osol-discuss] about zfs exported on nfs

2010-03-14 Thread Casper . Dik
>I've had bad experience setting NFS mounts in /etc/fstab. The problem is: >If the filesystem can't mount for any reason, then the machine doesn't come >up. Unless you set it as a "soft" mount, in which case, the slightest >little network glitch causes clients to lose their minds. There is als