Re: [OpenIndiana-discuss] Availability of c-icap with clamav support?

2012-11-07 Thread Andrej Javoršek
Hello,
only the c-icap-client from SFE does not work (server works).
But I'm building with GCC and my config is:

root@scan:~# c_icap-0.2.2/c-icap-config --config
c-icap configuration
c-icap version: 0.2.2
c-icap installation prefix: /opt/c-icap
c-icap configuration directory: /opt/c-icap/etc/
c-icap modules/plugins directory: /opt/c-icap/lib/c_icap/
c-icap shared data directory: /opt/c-icap/share/c_icap/

c-icap cflags for modules: -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -g -O2
-Wall -D_FILE_OFFSET_BITS=64 -DCI_BUILD_MODULE
c-icap libs for modules:

Regards Andrej



On Wed, Nov 7, 2012 at 8:59 PM, Milan Jurik  wrote:

> Hi,
>
> OK, so your own build of c-icap works and build from SFE repo does not,
> with the same configs?
>
> Best regards,
>
> Milan
>
> On út, 2012-11-06 at 08:29 +0100, Andrej Javoršek wrote:
> > Hello,
> > unless there is some simple procedure I will avoid debugging that.
> > I'm not a programer and have never before done that kind of debugging.
> >
> > But if it helps: version (0.2.2) that I downloaded and compiled from SF
> > works.
> >
> > Best Regards
> > Andrej
> >
> > On Mon, Nov 5, 2012 at 3:29 PM, Jim Klimov  wrote:
> >
> > > On 2012-11-05 13:02, Andrej Javoršek wrote:
> > >
> > >> Current client complains with:
> > >>
> > >> Error connecting to socket (host: ?P??) .
> > >> Failed to connect to icap server.
> > >>
> > >> That "P" inside brackets has changed from "@" and before from "?" in
> > >> consecutive runs. And setting parameter -i (localhost | actual IP)
> does
> > >> not
> > >> help.
> > >>
> > >
> > > Off the top of my head, this seems like uncareful work with strings
> > > as command-line parameters and/or their copies. In particular, this
> > > seems like the pointers to the strings (host and port) were released
> > > and later these pointer values were reused while the in-memory data
> > > was overwritten. Or the pointers were not initialized to NULL and
> > > were used before receiving any proper value to point into.
> > >
> > > Do you have any chance to step the code through a debugger to test?
> > > Or use poor-man's probes and printf the interesting variables at
> > > different points in the execution?..
> > >
> > > HTH,
> > > //Jim
> > >
> > >
> > > __**_
> > > OpenIndiana-discuss mailing list
> > > OpenIndiana-discuss@**openindiana.org<
> OpenIndiana-discuss@openindiana.org>
> > > http://openindiana.org/**mailman/listinfo/openindiana-**discuss<
> http://openindiana.org/mailman/listinfo/openindiana-discuss>
> > >
> > ___
> > OpenIndiana-discuss mailing list
> > OpenIndiana-discuss@openindiana.org
> > http://openindiana.org/mailman/listinfo/openindiana-discuss
>
>
>
> ___
> OpenIndiana-discuss mailing list
> OpenIndiana-discuss@openindiana.org
> http://openindiana.org/mailman/listinfo/openindiana-discuss
>
___
OpenIndiana-discuss mailing list
OpenIndiana-discuss@openindiana.org
http://openindiana.org/mailman/listinfo/openindiana-discuss


[OpenIndiana-discuss] iSCSI target in a zone

2012-11-07 Thread James Relph
Hi all,

I'm guessing the answer to this is no, but does anyone know if it is possible 
to get COMSTAR running inside a non-global zone?  I've tried a pkg install 
storage-server (which seems to go OK) but I can't get stmf started up (just not 
aware of the service) nor iscsi/target.

It's not critical but I was trying to find a shortcut to something so I thought 
it was worth a quick look!

Thanks,

James

Principal Consultant
ACSA 10.5

___
OpenIndiana-discuss mailing list
OpenIndiana-discuss@openindiana.org
http://openindiana.org/mailman/listinfo/openindiana-discuss


[OpenIndiana-discuss] Tribblix Milestone 1

2012-11-07 Thread Peter Tribble
A little more work, and Tribblix has reached its first milestone,
as described briefly here:

http://ptribble.blogspot.co.uk/2012/11/tribblix-milestone-1.html

There's still work to fill out the desktop, but Xfce is there and
works.

I'm currently attempting to build LibreOffice, which would close
a huge gap. (If I can get it to work, anyway.)

The other key piece of desktop infrastructure I need is a login
manager. Something like gdm is too heavy (and pulls in too
much of gnome); LightDM looked promising but needs gtk3
(which I might get to, but not there yet);LXDM won't compile,
and SLiM might work but would require quite a bit of work to
configure properly. Or there's xdm, I suppose.

-- 
-Peter Tribble
http://www.petertribble.co.uk/ - http://ptribble.blogspot.com/

