Glen Gunselman | 17 May 18:55
Favicon

FYI: cacertificates

FYI:

 

The cacertificates (aka CSWcacertificates) listed here -> http://www.opencsw.org/get-it/packages/  Is not the CSWcacertificates found here -> http://mirror.opencsw.org/opencsw/testing as indicated by the text (“This is the list of Solaris software packages in our 'current' branch”) at the top of http://www.opencsw.org/get-it/packages/.  That version is found here -> http://mirror.opencsw.org/opencsw/unstable

 

If you need a Go Daddy CA it is in "unstable" only.

 

After spending some time poking around www.opencsw.org it is not clear to me what (or if) there is a real plan for managing/naming repositories/mirrors but I think we could set a better example.

 

have a good weekend,

Glen Gunselman

_______________________________________________
users mailing list
users@...
https://lists.opencsw.org/mailman/listinfo/users
Sonnenberg, Markus | 15 May 11:56
Picon
Favicon

my.cnf for CSWmysql5

Hi,

i've just installed CSWmysl5 5.0.96,REV=2012.03.24 on solaris 10/sparc 
and i'm wondering about the missing my.cnf file. i don't even have the 
directory /opt/csw/mysql5.

on a different machine running version 5.0.87 i have everything in the 
usual place. i could copy the my.cnf file from that machine and adapt it 
to the new machine. so my first question would be: what's the base 
directory for version 5.0.96?

[mysqld]
basedir         = /opt/csw/mysql5
datadir         = /var/opt/csw/mysql5
port            = 3306

regards
markus

ct,
--

-- 
Das Abspringen einer Begrenzungsmauer dient nicht dem direkten 
Zurücklegen des Arbeitsweges.
http://www.rz-amper.de
Gerard Henry | 7 May 09:22
Picon

subversion 1.6 ?

hello all,

anybody knows if it is possible to install 1.6's client release aside 1.7 ?
calypso-henry% svn status -u
svn: E155036: Please see the 'svn upgrade' command
svn: E155036: Working copy 
'/home/henry/projects/calendrier/src/documents' is too old (format 10, 
created by Subversion 1.6)

centos is 1.6 yet.

thanks in advance,

gerard
dennis jenkins | 27 Apr 17:42
Picon

CSWsyslogng version mismatch

Hello.

   My system is Solaris 11 (11/11) [1].  I wish to install CSWsyslog_ng.  "pkgutil" shows that it would install version 3.0.5,REV=2010.02.27 (over 2 years old) [2], but the OpenCSW online package index shows that it should install 3.2.5,REV=2012.03.19 (yeah!) [3]

   I've tried both "testing" and "unstable".  I've refreshed my catalog several times.  What am I missing?  How do I get OpenCSW to give me the more recent syslog_ng?

   Thank you for your time.

[1]
(root <at> sol-11: <~>) # uname -a
SunOS sol-11-ai-mad-1 5.11 11.0 i86pc i386 i86pc

(root <at> sol-11: <~>) # cat /etc/release
                           Oracle Solaris 11 11/11 X86
  Copyright (c) 1983, 2011, Oracle and/or its affiliates.  All rights reserved.
                            Assembled 18 October 2011


[2]
(root <at> sol-11: <~>) # /opt/csw/bin/pkgutil -a | grep CSWsyslogng
syslog_ng            CSWsyslogng          3.0.5,REV=2010.02.27       135.5 KB


(root <at> sol-11: <~>) # /opt/csw/bin/pkgutil --catinfo

URL             http://mirror.opencsw.org/opencsw/unstable/i386/5.11
Release         -
Creation time   2012-04-27T13:33:47Z
Number of pkgs  3453
File            /var/opt/csw/pkgutil/catalog.mirror.opencsw.org_opencsw_unstable_i386_5.11



[3] http://www.opencsw.org/packages/syslog_ng/

_______________________________________________
users mailing list
users@...
https://lists.opencsw.org/mailman/listinfo/users
Dmitri Shubin | 24 Apr 18:05
Favicon

Unable to compile spawn.h using G++ 4.6.3

Hello!

I got another problem with GCC 4.6.3 -- I cannot compile files that 
includes /usr/include/spawn.h in C++ mode:

$ cat a.cpp
#include <spawn.h>
$ /opt/csw/gcc4/bin/g++ -c a.cpp
In file included from a.cpp:1:0:
/usr/include/spawn.h:42:14: error: expected ',' or '...' before 'argv'
/usr/include/spawn.h:50:14: error: expected ',' or '...' before 'argv'
$ cat -n /usr/include/spawn.h
...
     35  #if defined(__STDC__)
     36
     37  extern int posix_spawn(
     38          pid_t *_RESTRICT_KYWD pid,
     39          const char *_RESTRICT_KYWD path,
     40          const posix_spawn_file_actions_t *file_actions,
     41          const posix_spawnattr_t *_RESTRICT_KYWD attrp,
     42          char *const argv[_RESTRICT_KYWD],
     43          char *const envp[_RESTRICT_KYWD]);
     44
     45  extern int posix_spawnp(
     46          pid_t *_RESTRICT_KYWD pid,
     47          const char *_RESTRICT_KYWD file,
     48          const posix_spawn_file_actions_t *file_actions,
     49          const posix_spawnattr_t *_RESTRICT_KYWD attrp,
     50          char *const argv[_RESTRICT_KYWD],
     51          char *const envp[_RESTRICT_KYWD]);
...

When preprocessed this file:

$ /opt/csw/gcc4/bin/g++ -E a.cpp
...
extern int posix_spawn(
  pid_t *__restrict pid,
  const char *__restrict path,
  const posix_spawn_file_actions_t *file_actions,
  const posix_spawnattr_t *__restrict attrp,
  char *const argv[__restrict],                          // <----------- 
SBN: line 42 of /usr/include/spawn.h
  char *const envp[__restrict]);

So looks like GCC don't understand __restrice keyword in array-brackets.

$ uname -a
SunOS rock1 5.10 Generic_147441-15 i86pc i386 i86pc
$ cat /etc/release
                     Oracle Solaris 10 8/11 s10x_u10wos_17b X86
   Copyright (c) 1983, 2011, Oracle and/or its affiliates. All rights 
reserved.
                             Assembled 23 August 2011

GCC 4.5.1 from Blastwave successfully compiled this file.
The difference is that _RESTRICT_KYWD expanded in it to empty string.
AFAIU this is due to GCC 4.6.3 defines __STDC_VERSION__ macro to 199901L 
in C++ mode

$ /opt/csw/gcc4/bin/gcc -x c++ -dM -E - </dev/null | grep STDC
#define __STDC_HOSTED__ 1
#define __STDC_VERSION__ 199901L

There is no such definition for 4.5.1

Any suggestions?
Thanks!
Dmitri Shubin | 24 Apr 11:35
Favicon

Problems with GCC 4.6.3

Hello!

I installed the latest GCC 4.6.3 from unstable, but I was unable to 
compile anything with it due to the following error:

$ cat a.c
int main()
{
     return 0;
}
$ /opt/csw/gcc4/bin/gcc a.c
ld.so.1: gas: fatal: libiconv.so.2: open failed: No such file or directory
gcc: internal compiler error: Killed (program as)
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
$ /opt/csw/bin/gas
ld.so.1: gas: fatal: libiconv.so.2: open failed: No such file or directory
Killed

So the problem is in 'gas' in fact.

$ LD_DEBUG=all /opt/csw/bin/gas
...
15372: file=/opt/csw/lib/pentium_pro/libintl.so.8;  analyzing  [ 
RTLD_LAZY RTLD_GLOBAL RTLD_WORLD RTLD_NODELETE ]
15372:
15372: file=libiconv.so.2;  needed by /opt/csw/lib/pentium_pro/libintl.so.8
15372:
15372: find object=libiconv.so.2; searching
15372:  search path=/opt/csw/lib/pentium_pro  (RUNPATH/RPATH from file 
/opt/csw/lib/pentium_pro/libintl.so.8)
15372:  trying path=/opt/csw/lib/pentium_pro/libiconv.so.2
15372:  search path=/lib  (default)
15372:  search path=/usr/lib  (default)
15372:  trying path=/lib/libiconv.so.2
15372:  trying path=/usr/lib/libiconv.so.2
ld.so.1: gas: fatal: libiconv.so.2: open failed: No such file or directory
15372:
15372:
15372: ld.so.1: gas: fatal: libiconv.so.2: open failed: No such file or 
directory

15372:
15372:
Killed

Setting LD_LIBRARY_PATH=/opt/csw/lib helps, but I don't think it's good 
solution.

Any ideas?

Thanks!
Cristian Gamboa | 22 Apr 00:54
Picon
Favicon

netcat.

I am very new in the Solaris environment. We need the netcat program but the only I can download is a tarball that can not be build because of a cpp error.

There is something like a rpm package we can install  on our systems ? where is located ? the links to download are broken


Cristian
ps sorry for my bad English

_______________________________________________
users mailing list
users@...
https://lists.opencsw.org/mailman/listinfo/users
Favicon

Firefox on Solaris 9

Hello everyone,

Does anyone still use Firefox from OpenCSW on Solaris 9? We are
currently removing unused / not useful packages from the catalog and
if no one uses it, we'll drop it.* We expect that most Solaris desktop
users would have already migrated to Solaris 10, 11 or OpenSolaris,
and it's rather unlikely that someone depends on Firefox on Solaris 9.
We wanted to check that with you though. If you want Firefox for
Solaris 9 to stay, speak up!

