[osol-discuss] Two network adapter on osol as vm guest

2010-11-11 Thread Harry Putnam
Setup:
  Windows 7 64 bit running vmware 7.1

Opensolaris 134 installed as guest in vm.

I got this installation working and networked by bridging the adapter
with the laptops nic.

That kind of connection means I need to have access to a router to be
able to connect to the guest.

So I want to create a host-only network as well.  Something to switch
to when away from a router.

I understand from VMware manuals that this is possible.  And have gone
thru the steps to create the virtual adapter for it.  So in the
hardware listing there are 2 virtual network adaptors.

However on the guest... ifconfig only sees loop-back and e1000g0
(which is the bridged adaptor).

,
| lo0: flags=2001000849UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL 
|mtu 8232 index 1
| inet 127.0.0.1 netmask ff00
| e1000g0: flags=1000843UP,BROADCAST,RUNNING,MULTICAST,IPv4 
|  mtu 1500 index 2
| inet 192.168.0.30 netmask fc00 broadcast 192.168.3.255
| ether 0:c:29:e3:61:4f
`

What do I need to do to help the OS discover the other adapter?

It appears to be setup on the vmware side, and reports `connected'

So it reports both `enabled' and `connected' and should be served an
address from the vmware built dhcp server.

However first it must be visible to the OS.

I thought maybe ifconfigs' `plumb' tool could help but apparently I
have to know the adapter name first or create it.  I have only a foggy
grasp of how to go at that... or maybe better put, no grasp.

I'm hopeing someone here will have done something like this and be
able to coach me a bit.

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


Re: [osol-discuss] Two network adapter on osol as vm guest

2010-11-11 Thread Joerg Schilling
Harry Putnam rea...@newsguy.com wrote:

 However on the guest... ifconfig only sees loop-back and e1000g0
 (which is the bridged adaptor).

 ,
 | lo0: flags=2001000849UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL 
 |mtu 8232 index 1
 | inet 127.0.0.1 netmask ff00
 | e1000g0: flags=1000843UP,BROADCAST,RUNNING,MULTICAST,IPv4 
 |  mtu 1500 index 2
 | inet 192.168.0.30 netmask fc00 broadcast 192.168.3.255
 | ether 0:c:29:e3:61:4f
 `

 What do I need to do to help the OS discover the other adapter?

ifconfig -a plumb

Jörg

-- 
 EMail:jo...@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin
   j...@cs.tu-berlin.de(uni)  
   joerg.schill...@fokus.fraunhofer.de (work) Blog: 
http://schily.blogspot.com/
 URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Compiling sysbench on Solaris 10 with MySQL

2010-11-11 Thread Nancy
Thanks for trying.
-- 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


Re: [osol-discuss] Compiling sysbench on Solaris 10 with MySQL

2010-11-11 Thread Nancy
So I think I am progressing. Removed sunfreeware's mysql installation and 
install using CSKamp's mysql instead from this thread - 
http://opensolaris.org/jive/thread.jspa?messageID=138328#138328 from shashasu 
however, I am having trouble with step 4

-
4.make
then you need to
cp /usr/local/share/doc/sysbench/manual.html ./sysbench-0.4.8/config 
./sysbench-0.4.8/doc /mysql/share/doc/sysbench
if you don't do this . it may appear error.
5.make install
---

the command line doesn't work so I added '-r' to it. I get the following error. 
Is it related the copying manual.html to the wrong place? manual.html is 
actually empty.

---

Making install in doc
Making install in xsl
XML_CATALOG_FILES=./xsl/catalog.xml xsltproc --nonet -o manual.html 
./xsl/xhtml.xsl 
XML_CATALOG_FILES=./xsl/catalog.xml xsltproc --nonet -o manual.html 
./xsl/xhtml.xsl 
test -z /mysql/share/doc/sysbench || /bin/sh ../config/mkinstalldirs 
/mysql/share/doc/sysbench
 ../config/install-sh -c -m 644 './manual.html' 
'/mysql/share/doc/sysbench/manual.html'
../config/install-sh: ./manual.html does not exist
*** Error code 1
The following command caused the error:
list='manual.html'; for p in $list; do \
  if test -f $p; then d=; else d=./; fi; \
  f=`echo $p | sed -e 's|^.*/||'`; \
  echo  ../config/install-sh -c -m 644 '$d$p' '/mysql/share/doc/sysbench/$f'; 
\
  ../config/install-sh -c -m 644 $d$p /mysql/share/doc/sysbench/$f; \
done
make: Fatal error: Command failed for target `install-dist_htmlDATA'
Current working directory 
/export/home/chong/solaris_NokiaSysbench3/solaris_NokiaSysbench/sysbench-0.4.12-unmodifed/doc
*** Error code 1
The following command caused the error:
make  install-exec-am install-data-am
make: Fatal error: Command failed for target `install-am'
Current working directory 
/export/home/chong/solaris_NokiaSysbench3/solaris_NokiaSysbench/sysbench-0.4.12-unmodifed/doc
*** Error code 1
The following command caused the error:
failcom='exit 1'; \
for f in x $MAKEFLAGS; do \
  case $f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
  esac; \
done; \
dot_seen=no; \
target=`echo install-recursive | sed s/-recursive//`; \
list='xsl'; for subdir in $list; do \
  echo Making $target in $subdir; \
  if test $subdir = .; then \
dot_seen=yes; \
local_target=$target-am; \
  else \
local_target=$target; \
  fi; \
  (cd $subdir  make  $local_target) \
  || eval $failcom; \
done; \
if test $dot_seen = no; then \
  make  $target-am || exit 1; \
fi; test -z $fail
make: Fatal error: Command failed for target `install-recursive'
Current working directory 
/export/home/chong/solaris_NokiaSysbench3/solaris_NokiaSysbench/sysbench-0.4.12-unmodifed/doc
*** Error code 1
The following command caused the error:
failcom='exit 1'; \
for f in x $MAKEFLAGS; do \
  case $f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
  esac; \
done; \
dot_seen=no; \
target=`echo install-recursive | sed s/-recursive//`; \
list='doc sysbench'; for subdir in $list; do \
  echo Making $target in $subdir; \
  if test $subdir = .; then \
dot_seen=yes; \
local_target=$target-am; \
  else \
local_target=$target; \
  fi; \
  (cd $subdir  make  $local_target) \
  || eval $failcom; \
done; \
if test $dot_seen = no; then \
  make  $target-am || exit 1; \
fi; test -z $fail
make: Fatal error: Command failed for target `install-recursive'
-- 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org


[osol-discuss] share with multiple attribute is not working in Solaris 8

2010-11-11 Thread raja
In Solaris 10 below mentioned share command its working fine,

share -F nfs -o rw=client1:client2:client3,root= client4 -d cx3 
/cx300/disk13

In Solaris 8 multiple attributes are not working, eithier ROOT or RW only is 
working. 
Please provide me the solution for this issue.
-- 
This message posted from opensolaris.org
___
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org