___
OpenIndiana-discuss mailing list
OpenIndiana-discuss@openindiana.org
http://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Availability of c-icap with clamav support?

2012-11-07 Thread Milan Jurik
Hi,

OK, so your own build of c-icap works and build from SFE repo does not,
with the same configs?

Best regards,

Milan

On út, 2012-11-06 at 08:29 +0100, Andrej Javoršek wrote:
> Hello,
> unless there is some simple procedure I will avoid debugging that.
> I'm not a programer and have never before done that kind of debugging.
> 
> But if it helps: version (0.2.2) that I downloaded and compiled from SF
> works.
> 
> Best Regards
> Andrej
> 
> On Mon, Nov 5, 2012 at 3:29 PM, Jim Klimov  wrote:
> 
> > On 2012-11-05 13:02, Andrej Javoršek wrote:
> >
> >> Current client complains with:
> >>
> >> Error connecting to socket (host: ?P??) .
> >> Failed to connect to icap server.
> >>
> >> That "P" inside brackets has changed from "@" and before from "?" in
> >> consecutive runs. And setting parameter -i (localhost | actual IP) does
> >> not
> >> help.
> >>
> >
> > Off the top of my head, this seems like uncareful work with strings
> > as command-line parameters and/or their copies. In particular, this
> > seems like the pointers to the strings (host and port) were released
> > and later these pointer values were reused while the in-memory data
> > was overwritten. Or the pointers were not initialized to NULL and
> > were used before receiving any proper value to point into.
> >
> > Do you have any chance to step the code through a debugger to test?
> > Or use poor-man's probes and printf the interesting variables at
> > different points in the execution?..
> >
> > HTH,
> > //Jim
> >
> >
> > __**_
> > OpenIndiana-discuss mailing list
> > OpenIndiana-discuss@**openindiana.org
> > http://openindiana.org/**mailman/listinfo/openindiana-**discuss
> >
> ___
> OpenIndiana-discuss mailing list
> OpenIndiana-discuss@openindiana.org
> http://openindiana.org/mailman/listinfo/openindiana-discuss



___
OpenIndiana-discuss mailing list
OpenIndiana-discuss@openindiana.org
http://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Gnome and the future

2012-11-07 Thread låzaro
well, my probing in the #mate channel was a disaster, I'd talk with a
developer and I has been trolled in front the Developer by a project's
user, me and an OI's user. 

A guy named Stefano, marked in the "about" as developer, was offering
join to the #openindiana to talk about the subject. I would try it via
Mailing list, after pull Stefano to #openindiana

Cinnamon is from a to Linux Mint...


Thread name: "Re: [OpenIndiana-discuss] Gnome and the future" 
Mail number: 16 
Date: Tue, Nov 06, 2012 
In reply to: Apostolos Syropoulos 
>
> 
> > MATE project could see in OI a choose for climb in the desktops
> > enviroment war. There is another Gnome fork named Cinammon (I guest)
> 
> Indeed and here's the link:
> 
> 
> https://github.com/linuxmint/Cinnamon
> 
>  
> A.S.
> 
> --
> Apostolos Syropoulos
> Xanthi, Greece
> 
> 
> ___
> OpenIndiana-discuss mailing list
> OpenIndiana-discuss@openindiana.org
> http://openindiana.org/mailman/listinfo/openindiana-discuss

-- 
 Warning! 
100'000 pelos de escoba fueron
introducidos satisfactoriamente
en su puerto USB.






___
OpenIndiana-discuss mailing list
OpenIndiana-discuss@openindiana.org
http://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Gnome and the future

2012-11-07 Thread låzaro
Mate's developer Stefano, say we could start building mate in the version 1.5


quote from IRC:

08:45stefano-k | so... I suggest you to start to build 1.5 MATE development 
 tarballs
08:45stefano-k | because there are a lot of package less
08:46stefano-k | http://wiki.mate-desktop.org/building:1.6
08:46stefano-k | http://pub.mate-desktop.org/releases/1.5/




Thread name: "Re: [OpenIndiana-discuss] Gnome and the future" 
Mail number: 1 
Date: Tue, Nov 06, 2012 
In reply to: Apostolos Syropoulos 
>
> 
> > 
> > locale_t/newlocale()/uselocale() and the *_l() apis are hardly
> > "Linuxize your OS", they are POSIX.
> > 
> 
> 
> I was not talking about these things but about the adoption of
> things like udev.
> 
> 
>  
> --
> Apostolos Syropoulos
> Xanthi, Greece
> 
> 
> ___
> OpenIndiana-discuss mailing list
> OpenIndiana-discuss@openindiana.org
> http://openindiana.org/mailman/listinfo/openindiana-discuss
> 

-- 
 Warning! 
100'000 pelos de escoba fueron
introducidos satisfactoriamente
en su puerto USB.





___
OpenIndiana-discuss mailing list
OpenIndiana-discuss@openindiana.org
http://openindiana.org/mailman/listinfo/openindiana-discuss