Maciej

* It has already been dropped from the unstable catalog, but we can restore.
Favicon

Wintercamp 2011 is this weekend

Hello everyone,

The Wintercamp 2011 is coming up. It's not winter and it's not 2011,
but this is how we need to name our meetings to keep backward
compatibility. Solaris sysadmins know what we're talking about.

To those who don't know what OpenCSW camps are - they are project
summits held twice a year. We've had a number of these:

http://wiki.opencsw.org/camps

This time around, we're meeting in Bratislava. One of the topics
discussed will be the IPS package catalog strategy.

The meetings will be held from 10:00 CEST until 19:00 CEST with a
lunch break. We'll set up a G+ hangout and a ustream live feed. We'll
post links when the feeds are set up. We'll be also watching the
#opencsw channel on Freenode for any questions or comments.

Maciej
_______________________________________________
users mailing list
users <at> lists.opencsw.org
https://lists.opencsw.org/mailman/listinfo/users
lists | 8 Apr 22:11
Picon

Catalog is not signed

Hi,

I haven't upgraded OpenCSW in a while (last upgrade in March went OK) and 
now I see this:

----------------------------
$ pkgutil -D -U
DEBUG:pkgutil version: 2.6.4
DEBUG:perl version: 5.008004
DEBUG:root_path: 
DEBUG:Checking binary: /opt/csw/bin/wget ... OK
DEBUG:wget: /opt/csw/bin/wget
DEBUG:Checking binary: /bin/gzip ... OK
DEBUG:gzip: /bin/gzip
DEBUG:workdir: /var/opt/csw/pkgutil
DEBUG:pkgdir: /var/opt/csw/pkgutil/packages
DEBUG: no state file found
DEBUG:arch: sparc
DEBUG:os rel: 5.10
DEBUG:primary mirror: 
http://mirrors.ibiblio.org/pub/mirrors/opencsw/unstable/sparc/5.10
DEBUG:Catalog 
http://mirrors.ibiblio.org/pub/mirrors/opencsw/unstable/sparc/5.10 age in 
days: 0.00400462962962963
=> Fetching new catalog and descriptions 
(http://mirrors.ibiblio.org/pub/mirrors/opencsw/unstable/sparc/5.10) if 
available ...
DEBUG:GPG catalog: 0
Catalog 
/var/opt/csw/pkgutil/catalog.mirrors.ibiblio.org_pub_mirrors_opencsw_unstable_sparc_5.10 
is not signed! Check your mirror settings or disable use_gpg in pkgutil.conf.
----------------------------

The only pkgutil.conf is in /opt/csw/etc and contains:

----------------------------
$ grep ^[a-z] /opt/csw/etc/pkgutil.conf
mirror=http://mirrors.ibiblio.org/pub/mirrors/opencsw/unstable
show_current=false
use_gpg=true
use_md5=true
wgetopts=--user-agent=pkgutil --verbose
----------------------------

Running through truss(1) gives https://pzt.me/8pp1 - but I fail to see how 
pkgutils tries to check any GPG files.

Any pointers where else to look?

Thanks,
Christian.
--

-- 
BOFH excuse #15:

temporary routing anomaly
Jeffery Small | 4 Apr 22:23
Gravatar

Samba and Windows 7

Continuing my hate-hate relationship with Windows, I have a new laptop with
a dual-boot of linux and Windows 7 Home Premium, and I'm trying to get
Windows 7 talking to samba version 3.0.23 on my Sun Sparc machine.  I have
a couple of Windows XP machines that currently communicate just fine with
samba.

Things I have done so far:

    * Added LmCompatibilityLevel == 1 to the Win7 Registry

    * Tried adding the following to smb.conf:

    	client lanman auth  = no
	client NTLMv2       = yes
	client plaintext    = no
	lanman auth         = no
	ntlm auth           = yes

None of this has had any effect.  When I try to access the samba server
with:

	\\<servername>

it reports: "The specified server cannot perform the required operation"

However, this works just fine from the XP machines.

I spent a full day just getting Win7 to (sort of) network with Win XP, and
now I've spent another day working on this samba problem with no results!
Does anyone have any experience with this and can offer a suggestion as to
what needs to be done here?

I see that a new 3.6.1 version of samba has been added to current.  Is there
any reason to think that this would solve the problem?  I hesitate to upgrade
because samba requires a bunch of library upgrades, which will likely affect
other programs that rely upon them and I don't need a new set of problems
since I kinda like the hair I have left! :-)

Thanks.
--
Jeff Small

Gmane