I was hoping this would be fixed with the update: Feb 15 16:31:09 oid vmxnet3s: [ID 654879 kern.notice] vmxnet3s:0: getcapab(0x200000) -> no
getting a lot of those in /var/adm/messages Is there any way to fix this manually? On Wed, Feb 15, 2012 at 12:54 PM, cpforum <[email protected]> wrote: > > I have updated to 151a2 too successfully 3 host. > > Who knows this package coming from oi_148 : gnome/theme/cursor/dmz-cursor ? > > > # pkg list | grep -v 151 > NAME (PUBLISHER) VERSION STATE UFOXI > gnome/theme/cursor/dmz-cursor 0.4-0.148 installé ----- > > ==== > > Here a little contrib to update easily java6 (JRE or JDK ) > > $ cat upjava > #!/bin/ksh > > export PATH=/usr/bin > > # jre-6u31-solaris-i586.sh > # jre-6u31-solaris-x64.sh > > #JAVADIR=/opt > JAVADIR=/opt/Oracle > > JAVA=${1:-jre} > if [[ $JAVA != "jre" && $JAVA != "jdk" ]] > then > print -u2 "usage : upjava [jre|jdk]" > exit 1 > fi > > JAVATGZ=$PWD > > count=$(ls $JAVA-*-solaris-*.sh | wc -l) > if (( count == 0 )) > then > print "No java archive found in current dir" > fi > > if (( count > 2 )) > then > print "To many java archive" > ls $JAVA-*-*.sh > fi > > if ! cd $JAVADIR > then > print -u2 "Can't change to base java install directory : $JAVADIR" > exit 2 > fi > > for java in $(ls $JAVATGZ/$JAVA-*-solaris-*.sh) > do > print "Processing $java archive" > chmod 700 $java > $java > done > > dir=$(ls -tr | tail -1 ) > > rm -f $JAVADIR/$JAVA > ln -s $JAVADIR/$dir $JAVADIR/$JAVA > ls -ld $JAVADIR/${JAVA}* > > _______________________________________________ > OpenIndiana-discuss mailing list > [email protected] > http://openindiana.org/mailman/listinfo/openindiana-discuss > _______________________________________________ OpenIndiana-discuss mailing list [email protected] http://openindiana.org/mailman/listinfo/openindiana-discuss
