Unix & Linux Stack Exchange
Q&A for users of Linux, FreeBSD and other Unix-like operating systems
Latest Questions
0
votes
1
answers
22
views
Solaris 11 or OI zones: redirecting network traffic to NGZ? Using Virtualization?
Does anyone know how to redirect IP packets from a GZ interface to a NGZ? I think this may be due to virtual (multiple) MAC addresses per NIC interacting with VMWare and VirtualBox and there is a [potential solution][1] below involved in placing the Host NIC (through VMWare or VirtualBox in promiscu...
Does anyone know how to redirect IP packets from a GZ interface to a NGZ?
I think this may be due to virtual (multiple) MAC addresses per NIC interacting with VMWare and VirtualBox and there is a potential solution below involved in placing the Host NIC (through VMWare or VirtualBox in promiscuous mode) including the Gust OS NIC. Unsure if it's the best solution.
The GZ is on interface net0 (phys) 192.168.0.10 and NGZ on zone/net0 (vnic) 192.168.0.11. I'm trying to bring up a DNS server in the NGZ at 192.168.0.11. So far, I can use the packet filter / firewall to redirect DNS ports (NGZ won't allow me to use privileged ports) to the GZ for testing. I have NAT working using
pass in on net0 from 192.168.0.11 to any nat-to (net0)
, however I still can't get traffic from the 192.168.0.0/24 subnet through physical net0 to route to the NGZ at 192.168.0.11.
FYI -- I'm using VMWare on a Mac and it created a bridge for the 192.168.0.0/24 subnet.
atod
(155 rep)
Jul 10, 2025, 01:47 AM
• Last activity: Jul 10, 2025, 03:06 AM
0
votes
1
answers
54
views
Solaris Distro support for i386 and X64
I'm looking at publicly available Solaris distros and trying to determine what support each architecture. Can anyone comment if these support i386 (32-bit) and/or X64 (64-bit)? Oracle Site: https://www.oracle.com/solaris/solaris10/downloads/solaris10-get-jsp-downloads.html Illumos: https://dlc.openi...
I'm looking at publicly available Solaris distros and trying to determine what support each architecture. Can anyone comment if these support i386 (32-bit) and/or X64 (64-bit)?
Oracle Site:
https://www.oracle.com/solaris/solaris10/downloads/solaris10-get-jsp-downloads.html
Illumos:
https://dlc.openindiana.org/isos/hipster/20161030/
I'm asking because I have some older software that needs to be compiled with 32-bit support only.
atod
(155 rep)
Jan 26, 2025, 04:06 AM
• Last activity: Jan 26, 2025, 08:24 AM
4
votes
1
answers
4201
views
How to configure OpenIndiana (151a8 aka "hipster") for development?
I saw a similar post about [Solaris][1] and thought of a similar howto.  I've heard of [recent news (as in 2013)][2] with the distribution and I learned I could easily update my initial *OpenIndiana* 151a7 release to **hipster** ([0.5.11-0.151.1.8.1][3] to be more precise –...
I saw a similar post about Solaris and thought of a similar howto.
I've heard of recent news (as in 2013) with the distribution
and I learned I could easily update my initial *OpenIndiana* 151a7 release
to **hipster** (0.5.11-0.151.1.8.1 to be more precise –
you can check individual files in the distribution with the link).
In this upcoming release, many things are different
from what is explained in the old OpenIndiana wiki
or the [illumos](https://illumos.org) build howto
and its "how to use gcc only" section
because of the ownership of SunStudio, etc.
I've learned a long time ago that setting up an environment for development, or simply to compile a few things like I do, involves more than just having the right software.
It's a lot about configuration and information –
and development skills when you do develop software.
### Software ###
OpenIndiana uses IPS just like Solaris.
pkg install pkgname
/ pkg search -r keyword
and pkg info -r keyword
are quite helpful as the GUI frontend packager is broken for the moment in 151a8.
Extra repositories need to be configured to access extra packages:
$ pkg set-publisher -p http://pkg.openindiana.org/sfe
and the encumbered one if applicable
pkg set-publisher -p http://pkg.openindiana.org/sfe-encumbered
On a clean install, I've settled for these 2 big metapackages
(about 600 mb of downloads total, some few GBs installed)
and a few things which appeared appropriate when I compiled *fvwm*:
sudo pkg install pkg://openindiana.org/metapackages/build-essential@1.0,5.11-0.151.1.8.1:20130803T052718Z
sudo pkg install sunstudio12u1
sudo pkg install pkg:/library/desktop/gtk1@1.2.10-0.151.1.8
sudo pkg install pkg:/library/java/java-gnome@2.30.0-0.151.1.8
sudo pkg install pkg://sfe/library/fribidi@0.19.2,5.11-0.151.1.5:20120805T091919Z
*Build-essential* contains mostly everything you need including but not limited to:
pkg install -v pkg:/archiver/gnu-tar pkg:/compress/p7zip pkg:/compress/unzip \
pkg:/developer/build/ant pkg:/developer/build/autoconf pkg:/developer/build/automake-110 \
pkg:/developer/build/gnu-make pkg:/developer/build/libtool pkg:/developer/build/make \
pkg:/developer/gnome/gettext pkg:/developer/java/jdk \
pkg:/developer/java/junit pkg:/developer/lexer/flex pkg:/developer/macro/cpp \
pkg:/developer/macro/gnu-m4 pkg:/developer/object-file pkg:/developer/parser/bison \
pkg:/file/gnu-coreutils pkg:/file/gnu-findutils \
pkg:/library/libtool/libltdl pkg:/library/libxslt pkg:/library/pcre \
pkg:/system/library/math/header-math pkg:/text/gawk \
pkg:/text/gnu-diffutils pkg:/text/gnu-gettext pkg:/text/gnu-grep \
pkg:/text/gnu-patch pkg:/text/gnu-sed pkg:/text/groff \
pkg:/text/texinfo pkg:/library/neon pkg:/library/apr-util-13 \
pkg:/developer/library/lint pkg:/system/header pkg:/developer/build/onbld \
pkg:/data/docbook \
pkg:/library/glib2 \
pkg:/library/libxml2 \
pkg:/library/libxslt \
pkg:/library/nspr/header-nspr \
pkg:/library/perl-5/xml-parser \
pkg:/system/library/install \
pkg:/system/library/dbus \
pkg:/system/library/libdbus \
pkg:/system/library/libdbus-glib \
pkg:/library/python-2/python-extra-26 \
pkg:/system/library/mozilla-nss/header-nss
gcc 4.7.3
is the latest available in the *hipster* branch (pkg://openindiana.org/developer/gcc-47@4.7.3,5.11-0.151.1.8.1:20130802T223703Z).
There are also the *gcc-dev* and *ss-dev* metapackages,
but I'm not sure to what extent they'd add anything to what I have now.
### Configuration (highlights from my .bashrc file) ###
In some cases there might be a need to use another version of GCC than 4.7 but for now I'm using the latest available and have been relying on some suggested configuration from both the *OpenIndiana* and *Illumos* site, doing the best I could:
[...]
CW_GCC_DIR="/usr/gcc/4.7/bin/"; export CW_GCC_DIR
GCC_ROOT="/usr/gcc/4.7"; export GCC_ROOT
ONBLD_TOOLS="/opt/onbld"; export ONBLD_TOOLS
ONLY_LINT_DEFS="-I/sunstudio12.1/prod/include/lint"; export ONLY_LINT_DEFS
__GNUC=""; export __GNUC
amd64_LINT="/opt/sunstudio12.1/bin/lint"; export amd64_LINT
i386_LINT="/opt/sunstudio12.1/bin/lint"; export i386_LINT
PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/SUNWspro/bin:/usr/ccs/bin:/opt/onbld/bin:/opt/onbld/bin/i386:/opt/sfw/bin:/usr/sfw/bin:/usr/dt/bin:/usr/openwin/bin:/usr/sbin:/usr/gnu/bin/:/usr/sbin/:/sbin:/usr/local/bin:/usr/bin:/usr/ccs/bin:/usr/dt/bin:/usr/gnu/bin/"; export PATH
### The challenge(s) ###
The challenge may be great, even for a developer, which I am not. After configuring my environment, I try to compile fvwm 2.6.5 because it's something standard, it's small and is sort of a landmark piece of software I'm interested in... to see what gives. Trying to improve on the features afforded by the configuration, I thought I had an issue and had to compile glib from source. So I came across this amazing account from this obviously very knowledgeable person who actually compiled this on OI. I realized I didn't need to install any further glib package, but this person maintains a repository of ported compiled software and that can be quite useful considering some of the complexity...
Also, as a general rule, one should pay attention to bug tracking on the platform as well as the mailing lists (especially oi-dev).
### Common Build Environment ###
In the old section of the wiki on building the OI OS proper, there's reference to this tool called CBE 1.7.0. It cannot be installed at this point because it requires SUNWperl510core and force installing this will ruin your acl in my experience. When I succeeded in installing it, I'll admit to having no clue whatsoever on how to use that as it's way over my head and I wish I knew if this can simplify something when compiling userland stuff. What I know is that in the latest releases you have a mini-version of it 1.8.0 (pkg://openindiana.org/developer/build/cbe@1.8.0,5.11-0.151.1.8:20130305T143840Z) so I installed that which doesn't require the old perl dependency. Still nowhere near grasping what it's about (I'll have to read about *specs* and such) but it's there. I see some 2013 dated thread in the mailing list in the context of contributing SFE packages and pkgbuild .
----------
### Questions ###
- I was able to build fvwm 2.6.5 easily,
but does my setup look like a minimally acceptable build environment
and is there anything specific that doesn't comply with best practices here?
----------
### References and links ###
Basic admin commands cheat sheet for someone new to SunOS (PDF)
user44370
Aug 5, 2013, 05:33 PM
• Last activity: May 13, 2024, 08:30 PM
7
votes
6
answers
5649
views
Can not find link to download OpenSolaris source code
I want to understand how OpenSolaris [ptools][1](process tools) works. How exactly pstack, pmap, pargs etc works, but I can't find any link to its full source code. I can only find an online version of the [source][2]. Any advice where I can download source code for offline use? [1]: http://develope...
Hemant
(6950 rep)
Sep 14, 2010, 11:38 AM
• Last activity: May 6, 2023, 11:06 AM
7
votes
2
answers
13036
views
List processes that have been running more than 2 hours
How can I list processes, with a defined name, that have been running for more than 2 hours. This is what I have tried. ps -efo pid,comm,etime | grep 'process name' | awk '{print $3}' ---- This is for Solaris. Or can someone help how to create a script that will send an email with the process IDs if...
How can I list processes, with a defined name, that have been running for more than 2 hours. This is what I have tried.
ps -efo pid,comm,etime | grep 'process name' | awk '{print $3}'
----
This is for Solaris.
Or can someone help how to create a script that will send an email with the process IDs if there are processes running longer than 2 hours.
Vinod
(71 rep)
Jul 19, 2019, 02:50 PM
• Last activity: Jun 7, 2022, 10:55 AM
0
votes
1
answers
60
views
saslauthd works when run 'standalone' but not when run by OmniOS svcadm
If I run `saslauthd` via `svcadm` it does not work, but if I run it from the command-line, it does. ``` u@h:w$ svcadm enable saslauthd u@h:w$ ps -ef|grep sasl root 17192 14073 0 05:50:12 ? 0:00 /opt/ooce/sbin/saslauthd -a sasldb -c -m /var/run/saslauthd root 17194 17102 0 05:50:31 pts/3 0:00 grep sa...
If I run
saslauthd
via svcadm
it does not work, but if I run it from the command-line, it does.
u@h:w$ svcadm enable saslauthd
u@h:w$ ps -ef|grep sasl
root 17192 14073 0 05:50:12 ? 0:00 /opt/ooce/sbin/saslauthd -a sasldb -c -m /var/run/saslauthd
root 17194 17102 0 05:50:31 pts/3 0:00 grep sasl
u@h:w$ /opt/ooce/sbin/testsaslauthd -p topsikrit -u imapuser
0: NO "authentication failed"
u@h:w$ svcadm disable saslauthd
u@h:w$ /opt/ooce/sbin/saslauthd -a sasldb -c -d -V -m /var/run/saslauthd
saslauthd :num_procs : 5
saslauthd :mech_option: NULL
saslauthd :run_path : /var/run/saslauthd
saslauthd :auth_mech : sasldb
...
[ switch to another tty]
u@h:w$ /opt/ooce/sbin/testsaslauthd -p topsikrit -u imapuser
0: OK "Success."
The _only difference_, so far as I can see, between the two modes of running of saslauthd
is that one was launched by the svcadm
framework and the other, from the command line. But the user (root
-- despite the $
in the prompt) is the same, and the arguments, (apart from -V
and -d
) are also the same. So why won't saslauthd
authenticate in the first case, but will in the second?
The above commands were run in a sparse zone.
Everything works as it should if I switch to the _passwd_ mechanism but I would prefer to use _sasldb_.
Michael NGV
(1 rep)
May 9, 2022, 11:57 AM
• Last activity: May 9, 2022, 10:33 PM
2
votes
1
answers
5831
views
Find out global zone Name once you logged into a NON global zone
I understand in Unix Oracle-Solaris OS the `zoneadm list` command will easily show all the available zones. But if I am logged into a non global zone there is no easy way to get information about the global zone. I see the `arp` command can be of some help because it will return the NIC mac address....
I understand in Unix Oracle-Solaris OS the
zoneadm list
command will easily show all the available zones.
But if I am logged into a non global zone there is no easy way to get information about the global zone.
I see the arp
command can be of some help because it will return the NIC mac address. Then with the NIC mac address I can arp
again to get all the machine name associated with that (NIC) mac address.
This process sounds kind of intricate to me.
Is there any better way to get that info?
ztank1013
(2261 rep)
Sep 29, 2011, 09:00 PM
• Last activity: Sep 27, 2020, 09:50 AM
5
votes
0
answers
128
views
What dictates smf service maintenance mode?
I have smartos machines running a custom application as an smf service (a circonus monitoring agent). On some of these machines the agent errors when starting and gets stuck in a restart loop eventually leading to the machine panicking. For every other smf service I have worked with they will go int...
I have smartos machines running a custom application as an smf service (a circonus monitoring agent). On some of these machines the agent errors when starting and gets stuck in a restart loop eventually leading to the machine panicking. For every other smf service I have worked with they will go into "maintenance" mode after restarting a few times but this particular service never seems to. I don't see any way to tweak these settings in the smf manifest and I'm not finding much information about it in the oracle docs. Does anyone know if this is a configurable setting and if so where can I find it?
The SMF manifest defines the following restart method:
jesse_b
(41447 rep)
May 21, 2020, 01:20 PM
• Last activity: Jun 5, 2020, 01:36 PM
2
votes
1
answers
755
views
How To Read Variable Value Using mdb?
Let's say I set a parameter with the following command, how could I read it back later on? `mdb -kwe "spa_load_verify_metadata/W 0"` I am trying to read the [man page][1], but I'm only in this OS temporarily and don't understand what it's talking about. The search modifiers are: l Search for the spe...
Let's say I set a parameter with the following command, how could I read it back later on?
mdb -kwe "spa_load_verify_metadata/W 0"
I am trying to read the man page , but I'm only in this OS temporarily and don't understand what it's talking about.
The search modifiers are:
l Search for the specified 2-byte value.
L Search for the specified 4-byte value.
M Search for the specified 8-byte value.
I would normally expect that value to be in /sys/modules/zfs/parameters/spa_load_verify_metadata
where I could just cat
the value, but /sys
doesn't even exist.
I tried finding the variable using find
, but it wasn't in the filesystem. I don't understand the concept of where these values are...
I'm actually just trying to read the values of other parameters that I know to exist .
Louis Waweru
(195 rep)
Feb 29, 2020, 01:35 AM
• Last activity: Mar 1, 2020, 01:07 AM
2
votes
2
answers
575
views
Does Opensolaris offer distributed ZFS filesystems
I haven't had any luck getting a *confirmed* yes or no to this question. I'd like to run ZFS as a distributed file system (like Gluster or CEPH). OpenZFS and ZFS on Linux does not (yet) have file system clustering. My understanding is distributed is currently a feature of ZFS in the proprietary (pai...
I haven't had any luck getting a *confirmed* yes or no to this question.
I'd like to run ZFS as a distributed file system (like Gluster or CEPH). OpenZFS and ZFS on Linux does not (yet) have file system clustering.
My understanding is distributed is currently a feature of ZFS in the proprietary (paid) Solaris. **Is it also available in Opensolaris?**
The clustering will be used with two separate servers, each using their own JBOD. Thus, we need an across-the-network (10Gb ETH) solution.
BurningKrome
(238 rep)
Nov 7, 2019, 01:47 PM
• Last activity: Nov 7, 2019, 05:44 PM
3
votes
1
answers
1264
views
Why can't I import an ZFS pool without partitioning the data disk with fdisk?
I have a strange situation here, in which I am unable to import an ZFS pool that I brought from another OS UNLESS I fdisk the disk of the pool. I am puzzled as to why this is happening and hoping to get an answer or an advice. The flow: An ZFS pool containing a single 3TB disk is created on a "NAS4F...
I have a strange situation here, in which I am unable to import an ZFS pool that I brought from another OS UNLESS I fdisk the disk of the pool. I am puzzled as to why this is happening and hoping to get an answer or an advice.
The flow:
An ZFS pool containing a single 3TB disk is created on a "NAS4Free 9.3.0.2" system (FreeBSD).
I export the pool and attach it to a "NexentaStor 4.0.4" system (OpenSolaris).
zpool import then shows
root@nexenta:/volumes# zpool import
pool: tank1
id: 17717822833491017053
state: UNAVAIL
status: One or more devices are missing from the system.
action: The pool cannot be imported. Attach the missing
devices and try again.
see: http://illumos.org/msg/ZFS-8000-3C
config:
tank1 UNAVAIL insufficient replicas
c2t50014EE2B5B23B15d0p0 UNAVAIL cannot open
zdb -l on the disk shows label0 and label1 as expected but
--------------------------------------------
LABEL 2
--------------------------------------------
failed to read label 2
--------------------------------------------
LABEL 3
--------------------------------------------
failed to read label 3
I then run
fdisk c2t50014EE2B5B23B15d0p0
. It says the disk is not initialized and offers to initialize and create 1 Linux partition.
I let it do it. Then optionally delete the new partition and save.
At this point an MBR is created on the first sector of the disk. The disk as a whole is still a device of the zpool.
With the MBR on the disk, I am able to import the pool and as expected.
Important details:
Same process with a 256GB disk works as expected without fdisk involvement. I suspect this issue is related to disks over 2TB.
What I have tried:
See if disk size is detected correctly and the same on the different systems. It seems that disk geometry is different for fdisk on NexentaStor than for other systems. I am not certain how to verify.
Why does the creation of the MBR on such a disk allows for proper read of the ZFS labels on the end of the disk?
Arik Yavilevich
(139 rep)
Sep 30, 2015, 02:10 PM
• Last activity: Aug 2, 2019, 03:01 AM
1
votes
0
answers
927
views
OpenIndiana driving me nuts: install vlc
I need to install VLC on OpenIndiana version 158a and I cannot find it. Here are the error messages I'm getting: No suitable version of required package pkg://openindiana.org/SUNWless@436,5.11-0.133:20140117T203457Z found: Reject: pkg://openindiana.org/SUNWless@436,5.11-0.133:20140117T203457Z Reason...
I need to install VLC on OpenIndiana version 158a and I cannot find it. Here are the error messages I'm getting:
No suitable version of required package pkg://openindiana.org/SUNWless@436,5.11-0.133:20140117T203457Z found:
Reject: pkg://openindiana.org/SUNWless@436,5.11-0.133:20140117T203457Z
Reason: All versions matching 'require' dependency pkg:/text/less@436,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/text/less@436,5.11-0.151.1.9:20140117T203457Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/text/less@436,5.11-0.175.0.0.0.2.537:20111019T120500Z
pkg://solaris/text/less@436,5.11-0.175.1.0.0.24.0:20120904T174442Z
Reason: Currently installed package 'text/less' is from sticky publisher 'openindiana.org'.
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWapch22m-jk@1.2.28,5.11-0.133:20120502T231432Z found:
Reject: pkg://openindiana.org/SUNWapch22m-jk@1.2.28,5.11-0.133:20120502T231432Z
Reason: A version for 'require' dependency on pkg:/web/server/apache-22/plugin/plugin-tomcat@1.2.28,5.11-0.151.1.4 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWsmdoc@5.0.9,5.11-0.130:20120902T085559Z found:
Reject: pkg://openindiana.org/SUNWsmdoc@5.0.9,5.11-0.130:20120902T085559Z
Reason: A version for 'require' dependency on pkg:/SUNWnet-snmp-doc@5.4.1,5.11-0.151.1.6 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWmysql5test@5.0.86,5.11-0.133:20110912T022246Z found:
Reject: pkg://openindiana.org/SUNWmysql5test@5.0.86,5.11-0.133:20110912T022246Z
Reason: A version for 'require' dependency on pkg:/database/mysql-5/tests@5.0.86,5.11-0.151.1 cannot be found
No suitable version of required package pkg://openindiana.org/web/server/apache-22/plugin/plugin-security@2.5.9,5.11-0.134:20140117T203607Z found:
Reject: pkg://openindiana.org/web/server/apache-22/plugin/plugin-security@2.5.9,5.11-0.134:20140117T203607Z
Reason: All versions matching 'require' dependency pkg:/web/server/apache-22/module/apache-security@2.5.9,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/web/server/apache-22/module/apache-security@2.5.9,5.11-0.151.1.9:20140117T203606Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/web/server/apache-22/module/apache-security@2.5.9,5.11-0.175.0.0.0.2.537:20111019T121840Z
pkg://solaris/web/server/apache-22/module/apache-security@2.5.9,5.11-0.175.1.0.0.24.0:20120904T175054Z
Reason: Higher ranked publisher openindiana.org was selected
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWlibevent@1.3.5,5.11-0.133:20140117T202701Z found:
Reject: pkg://openindiana.org/SUNWlibevent@1.3.5,5.11-0.133:20140117T202701Z
Reason: All versions matching 'require' dependency pkg:/library/libevent@1.4.14.2,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/library/libevent@1.4.14.2,5.11-0.151.1.9:20140117T202701Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/library/libevent@1.4.14.2,5.11-0.175.1.0.0.24.0:20120904T172541Z
Reason: Higher ranked publisher openindiana.org was selected
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWprivoxy@3.0.8,5.11-0.133:20140117T203600Z found:
Reject: pkg://openindiana.org/SUNWprivoxy@3.0.8,5.11-0.133:20140117T203600Z
Reason: All versions matching 'require' dependency pkg:/web/proxy/privoxy@3.0.8,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/web/proxy/privoxy@3.0.8,5.11-0.151.1.9:20140117T203558Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/web/proxy/privoxy@3.0.17,5.11-0.175.0.0.0.2.537:20111019T121232Z
pkg://solaris/web/proxy/privoxy@3.0.17,5.11-0.175.1.0.0.24.0:20120904T174956Z
Reason: Higher ranked publisher openindiana.org was selected
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWcups@1.4.2,5.11-0.133:20140117T203006Z found:
Reject: pkg://openindiana.org/SUNWcups@1.4.2,5.11-0.133:20140117T203006Z
Reason: All versions matching 'require' dependency pkg:/print/cups@1.4.2,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/print/cups@1.4.2,5.11-0.151.1.9:20140117T203003Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/print/cups@1.4.5,5.11-0.175.0.0.0.2.537:20111019T110834Z
pkg://solaris/print/cups@1.4.5,5.11-0.175.1.0.0.24.0:20120904T173040Z
Reason: Currently installed package 'print/cups' is from sticky publisher 'openindiana.org'.
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWapch22m-fcgid@2.3.4,5.11-0.133:20120329T215038Z found:
Reject: pkg://openindiana.org/SUNWapch22m-fcgid@2.3.4,5.11-0.133:20120329T215038Z
Reason: A version for 'require' dependency on pkg:/web/server/apache-22/plugin/plugin-fastcgi@2.3.4,5.11-0.151.1.3 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWpython26-simplejson@0.5.11,5.11-0.133:20120902T084315Z found:
Reject: pkg://openindiana.org/SUNWpython26-simplejson@0.5.11,5.11-0.133:20120902T084315Z
Reason: All versions matching 'require' dependency pkg:/library/python-2/simplejson-devel-26@0.5.11,5.11-0.151.1.6 are rejected
Reject: pkg://solaris/library/python-2/simplejson-devel-26@0.5.11,5.11-0.175.0.0.0.0.0:20110927T111040Z
Reason: Higher ranked publisher openindiana.org was selected
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/gnome/gnome-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/system/input-method/library/m17n/contrib@0.5.11,5.11-0.151.1.9:20140117T210609Z found:
Reject: pkg://openindiana.org/system/input-method/library/m17n/contrib@0.5.11,5.11-0.151.1.9:20140117T210609Z
Reason: All versions matching 'require' dependency pkg:/text/gawk@3.1.5,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/text/gawk@3.1.5,5.11-0.151.1.9:20140117T203448Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/text/gawk@3.1.5,5.11-0.175.0.0.0.2.537:20111019T120248Z
pkg://solaris/text/gawk@3.1.8,5.11-0.175.0.10.1.0.0:20120918T171830Z
pkg://solaris/text/gawk@3.1.8,5.11-0.175.1.0.0.24.0:20120904T174414Z
Reason: Currently installed package 'text/gawk' is from sticky publisher 'openindiana.org'.
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sfw/sfw-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/system/input-method/scim/anthy@1.2.4,5.11-0.151.1.9:20140117T210614Z found:
Reject: pkg://openindiana.org/system/input-method/scim/anthy@1.2.4,5.11-0.151.1.9:20140117T210614Z
Reason: All versions matching 'require' dependency pkg:/system/input-method/library/libanthy@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/input-method/library/libanthy@0.5.11,5.11-0.151.1.9:20140117T210550Z
Reason: All versions matching 'require' dependency pkg:/system/library/math@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/library/math@0.5.11,5.11-0.151.1.9:20140117T203342Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sunpro/sunpro-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/system/library/math@0.5.11,5.11-0.174.0.0.0.0.0:20110921T190432Z
pkg://solaris/system/library/math@0.5.11,5.11-0.175.1.0.0.19.0:20120625T151932Z
Reason: Currently installed package 'system/library/math' is from sticky publisher 'openindiana.org'.
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/sunpro/sunpro-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/system/input-method/library/libanthy@0.5.11,5.11-0.175.0.0.0.1.765:20111012T045650Z
pkg://solaris/system/input-method/library/libanthy@0.5.11,5.11-0.175.1.0.0.23.1134:20120820T155244Z
Reason: Currently installed package 'system/input-method/library/libanthy' is from sticky publisher 'openindiana.org'.
No suitable version of required package pkg://openindiana.org/SUNWlibvirt@0.5.11,5.11-0.133:20140117T203612Z found:
Reject: pkg://openindiana.org/SUNWlibvirt@0.5.11,5.11-0.133:20140117T203612Z
Reason: All versions matching 'require' dependency pkg:/system/library/libvirt@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/library/libvirt@0.5.11,5.11-0.151.1.9:20140117T203612Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/xvm/xvm-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWvirtinst@0.5.11,5.11-0.133:20140117T203613Z found:
Reject: pkg://openindiana.org/SUNWvirtinst@0.5.11,5.11-0.133:20140117T203613Z
Reason: All versions matching 'require' dependency pkg:/system/virtinst@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/virtinst@0.5.11,5.11-0.151.1.9:20140117T203614Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/xvm/xvm-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/xvm@0.5.11,5.11-0.134:20140117T203707Z found:
Reject: pkg://openindiana.org/xvm@0.5.11,5.11-0.134:20140117T203707Z
Reason: All versions matching 'require' dependency pkg:/system/xvm@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/xvm@0.5.11,5.11-0.151.1.9:20140117T203707Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/xvm/xvm-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWxvmdom@3.4.2,5.11-0.133:20140117T203613Z found:
Reject: pkg://openindiana.org/SUNWxvmdom@3.4.2,5.11-0.133:20140117T203613Z
Reason: All versions matching 'require' dependency pkg:/system/xvm/xvmstore@3.4.2,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/xvm/xvmstore@3.4.2,5.11-0.151.1.9:20140117T203615Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/xvm/xvm-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWvdisk@0.5.11,5.11-0.133:20140117T203613Z found:
Reject: pkg://openindiana.org/SUNWvdisk@0.5.11,5.11-0.133:20140117T203613Z
Reason: All versions matching 'require' dependency pkg:/system/storage/vdiskadm@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/storage/vdiskadm@0.5.11,5.11-0.151.1.9:20140117T203613Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/xvm/xvm-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWDTraceToolkit@0.5.11,5.11-0.144:20140117T202034Z found:
Reject: pkg://openindiana.org/SUNWDTraceToolkit@0.5.11,5.11-0.144:20140117T202034Z
Reason: All versions matching 'require' dependency pkg:/developer/dtrace/toolkit@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/developer/dtrace/toolkit@0.5.11,5.11-0.151.1.9:20140117T202032Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/admin/admin-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/developer/dtrace/toolkit@0.99,5.11-0.173.0.0.0.1.0:20110826T145551Z
Reason: Currently installed package 'developer/dtrace/toolkit' is from sticky publisher 'openindiana.org'.
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/admin/admin-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWdistro-license-copyright@0.5.11,5.11-0.133:20120209T202643Z found:
Reject: pkg://openindiana.org/SUNWdistro-license-copyright@0.5.11,5.11-0.133:20120209T202643Z
Reason: A version for 'require' dependency on pkg:/release/copyright@0.5.11,5.11-0.151.1.2 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWdistro-license-copyright@0.5.11,5.11-0.133:20120114T201201Z found:
Reject: pkg://openindiana.org/SUNWdistro-license-copyright@0.5.11,5.11-0.133:20120114T201201Z
Reason: A version for 'require' dependency on pkg:/release/copyright@0.5.11,5.11-0.151.1.1 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWpython26-lxml@2.1.2,5.11-0.144:20140117T202836Z found:
Reject: pkg://openindiana.org/SUNWpython26-lxml@2.1.2,5.11-0.144:20140117T202836Z
Reason: All versions matching 'require' dependency pkg:/library/python-2/lxml-26@2.1.2,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/library/python-2/lxml-26@2.1.2,5.11-0.151.1.9:20140117T202836Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/admin/admin-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/library/python-2/lxml-26@2.1.2,5.11-0.175.0.0.0.2.537:20111019T104936Z
pkg://solaris/library/python-2/lxml-26@2.3.3,5.11-0.175.1.0.0.24.0:20120904T172712Z
Reason: Higher ranked publisher openindiana.org was selected
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/admin/admin-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWadmap@0.5.11,5.11-0.151:20140117T203411Z found:
Reject: pkg://openindiana.org/SUNWadmap@0.5.11,5.11-0.151:20140117T203411Z
Reason: All versions matching 'require' dependency pkg:/system/management/sysidtool@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/management/sysidtool@0.5.11,5.11-0.151.1.9:20140117T203411Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/admin/admin-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWsolnm@0.5.11,5.11-0.133:20140117T203030Z found:
Reject: pkg://openindiana.org/SUNWsolnm@0.5.11,5.11-0.133:20140117T203030Z
Reason: All versions matching 'require' dependency pkg:/release/name@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/release/name@0.5.11,5.11-0.151.1.9:20140117T203030Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/solaris_re/solaris_re-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/release/name@0.5.11,5.11-0.175.0.0.0.2.0:20111019T122735Z
pkg://solaris/release/name@0.5.11,5.11-0.175.1.0.0.24.3:20120919T185319Z
Reason: Currently installed package 'release/name' is from sticky publisher 'openindiana.org'.
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/solaris_re/solaris_re-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWadmlib-sysid@0.5.11,5.11-0.151:20140117T203343Z found:
Reject: pkg://openindiana.org/SUNWadmlib-sysid@0.5.11,5.11-0.151:20140117T203343Z
Reason: All versions matching 'require' dependency pkg:/system/library/sysidtool@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/library/sysidtool@0.5.11,5.11-0.151.1.9:20140117T203343Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/admin/admin-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWadmr@0.5.11,5.11-0.151:20140117T203247Z found:
Reject: pkg://openindiana.org/SUNWadmr@0.5.11,5.11-0.151:20140117T203247Z
Reason: All versions matching 'require' dependency pkg:/service/management/sysidtool@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/service/management/sysidtool@0.5.11,5.11-0.151.1.9:20140117T203247Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/admin/admin-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWwsr2@0.5.11,5.11-0.151:20140117T203404Z found:
Reject: pkg://openindiana.org/SUNWwsr2@0.5.11,5.11-0.151:20140117T203404Z
Reason: All versions matching 'require' dependency pkg:/system/management/product-registry@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/management/product-registry@0.5.11,5.11-0.151.1.9:20140117T203404Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/admin/admin-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWdistro-license-copyright@0.5.11,5.11-0.133:20110912T024345Z found:
Reject: pkg://openindiana.org/SUNWdistro-license-copyright@0.5.11,5.11-0.133:20110912T024345Z
Reason: A version for 'require' dependency on pkg:/release/copyright@0.5.11,5.11-0.151.1 cannot be found
No suitable version of required package pkg://openindiana.org/release/copyright@0.5.11,5.11-0.151:20140117T203030Z found:
Reject: pkg://openindiana.org/release/copyright@0.5.11,5.11-0.151:20140117T203030Z
Reason: All versions matching 'require' dependency pkg:/release/notices@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/release/notices@0.5.11,5.11-0.151.1.9:20140117T203030Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/solaris_re/solaris_re-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/release/notices@0.5.11,5.11-0.175.0.0.0.2.0:20111019T122736Z
pkg://solaris/release/notices@0.5.11,5.11-0.175.1.0.0.24.3:20120919T185319Z
Reason: Currently installed package 'release/notices' is from sticky publisher 'openindiana.org'.
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/solaris_re/solaris_re-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWservicetag@0.5.11,5.11-0.133:20140117T203408Z found:
Reject: pkg://openindiana.org/SUNWservicetag@0.5.11,5.11-0.133:20140117T203408Z
Reason: All versions matching 'require' dependency pkg:/system/management/service-tag@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/system/management/service-tag@0.5.11,5.11-0.151.1.9:20140117T203404Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/cns/cns-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/system/management/service-tag@1.1.5,5.11-0.175.0.0.0.1.0:20111012T230436Z
pkg://solaris/system/management/service-tag@1.1.5,5.11-0.175.1.0.0.23.0:20120820T162400Z
Reason: Currently installed package 'system/management/service-tag' is from sticky publisher 'openindiana.org'.
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/cns/cns-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWpython-lxml@2.1.2,5.11-0.144:20140117T202837Z found:
Reject: pkg://openindiana.org/SUNWpython-lxml@2.1.2,5.11-0.144:20140117T202837Z
Reason: All versions matching 'require' dependency pkg:/library/python-2/lxml-24@2.1.2,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/library/python-2/lxml-24@2.1.2,5.11-0.151.1.9:20140117T202834Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/admin/admin-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20110912T025547Z found:
Reject: pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20110912T025547Z
Reason: A version for 'require' dependency on pkg:/SUNWced@0.5.11,5.11-0.151.1 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120114T202543Z found:
Reject: pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120114T202543Z
Reason: A version for 'require' dependency on pkg:/SUNWced@0.5.11,5.11-0.151.1.1 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120902T085559Z found:
Reject: pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120902T085559Z
Reason: A version for 'require' dependency on pkg:/SUNWced@0.5.11,5.11-0.151.1.6 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120502T231741Z found:
Reject: pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120502T231741Z
Reason: A version for 'require' dependency on pkg:/SUNWced@0.5.11,5.11-0.151.1.4 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120329T215246Z found:
Reject: pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120329T215246Z
Reason: A version for 'require' dependency on pkg:/SUNWced@0.5.11,5.11-0.151.1.3 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWddu@0.5.11,5.11-0.133:20140117T202127Z found:
Reject: pkg://openindiana.org/SUNWddu@0.5.11,5.11-0.133:20140117T202127Z
Reason: All versions matching 'require' dependency pkg:/diagnostic/ddu@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/diagnostic/ddu@0.5.11,5.11-0.151.1.9:20140117T202126Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/hcts/hcts-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/diagnostic/ddu@0.5.11,5.11-0.175.0.0.0.2.1:20111019T054215Z
pkg://solaris/diagnostic/ddu@0.5.11,5.11-0.175.1.0.0.24.2:20120919T184236Z
Reason: Currently installed package 'diagnostic/ddu' is from sticky publisher 'openindiana.org'.
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/hcts/hcts-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20130721T125046Z found:
Reject: pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20130721T125046Z
Reason: A version for 'require' dependency on pkg:/SUNWced@0.5.11,5.11-0.151.1.8 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWstosreg@0.5.11,5.11-0.151:20140117T203027Z found:
Reject: pkg://openindiana.org/SUNWstosreg@0.5.11,5.11-0.151:20140117T203027Z
Reason: All versions matching 'require' dependency pkg:/release/registration@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/release/registration@0.5.11,5.11-0.151.1.9:20140117T203100Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/cns/cns-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
Reject: pkg://solaris/release/registration@1.1.5,5.11-0.175.0.0.0.1.0:20111012T230321Z
pkg://solaris/release/registration@1.1.5,5.11-0.175.1.0.0.23.0:20120820T162239Z
Reason: Currently installed package 'release/registration' is from sticky publisher 'openindiana.org'.
This version is excluded by installed incorporation pkg://openindiana.org/consolidation/cns/cns-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWced@0.5.11,5.11-0.133:20140117T202152Z found:
Reject: pkg://openindiana.org/SUNWced@0.5.11,5.11-0.133:20140117T202152Z
Reason: All versions matching 'require' dependency pkg:/driver/network/ce@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/driver/network/ce@0.5.11,5.11-0.151.1.9:20140117T202150Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/nspg/nspg-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/system/trusted/trusted-nonglobal@0.5.11,5.11-0.151.1.8:20130721T133909Z found:
Reject: pkg://openindiana.org/system/trusted/trusted-nonglobal@0.5.11,5.11-0.151.1.8:20130721T133909Z
Reason: All acceptable versions of 'require' dependency on pkg:/mail/thunderbird/plugin/thunderbird-lightning are obsolete
No suitable version of required package pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120630T191328Z found:
Reject: pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120630T191328Z
Reason: A version for 'require' dependency on pkg:/SUNWced@0.5.11,5.11-0.151.1.5 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120209T204500Z found:
Reject: pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20120209T204500Z
Reason: A version for 'require' dependency on pkg:/SUNWced@0.5.11,5.11-0.151.1.2 cannot be found
No suitable version of required package pkg://openindiana.org/SUNWcea@0.5.11,5.11-0.133:20140117T202029Z found:
Reject: pkg://openindiana.org/SUNWcea@0.5.11,5.11-0.133:20140117T202029Z
Reason: All versions matching 'require' dependency pkg:/developer/debug/mdb/module/module-ce@0.5.11,5.11-0.151.1.9 are rejected
Reject: pkg://openindiana.org/developer/debug/mdb/module/module-ce@0.5.11,5.11-0.151.1.9:20140117T202026Z
Reason: This version is excluded by installed incorporation pkg://openindiana.org/consolidation/nspg/nspg-incorporation@0.5.11,5.11-0.151.1.8:20130721T125047Z
No suitable version of required package pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20121003T222432Z found:
Reject: pkg://openindiana.org/SUNWcedu@0.5.11,5.11-0.130:20121003T222432Z
Reason: A version for 'require' dependency on pkg:/SUNWced@0.5.11,5.11-0.151.1.7 cannot be found
And that's not all of it, either. I'm totally new to OpenIndiana, and the reason I migrated to it is because my beloved OpenSolaris was discontinued and I found out that this is the next step.
alvonellos
(111 rep)
Mar 31, 2014, 06:05 AM
• Last activity: Mar 9, 2019, 01:05 PM
0
votes
1
answers
507
views
How to compile LXDE on OpenIndiana - how to deal with those AM errors in lxde-common-qt?
Fresh install, installed ss-dev, gcc-dev, sunstudio, a few other packages I thought were relevant based on what I read. Just want to compile LXDE from source because when I look at installing from components ( http://lxde.org/download ) well not all the newer QT based stuff is there plus I get error...
Fresh install, installed ss-dev, gcc-dev, sunstudio, a few other packages I thought were relevant based on what I read. Just want to compile LXDE from source because when I look at installing from components ( http://lxde.org/download ) well not all the newer QT based stuff is there plus I get errors configuring so it's not even easier. So I use http://lxde.git.sourceforge.net/git/gitweb-index.cgi instead i.e. let's start with lxde-common-qt. Clone that. autogen.sh complains automake is not there. export AUTOMAKE="automake-1.10" as trying automake+tab yields that (I know this is not the best way of doing this, but using export guarantees I don't screw up in any lasting fashion). This works, as autogen goes further. Here it starts:
+ [ x != x ]
+ aclocal ./autogen.sh: aclocal: not found [No such file or directory]
+ automake-1.10 --add-missing --copy --include-deps configure.ac: no proper invocation of AM_INIT_AUTOMAKE was found. configure.ac: You should verify that configure.ac invokes AM_INIT_AUTOMAKE, configure.ac: that aclocal.m4 is present in the top-level directory, configure.ac: and that aclocal.m4 was recently regenerated (using aclocal). configure.ac:8: installing `./install-sh' man/Makefile.am:5: ENABLE_REGENERATE_MAN does not appear in AM_CONDITIONAL
+ autoconf configure.ac:3: error: possibly undefined macro: AM_INIT_AUTOMAKE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation. configure.ac:40: error: possibly undefined macro: AM_CONDITIONAL
+ rm -rf autom4te.cache
------------------------
So let's take a look at configure.ac:
C_PREREQ([2.57])
AC_INIT(lxde-common-qt,[0.5.5], [],lxde-common-qt)
AM_INIT_AUTOMAKE()
dnl AC_PROG_INTLTOOL(, [no-xml])
dnl AM_MAINTAINER_MODE
Checks for programs. AC_PROG_INSTALL AC_PROG_LN_S
AC_ARG_ENABLE(man,
[AC_HELP_STRING([--enable-man],
[regenerate roff man pages from Docbook @@])],
[enable_man="${enableval}"],
[enable_man=no] ) xsessions data of path for GDM AC_ARG_WITH([xsession-path],
AS_HELP_STRING(
[--with-xsession-path=PATH],
[set the install path of xsession data [[DATAROOTDIR/xsessions]]]),
[test x$withval != x && xsesspath="$withval"],
[xsesspath="\${datarootdir}/xsessions"]) AC_SUBST(xsesspath)
if test x"$enable_man" = x"yes"; then
AC_PATH_PROG([XSLTPROC], [xsltproc])
if test -z "$XSLTPROC"; then
enable_man=no
fi
dnl check for DocBook DTD and stylesheets in the local catalog.
JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN],
[DocBook XML DTD V4.1.2], [], enable_man=no)
JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release
/xsl/current/manpages/docbook.xsl],
[DocBook XSL Stylesheets >= 1.70.1], [], enable_man=no) fi
AM_CONDITIONAL(ENABLE_REGENERATE_MAN, test "x$enable_man" != "xno")
AC_OUTPUT([ Makefile startlxde-qt lxde-logout-qt LXDE-Qt.desktop lxde-logout-qt.desktop lxpanel/panel openbox/rc.xml man/Makefile ])
if test x"$sysconfdir" != x'/etc'; then
echo
echo
echo 'Error: sysconfdir is not /etc.'
echo 'Please consider passing --sysconfdir=/etc to configure.';
echo 'Otherwise default config files will be installed to wrong place.'
echo
echo fi
----------
Sure I see AM_INIT_AUTOMAKE is empty, so I tried putting all sorts of variations of "[lxde-common-qt 0.5.5]" but not success...
I mean no, nothing has ever been compiled on this and I don't have much experience. Usually I'll try to install missing packages, use export a bit for obvious things, but those automake errors... what is that. There's no aclocal.m4 file in the project folder:
AUTHORS
lxde-logout-qt.desktop.in
autogen.shlxde-logout-qt.in
autostart
LXDE-Qt.desktop.in
ChangeLog
lxpanel config.h.in
Makefile.am configure
man configure.ac
NEWS
COPYING
openbox
desktop.conf
cmanfm-qt
imagesREADME
INSTALL
startlxde-qt.in
install-sh
wallpapers
Do I need to use something like a *m4_pattern_allow([^m4_cv_])* entry in the configure.ac file?
Indy
(3 rep)
Aug 2, 2013, 06:17 AM
• Last activity: Aug 21, 2018, 01:49 AM
3
votes
0
answers
202
views
Tribblix: cannot start xfce
I installed the illumos (opensolaris) distro Tribblix and can't start Xfce. I tried both with a display manager, `slim` (I know it's old, but it's the only one they offer), and from the console. The default Xorg WM, `twm`, however, works perfectly as long as I don't try to run a Xfce programme (e.g....
I installed the illumos (opensolaris) distro Tribblix and can't start Xfce. I tried both with a display manager,
slim
(I know it's old, but it's the only one they offer), and from the console. The default Xorg WM, twm
, however, works perfectly as long as I don't try to run a Xfce programme (e.g. Thunar or Mousepad). Then the entire X server crashes. I've linked to some logs I thought were relevant. Please help!
Xfce log: https://pastebin.com/wQfFBmaX
Xorg log: https://pastebin.com/fYX8NTmJ
spacelander
(193 rep)
Aug 14, 2017, 11:10 AM
2
votes
1
answers
1400
views
OpenIndiana Hipster boot problems
I installed OpenIndiana Hipster on a separate GPT partition alongside other Unixes following this guide from [the openindiana wiki][1]. After I finished, I tried to boot into the fresh installation but it stops at loading `tzmon` (as reported by verbose boot). The live media boots just fine, however...
I installed OpenIndiana Hipster on a separate GPT partition alongside other Unixes following this guide from the openindiana wiki . After I finished, I tried to boot into the fresh installation but it stops at loading
tzmon
(as reported by verbose boot). The live media boots just fine, however. This is unfortunately all the debugging info I could gather, as the system doesn't finish the boot process. Please help me!
spacelander
(193 rep)
Jul 15, 2017, 09:33 AM
• Last activity: Jul 25, 2017, 03:15 PM
10
votes
4
answers
14258
views
No space on device when removing a file under OpenSolaris
While trying to mount a NFS share (exported from an [OpenIndiana](http://openindiana.org/) server) on a client box, the OI server crashed. I got the black screen of death, what looked like a log dump, then the system restated. It never came back up and I get the following error msg after I halt the...
While trying to mount a NFS share (exported from an [OpenIndiana](http://openindiana.org/) server) on a client box, the OI server crashed. I got the black screen of death, what looked like a log dump, then the system restated. It never came back up and I get the following error msg after I halt the boot:
>
svc.startd Could not log for svc:/network/dns/mulitcast:default: write(30) failed with No space left on device?
I don't have anything else on the boot drive other than the OS so... I'm not sure what could be filling up the drive? Maybe a log file of some kind? I can't seem to delete anything regardless. It gives me a no space error when I try and delete anything:
$ rm filename
cannot remove 'filename' : No space left on device
I can login into "Maintenance Mode" but not the standard user prompt.
The output of df
is:
rpool/ROOT/openindiana-baseline 4133493 4133493 0 100% /
swap 83097900 11028 830386872 1% /etc/svc/volatile
/usr/lib/libc/libc_hwcap1.so.1 4133493 4133493 0 100% /lib/libc.so.1
The output of mount
is:
/ on rpool/ROOT/openindiana-baseline read/write/setuid/devices/dev:2d9002 on Wed Dec 31 16:00:00 1969
/devices on /devices read/write/setuid/devices/dev:8b40000 on Fri Jul 8 14:56:54 2011
/dev on /dev read/write/setuid/devices/dev:8b80000 on Fri Jul 8 14:56:54 2011
/system/contract on ctfs read/write/setuid/devices/dev:8c40001 on Fri Jul 8 14:56:54 2011
/proc on proc read/write/setuid/devices/dev:8bc0000 on Fri Jul 8 14:56:54 2011
/etc/mnttab on mnttab read/write/setuid/devices/dev:8c80001 on Fri Jul 8 14:56:54 2011
/etc/svc/volatile on swap read/write/setuid/devices/xattr/dev:8cc0001 on Fri Ju8 14:56:54 2011
/system/object on objfs read/write/setuid/devices/dev:8d00001 on Fri Jul 8 14:6:54 2011
/etc/dfs/sharetab on sharefs read/write/setuid/devices/dev:8d40001 on Fri Jul 14:56:54 2011
/lib/libc.s0.1 on /usr/lib/libc/libc_hucap1.s0.1 read/write/setuid/devices/dev:d90002 on Fri Jul 8 14:57:06 2011
The output of 'zfs list -t all' is:
rpool 36.4G 0 47.5K /rpool
rpool/ROOT 4.23G 0 31K legacy
rpool/ROOT/openindiana 57.5M 0 3.99G /
rpool/ROOT/openindiana-baseline 61K 0 3.94G /
rpoo1/ROOT/openindiana-system-edge 4.17G 0 3.98G /
rpool/ROOT/openindiana-system-edge@install 19.9M - 3 38G -
rpoo1/ROOT/openindiana-system-edge@2011-07-06-20:45:08 73.1M - 3.57G -
rpoo1/ROOT/openindiana-system-edge@2011-07-06-20:48:53 75.9M - 3 82G -
rpoo1/ROOT/openindiana-system-edge@2011-07-07-02:14:04 61K - 3.94G -
rpoo1/ROOT/openindiana-system-edge@2011-07-07-02:15:14 61K - 3.94G -
rpoo1/ROOT/openindiana-system-edge@2011-07-07-02:28:14 61K - 3.94G -
rpool/ROOT/openindiana-system-stable 61K 0 3.94G /
rpoo1/ROOT/pre_first_update_07.06 108K 0 3 82G /
rpool/ROOT/pre_second_update_07.06 90K 0 3.57G /
rpool/dump 9.07G 0 9.07G -
rpool/export 3.85G 0 32K /export
rpool/export/home 3.85G 0 32K /export/home
rpool/export/home/admin 3.85G 0 3.85G /export/home/admin
rpool/swap 19.3G 19.1G 126M -
Nick Faraday
(233 rep)
Jul 8, 2011, 09:20 PM
• Last activity: Jul 15, 2017, 12:29 AM
1
votes
1
answers
195
views
Nexenta (Solaris), strange user membership from LDAP
Why do run id command in the Nexenta OS (Solaris+Ubuntu), I get different result? a_ay@nexenta:/etc$ id -G 513 512 1000 201 203 1010 1013 1019 1020 1036 1039 1040 1041 1045 1046 1047 a_ay@nexenta:/etc$ id -G a_ay 513 1019 1041 1047 512 1039 1036 201 3333 1000 1013 1020 1046 1057 1100 1040 1045 1048...
Why do run id command in the Nexenta OS (Solaris+Ubuntu), I get different result?
a_ay@nexenta:/etc$ id -G
513 512 1000 201 203 1010 1013 1019 1020 1036 1039 1040 1041 1045 1046 1047
a_ay@nexenta:/etc$ id -G a_ay
513 1019 1041 1047 512 1039 1036 201 3333 1000 1013 1020 1046 1057 1100 1040 1045 1048 203 1010
Moreover, I'm having a membership in one of the secondary group (1048) and I can not enter to the folder 'Folder' with GID permission is 1048.
drw-r-xr-x 1 1062 1048 0 Apr 12 16:13 Folder
All users in LDAP. *gentent group* work fine, and get all users correct.
root@nexenta:/tmp# getent group | grep 1048
mygroupname::1048:a_ay,fred,john,superman
Anton Shevtsov
(143 rep)
Apr 12, 2013, 10:35 AM
• Last activity: Jul 13, 2017, 11:59 AM
2
votes
1
answers
304
views
What is OS apix module?
I'm using Solaris 10 Update 10 OS on my HPE BL460c Gen8 server. It is recommended by HPE to disable OS apix module, > For ProLiant Gen8 servers, HPE Recommends disabling the OS apix > module. To disable the apix module add the following to the > /etc/system file and reboot the system: set apix_enabl...
I'm using Solaris 10 Update 10 OS on my HPE BL460c Gen8 server. It is recommended by HPE to disable OS apix module,
> For ProLiant Gen8 servers, HPE Recommends disabling the OS apix
> module. To disable the apix module add the following to the
> /etc/system file and reboot the system: set apix_enable = 0
What is this **OS apix module**? What does actually happen when it is disabled?
Amit24x7
(676 rep)
May 17, 2017, 01:58 PM
• Last activity: May 17, 2017, 06:14 PM
2
votes
3
answers
24765
views
changing timezone in Oracle Solaris 11.2
I'm confused: what is the right way to change TZ on a freshly installed Solaris 11.2? I have found these, but am unsure which to use: - [Reconfiguring Date and Time Before and After an Installation][1] - [Locale, Timezone, and Console Keymap Configuration Changes][2] [1]: http://docs.oracle.com/cd/E...
I'm confused: what is the right way to change TZ on a freshly installed Solaris 11.2?
I have found these, but am unsure which to use:
- Reconfiguring Date and Time Before and After an Installation
- Locale, Timezone, and Console Keymap Configuration Changes
Mark
(1943 rep)
Jun 22, 2015, 08:28 PM
• Last activity: Mar 27, 2017, 09:06 PM
1
votes
0
answers
30
views
Must auths for privilege and such still be explicitly listed, or are they now included in solaris.*?
In OpenSolaris and the Solaris-version around that time, the **solaris.grant** auth wasn't included in **solaris.*** and had to be explicitly added. For example, from the definition of the *Primary Administrator*-role: Primary Administrator:RO::\ Can perform all administrative tasks:\ auths=solaris....
In OpenSolaris and the Solaris-version around that time, the **solaris.grant** auth wasn't included in **solaris.*** and had to be explicitly added. For example, from the definition of the *Primary Administrator*-role:
Primary Administrator:RO::\ Can perform all administrative tasks:\ auths=solaris.*,solaris.grant;\ help=RtPriAdmin.html**solaris.grant** bestowed the ability to grant any role, auth, profile, etc. to any user. There were also another one (possibly **solaris.delegate**) which only let you bestow other users with privileges equal-or-less to your own. - Was this auth (was it **solaris.delegate** ?) also *not* included included in **solaris.*** , and thus had to be specified separately? Now (newer Solaris versions) **solaris.grant** and the other one have been split into multiple auths to fine-tune which privileges that a user **assign** (meaning any privilege, like *solaris.grant*) or **delegate** (meaning just privilege equal-or-less to the user's own). For example: solaris.auth.assign solaris.auth.delegate solaris.group.assign solaris.group.delegate solaris.privilege.assign solaris.privilege.delegate solaris.profile.assign solaris.profile.delegate solaris.role.assign solaris.role.delegate - Must all/some of these still be *explicitly* assigned (eg. "solaris.\*,solaris.profile.assign") , or are all/some now included in **solaris.*** ?
Baard Kopperud
(7253 rep)
Jul 24, 2016, 06:48 PM
Showing page 1 of 20 total questions