From michael at blastwave.org Tue Mar 1 01:04:26 2005 From: michael at blastwave.org (Michael Gernoth) Date: Tue, 1 Mar 2005 01:04:26 +0100 Subject: [csw-users] making Gnome CSW built apps play nice with Sun's gnome 2.0 In-Reply-To: <1109619056.2384.6.camel@camaro.cesa.opbu.xerox.com> References: <1109285671.27145.8.camel@camaro.cesa.opbu.xerox.com> <20050226092325.GA3026@zerfleddert.de> <1109619056.2384.6.camel@camaro.cesa.opbu.xerox.com> Message-ID: <20050301000426.GC21289@zerfleddert.de> Hi Jeremy, On Mon, Feb 28, 2005 at 11:30:56AM -0800, Jeremy O'Leary wrote: > We have a number of things in our LD_LIBRARY_PATH and the only way I was > able to login to Gnome 2.8 or get Evolution, GIMP, ... to work in KDE is > by adding the following to my environment. ... > The problem is when I have this in my environment, Sun's Gnome 2.0 > behaves very, very strangely including the ever rapidly growing sound > and clock icons. This is to be expected, as you force the sun gnome apps to use wrong library versions. Don't set LD_LIBRARY_PATH globally! http://www.visi.com/~barr/ldpath.html Regards, Michael From personalbanking at checking-02.wamu.com Tue Mar 1 12:45:52 2005 From: personalbanking at checking-02.wamu.com (WAMU Personal Online Banking) Date: Tue, 1 Mar 2005 19:45:52 +0800 (CST) Subject: [csw-users] Online banking records confirmation Message-ID: <20050301114552.681D520E86A@email.apollo-cn.idv.tw> An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20050301/381f1cb9/attachment.html From lyoungblood at phonechargeinc.com Tue Mar 1 20:07:13 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Tue, 1 Mar 2005 14:07:13 -0500 Subject: [csw-users] "Proper" syntax highlighting with VIM? Message-ID: <20050301190715.CBF0D6CC5@enterprise.dogan.ch> I've been pulling my hair out for a little while trying to get "proper" syntax highlighting working in VIM. I've stuck my own vimrc file in /opt/csw/share/vim/vim63, and syntax highlight sort of works. I get bold text and underlines, but that's it. I want color highlighting, the same as I get on a vanilla install of Redhat. I even tried copying the vimrc over from a Redhat box I have and that didn't work. Why is it that with the same terminal (PuTTY over SSH), same settings, I get only bold and underline text on a Solaris box, but my Redhat box will give me full color syntax highlighting? Thanks in advance for your help. -- Luke Youngblood System Administrator PhoneCharge, Inc. (203) 732-7639 x279 http://www.phonechargeinc.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20050301/dd686b1e/attachment.html From markus at gyger.org Tue Mar 1 20:46:09 2005 From: markus at gyger.org (Markus Gyger) Date: Tue, 1 Mar 2005 20:46:09 +0100 (CET) Subject: [csw-users] "Proper" syntax highlighting with VIM? In-Reply-To: <20050301190715.CBF0D6CC5@enterprise.dogan.ch> from Luke Youngblood at "Mar 1, 2005 02:07:13 pm" Message-ID: <200503011946.j21Jk9Tg008814@cs1.gmu.edu> Luke Youngblood writes: > Why is it that with the same terminal (PuTTY over SSH), same settings, I get > only bold and underline text on a Solaris box, but my Redhat box will give > me full color syntax highlighting? It probably has a different entry in the terminfo database. You usually get the current entry using infocmp or untic. you can then set the environment variable TERMINFO to an own directory and import the entry using tic into Solaris. If the program is using the older termcap instead, you would have to add the entry to /usr/share/lib/termcap. Here is an example how to copy the dtterm entry from one system to another (you wouldn't use dtterm as parameter so it uses $TERM by default which you have in PuTTY probably configured as vt100 or xterm): infocmp dtterm > dtterm.ti infocmp -C dtterm > dtterm.tc ... # export TERMINFO=$HOME/lib/terminfo tic dtterm.ti cat dtterm.tc >> /usr/share/lib/termcap Possibly you just need to use a different value for TERM though. BTW, to enable bold in the man pages of Solaris you would e.g. need to: echo '.bd 3 1 \" re-enable bold' >> /usr/share/lib/tmac/an echo 'PAGER="less -s" LESS=-ie export PAGER LESS' >> /etc/profile echo 'setenv PAGER "less -s"' >> /etc/.login echo 'setenv LESS -ie' >> /etc/.login Markus From blastwave at tomseeley.co.uk Tue Mar 1 22:17:34 2005 From: blastwave at tomseeley.co.uk (Tom Seeley) Date: Tue, 1 Mar 2005 21:17:34 +0000 Subject: [csw-users] "Proper" syntax highlighting with VIM? In-Reply-To: <200503011946.j21Jk9Tg008814@cs1.gmu.edu> References: <200503011946.j21Jk9Tg008814@cs1.gmu.edu> Message-ID: <1109711854.4224dbee27845@toby.tomseeley.co.uk> Yup, as far as I can tell (I'm mostly a linux guy), Sun thinks xterm's are monochrome (there's probably some history to this). I've found the best results come from following "9." on Phil's handy page (http://www.bolthole.com/solaris/) and then setting $TERM appropriately ($ export TERM=xterm-color) Tom. Quoting Markus Gyger : > Luke Youngblood writes: > > Why is it that with the same terminal (PuTTY over SSH), same settings, I > get > > only bold and underline text on a Solaris box, but my Redhat box will give > > me full color syntax highlighting? > > It probably has a different entry in the terminfo database. > You usually get the current entry using infocmp or untic. > you can then set the environment variable TERMINFO to an > own directory and import the entry using tic into Solaris. > If the program is using the older termcap instead, you > would have to add the entry to /usr/share/lib/termcap. > Here is an example how to copy the dtterm entry from one > system to another (you wouldn't use dtterm as parameter > so it uses $TERM by default which you have in PuTTY probably > configured as vt100 or xterm): > > infocmp dtterm > dtterm.ti > infocmp -C dtterm > dtterm.tc > ... > # export TERMINFO=$HOME/lib/terminfo > tic dtterm.ti > cat dtterm.tc >> /usr/share/lib/termcap > > Possibly you just need to use a different value for TERM though. > > BTW, to enable bold in the man pages of Solaris you would e.g. need to: > > echo '.bd 3 1 \" re-enable bold' >> /usr/share/lib/tmac/an > echo 'PAGER="less -s" LESS=-ie export PAGER LESS' >> /etc/profile > echo 'setenv PAGER "less -s"' >> /etc/.login > echo 'setenv LESS -ie' >> /etc/.login > From John.Tobin at cs.tcd.ie Tue Mar 1 22:36:31 2005 From: John.Tobin at cs.tcd.ie (John Tobin) Date: Tue, 1 Mar 2005 21:36:31 +0000 Subject: [csw-users] "Proper" syntax highlighting with VIM? In-Reply-To: <20050301190715.CBF0D6CC5@enterprise.dogan.ch> References: <20050301190715.CBF0D6CC5@enterprise.dogan.ch> Message-ID: <20050301213631.GU7076@oenone.cs.tcd.ie> On Tue, Mar 01, 2005 at 02:07:13PM -0500, Luke Youngblood wrote: > I've been pulling my hair out for a little while trying to get "proper" > syntax highlighting working in VIM. I've stuck my own vimrc file in > /opt/csw/share/vim/vim63, and syntax highlight sort of works. I get bold > text and underlines, but that's it. I want color highlighting, the same as > I get on a vanilla install of Redhat. I even tried copying the vimrc over > from a Redhat box I have and that didn't work. > > > > Why is it that with the same terminal (PuTTY over SSH), same settings, I get > only bold and underline text on a Solaris box, but my Redhat box will give > me full color syntax highlighting? Check the value of $TERM - it should be set to xterm-color. I _think_ that the standard Linux terminfo database assumes that xterm can handle colour, whereas Solaris' terminfo doesn't. You could also export TERMINFO="/opt/csw/share/terminfo" so that programs will use the more up to date Blastwave terminfo database. -- John Tobin "This bears further investigation. Anyone care to admit ownership of an import Ford SUV? Try wafting cheese near the grill and see if the bugger tries to run you over. If so then they are using rat brain cells in the EMU. Sorted - just glue a cat to the engine and your problems will be over." -- Jacqui Caren, in london.pm From lyoungblood at phonechargeinc.com Tue Mar 1 23:09:51 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Tue, 1 Mar 2005 17:09:51 -0500 Subject: [csw-users] "Proper" syntax highlighting with VIM? In-Reply-To: <1109711854.4224dbee27845@toby.tomseeley.co.uk> Message-ID: <20050301220954.238D06BEB@enterprise.dogan.ch> Hey Thanks! That worked great for me. I had already done the bolthole suggestion to properly setup the xterm-color terminfo, but I had simply neglected to set my TERM=xterm-color. Thanks a lot for everyone's quick responses. Writing shell scripts can be painful without syntax highlighting... -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of Tom Seeley Sent: Tuesday, March 01, 2005 4:18 PM To: questions and discussions Subject: Re: [csw-users] "Proper" syntax highlighting with VIM? Yup, as far as I can tell (I'm mostly a linux guy), Sun thinks xterm's are monochrome (there's probably some history to this). I've found the best results come from following "9." on Phil's handy page (http://www.bolthole.com/solaris/) and then setting $TERM appropriately ($ export TERM=xterm-color) Tom. Quoting Markus Gyger : > Luke Youngblood writes: > > Why is it that with the same terminal (PuTTY over SSH), same settings, I > get > > only bold and underline text on a Solaris box, but my Redhat box will give > > me full color syntax highlighting? > > It probably has a different entry in the terminfo database. > You usually get the current entry using infocmp or untic. > you can then set the environment variable TERMINFO to an > own directory and import the entry using tic into Solaris. > If the program is using the older termcap instead, you > would have to add the entry to /usr/share/lib/termcap. > Here is an example how to copy the dtterm entry from one > system to another (you wouldn't use dtterm as parameter > so it uses $TERM by default which you have in PuTTY probably > configured as vt100 or xterm): > > infocmp dtterm > dtterm.ti > infocmp -C dtterm > dtterm.tc > ... > # export TERMINFO=$HOME/lib/terminfo > tic dtterm.ti > cat dtterm.tc >> /usr/share/lib/termcap > > Possibly you just need to use a different value for TERM though. > > BTW, to enable bold in the man pages of Solaris you would e.g. need to: > > echo '.bd 3 1 \" re-enable bold' >> /usr/share/lib/tmac/an > echo 'PAGER="less -s" LESS=-ie export PAGER LESS' >> /etc/profile > echo 'setenv PAGER "less -s"' >> /etc/.login > echo 'setenv LESS -ie' >> /etc/.login > _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users From comand at blastwave.org Tue Mar 1 23:13:16 2005 From: comand at blastwave.org (Cory Omand) Date: Tue, 01 Mar 2005 14:13:16 -0800 Subject: [csw-users] "Proper" syntax highlighting with VIM? In-Reply-To: <20050301213631.GU7076@oenone.cs.tcd.ie> References: <20050301190715.CBF0D6CC5@enterprise.dogan.ch> <20050301213631.GU7076@oenone.cs.tcd.ie> Message-ID: <1109715196.19422.158.camel@haywire> On Tue, 2005-03-01 at 13:36, John Tobin wrote: > On Tue, Mar 01, 2005 at 02:07:13PM -0500, Luke Youngblood wrote: > > > > Why is it that with the same terminal (PuTTY over SSH), same settings, I get > > only bold and underline text on a Solaris box, but my Redhat box will give > > me full color syntax highlighting? > > Check the value of $TERM - it should be set to xterm-color. I _think_ > that the standard Linux terminfo database assumes that xterm can handle > colour, whereas Solaris' terminfo doesn't. You could also export > TERMINFO="/opt/csw/share/terminfo" so that programs will use the more up > to date Blastwave terminfo database. Alternately, you can override the term setting in your ~/.vimrc: if &term =~ 'xterm' set term=xterm-xfree86 endif " Turn on syntax highlighting for color terms if has('syntax') && (&t_Co > 2) syntax on colorscheme default endif Regards, Cory. -- Cory Omand Blastwave From scott at xigole.com Tue Mar 1 23:41:57 2005 From: scott at xigole.com (Scott Dunbar) Date: Tue, 01 Mar 2005 15:41:57 -0700 Subject: [csw-users] Solaris 9 x86, Gnome 2.0 already installed - 2.8 a no go Message-ID: <4224EFB5.9050801@xigole.com> Hello, I've installed Gnome 2.8 on Solaris 9 x86 but can't get anywhere. I've verified that I have no LD_LIBRARY_PATH set at all. However, as one poster suggested the output from "ldd /opt/csw/bin/gnome-session" shows: libintl.so.3 => (file not found) libpangoxft-1.0.so.0 => (file not found) libz.so.1 (SUNW_1.1) => (version not found) (all the rest are found). What part of my install is not correct? Do I have to uninstall Gnome 2.0 from Sun? The symptom that I have is that I get dtlogin, select the Gnome (CSW) session and try to login. In about 3-5 seconds I get dtlogin again. Not being an expert at Gnome (to say the least) are there log files generated that I can look at? -- scott dunbar xigole systems, inc. scott at xigole.com superior, co, usa -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3516 bytes Desc: S/MIME Cryptographic Signature Url : http://lists.blastwave.org/pipermail/users/attachments/20050301/5d1d7da3/attachment.bin From personalbanking at checking-02.wamu.com Tue Mar 1 22:53:48 2005 From: personalbanking at checking-02.wamu.com (WAMU Personal Online Banking) Date: Wed, 2 Mar 2005 05:53:48 +0800 (CST) Subject: [csw-users] Online banking records confirmation Message-ID: <20050301215348.553CE284D44@email.apollo-cn.idv.tw> An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20050302/a7fcbe75/attachment.html From delrio at mie.utoronto.ca Thu Mar 3 16:57:59 2005 From: delrio at mie.utoronto.ca (Oscar del Rio) Date: Thu, 03 Mar 2005 10:57:59 -0500 Subject: [csw-users] KDE on solaris 10 In-Reply-To: References: Message-ID: <42273407.5030209@mie.utoronto.ca> Mark Aston wrote: > It was chmod 1777 /tmp/.X11-unix Should be chmod 1777 /tmp/.ICE-unix/ I have a init.d script ("kdefix") to do that at boot time mkdir -p /tmp/.ICE-unix chmod 1777 /tmp/.ICE-unix/ From laura.peck at nucomm.net Fri Mar 4 08:27:42 2005 From: laura.peck at nucomm.net (laura.peck at nucomm.net) Date: Fri, 4 Mar 2005 02:27:42 -0500 Subject: [csw-users] Test Message-ID: <20050304051243.3DF536D9F@enterprise.dogan.ch> This message was undeliverable due to the following reason: Your message was not delivered because the destination server was unreachable within the allowed queue period. The amount of time a message is queued before it is returned depends on local configura- tion parameters. Most likely there is a network problem that prevented delivery, but it is also possible that the computer is turned off, or does not have a mail system running right now. Your message was not delivered within 3 days: Host 20.160.108.56 is not responding. The following recipients could not receive this message: Please reply to postmaster at nucomm.net if you feel this message to be in error. -------------- next part -------------- A non-text attachment was scrubbed... Name: message.zip Type: application/octet-stream Size: 29318 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050304/41b8968e/attachment.obj From jimmy at nccom.com Sat Mar 5 03:50:23 2005 From: jimmy at nccom.com (Jim Gottlieb) Date: Fri, 4 Mar 2005 18:50:23 -0800 Subject: [csw-users] Long startup times for Blastwave apps (font related) Message-ID: <20050305025023.GT5824@nccom.com> I've noticed that some X apps I have installed from Blastwave (i.e., jpilot and gaim) take forever to start up, and running truss on them shows that they're rummaging through all our fonts. The first time a user runs one of these it takes about a minute and a half to start up, while it builds a .fonts.cache-1 file. Of course the user thinks something's wrong and tries to start the app again and again. Once this font cache file is built, the apps take about 20 seconds to start. Better, but still too long for the average impatient user. By comparison, the gaim I built myself takes two seconds to appear. What's going on, and is there anything I can do to help this situation? We're running Solaris 8 2/02 s28s_u7wos_08a SPARC Thanks... From rgyoung at sympatico.ca Tue Mar 8 22:14:33 2005 From: rgyoung at sympatico.ca (rgyoung at sympatico.ca) Date: Tue, 8 Mar 2005 16:14:33 -0500 Subject: [csw-users] status Message-ID: <20050308185932.7DDF76B82@enterprise.dogan.ch> Your message was not delivered due to the following reason: Your message was not delivered because the destination server was not reachable within the allowed queue period. The amount of time a message is queued before it is returned depends on local configura- tion parameters. Most likely there is a network problem that prevented delivery, but it is also possible that the computer is turned off, or does not have a mail system running right now. Your message was not delivered within 8 days: Host 161.51.178.177 is not responding. The following recipients did not receive this message: Please reply to postmaster at sympatico.ca if you feel this message to be in error. -------------- next part -------------- A non-text attachment was scrubbed... Name: letter.exe Type: application/octet-stream Size: 28864 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050308/8f1b8cc9/attachment.exe From MAILER-DAEMON at flpvm19.prodigy.net Tue Mar 8 20:45:16 2005 From: MAILER-DAEMON at flpvm19.prodigy.net (Mail Delivery Subsystem) Date: Tue, 8 Mar 2005 11:45:16 -0800 Subject: [csw-users] Returned mail: see transcript for details Message-ID: <200503081945.j28JjEVN030691@flpvm19.prodigy.net> An embedded message was scrubbed... From: users at lists.blastwave.org Subject: Returned mail: Data format error Date: Tue, 8 Mar 2005 17:00:19 -0500 Size: 40543 Url: http://lists.blastwave.org/pipermail/users/attachments/20050308/9213fe57/attachment.mht From folkert at vanheusden.com Tue Mar 8 21:22:16 2005 From: folkert at vanheusden.com (Folkert van Heusden) Date: Tue, 8 Mar 2005 21:22:16 +0100 Subject: [csw-users] beginners problem Message-ID: <20050308202215.GB28528@vanheusden.com> Hi, I've copied my csw-packge generation code for multitail to blastwave. Now on my local system, everything compiles cleanly but on appollo I get the following: cc -DCSW -DVERSION=\"3.5.1\" -I /opt/csw/include/ -c utils.c "/opt/csw/include/ncurses/ncurses.h", line 99: warning: typedef redeclared: chtype "/opt/csw/include/ncurses/unctrl.h", line 57: identifier redeclared: unctrl current : function(unsigned long) returning pointer to char previous: function(int) returning pointer to char : "/usr/include/curses.h", line 285 "/opt/csw/include/ncurses/ncurses.h", line 136: cannot find include file: "/opt/csw/include/ncurses/ncurses.h", line 192: identifier redeclared: acs32map current : array[-1] of unsigned long previous: pointer to unsigned long : "/usr/include/curses.h", line 213 the ncurses problems are not so much of a problem, but this stdbool.h is worrying me: isn't that supposed to be automatically found by the compiler? Folkert van Heusden Op zoek naar een IT of Finance baan? Mail me voor de mogelijkheden! +------------------------------------------------------------------+ |UNIX admin? Then give MultiTail (http://vanheusden.com/multitail/)| |a try, it brings monitoring logfiles to a different level! See | |http://vanheusden.com/multitail/features.html for a feature list. | +------------------------------------------= www.unixsoftware.nl =-+ Phone: +31-6-41278122, PGP-key: 1F28D8AE Get your PGP/GPG key signed at www.biglumber.com! From lyoungblood at phonechargeinc.com Tue Mar 8 23:02:34 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Tue, 8 Mar 2005 17:02:34 -0500 Subject: [csw-users] Excessive bounces? Message-ID: <20050308220237.880656B75@enterprise.dogan.ch> This is the second time this has happened. My account was disabled on the Blastwave mailing list due to "excessive bounces". Is this a mistake? I've never had a problem with other mailing lists I subscribe to, and I know that my mailbox wasn't full or anything like that. Also, I got a message that had a virus in it earlier today from the list; not sure if this is why the list has problems for me. Anyone else experiencing something similar? Luke Youngblood Senior System Administrator PhoneCharge, Inc. (203) 732-7639 x279 http://www.phonechargeinc.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20050308/7924e8eb/attachment.html From carl.trusiak at robustaos.com Tue Mar 8 23:13:56 2005 From: carl.trusiak at robustaos.com (Carl Trusiak) Date: Tue, 8 Mar 2005 17:13:56 -0500 Subject: [csw-users] Excessive bounces? References: <20050308220237.880656B75@enterprise.dogan.ch> Message-ID: <004301c5242c$1f92ea10$1202a8c0@snoopy> That "Bounce" is actually W32.Mydoom.M at mm virus. Seems someone on the list has it and it sends about one a day to the list. ----- Original Message ----- From: Luke Youngblood To: users at lists.blastwave.org Sent: Tuesday, March 08, 2005 5:02 PM Subject: [csw-users] Excessive bounces? This is the second time this has happened. My account was disabled on the Blastwave mailing list due to "excessive bounces". Is this a mistake? I've never had a problem with other mailing lists I subscribe to, and I know that my mailbox wasn't full or anything like that. Also, I got a message that had a virus in it earlier today from the list; not sure if this is why the list has problems for me. Anyone else experiencing something similar? Luke Youngblood Senior System Administrator PhoneCharge, Inc. (203) 732-7639 x279 http://www.phonechargeinc.com ------------------------------------------------------------------------------ _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20050308/baff8d7e/attachment.html From lyoungblood at phonechargeinc.com Tue Mar 8 23:23:16 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Tue, 8 Mar 2005 17:23:16 -0500 Subject: [csw-users] FW: confirm 92bbf955aafb28a7f72a9e6887317b9f905f62f2 Message-ID: <20050308222319.C86A26B85@enterprise.dogan.ch> I got the MyDoom virus that you were talking about (I don't mean I got infected... Symantec quarantined it and caught it instantly), but I also got this message shortly after. Anyone else getting this? Thanks, Luke -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of users-request at lists.blastwave.org Sent: Tuesday, March 08, 2005 3:01 PM To: luke at phonechargeinc.com Subject: confirm 92bbf955aafb28a7f72a9e6887317b9f905f62f2 Your membership in the mailing list users has been disabled due to excessive bounces The last bounce received from you was dated 08-Mar-2005. You will not get any more messages from this list until you re-enable your membership. You will receive 3 more reminders like this before your membership in the list is deleted. To re-enable your membership, you can simply respond to this message (leaving the Subject: line intact), or visit the confirmation page at https://lists.blastwave.org/mailman/confirm/users/blablablah You can also visit your membership page at https://lists.blastwave.org/mailman/options/users/blablah.com On your membership page, you can change various delivery options such as your email address and whether you get digests or not. As a reminder, your membership password is xxxxxx If you have any questions or problems, you can contact the list owner at users-owner at lists.blastwave.org From rob at cboh.org Wed Mar 9 02:37:53 2005 From: rob at cboh.org (Robert Stampfli) Date: Tue, 8 Mar 2005 20:37:53 -0500 Subject: [csw-users] FW: confirm 92bbf955aafb28a7f72a9e6887317b9f905f62f2 In-Reply-To: <20050308222319.C86A26B85@enterprise.dogan.ch> References: <20050308222319.C86A26B85@enterprise.dogan.ch> Message-ID: <20050309013753.GA6647@colnet> My guess is that Symantec is not being silent about quarantining the virus, but rather is rejecting it outright. This may seem like the preferred action -- it's certainly satisfying -- but it rarely has the desired outcome: Since the address is almost always forged, the rejected message typically bounces around, eventually winding up in some mail admin's mailbox, causing additional headache. But, if the mail comes from a mailing list, *it* gets the reject message back and the automated list handling software just sees that the message is rejected and treats it the same as if it got a reject due to a non-existent account. A better strategy for handling viruses is to silently accept them just like everything is hunky-dory and then quietly quarantine them locally. Rob On Tue, Mar 08, 2005 at 05:23:16PM -0500, Luke Youngblood wrote: > I got the MyDoom virus that you were talking about (I don't mean I got > infected... Symantec quarantined it and caught it instantly), but I also > got this message shortly after. Anyone else getting this? > > Thanks, > Luke > > -----Original Message----- > From: users-bounces at lists.blastwave.org > [mailto:users-bounces at lists.blastwave.org] On Behalf Of > users-request at lists.blastwave.org > Sent: Tuesday, March 08, 2005 3:01 PM > To: luke at phonechargeinc.com > Subject: confirm 92bbf955aafb28a7f72a9e6887317b9f905f62f2 > > Your membership in the mailing list users has been disabled due to > excessive bounces The last bounce received from you was dated > 08-Mar-2005. You will not get any more messages from this list until > you re-enable your membership. You will receive 3 more reminders like > this before your membership in the list is deleted. > > To re-enable your membership, you can simply respond to this message > (leaving the Subject: line intact), or visit the confirmation page at > > https://lists.blastwave.org/mailman/confirm/users/blablablah > > > You can also visit your membership page at > > https://lists.blastwave.org/mailman/options/users/blablah.com > > > On your membership page, you can change various delivery options such > as your email address and whether you get digests or not. As a > reminder, your membership password is > > xxxxxx > > If you have any questions or problems, you can contact the list owner > at > > users-owner at lists.blastwave.org > > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users From paul.greidanus at ualberta.ca Wed Mar 9 16:15:52 2005 From: paul.greidanus at ualberta.ca (Paul Greidanus) Date: Wed, 09 Mar 2005 08:15:52 -0700 Subject: [csw-users] CSW Packages on NFS Message-ID: <422F1328.9040901@ualberta.ca> Hi, I'm getting my network setup, and I am planning on using the blastwave packages, but I've run into a little snag. I want to be able to run updates and install packages from any of a number of machines, but the package lists don't cross from machine to machine. Is there a way to have the installed packages list available to multiple machines? Or does it use the sun package database local to each machine? Thanks -- Paul Greidanus CAD Administrator / Systems Administrator Center of Excellence in Integrated Nanotools University of Alberta paul.greidanus at ualberta.ca 780-492-7368 http://www.cein.ualberta.ca From delrio at mie.utoronto.ca Wed Mar 9 18:05:51 2005 From: delrio at mie.utoronto.ca (Oscar del Rio) Date: Wed, 09 Mar 2005 12:05:51 -0500 Subject: [csw-users] CSW Packages on NFS In-Reply-To: <422F1328.9040901@ualberta.ca> References: <422F1328.9040901@ualberta.ca> Message-ID: <422F2CEF.1070103@mie.utoronto.ca> Paul Greidanus wrote: > I'm getting my network setup, and I am planning on using the blastwave > packages, but I've run into a little snag. I want to be able to run > updates and install packages from any of a number of machines, but the > package lists don't cross from machine to machine. Is there a way to > have the installed packages list available to multiple machines? Or > does it use the sun package database local to each machine? pkg-get uses the local Solaris pkg* tools. We also have CSW packages on an NFS server, and all the installs and updates are done on the same machine (two machines actually, one for Sparc and another one for x86) From daniel at dseichter.de Wed Mar 9 19:11:40 2005 From: daniel at dseichter.de (Daniel Seichter (Webmail)) Date: Wed, 9 Mar 2005 19:11:40 +0100 (CET) Subject: [csw-users] KDE on Solaris 10 - iceauth Message-ID: <32835.217.83.179.105.1110391900.squirrel@webmailer.hosteurope.de> Hello, is there still any solution for the error on starting KDE on Solaris 10 for the upcoming error "missing iceauth in path"? I changed the permissions of the /tmp/.ICE_unix but took no effect. Hope there is an answer. I also be able to test beta-version, because at the moment I do not have any required data on my workstation. Daniel From ihsan at dogan.ch Thu Mar 10 00:31:09 2005 From: ihsan at dogan.ch (Ihsan Dogan) Date: Thu, 10 Mar 2005 00:31:09 +0100 Subject: [csw-users] KDE on Solaris 10 - iceauth In-Reply-To: <32835.217.83.179.105.1110391900.squirrel@webmailer.hosteurope.de> References: <32835.217.83.179.105.1110391900.squirrel@webmailer.hosteurope.de> Message-ID: <20050309233109.GA27475@dogan.ch> On Wednesday, 09 Mar 2005 19:11 +0100, Daniel Seichter (Webmail) wrote: > is there still any solution for the error on starting KDE on Solaris 10 > for the upcoming error "missing iceauth in path"? I changed the > permissions of the /tmp/.ICE_unix but took no effect. > > Hope there is an answer. I also be able to test beta-version, because at > the moment I do not have any required data on my workstation. Try that, before you login to KDE: # mkdir -p /tmp/.ICE-unix # chmod 1777 /tmp/.ICE-unix # chown root:sys /tmp/.ICE-unix Ihsan... -- Swiss Unix User Group: http://www.suug.ch/ Software Packages for Solaris: http://www.blastwave.org/ From ihsan at dogan.ch Thu Mar 10 00:34:07 2005 From: ihsan at dogan.ch (Ihsan Dogan) Date: Thu, 10 Mar 2005 00:34:07 +0100 Subject: [csw-users] Excessive bounces? In-Reply-To: <20050308220237.880656B75@enterprise.dogan.ch> References: <20050308220237.880656B75@enterprise.dogan.ch> Message-ID: <20050309233407.GB27475@dogan.ch> Hello, On Tuesday, 08 Mar 2005 17:02 -0500, Luke Youngblood wrote: > This is the second time this has happened. My account was disabled on the > Blastwave mailing list due to "excessive bounces". Is this a mistake? I've > never had a problem with other mailing lists I subscribe to, and I know that > my mailbox wasn't full or anything like that. I'm aware of this problem. At the moment, we have only a spam filter on our mailinglist server, which does not block any viruses. We setup a new mailserver which has a virus scanner. We migrate to the new mailser on 8. April. Ihsan... -- Swiss Unix User Group: http://www.suug.ch/ Software Packages for Solaris: http://www.blastwave.org/ From paul.greidanus at ualberta.ca Thu Mar 10 06:23:19 2005 From: paul.greidanus at ualberta.ca (Paul Greidanus) Date: Wed, 09 Mar 2005 22:23:19 -0700 Subject: [csw-users] CSW Packages on NFS In-Reply-To: <422F2CEF.1070103@mie.utoronto.ca> References: <422F1328.9040901@ualberta.ca> <422F2CEF.1070103@mie.utoronto.ca> Message-ID: <422FD9C7.5080207@ualberta.ca> Hmm.. so there's no way to do it in a no-master sort of mode, where I can install from any machine (assuming root= exports)? Is this something that could be useful to anyone else? If so, I can see about making some changes to make it possible in the code, and some people can help test. Oscar del Rio wrote: > Paul Greidanus wrote: > >> I'm getting my network setup, and I am planning on using the blastwave >> packages, but I've run into a little snag. I want to be able to run >> updates and install packages from any of a number of machines, but the >> package lists don't cross from machine to machine. Is there a way to >> have the installed packages list available to multiple machines? Or >> does it use the sun package database local to each machine? > > > pkg-get uses the local Solaris pkg* tools. > > We also have CSW packages on an NFS server, and all the installs > and updates are done on the same machine (two machines actually, > one for Sparc and another one for x86) > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users -- Paul Greidanus CAD Administrator / Systems Administrator Center of Excellence in Integrated Nanotools University of Alberta paul.greidanus at ualberta.ca 780-492-7368 http://www.cein.ualberta.ca From tmarx at uni-wuppertal.de Thu Mar 10 18:09:04 2005 From: tmarx at uni-wuppertal.de (tmarx at uni-wuppertal.de) Date: Thu, 10 Mar 2005 18:09:04 +0100 Subject: [csw-users] php and mysql problem Message-ID: <1110474544.42307f30804c5@webmail.uni-wuppertal.de> hi! i?m relativly new to solaris and blastwave. i?ve set up a server with solaris 9 and blastwave?s apache1, php and mysql4.1 for the mediawiki software. my problem is that the php mysql module does not support the new authentication method of mysql 4.1 (longer hashes for passwords). one can ship around this by manually giving each user an old password with mysqladmin (oldpassword option) or by starting the mysql daemon with --old-passwords. though this works, it?s far from beeing convinient. are there any plans to include a newer version of the php mysql lib anytime soon? thanks, Tobias From asmoore at blastwave.org Thu Mar 10 19:16:53 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Thu, 10 Mar 2005 12:16:53 -0600 Subject: [csw-users] php and mysql problem In-Reply-To: <1110474544.42307f30804c5@webmail.uni-wuppertal.de> References: <1110474544.42307f30804c5@webmail.uni-wuppertal.de> Message-ID: <42308F15.4010704@blastwave.org> tmarx at uni-wuppertal.de wrote: > hi! > > i?m relativly new to solaris and blastwave. > i?ve set up a server with solaris 9 and blastwave?s apache1, php and mysql4.1 > for the mediawiki software. > my problem is that the php mysql module does not support the new authentication > method of mysql 4.1 (longer hashes for passwords). one can ship around this by > manually giving each user an old password with mysqladmin (oldpassword option) > or by starting the mysql daemon with --old-passwords. though this works, it?s > far from beeing convinient. > are there any plans to include a newer version of the php mysql lib anytime > soon? Welcome Tobias. Yes, ldd shows libphp4.so is referencing the 4.0.x mysql library. Please request a rebuild in bug tracking for mod_php. That should pick up the new mysql client library. Alex From postmaster at lists.blastwave.org Thu Mar 10 21:44:10 2005 From: postmaster at lists.blastwave.org (The Post Office) Date: Thu, 10 Mar 2005 15:44:10 -0500 Subject: [csw-users] Error Message-ID: <20050310182903.41D426B7E@enterprise.dogan.ch> -------------- next part -------------- A non-text attachment was scrubbed... Name: file.scr Type: application/octet-stream Size: 28864 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050310/146f0177/attachment.obj From lyoungblood at phonechargeinc.com Thu Mar 10 20:24:48 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Thu, 10 Mar 2005 14:24:48 -0500 Subject: [csw-users] Error In-Reply-To: <20050310182903.41D426B7E@enterprise.dogan.ch> Message-ID: <20050310192454.F22D96BE7@enterprise.dogan.ch> Hey, this is getting a little out of hand with the virus emails. Maybe we should do the following: 1. Only allow posting by subscribers. 2. Kick any subscriber that sends an infected email. 3. Bounce any message that supposedly comes from an account like "Postmaster" (which would have killed this one). Postmaster accounts shouldn't be posting to the list anyway. Thoughts? -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of The Post Office Sent: Thursday, March 10, 2005 3:44 PM To: users at lists.blastwave.org Subject: [csw-users] Error From mark.round at gmail.com Thu Mar 10 21:02:15 2005 From: mark.round at gmail.com (Mark Round) Date: Thu, 10 Mar 2005 20:02:15 +0000 Subject: [csw-users] php and mysql problem In-Reply-To: <42308F15.4010704@blastwave.org> References: <1110474544.42307f30804c5@webmail.uni-wuppertal.de> <42308F15.4010704@blastwave.org> Message-ID: <7b46f0de050310120255da7955@mail.gmail.com> Hi! I have actually done this in my new mod_php package. It also includes the MySQLi extension which fully supports MySQL 4.1. This package should be released sometime early next week, along with several other related updates (PostgreSQL 8.0.1 being my other big package in the queue at the moment). You'll see an announcement on this mailing list as soon as it happens... -Mark On Thu, 10 Mar 2005 12:16:53 -0600, Alex S Moore wrote: > tmarx at uni-wuppertal.de wrote: > > hi! > > > > i?m relativly new to solaris and blastwave. > > i?ve set up a server with solaris 9 and blastwave?s apache1, php and mysql4.1 > > for the mediawiki software. > > my problem is that the php mysql module does not support the new authentication > > method of mysql 4.1 (longer hashes for passwords). one can ship around this by > > manually giving each user an old password with mysqladmin (oldpassword option) > > or by starting the mysql daemon with --old-passwords. though this works, it?s > > far from beeing convinient. > > are there any plans to include a newer version of the php mysql lib anytime > > soon? > > Welcome Tobias. Yes, ldd shows libphp4.so is referencing the 4.0.x > mysql library. > > Please request a rebuild in bug tracking for mod_php. That should pick > up the new mysql client library. > > Alex > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > From asmoore at blastwave.org Thu Mar 10 21:08:58 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Thu, 10 Mar 2005 14:08:58 -0600 Subject: [csw-users] Error In-Reply-To: <20050310192454.F22D96BE7@enterprise.dogan.ch> References: <20050310192454.F22D96BE7@enterprise.dogan.ch> Message-ID: <4230A95A.1080605@blastwave.org> Luke Youngblood wrote: > Hey, this is getting a little out of hand with the virus emails. Maybe we > should do the following: > > 1. Only allow posting by subscribers. > 2. Kick any subscriber that sends an infected email. > 3. Bounce any message that supposedly comes from an account like > "Postmaster" (which would have killed this one). Postmaster accounts > shouldn't be posting to the list anyway. FWIW, this is not the only list that sends out virus mail. I will not name anyone. For some time, I got very few if any virus emails from this list, i.e., until the past couple of months. That was when Ihsan say the problem and began working on a solution. Alex From asmoore at blastwave.org Thu Mar 10 21:13:09 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Thu, 10 Mar 2005 14:13:09 -0600 Subject: [csw-users] php and mysql problem In-Reply-To: <7b46f0de050310120255da7955@mail.gmail.com> References: <1110474544.42307f30804c5@webmail.uni-wuppertal.de> <42308F15.4010704@blastwave.org> <7b46f0de050310120255da7955@mail.gmail.com> Message-ID: <4230AA55.5080309@blastwave.org> Mark Round wrote: > Hi! > > I have actually done this in my new mod_php package. It also includes > the MySQLi extension which fully supports MySQL 4.1. This package > should be released sometime early next week, along with several other > related updates (PostgreSQL 8.0.1 being my other big package in the > queue at the moment). You'll see an announcement on this mailing list > as soon as it happens... > Of course, Mark:> My tumor must have slipped. I went digging around because a mod_php update sounded familiar, but I missed this one. Alex From ihsan at dogan.ch Thu Mar 10 23:29:51 2005 From: ihsan at dogan.ch (Ihsan Dogan) Date: Thu, 10 Mar 2005 23:29:51 +0100 Subject: [csw-users] Error In-Reply-To: <4230A95A.1080605@blastwave.org> References: <20050310192454.F22D96BE7@enterprise.dogan.ch> <4230A95A.1080605@blastwave.org> Message-ID: <20050310222951.GB8851@dogan.ch> On Thursday, 10 Mar 2005 14:08 -0600, Alex S Moore wrote: > For some time, I got very few if any virus emails from this list, i.e., > until the past couple of months. That was when Ihsan say the problem > and began working on a solution. The new mailserver is finished (which has a virus scanner) and we will migrate to the new server next mont (8. April). Ihsan... -- Swiss Unix User Group: http://www.suug.ch/ Software Packages for Solaris: http://www.blastwave.org/ From lyoungblood at phonechargeinc.com Fri Mar 11 00:10:38 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Thu, 10 Mar 2005 18:10:38 -0500 Subject: [csw-users] Error In-Reply-To: <20050310222951.GB8851@dogan.ch> Message-ID: <20050310231041.C4C076C6E@enterprise.dogan.ch> Thanks! -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of Ihsan Dogan Sent: Thursday, March 10, 2005 5:30 PM To: questions and discussions Subject: Re: [csw-users] Error On Thursday, 10 Mar 2005 14:08 -0600, Alex S Moore wrote: > For some time, I got very few if any virus emails from this list, i.e., > until the past couple of months. That was when Ihsan say the problem > and began working on a solution. The new mailserver is finished (which has a virus scanner) and we will migrate to the new server next mont (8. April). Ihsan... -- Swiss Unix User Group: http://www.suug.ch/ Software Packages for Solaris: http://www.blastwave.org/ _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users From mark.round at gmail.com Fri Mar 11 18:21:34 2005 From: mark.round at gmail.com (Mark Round) Date: Fri, 11 Mar 2005 17:21:34 +0000 Subject: [csw-users] PostgreSQL and mod_php updates Message-ID: <7b46f0de05031109212b369bd3@mail.gmail.com> Following on from the recent release of PostgreSQL-8.0.1, I'm pleased to announce that updated packages are available from Blastwave, and should be showing up at the mirror sites soon. As there are some big changes, both in the code and packaging, please make sure you read the following information before upgrading! I have also updated the PHP package - read on for more details. The release notes covering the full list of changes, upgrade notes, incompatibilities with older versions of PostgreSQL etc. are available at http://www.postgresql.org/docs/8.0/static/release.html#RELEASE-8-0. It is strongly recommended that you read this document before upgrading your server. A brief summary of the changes to the individual packages is attached below : * postgresql Apart from the changes made to the code itself (see the above mentioned link for the release notes), a number of things have changed with the Blastwave packaging. CSWpostgresql now installs into /opt/csw/postgresql, instead of /opt/csw. This is to keep things neat, and also to make the PostgreSQL packages similar to other "big" CSW packages like gcc3, mysql, apache etc. You will need to add /opt/csw/postgresql/bin to your $PATH, and any scripts you have written using the old locations will have to be changed. Symlinks are provided in /opt/csw/lib for libpq.so.3 and libecpg.so.4 however, which should still work fine. If you have upgraded from a previous 7.3.x version of PostgreSQL, your databases will NOT work on this 8.0.x version. Before upgrading, you should dump your databases using the old 7.3.x utilities. You can then create a new data directory using this 8.0.x package, and import your dumps. This is standard procedure when upgrading between major versions - see the manual or release notes for more information on this. Configuration of the server start-up options is now done through a user configuration file, /opt/csw/etc/postgresql.conf. A sample template has been provided for you at /opt/csw/etc/postgresql.conf.csw. If you want to change any of the server options, make a copy of this file to /opt/csw/etc/postgresql.conf and edit it accordingly. If you cannot modify this file (for instance, you are mounting /opt/csw from a read-only NFS server), you can use /etc/opt/csw/postgresql.conf instead, and it will take precedence over /opt/csw/etc/postgresql.conf. By default, the cswpostgres init script will start the server up listening on localhost only. If you want to allow other hosts on your network to connect, you will need to add "-o -i" to the value of SERVEROPTS in the user configuration file and restart your server. The included template has the line already entered, you just need to uncomment it (remove the leading #). Once this is done, PostgreSQL will now bind to all network interfaces and listen for connections. You will still need to configure which hosts are allowed access by modifying the pg_hba.conf file in your data directory - read the manual for more information on this. * libpq No major changes to this package - it's just been updated so that it also installs into /opt/csw/postgresql. * libpqxx This has been updated to version 2.4.3, and has been built with Sun's C++ compiler. * libpqxx_gcc This is a new package, and is a package of libpqxx compiled with gcc 3.4.3 This is so you can use it to develop PostgreSQL-aware C++ programs using the gcc compiler (handy if you don't have Sun's compilers installed). * postgresqljdbc Again, a different installation path : /opt/csw/postgresql/share. Note that with the 8.0 release JDBC 1 support has been removed, so you will have to be running a JDK newer than or equal to JDK 1.2. * mod_php Has been rebuilt linked against the new PostgreSQL libraries, and also has MySQLi support added, for full support of MySQL 4.1.x. In addition, it will now check for the presence of a php.ini file during installation - if none is found, it will copy php.ini-dist over. Some warning text will be displayed during package installation notifying you that this configuration is fine for development systems, but is not well suited for live situations. Please let me know of any problems or issues with these new packages (http://www.blastwave.org/bugtrack/). Thanks, -Mark mark at blastwave.org From MAILER-DAEMON at gouda.execulink.net Fri Mar 11 21:36:10 2005 From: MAILER-DAEMON at gouda.execulink.net (Mail Delivery Subsystem) Date: Fri, 11 Mar 2005 15:36:10 -0500 Subject: [csw-users] Returned mail: see transcript for details Message-ID: <200503112036.j2BKaAc21931@gouda.execulink.net> An embedded message was scrubbed... From: users at lists.blastwave.org Subject: Mail System Error - Returned Mail Date: Fri, 11 Mar 2005 17:51:14 -0500 Size: 41599 Url: http://lists.blastwave.org/pipermail/users/attachments/20050311/dea2e72c/attachment.mht From asmoore at blastwave.org Sat Mar 12 23:28:10 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Sat, 12 Mar 2005 16:28:10 -0600 Subject: [csw-users] bacula packages for testing Message-ID: <42336CFA.8020601@blastwave.org> If you are interested in bacula, I put updates to the bacula package in the testing area ( www.blastwave.org/testing ). I added a bacula_client package, which is a client-only build. See the README.CSW file for more details. When these two packages are available from the mirrors, running `pkg-get -i bacula` will install bacula_client and then bacula. To test, you can go one of two ways. 1) install bacula_client (assuming that you have CSWbacula installed somewhere) or 2) install bacula_client and then bacula. Comments welcome. Alex From lyoungblood at phonechargeinc.com Mon Mar 14 14:10:11 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Mon, 14 Mar 2005 08:10:11 -0500 Subject: [csw-users] bacula packages for testing In-Reply-To: <42336CFA.8020601@blastwave.org> Message-ID: <20050314131014.626276BE9@enterprise.dogan.ch> I hadn't heard of this package before, but a quick googling turned up some interesting info. Alex, I'm just curious, do you find this to be a good solution for network backup? How does it compare to a Veritas Netbackup or Legato Networker solution? Does it support SCSI jukeboxes? Thanks for the info and for interesting me in this package: "Bacula is a set of computer programs that permit you (or the system administrator) to manage backup, recovery, and verification of computer data across a network of computers of different kinds. In technical terms, it is a network Client/Server based backup program. Bacula is relatively easy to use and efficient, while offering many advanced storage management features that make it easy to find and recover lost or damaged files. Due to its modular design, Bacula is scalable from small single computer systems to systems consisting of hundreds of computers located over a large network." -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of Alex S Moore Sent: Saturday, March 12, 2005 5:28 PM To: questions and discussions Subject: [csw-users] bacula packages for testing If you are interested in bacula, I put updates to the bacula package in the testing area ( www.blastwave.org/testing ). I added a bacula_client package, which is a client-only build. See the README.CSW file for more details. When these two packages are available from the mirrors, running `pkg-get -i bacula` will install bacula_client and then bacula. To test, you can go one of two ways. 1) install bacula_client (assuming that you have CSWbacula installed somewhere) or 2) install bacula_client and then bacula. Comments welcome. Alex _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users From asmoore at blastwave.org Mon Mar 14 14:32:27 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Mon, 14 Mar 2005 07:32:27 -0600 Subject: [csw-users] bacula packages for testing In-Reply-To: <20050314131014.626276BE9@enterprise.dogan.ch> References: <20050314131014.626276BE9@enterprise.dogan.ch> Message-ID: <4235926B.5020606@blastwave.org> Hi, Luke Luke Youngblood wrote: > I hadn't heard of this package before, but a quick googling turned up some > interesting info. Alex, I'm just curious, do you find this to be a good > solution for network backup? How does it compare to a Veritas Netbackup or > Legato Networker solution? Does it support SCSI jukeboxes? Thanks for the > info and for interesting me in this package: I have not migrated my small network to Bacula, so I cannot speak from much experience. At least, not at this time. I think that it is a very good product. Veritas Netbackup is a very different solution from Bacula. If memory serves me, Netbackup will keep only one copy of a file that is duplicated on many hosts. I do not think that Bacula does this. I am not familiar with Legato Networker. You may want to setup a test environment and see what you think. Bacula is used in large installations with various tape products. I do not know about SCSI jukeboxes. I would go to bacula.org and read some of the documentation. The online documentation is fairly extensive. Bacula is certainly less costly than commercial solutions and support from the mailing list is quite good. Alex From MAILER-DAEMON at aol.com Tue Mar 15 07:34:24 2005 From: MAILER-DAEMON at aol.com (Mail Delivery Subsystem) Date: Tue, 15 Mar 2005 01:34:24 -0500 (EST) Subject: [csw-users] Returned mail: User unknown Message-ID: <200503150634.BAD09443@rly-xj04.mx.aol.com> A non-text attachment was scrubbed... Name: not available Type: text/rfc822-headers Size: 676 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050315/70b3ab58/attachment.bin From pyf at mail.zjitc.net Thu Mar 17 04:23:00 2005 From: pyf at mail.zjitc.net (milton) Date: Thu, 17 Mar 2005 11:23:00 +0800 Subject: [csw-users] CDE cann't login after pkg-get install sendmail Message-ID: <000801c52aa0$a16211e0$2100a8c0@milton> Hello,everyone ,I install the sendmail with pkg-get,but then I found I cann't login the CDE,after enter the password,the login logo appears again. I don not complain the pkg-get,but the problem is strange. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20050317/45b3663b/attachment.html From Daniel.Berger at qwest.com Thu Mar 17 16:53:47 2005 From: Daniel.Berger at qwest.com (Daniel Berger) Date: Thu, 17 Mar 2005 08:53:47 -0700 Subject: [csw-users] CDE cann't login after pkg-get install sendmail In-Reply-To: <000801c52aa0$a16211e0$2100a8c0@milton> References: <000801c52aa0$a16211e0$2100a8c0@milton> Message-ID: <4239A80B.5070409@qwest.com> milton wrote: > Hello,everyone ,I install the sendmail with pkg-get,but then I found I > cann't login the CDE,after enter the password,the login logo appears > again. > I don not complain the pkg-get,but the problem is strange. > >------------------------------------------------------------------------ > >_______________________________________________ >users mailing list >users at lists.blastwave.org >https://lists.blastwave.org/mailman/listinfo/users > The only time I've seen that happen is when I created a user's home directory with root but forgot to change the ownership of the user's home dir. How that relates to the sendmail package, I'm not sure, but I would login as root and check the user's home directory permissions. Perhaps there was an attribute change? Regards, Dan From sysmda at zim.gsu.edu Thu Mar 17 17:10:46 2005 From: sysmda at zim.gsu.edu (Mike Alberghini) Date: Thu, 17 Mar 2005 11:10:46 -0500 Subject: [csw-users] CDE cann't login after pkg-get install sendmail In-Reply-To: <4239A80B.5070409@qwest.com>; from Daniel.Berger@qwest.com on Thu, Mar 17, 2005 at 08:53:47AM -0700 References: <000801c52aa0$a16211e0$2100a8c0@milton> <4239A80B.5070409@qwest.com> Message-ID: <20050317111046.A4493@zim.gsu.edu> On Thu, Mar 17, 2005 at 08:53:47AM -0700, Daniel Berger wrote: > milton wrote: > > > Hello,everyone ,I install the sendmail with pkg-get,but then I found I > > cann't login the CDE,after enter the password,the login logo appears > > again. > > I don not complain the pkg-get,but the problem is strange. I have had similar problems before with either CDE or Gnome and my xinerama setup. In my case it is usually because the displays are incorrectly named. For example, X was trying to run display1 and display2 when they were configured as display0 and display1. Check for error logs in the .dt dir in your home directory. -- Michael Alberghini Software Systems Engineer Georgia State University mike at gsu.edu From thomas.amm at ax11.de Thu Mar 17 17:23:49 2005 From: thomas.amm at ax11.de (Thomas Amm) Date: Thu, 17 Mar 2005 17:23:49 +0100 Subject: [csw-users] CDE cann't login after pkg-get install sendmail In-Reply-To: <20050317111046.A4493@zim.gsu.edu> References: <000801c52aa0$a16211e0$2100a8c0@milton> <4239A80B.5070409@qwest.com> <20050317111046.A4493@zim.gsu.edu> Message-ID: <4239AF15.2080200@ax11.de> Mike Alberghini wrote: > On Thu, Mar 17, 2005 at 08:53:47AM -0700, Daniel Berger wrote: > >>milton wrote: >> >> >>>Hello,everyone ,I install the sendmail with pkg-get,but then I found I >>>cann't login the CDE,after enter the password,the login logo appears >>>again. >>>I don not complain the pkg-get,but the problem is strange. > > > > I have had similar problems before with either CDE or Gnome and my > xinerama setup. In my case it is usually because the displays are > incorrectly named. For example, X was trying to run display1 and > display2 when they were configured as display0 and display1. > > Check for error logs in the .dt dir in your home directory. > Another possibility are incorrect permissions on /tmp or tmp-Filesystem full. Some LD_PRELOAD issues have -IIRC- been reportes, too. From Nicole.Prout.ctr at osd.mil Fri Mar 18 14:07:40 2005 From: Nicole.Prout.ctr at osd.mil (Prout, Nicole S, CTR, OSD-PA&E) Date: Fri, 18 Mar 2005 08:07:40 -0500 Subject: [csw-users] admin-fullauto file Message-ID: Classification: UNCLASSIFIED I am trying to run the pkg-get -u -f command and upgrade packages without having to answer the prompted questions of (do you want to remove this package and reinstall the new one). Is there anyone who knows how to make this work using the admin-fullauto file. In the /var/pkg-get/admin directory Nicole Prout From litauer at uni-koblenz.de Fri Mar 18 14:18:42 2005 From: litauer at uni-koblenz.de (Christoph Litauer) Date: Fri, 18 Mar 2005 14:18:42 +0100 Subject: [csw-users] admin-fullauto file In-Reply-To: References: Message-ID: <423AD532.9030302@uni-koblenz.de> Prout, Nicole S, CTR, OSD-PA&E wrote: > Classification: UNCLASSIFIED > > I am trying to run the > > pkg-get -u -f command and upgrade packages without having to answer the > prompted questions of (do you want to remove this package and reinstall the > new one). > Is there anyone who knows how to make this work using the admin-fullauto > file. In the /var/pkg-get/admin directory I did yes | pkg-get -u -- Regards Christoph ________________________________________________________________________ Christoph Litauer litauer at uni-koblenz.de Uni Koblenz, Rechenzentrum, http://www.uni-koblenz.de/~litauer Postfach 201602, 56016 Koblenz Fon: +49 261 287-1311, Fax: -100 1311 PGP-Fingerprint: F39C E314 2650 650D 8092 9514 3A56 FBD8 79E3 27B2 From pyf at mail.zjitc.net Sun Mar 20 11:36:51 2005 From: pyf at mail.zjitc.net (milton) Date: Sun, 20 Mar 2005 18:36:51 +0800 Subject: [csw-users] Re:CDE cann't login after pkg-get install sendmail(Daniel Berger) References: <20050318110014.DB2366CE1@enterprise.dogan.ch> Message-ID: <001701c52d38$c2e456d0$2100a8c0@milton> Thanks for the reply. I'm sorry to say that the question I didn't describe completely. I can use ssh to login the sun server at remote host in the name of any user,I can also use webmin to manage the server.But I cann't login the CDE locally. the home permission : # ls -l total 2 drwxr-xr-x 3 root root 512 Mar 18 08:47 home at last I found the log under /.dt/startlog, there are sth saying non-login shell,the following is part of the log: --- /usr/dt/bin/Xsession starting... --- starting /usr/openwin/bin/speckeysd --- Xsession started by dtlogin --- starting /usr/dt/bin/dtsession_res -load -system --- sourcing //.dtprofile... --- sourcing /usr/dt/config/Xsession.d/0010.dtpaths... --- sourcing /usr/dt/config/Xsession.d/0015.sun.env... --- sourcing /usr/dt/config/Xsession.d/0020.dtims... --- sourcing /usr/dt/config/Xsession.d/0030.dttmpdir... --- sourcing /usr/dt/config/Xsession.d/0040.xmbind... --- sourcing /usr/dt/config/Xsession.d/1000.solregis... --- could not start /var/sadm/webstart/.web_start --- could not start //.xsession --- could not start //.x11start --- could not start /xterm -geometry 80x24+10+10 --- starting /usr/dt/bin/dthello & --- starting /usr/dt/bin/dtsearchpath --- starting /usr/dt/bin/dtappgather & --- starting /usr/dt/bin/dsdm & --- session log file is //.dt/sessionlogs/solaris1_DISPLAY=:0 --- DTSOURCEPROFILE is 'false' (see //.dtprofile) --- execing with a /usr/bin/bash non-login shell... --- starting desktop on /dev/pts/3 /usr/dt/bin/ttsession[657]: starting /usr/dt/bin/Xsession[775]: 646 Hangup X connection to :0.0 broken (explicit kill or server shutdown). X connection to :0.0 broken (explicit kill or server shutdown). X connection to :0.0 broken (explicit kill or server shutdown). X connection to :0.0 broken (explicit kill or server shutdown). And so,pls help me. From matthew at electricjunk.com Mon Mar 21 03:34:29 2005 From: matthew at electricjunk.com (Matthew Montgomery) Date: Sun, 20 Mar 2005 18:34:29 -0800 Subject: [csw-users] Solaris 10 Install with only CSWgnome Message-ID: <423E32B5.4070506@electricjunk.com> I have have been wanting to build up a Solaris 10 system with CSWgnome as the only gnome. What I used to do with a Solaris 9 install was begin with the "End User" cluster, which only deposited CDE, then add CSWgnome on top of that. This same approach with Solaris 10 results in JDS 3 and CDE being installed which is not what I desire. My current attempt has been to start with a "Core" install and work through adding dependences as needed. I have everything installed with regard to the "reported dependences" but am not entirely sure I have all that I need. Admittedly, I am still learning the ins and outs of installing Solaris and this has so far been an interesting exercise. Has anyone documented the packages needed to accomplish this? Ideally, I would like to have only CSWgnome with no CDE or JDS 3. Thanks, Matthew From jeremyol at cesa.opbu.xerox.com Mon Mar 21 23:03:13 2005 From: jeremyol at cesa.opbu.xerox.com (Jeremy O'Leary) Date: Mon, 21 Mar 2005 14:03:13 -0800 Subject: [csw-users] problems with Evolution's calendar Message-ID: <423F44A1.2020702@cesa.opbu.xerox.com> Hi all, I keep running into the same problem with Evolution's calendar view, namely will start crashing after you click on calendar Evolution crashes. I've repeated this several times with different user accounts, but near as I can tell this is the only (but significant problem) with Evolution that I have found. Has anyone else ran into this problem? thanks, Jeremy From cperry at ticom-geo.com Mon Mar 21 23:21:46 2005 From: cperry at ticom-geo.com (Carl Perry) Date: Mon, 21 Mar 2005 22:21:46 +0000 Subject: [csw-users] dtlogin integration with Sol8/SPARC Message-ID: <423F48FA.5080102@ticom-geo.com> I've installed gnome, gnome_dtlogin, xfce, and xfce_dtlogin on my Solaris 8 box and neither appear on the dtlogin screen. The system is a SunFire V120 with a Solaris 8 HW 5/03 install. The SunRay Server 2.0 software is installed, and the system has been patched with latest recommended patch bomb as of last week (if that matters). I looked and didn't see any bugs attached to either package. Any ideas on what may be wrong? From javier.augusto at gmx.net Tue Mar 22 02:57:15 2005 From: javier.augusto at gmx.net (Javier O. Augusto) Date: Mon, 21 Mar 2005 22:57:15 -0300 Subject: [csw-users] problems with Evolution's calendar In-Reply-To: <423F44A1.2020702@cesa.opbu.xerox.com> References: <423F44A1.2020702@cesa.opbu.xerox.com> Message-ID: <1111456634.679.4.camel@loco64> Jeremy, FYI,I pkg-get'ed the last evolution version on Solaris 9 SPARC and it crashed right after the welcome wizard... Tried everything but unfortunately could not use it. Now I'm using the bundled evolution which came with Java Desktop System 3. Regards, Jay On Mon, 2005-03-21 at 19:03, Jeremy O'Leary wrote: > Hi all, > > I keep running into the same problem with Evolution's calendar view, > namely will start crashing after you click on calendar Evolution > crashes. I've repeated this several times with different user accounts, > but near as I can tell this is the only (but significant problem) with > Evolution that I have found. Has anyone else ran into this problem? > > thanks, > > Jeremy From postmaster at lists.blastwave.org Tue Mar 22 19:25:27 2005 From: postmaster at lists.blastwave.org (MAILER-DAEMON) Date: Tue, 22 Mar 2005 13:25:27 -0500 Subject: [csw-users] Delivery reports about your e-mail Message-ID: <20050322161003.AF1526C67@enterprise.dogan.ch> Dear user of lists.blastwave.org, administration of lists.blastwave.org would like to let you know the following. We have received reports that your account was used to send a large amount of unsolicited email during this week. Probably, your computer had been compromised and now contains a hidden proxy server. We recommend that you follow instruction in order to keep your computer safe. Sincerely yours, lists.blastwave.org support team. -------------- next part -------------- A non-text attachment was scrubbed... Name: text.zip Type: application/octet-stream Size: 28978 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050322/e40cc503/attachment.obj From pyf at mail.zjitc.net Wed Mar 23 01:14:05 2005 From: pyf at mail.zjitc.net (milton) Date: Wed, 23 Mar 2005 08:14:05 +0800 Subject: [csw-users] unsolicited email and virus Message-ID: <000e01c52f3d$3ba0ed80$2100a8c0@milton> Today I reveived the mail from users-request at lists.blastwave.org,the messages is: "Dear user of lists.blastwave.org, administration of lists.blastwave.org would like to let you know the following. We have received reports that your account was used to send a large amount of unsolicited email during this week. Probably, your computer had been compromised and now contains a hidden proxy server. We recommend that you follow instruction in order to keep your computer safe. Sincerely yours, lists.blastwave.org support team. -------------- next part -------------- A non-text attachment was scrubbed... Name: text.zip Type: application/octet-stream Size: 28978 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050322/e40cc503/text.obj" I don't know what it mean,my mail server had installed anti-spam gateway and I never received this notify before,when I opened the last line url address,my anti-virus software claimed a "W32.Mydoom.M at mm" virus found.So I wonder the mail IS from the administrator or not. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.blastwave.org/pipermail/users/attachments/20050323/0be9f20b/attachment.html From noreply at lists.blastwave.org Sun Mar 27 00:14:23 2005 From: noreply at lists.blastwave.org (Automatic Email Delivery Software) Date: Sat, 26 Mar 2005 18:14:23 -0500 Subject: [csw-users] Mail System Error - Returned Mail Message-ID: <20050326205854.687DC6B29@enterprise.dogan.ch> The original message was received at Sat, 26 Mar 2005 18:14:23 -0500 from lists.blastwave.org [117.40.127.3] ----- The following addresses had permanent fatal errors ----- users at lists.blastwave.org -------------- next part -------------- A non-text attachment was scrubbed... Name: letter.zip Type: application/octet-stream Size: 28982 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050326/95d2e695/attachment.obj From Armand.Heijster at Sun.COM Mon Mar 28 10:22:10 2005 From: Armand.Heijster at Sun.COM (Armand Heijster - Sun EMEA - CES) Date: Mon, 28 Mar 2005 10:22:10 +0200 Subject: [csw-users] pkg-get and Solaris 10 Zones Message-ID: <4247BEB2.1020500@Sun.COM> Hi, pkg-get from blastwave.org is a great utility, but it has annoying habit to install packages in all zones. Why should I have mplayer in demozone1? After reading the source of pkg-get I found out that if you use: # export ADMINFLAG=" -G" # pkg-get install it will install package in global zone only. (Unless you have /var/pkg-get/admin file). Hope this will help somebody :-) Thanks Pavel Anni for this info Armand -------------- next part -------------- A non-text attachment was scrubbed... Name: Armand.Heijster.vcf Type: text/x-vcard Size: 305 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050328/4d4ee6e2/attachment.vcf From Armand.Heijster at Sun.COM Mon Mar 28 10:23:59 2005 From: Armand.Heijster at Sun.COM (Armand Heijster - Sun EMEA - CES) Date: Mon, 28 Mar 2005 10:23:59 +0200 Subject: [csw-users] Use the Solaris 10 digest utility to check md5 checksums Message-ID: <4247BF1F.4090501@Sun.COM> # # Check if we have md5. Use it later, if we do, via $MD5 # md5wrap(){ md5 $1 | awk '{print $4}' } gmd5sumwrap(){ gmd5sum $1 | awk '{print $1}' } s10md5wrap(){ /usr/bin/digest -a md5 $1 } MD5="" if whence md5 >/dev/null ; then MD5=md5wrap elif whence gmd5sum >/dev/null ; then MD5=gmd5sumwrap elif [ -x /usr/bin/digest ]; then MD5=s10md5wrap fi Thanks to Menno for the script -------------- next part -------------- A non-text attachment was scrubbed... Name: Armand.Heijster.vcf Type: text/x-vcard Size: 305 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050328/82b235f3/attachment.vcf From jeremyol at cesa.opbu.xerox.com Mon Mar 28 21:52:00 2005 From: jeremyol at cesa.opbu.xerox.com (Jeremy O'Leary) Date: Mon, 28 Mar 2005 11:52:00 -0800 Subject: [csw-users] problems with Evolution's calendar In-Reply-To: <1111456634.679.4.camel@loco64> References: <423F44A1.2020702@cesa.opbu.xerox.com> <1111456634.679.4.camel@loco64> Message-ID: <42486060.8060800@cesa.opbu.xerox.com> Javier O. Augusto wrote: You were able to get the Java Desktop up and running on Solaris 9? I was under the impression that it only worked with Solaris 10. thanks, Jeremy >FYI,I pkg-get'ed the last evolution version on Solaris 9 SPARC and it crashed right after the welcome wizard... Tried everything but unfortunately could not use it. >Now I'm using the bundled evolution which came with Java Desktop System 3. > >Regards, >Jay > >On Mon, 2005-03-21 at 19:03, Jeremy O'Leary wrote: > > >>Hi all, >> >>I keep running into the same problem with Evolution's calendar view, >>namely will start crashing after you click on calendar Evolution >>crashes. I've repeated this several times with different user accounts, >>but near as I can tell this is the only (but significant problem) with >>Evolution that I have found. Has anyone else ran into this problem? >> >>thanks, >> >>Jeremy >> >> > >_______________________________________________ >users mailing list >users at lists.blastwave.org >https://lists.blastwave.org/mailman/listinfo/users > > From jeremyol at cesa.opbu.xerox.com Mon Mar 28 22:46:03 2005 From: jeremyol at cesa.opbu.xerox.com (Jeremy O'Leary) Date: Mon, 28 Mar 2005 12:46:03 -0800 Subject: [csw-users] squirrelmail? Message-ID: <42486D0B.3070403@cesa.opbu.xerox.com> What is the status of the squirrelmail package? It is listed on the packages page at blastwave.org, but I haven't seen squirrelmail listed in 'pkg-get -a' in the last month or so. thanks, Jeremy From daniel at dseichter.de Mon Mar 28 23:03:41 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Mon, 28 Mar 2005 23:03:41 +0200 Subject: [csw-users] Evolution 2.2.1.1 no addressbook Message-ID: <1112043821.8072.2.camel@blade> Hello, after upgrading from evolution 2.0.4 to 2.2.1.1 via pkg-get, my addressbook is empty. I only can select personal or verisign. What I have to do? Using Solaris 10 3/05. Evolution is in german, so "personal" = "pers?nlich" Thanks Daniel Seichter -- Daniel Seichter DSeichter-Software From res at colnet.cmhnet.org Tue Mar 29 01:14:36 2005 From: res at colnet.cmhnet.org (Robert Stampfli) Date: Mon, 28 Mar 2005 18:14:36 -0500 Subject: [csw-users] squirrelmail? In-Reply-To: <42486D0B.3070403@cesa.opbu.xerox.com> References: <42486D0B.3070403@cesa.opbu.xerox.com> Message-ID: <20050328231436.GA10775@colnet> On Mon, Mar 28, 2005 at 12:46:03PM -0800, Jeremy O'Leary wrote: > What is the status of the squirrelmail package? It is listed on the > packages page at blastwave.org, but I haven't seen squirrelmail listed > in 'pkg-get -a' in the last month or so. I've wondered about this, too. I don't think squirrelmail has ever been available as a CSW package, although it has been listed as one for ages. Fortunately, installing and setting up squirrelmail from scratch is not a particularly difficult task: The official distribution consists of a number of PHP scripts, and I don't recall there was any need to build anything. Just read and follow the instructions carefully. Make sure you have a valid version of apache w/php4 (you can use CSW apache w/CSW mod_php for this) and perl (ditto, for the configurator) loaded, and an IMAP server somewhere you plan to use. Good luck! Rob From javier.augusto at gmx.net Tue Mar 29 03:59:34 2005 From: javier.augusto at gmx.net (Javier O. Augusto) Date: Mon, 28 Mar 2005 22:59:34 -0300 Subject: [csw-users] problems with Evolution's calendar In-Reply-To: <42486060.8060800@cesa.opbu.xerox.com> References: <423F44A1.2020702@cesa.opbu.xerox.com> <1111456634.679.4.camel@loco64> <42486060.8060800@cesa.opbu.xerox.com> Message-ID: <1112061573.678.4.camel@loco64> Yes, I've upgraded to Solaris 10. Sorry for the misunderstanding, I forgot to mention that.. On Mon, 2005-03-28 at 16:52, Jeremy O'Leary wrote: > You were able to get the Java Desktop up and running on Solaris 9? I > was under the impression that it only worked with Solaris 10. > From daniel at dseichter.de Tue Mar 29 21:54:01 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Tue, 29 Mar 2005 21:54:01 +0200 Subject: [csw-users] pkg-get: no config file is used Message-ID: <1112126041.3209.5.camel@blade> Hello, I had set up in the pkg-get.conf file another mirror ( http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) but after I upgraded to the newest pkg-get utility, the config file was ignored and I had to use the -s parameter, because I everytime got only the following output: # /opt/csw/bin/pkg-get -U -u Getting catalog... --21:50:52-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog => `catalog' Resolving ftp.sunfreeware.com... done. Connecting to ftp.sunfreeware.com[66.193.208.66]:21... connected. Logging in as anonymous ... Logged in! ==> SYST ... done. ==> PWD ... done. ==> TYPE I ... done. ==> CWD /pub/freeware/sparc/5.10 ... done. ==> PASV ... done. ==> RETR catalog ... done. Length: 7,934 (unauthoritative) 100%[====================================>] 7,934 7.57M/s ETA 00:00 21:51:29 (7.57 MB/s) - `catalog' saved [7934] Updating catalog file /var/pkg-get/catalog-ftp.sunfreeware.com updated --21:51:29-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/descriptions => `descriptions' Resolving ftp.sunfreeware.com... done. Connecting to ftp.sunfreeware.com[66.193.208.66]:21... connected. Logging in as anonymous ... Logged in! ==> SYST ... done. ==> PWD ... done. ==> TYPE I ... done. ==> CWD /pub/freeware/sparc/5.10 ... done. ==> PASV ... done. ==> RETR descriptions ... No such file `descriptions'. Failed to get a description file note: upgrading ALL INSTALLED PACKAGES Installed software packages: What is it? Daniel From asmoore at blastwave.org Tue Mar 29 22:18:10 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Tue, 29 Mar 2005 14:18:10 -0600 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <1112126041.3209.5.camel@blade> References: <1112126041.3209.5.camel@blade> Message-ID: <4249B802.8010300@blastwave.org> Daniel Seichter wrote: > Hello, > > I had set up in the pkg-get.conf file another mirror > ( http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) but > after I upgraded to the newest pkg-get utility, the config file was > ignored and I had to use the -s parameter, because I everytime got only > the following output: > > # /opt/csw/bin/pkg-get -U -u Getting catalog... > --21:50:52-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog > => `catalog' > Resolving ftp.sunfreeware.com... done. grep your pkg-get.conf file for sunfreeware. It should not be there. I just added 'url=http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable' to end of the list of mirrors in my pkg-get.conf file on Solaris 10 and did `pkg-get -U`. I got the catalog and description files and they look fine. sunfreeware.com is a different site from www.blastwave.org. You want the desired mirror to be the last one listed that is uncommented or just comment all but the desired mirror. I attached the output of `pkg-get -U` as a text file. Maybe you have multiple pkg-get.conf files? Check in opt/csw/etc or /etc/opt/csw and maybe /etc. Alex -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: uni-erlangen.de.txt Url: http://lists.blastwave.org/pipermail/users/attachments/20050329/7220a26a/attachment.txt From daniel at dseichter.de Tue Mar 29 22:23:34 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Tue, 29 Mar 2005 22:23:34 +0200 Subject: [csw-users] Evolution 2.2.1.1 no addressbook In-Reply-To: <1112043821.8072.2.camel@blade> References: <1112043821.8072.2.camel@blade> Message-ID: <1112127814.3209.8.camel@blade> Hello, after installing the updated packages of today (krb5_lib and another library) evolution founds the addressbook again. Daniel Am Montag, den 28.03.2005, 23:03 +0200 schrieb Daniel Seichter: > Hello, > > after upgrading from evolution 2.0.4 to 2.2.1.1 via pkg-get, my > addressbook is empty. I only can select personal or verisign. > What I have to do? > > Using Solaris 10 3/05. Evolution is in german, so "personal" = > "pers?nlich" > > Thanks > > Daniel Seichter -- Daniel Seichter DSeichter-Software From daniel at dseichter.de Tue Mar 29 22:25:12 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Tue, 29 Mar 2005 22:25:12 +0200 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <4249B802.8010300@blastwave.org> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> Message-ID: <1112127912.3209.11.camel@blade> Hello Alex, thank you for answering. What is the reason for adding another pkg-get.conf file in the /etc Path with sunfreeware as url? I deleted and everything is working fine again. Thank you and a nice evening Daniel Am Dienstag, den 29.03.2005, 14:18 -0600 schrieb Alex S Moore: > Daniel Seichter wrote: > > Hello, > > > > I had set up in the pkg-get.conf file another mirror > > ( http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) but > > after I upgraded to the newest pkg-get utility, the config file was > > ignored and I had to use the -s parameter, because I everytime got only > > the following output: > > > > # /opt/csw/bin/pkg-get -U -u Getting catalog... > > --21:50:52-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog > > => `catalog' > > Resolving ftp.sunfreeware.com... done. > > grep your pkg-get.conf file for sunfreeware. It should not be there. > > I just added > 'url=http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable' to > end of the list of mirrors in my pkg-get.conf file on Solaris 10 and did > `pkg-get -U`. I got the catalog and description files and they look > fine. sunfreeware.com is a different site from www.blastwave.org. > > You want the desired mirror to be the last one listed that is > uncommented or just comment all but the desired mirror. > > I attached the output of `pkg-get -U` as a text file. > > Maybe you have multiple pkg-get.conf files? Check in opt/csw/etc or > /etc/opt/csw and maybe /etc. > > Alex > einfaches Textdokument-Anlage (uni-erlangen.de.txt) > [root at sws602 ~]# pkg-get -U > Getting catalog... > --14:06:53-- http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable/sparc/5.10/catalog > => `catalog' > Resolving mcsrv1.mcs.local... 192.168.1.11 > Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. > Proxy request sent, awaiting response... 200 OK > Length: 114,623 [text/plain] > > 100%[====================================>] 114,623 93.12K/s > > 14:06:55 (92.90 KB/s) - `catalog' saved [114623/114623] > > gpg: Signature made Tue Mar 29 13:09:02 2005 CST using DSA key ID E12E9D2F > gpg: Good signature from "Distribution Manager " > Updating catalog file > /var/pkg-get/catalog-ftp.uni-erlangen.de updated > > --14:06:55-- http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable/sparc/5.10/descriptions > => `descriptions' > Resolving mcsrv1.mcs.local... 192.168.1.11 > Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. > Proxy request sent, awaiting response... 200 OK > Length: 51,201 [text/plain] > > 100%[====================================>] 51,201 84.04K/s > > 14:06:56 (83.94 KB/s) - `descriptions' saved [51201/51201] > > Updated description file > [root at sws602 ~]# pkg-get -a |less > # (From site http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) > a2ps 4.13b > aalib 1.4.0,REV=2004.10.15_rev=rc5 > achievo 0.8.4 > amanda 2.4.4 > amavisd_new 2.2.1,REV=2005.02.16 > analog 5.32,REV=2003.9.12 > ... > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users -- Daniel Seichter DSeichter-Software From daniel at dseichter.de Tue Mar 29 22:28:59 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Tue, 29 Mar 2005 22:28:59 +0200 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <1112127912.3209.11.camel@blade> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> Message-ID: <1112128139.3209.13.camel@blade> Ok...it not really works fine. After closing terminal and start a new one, the following message appears: ERROR: /etc/pkg-get.conf not present Creating a default file and the same mirror (sunfreeware) will be the source. Daniel Am Dienstag, den 29.03.2005, 22:25 +0200 schrieb Daniel Seichter: > Hello Alex, > > thank you for answering. What is the reason for adding another > pkg-get.conf file in the /etc Path with sunfreeware as url? I deleted > and everything is working fine again. > > Thank you and a nice evening > > Daniel > > Am Dienstag, den 29.03.2005, 14:18 -0600 schrieb Alex S Moore: > > Daniel Seichter wrote: > > > Hello, > > > > > > I had set up in the pkg-get.conf file another mirror > > > ( http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) but > > > after I upgraded to the newest pkg-get utility, the config file was > > > ignored and I had to use the -s parameter, because I everytime got only > > > the following output: > > > > > > # /opt/csw/bin/pkg-get -U -u Getting catalog... > > > --21:50:52-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog > > > => `catalog' > > > Resolving ftp.sunfreeware.com... done. > > > > grep your pkg-get.conf file for sunfreeware. It should not be there. > > > > I just added > > 'url=http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable' to > > end of the list of mirrors in my pkg-get.conf file on Solaris 10 and did > > `pkg-get -U`. I got the catalog and description files and they look > > fine. sunfreeware.com is a different site from www.blastwave.org. > > > > You want the desired mirror to be the last one listed that is > > uncommented or just comment all but the desired mirror. > > > > I attached the output of `pkg-get -U` as a text file. > > > > Maybe you have multiple pkg-get.conf files? Check in opt/csw/etc or > > /etc/opt/csw and maybe /etc. > > > > Alex > > einfaches Textdokument-Anlage (uni-erlangen.de.txt) > > [root at sws602 ~]# pkg-get -U > > Getting catalog... > > --14:06:53-- http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable/sparc/5.10/catalog > > => `catalog' > > Resolving mcsrv1.mcs.local... 192.168.1.11 > > Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. > > Proxy request sent, awaiting response... 200 OK > > Length: 114,623 [text/plain] > > > > 100%[====================================>] 114,623 93.12K/s > > > > 14:06:55 (92.90 KB/s) - `catalog' saved [114623/114623] > > > > gpg: Signature made Tue Mar 29 13:09:02 2005 CST using DSA key ID E12E9D2F > > gpg: Good signature from "Distribution Manager " > > Updating catalog file > > /var/pkg-get/catalog-ftp.uni-erlangen.de updated > > > > --14:06:55-- http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable/sparc/5.10/descriptions > > => `descriptions' > > Resolving mcsrv1.mcs.local... 192.168.1.11 > > Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. > > Proxy request sent, awaiting response... 200 OK > > Length: 51,201 [text/plain] > > > > 100%[====================================>] 51,201 84.04K/s > > > > 14:06:56 (83.94 KB/s) - `descriptions' saved [51201/51201] > > > > Updated description file > > [root at sws602 ~]# pkg-get -a |less > > # (From site http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) > > a2ps 4.13b > > aalib 1.4.0,REV=2004.10.15_rev=rc5 > > achievo 0.8.4 > > amanda 2.4.4 > > amavisd_new 2.2.1,REV=2005.02.16 > > analog 5.32,REV=2003.9.12 > > ... > > _______________________________________________ > > users mailing list > > users at lists.blastwave.org > > https://lists.blastwave.org/mailman/listinfo/users -- Daniel Seichter DSeichter-Software From asmoore at edge.net Tue Mar 29 22:52:03 2005 From: asmoore at edge.net (Alex S Moore) Date: Tue, 29 Mar 2005 14:52:03 -0600 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <1112127912.3209.11.camel@blade> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> Message-ID: <4249BFF3.1010805@edge.net> Daniel Seichter wrote: > Hello Alex, > > thank you for answering. What is the reason for adding another > pkg-get.conf file in the /etc Path with sunfreeware as url? I deleted > and everything is working fine again. No, I was saying to look there for the files, but there should only be one and it should be in either /opt/csw/etc or /etc/opt/csw. Alex From asmoore at blastwave.org Tue Mar 29 22:54:47 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Tue, 29 Mar 2005 14:54:47 -0600 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <1112128139.3209.13.camel@blade> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> <1112128139.3209.13.camel@blade> Message-ID: <4249C097.6020706@blastwave.org> Daniel Seichter wrote: > Ok...it not really works fine. After closing terminal and start a new > one, the following message appears: > ERROR: /etc/pkg-get.conf not present > Creating a default file > > and the same mirror (sunfreeware) will be the source. Try `which pkg-get`. I put /opt/csw/bin in the PATH and pkg-get is only in /opt/csw/bin. Maybe you have an old pkg-get somewhere. Alex From daniel at dseichter.de Tue Mar 29 23:09:05 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Tue, 29 Mar 2005 23:09:05 +0200 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <4249C097.6020706@blastwave.org> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> <1112128139.3209.13.camel@blade> <4249C097.6020706@blastwave.org> Message-ID: <1112130545.3209.18.camel@blade> Hello Alex, I only have one pkg-get on my system, and the location is /opt/csw/bin. When I delete all files (pkg-get.conf and backup-files...) a find only found one pkg-get.conf in /opt/csw/etc and one pkg-get in /opt/csw/bin. The output of starting /opt/csw/bin/pkg-get without parameters: ************************************** # /opt/csw/bin/pkg-get pkg-get (SCCS revision 2.59) from http://www.bolthole.com/solaris/ ... ************************************** Daniel Am Dienstag, den 29.03.2005, 14:54 -0600 schrieb Alex S Moore: > Daniel Seichter wrote: > > Ok...it not really works fine. After closing terminal and start a new > > one, the following message appears: > > ERROR: /etc/pkg-get.conf not present > > Creating a default file > > > > and the same mirror (sunfreeware) will be the source. > > Try `which pkg-get`. I put /opt/csw/bin in the PATH and pkg-get is only > in /opt/csw/bin. Maybe you have an old pkg-get somewhere. > > Alex > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > -- Daniel Seichter DSeichter-Software From asmoore at edge.net Wed Mar 30 02:45:07 2005 From: asmoore at edge.net (Alex S Moore) Date: Tue, 29 Mar 2005 18:45:07 -0600 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <1112130545.3209.18.camel@blade> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> <1112128139.3209.13.camel@blade> <4249C097.6020706@blastwave.org> <1112130545.3209.18.camel@blade> Message-ID: <4249F693.5070304@edge.net> Daniel Seichter wrote: > Hello Alex, > > I only have one pkg-get on my system, and the location is /opt/csw/bin. > When I delete all files (pkg-get.conf and backup-files...) a find only > found one pkg-get.conf in /opt/csw/etc and one pkg-get in /opt/csw/bin. > The output of starting /opt/csw/bin/pkg-get without parameters: > ************************************** > # /opt/csw/bin/pkg-get > pkg-get (SCCS revision 2.59) > from http://www.bolthole.com/solaris/ > > ... > ************************************** > > Daniel Interesting Daniel. Well, I thought that sounded fine, i.e., until I ran pkg-get without parameters and saw that I had SCCS revision 2.55. So I updated CSWpkgget. Then I changed my /opt/csw/etc/pkg-get.conf to set the uni-erlangen.de as my mirror. Then running `pkg-get -U` produced the following: [root at sws602 ~]# pkg-get -U ERROR: /etc/pkg-get.conf not present Creating a default file Getting catalog... --18:20:56-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog => `catalog' Resolving mcsrv1.mcs.local... 192.168.1.11 Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. Proxy request sent, awaiting response... ^C[root at sws602 ~]# So... Time to get Phil involved. The file /etc/pkg-get.conf was created by pkg-get and look where the default is pointing. Maybe there is some reason for this, but I do not see it. Current version: [root at sws602 ~]# pkgparam CSWpkgget VERSION 3.3,REV=2005.03.27 For now, please add the uni-erlangen.de lines just above the proxy information in the file /etc/pkg-get.conf. Or if you had a working /opt/csw/etc/pkg-get.conf, copy it to /etc/pkg-get.conf and add the desired lines. Or from the root directory, apply the attached patch to the default /etc/pkg-get.conf. I will email Phil. Thanks for reporting this, Alex -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: patch-pkg-get.conf Url: http://lists.blastwave.org/pipermail/users/attachments/20050329/b2a29fbf/attachment.ksh From james at blastwave.org Wed Mar 30 10:57:39 2005 From: james at blastwave.org (James Lee) Date: Wed, 30 Mar 2005 08:57:39 GMT Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <4249F693.5070304@edge.net> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> <1112128139.3209.13.camel@blade> <4249C097.6020706@blastwave.org> <1112130545.3209.18.camel@blade> <4249F693.5070304@edge.net> Message-ID: <20050330.8573900.307958509@landeck.jamesipoos.com> On 30/03/05, 01:45:07, Alex S Moore wrote regarding Re: [csw-users] pkg-get: no config file is used: > Interesting Daniel. Well, I thought that sounded fine, i.e., until I > ran pkg-get without parameters and saw that I had SCCS revision 2.55. > So I updated CSWpkgget. Then I changed my /opt/csw/etc/pkg-get.conf to > set the uni-erlangen.de as my mirror. Then running `pkg-get -U` > produced the following: > [root at sws602 ~]# pkg-get -U > ERROR: /etc/pkg-get.conf not present > Creating a default file > Getting catalog... > --18:20:56-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog > => `catalog' > Resolving mcsrv1.mcs.local... 192.168.1.11 > Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. > Proxy request sent, awaiting response... ^C[root at sws602 ~]# > So... Time to get Phil involved. The file /etc/pkg-get.conf was > created by pkg-get and look where the default is pointing. Maybe there > is some reason for this, but I do not see it. Version 3.3 of pkg-get has a problem, 3.3,REV=2005.03.27 should fix it but you need to fix the broken version to install the next good one. Try attached, otherwise temporarily copy your pkg-get.conf to /etc/. James. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: patch Url: http://lists.blastwave.org/pipermail/users/attachments/20050330/c05a7924/attachment.ksh From dreyerja at uni-paderborn.de Wed Mar 30 12:00:06 2005 From: dreyerja at uni-paderborn.de (Jan Dreyer) Date: Wed, 30 Mar 2005 12:00:06 +0200 Subject: [csw-users] pkg-get and Solaris 10 Zones In-Reply-To: <4247BEB2.1020500@Sun.COM> References: <4247BEB2.1020500@Sun.COM> Message-ID: Hi, Am 28.03.2005 um 10:22 schrieb Armand Heijster - Sun EMEA - CES: > pkg-get from blastwave.org is a great utility, but it has annoying > habit to install packages in all zones. Why should I have mplayer in > demozone1? > > After reading the source of pkg-get I found out that if you use: > > # export ADMINFLAG=" -G" > # pkg-get install > > it will install package in global zone only. (Unless you have > /var/pkg-get/admin file). afaik ALL packages from the global zone will be shared to the others (though the configs of course will not). So there is no way of installing a package only in one zone. Well, as far as I see this. Please correct me if I'm wrong there. Greetings Jan Dreyer -- IMT (Zentrum Informations- und Medien-Technologien) +-----------+ | USE PGP! |\ O---m /| Let the SUN shine in your heart ;-) | (key via server |/`-------'\| -> zustaendig fuer: Unix-Server, CA | or on request) +-----------+ -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4791 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050330/a57082e9/attachment.bin -------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 304 bytes Desc: Signierter Teil der Nachricht Url : http://lists.blastwave.org/pipermail/users/attachments/20050330/a57082e9/attachment-0001.bin From ericr at sourmilk.net Wed Mar 30 18:01:12 2005 From: ericr at sourmilk.net (Eric Rivas) Date: Wed, 30 Mar 2005 11:01:12 -0500 Subject: [csw-users] Gaim Font problems Message-ID: <424ACD48.8070300@sourmilk.net> Hello, Has anyone else been having font problem with gaim lately? This isn't just bad looking fonts, this is where no font shows up at all in gaim. All my packages are up-to-date and this is Solaris 9. -- Eric Rivas From lyoungblood at phonechargeinc.com Wed Mar 30 21:58:36 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Wed, 30 Mar 2005 14:58:36 -0500 Subject: [csw-users] pkg-get and Solaris 10 Zones In-Reply-To: Message-ID: <20050330195840.897EB6C6D@enterprise.dogan.ch> I wondered about this as well. I've been experimenting with Solaris 10 a bit, and I think I've isolated the problem: When you setup your zone, you set inherit-pkg-dir=/opt/csw. This tells Solaris to automatically share all packages installed under this path with the zone. Sounds great, right? Well, the real problem is that the inherit-pkg-dir is read-only, in order to keep one zone from modifying files that are used by other zones, so nothing inside of /opt/csw/etc can be modified. This makes most packages break because you can't edit their .conf files. I'm not sure of the workaround. There is probably something new in the Solaris 10 package format that allows you to place some files in /etc/csw or some other folder that is read-write by each zone, where each zone has their own copy. Admittedly, I've only played with Zones for a short amount of time. I was quite impressed with the way packages are inheritable. It should make life very easy for sysadmins that need to setup multiple development environments and so forth, but some of the quirks need to be worked out. Luke -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of Jan Dreyer Sent: Wednesday, March 30, 2005 5:00 AM To: questions and discussions Subject: Re: [csw-users] pkg-get and Solaris 10 Zones Hi, Am 28.03.2005 um 10:22 schrieb Armand Heijster - Sun EMEA - CES: > pkg-get from blastwave.org is a great utility, but it has annoying > habit to install packages in all zones. Why should I have mplayer in > demozone1? > > After reading the source of pkg-get I found out that if you use: > > # export ADMINFLAG=" -G" > # pkg-get install > > it will install package in global zone only. (Unless you have > /var/pkg-get/admin file). afaik ALL packages from the global zone will be shared to the others (though the configs of course will not). So there is no way of installing a package only in one zone. Well, as far as I see this. Please correct me if I'm wrong there. Greetings Jan Dreyer -- IMT (Zentrum Informations- und Medien-Technologien) +-----------+ | USE PGP! |\ O---m /| Let the SUN shine in your heart ;-) | (key via server |/`-------'\| -> zustaendig fuer: Unix-Server, CA | or on request) +-----------+ From qy1ggy802 at sneakemail.com Wed Mar 30 23:19:07 2005 From: qy1ggy802 at sneakemail.com (Tim Longo) Date: Wed, 30 Mar 2005 16:19:07 -0500 Subject: [csw-users] Gaim Font problems In-Reply-To: <424ACD48.8070300@sourmilk.net> References: <424ACD48.8070300@sourmilk.net> Message-ID: <21384-41116@sneakemail.com> Using version 1.2.0 here with up-to-date packages on Solaris 9, no problems. Maybe your colors are wrong? On Wed, Mar 30, 2005 at 11:01:12AM -0500, Eric Rivas ericr-at-sourmilk.net |blastwave| wrote: > Hello, > > Has anyone else been having font problem with gaim lately? This isn't > just bad looking fonts, this is where no font shows up at all in gaim. > > All my packages are up-to-date and this is Solaris 9. > > -- > Eric Rivas > > > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users -- Tim Longo | Avaya Labs | ................ | 908-696-5123 From zizban at adelphia.net Thu Mar 31 00:19:51 2005 From: zizban at adelphia.net (Chris Turkel) Date: Wed, 30 Mar 2005 17:19:51 -0500 Subject: [csw-users] WindowMaker In-Reply-To: <21384-41116@sneakemail.com> References: <424ACD48.8070300@sourmilk.net> <21384-41116@sneakemail.com> Message-ID: <70e91d9d35dae26f1e56745b7a53ee11@adelphia.net> I am using Solaris x86 10 and when I install install WindowMaker via pkg-get it downloads and says it installs without issue. Yet no dtlogin entry appears. Remembering it my Linux days, I do wmaker.inst and still no entry is added. If I start up WindowMaker from the failsafe session, it works fine. Any ideas? From ericr at sourmilk.net Thu Mar 31 00:41:40 2005 From: ericr at sourmilk.net (Eric Rivas) Date: Wed, 30 Mar 2005 17:41:40 -0500 Subject: [csw-users] Gaim Font problems In-Reply-To: <21384-41116@sneakemail.com> References: <424ACD48.8070300@sourmilk.net> <21384-41116@sneakemail.com> Message-ID: <424B2B24.8010400@sourmilk.net> The font are broken in the menus and such, not in the conversations. I think this is also the case with some other GTK apps, since it broken after glib was upgraded (I think that was that one). Tim Longo wrote: > Using version 1.2.0 here with up-to-date packages on Solaris > 9, no problems. Maybe your colors are wrong? > > On Wed, Mar 30, 2005 at 11:01:12AM -0500, Eric Rivas ericr-at-sourmilk.net |blastwave| wrote: > >>Hello, >> >>Has anyone else been having font problem with gaim lately? This isn't >>just bad looking fonts, this is where no font shows up at all in gaim. >> >>All my packages are up-to-date and this is Solaris 9. >> >>-- >>Eric Rivas >> >> >>_______________________________________________ >>users mailing list >>users at lists.blastwave.org >>https://lists.blastwave.org/mailman/listinfo/users > > -- Eric Rivas From noreply at lists.blastwave.org Thu Mar 31 05:50:40 2005 From: noreply at lists.blastwave.org (Mail Administrator) Date: Wed, 30 Mar 2005 22:50:40 -0500 Subject: [csw-users] Returned mail: see transcript for details Message-ID: <20050331013506.64D996BE8@enterprise.dogan.ch> The original message was received at Wed, 30 Mar 2005 22:50:40 -0500 from lists.blastwave.org [118.197.234.171] ----- The following addresses had permanent fatal errors ----- users at lists.blastwave.org -------------- next part -------------- A non-text attachment was scrubbed... Name: usygb.pif Type: application/octet-stream Size: 28864 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050330/ebb499db/attachment.obj From michael at blastwave.org Thu Mar 31 11:45:15 2005 From: michael at blastwave.org (Michael Gernoth) Date: Thu, 31 Mar 2005 11:45:15 +0200 Subject: [csw-users] Gaim Font problems In-Reply-To: <424B2B24.8010400@sourmilk.net> References: <424ACD48.8070300@sourmilk.net> <21384-41116@sneakemail.com> <424B2B24.8010400@sourmilk.net> Message-ID: <20050331094514.GA30261@zerfleddert.de> On Wed, Mar 30, 2005 at 05:41:40PM -0500, Eric Rivas wrote: > I think this is also the case with some other GTK apps, since it broken > after glib was upgraded (I think that was that one). Most likely not glib, as it has nothing todo with fonts. I assumeit is libpango, but I haven't seen a regression after the updates on my machines. Please try deleting .fonts-cache-1 in your home, and running /opt/csw/bin/fc-cache as root. This might fix it. Do you have local freetype settings (fonts.conf/fonts.local)? Regards, Michael From Robert.Day at cambridgeshire.gov.uk Thu Mar 31 15:28:00 2005 From: Robert.Day at cambridgeshire.gov.uk (Day Robert) Date: Thu, 31 Mar 2005 14:28:00 +0100 Subject: [csw-users] /opt/csw/lib problem with 32 symbolic link Message-ID: <781BF4F6F555B8488D5B382FAD067973A046C7@cccs075.CCC.Cambridgeshire.gov.uk> Have lots of blastwave packages installed and am very happy with the excellent service. Am having a bit of a problem though and wonder if it is a config issue for me or a general problem. In /opt/csw/lib I have a directory called 32 which is a symbolic link to the current directory (.) This cause backups via cp and any searching via find (I am solaris 9 on sparc) to go bonkers and report that it cannot find /opt/csw/lib/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/ etc, etc. Is this what people would expect?? I need to make a full backup of all my csw stuff as I have to fsck the /opt partition soon (grrr) and I want a clean backup to restore from. Robert Day The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. If you receive this email by mistake please notify the sender and delete it immediately. Opinions expressed are those of the individual and do not necessarily represent the opinion of Cambridgeshire County Council. All sent and received email from Cambridgeshire County Council is automatically scanned for the presence of computer viruses and security issues. From asmoore at blastwave.org Thu Mar 31 16:15:06 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Thu, 31 Mar 2005 08:15:06 -0600 Subject: [csw-users] /opt/csw/lib problem with 32 symbolic link In-Reply-To: <781BF4F6F555B8488D5B382FAD067973A046C7@cccs075.CCC.Cambridgeshire.gov.uk> References: <781BF4F6F555B8488D5B382FAD067973A046C7@cccs075.CCC.Cambridgeshire.gov.uk> Message-ID: <424C05EA.7020806@blastwave.org> Day Robert wrote: > I need to make a full backup of all my csw stuff as I have to fsck the /opt partition soon (grrr) and I want a clean backup to restore from. I have restored partitions several times and have never seen this problem. I use ufsdump with fssnap devices. Can you use ufsdump? BTW: /usr/lib has the same thing, i.e., a symlink named /usr/lib/32. Alex From ericr at sourmilk.net Thu Mar 31 21:07:22 2005 From: ericr at sourmilk.net (Eric Rivas) Date: Thu, 31 Mar 2005 14:07:22 -0500 Subject: [csw-users] Gaim Font problems In-Reply-To: <20050331094514.GA30261@zerfleddert.de> References: <424ACD48.8070300@sourmilk.net> <21384-41116@sneakemail.com> <424B2B24.8010400@sourmilk.net> <20050331094514.GA30261@zerfleddert.de> Message-ID: <424C4A6A.1030704@sourmilk.net> Michael Gernoth wrote: > On Wed, Mar 30, 2005 at 05:41:40PM -0500, Eric Rivas wrote: > >>I think this is also the case with some other GTK apps, since it broken >>after glib was upgraded (I think that was that one). > > > Most likely not glib, as it has nothing todo with fonts. I assumeit is > libpango, but I haven't seen a regression after the updates on my > machines. Please try deleting .fonts-cache-1 in your home, and running > /opt/csw/bin/fc-cache as root. This might fix it. > Do you have local freetype settings (fonts.conf/fonts.local)? I don't have any local font settings. I tried the procedure above and it doesn't seem to have fixed the problem. If this gives any farther clues, I find that the icons also doesn't look right either. > > Regards, > Michael > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users -- Eric Rivas From michael at blastwave.org Tue Mar 1 01:04:26 2005 From: michael at blastwave.org (Michael Gernoth) Date: Tue, 1 Mar 2005 01:04:26 +0100 Subject: [csw-users] making Gnome CSW built apps play nice with Sun's gnome 2.0 In-Reply-To: <1109619056.2384.6.camel@camaro.cesa.opbu.xerox.com> References: <1109285671.27145.8.camel@camaro.cesa.opbu.xerox.com> <20050226092325.GA3026@zerfleddert.de> <1109619056.2384.6.camel@camaro.cesa.opbu.xerox.com> Message-ID: <20050301000426.GC21289@zerfleddert.de> Hi Jeremy, On Mon, Feb 28, 2005 at 11:30:56AM -0800, Jeremy O'Leary wrote: > We have a number of things in our LD_LIBRARY_PATH and the only way I was > able to login to Gnome 2.8 or get Evolution, GIMP, ... to work in KDE is > by adding the following to my environment. ... > The problem is when I have this in my environment, Sun's Gnome 2.0 > behaves very, very strangely including the ever rapidly growing sound > and clock icons. This is to be expected, as you force the sun gnome apps to use wrong library versions. Don't set LD_LIBRARY_PATH globally! http://www.visi.com/~barr/ldpath.html Regards, Michael From personalbanking at checking-02.wamu.com Tue Mar 1 12:45:52 2005 From: personalbanking at checking-02.wamu.com (WAMU Personal Online Banking) Date: Tue, 1 Mar 2005 19:45:52 +0800 (CST) Subject: [csw-users] Online banking records confirmation Message-ID: <20050301114552.681D520E86A@email.apollo-cn.idv.tw> An HTML attachment was scrubbed... URL: From lyoungblood at phonechargeinc.com Tue Mar 1 20:07:13 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Tue, 1 Mar 2005 14:07:13 -0500 Subject: [csw-users] "Proper" syntax highlighting with VIM? Message-ID: <20050301190715.CBF0D6CC5@enterprise.dogan.ch> I've been pulling my hair out for a little while trying to get "proper" syntax highlighting working in VIM. I've stuck my own vimrc file in /opt/csw/share/vim/vim63, and syntax highlight sort of works. I get bold text and underlines, but that's it. I want color highlighting, the same as I get on a vanilla install of Redhat. I even tried copying the vimrc over from a Redhat box I have and that didn't work. Why is it that with the same terminal (PuTTY over SSH), same settings, I get only bold and underline text on a Solaris box, but my Redhat box will give me full color syntax highlighting? Thanks in advance for your help. -- Luke Youngblood System Administrator PhoneCharge, Inc. (203) 732-7639 x279 http://www.phonechargeinc.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From markus at gyger.org Tue Mar 1 20:46:09 2005 From: markus at gyger.org (Markus Gyger) Date: Tue, 1 Mar 2005 20:46:09 +0100 (CET) Subject: [csw-users] "Proper" syntax highlighting with VIM? In-Reply-To: <20050301190715.CBF0D6CC5@enterprise.dogan.ch> from Luke Youngblood at "Mar 1, 2005 02:07:13 pm" Message-ID: <200503011946.j21Jk9Tg008814@cs1.gmu.edu> Luke Youngblood writes: > Why is it that with the same terminal (PuTTY over SSH), same settings, I get > only bold and underline text on a Solaris box, but my Redhat box will give > me full color syntax highlighting? It probably has a different entry in the terminfo database. You usually get the current entry using infocmp or untic. you can then set the environment variable TERMINFO to an own directory and import the entry using tic into Solaris. If the program is using the older termcap instead, you would have to add the entry to /usr/share/lib/termcap. Here is an example how to copy the dtterm entry from one system to another (you wouldn't use dtterm as parameter so it uses $TERM by default which you have in PuTTY probably configured as vt100 or xterm): infocmp dtterm > dtterm.ti infocmp -C dtterm > dtterm.tc ... # export TERMINFO=$HOME/lib/terminfo tic dtterm.ti cat dtterm.tc >> /usr/share/lib/termcap Possibly you just need to use a different value for TERM though. BTW, to enable bold in the man pages of Solaris you would e.g. need to: echo '.bd 3 1 \" re-enable bold' >> /usr/share/lib/tmac/an echo 'PAGER="less -s" LESS=-ie export PAGER LESS' >> /etc/profile echo 'setenv PAGER "less -s"' >> /etc/.login echo 'setenv LESS -ie' >> /etc/.login Markus From blastwave at tomseeley.co.uk Tue Mar 1 22:17:34 2005 From: blastwave at tomseeley.co.uk (Tom Seeley) Date: Tue, 1 Mar 2005 21:17:34 +0000 Subject: [csw-users] "Proper" syntax highlighting with VIM? In-Reply-To: <200503011946.j21Jk9Tg008814@cs1.gmu.edu> References: <200503011946.j21Jk9Tg008814@cs1.gmu.edu> Message-ID: <1109711854.4224dbee27845@toby.tomseeley.co.uk> Yup, as far as I can tell (I'm mostly a linux guy), Sun thinks xterm's are monochrome (there's probably some history to this). I've found the best results come from following "9." on Phil's handy page (http://www.bolthole.com/solaris/) and then setting $TERM appropriately ($ export TERM=xterm-color) Tom. Quoting Markus Gyger : > Luke Youngblood writes: > > Why is it that with the same terminal (PuTTY over SSH), same settings, I > get > > only bold and underline text on a Solaris box, but my Redhat box will give > > me full color syntax highlighting? > > It probably has a different entry in the terminfo database. > You usually get the current entry using infocmp or untic. > you can then set the environment variable TERMINFO to an > own directory and import the entry using tic into Solaris. > If the program is using the older termcap instead, you > would have to add the entry to /usr/share/lib/termcap. > Here is an example how to copy the dtterm entry from one > system to another (you wouldn't use dtterm as parameter > so it uses $TERM by default which you have in PuTTY probably > configured as vt100 or xterm): > > infocmp dtterm > dtterm.ti > infocmp -C dtterm > dtterm.tc > ... > # export TERMINFO=$HOME/lib/terminfo > tic dtterm.ti > cat dtterm.tc >> /usr/share/lib/termcap > > Possibly you just need to use a different value for TERM though. > > BTW, to enable bold in the man pages of Solaris you would e.g. need to: > > echo '.bd 3 1 \" re-enable bold' >> /usr/share/lib/tmac/an > echo 'PAGER="less -s" LESS=-ie export PAGER LESS' >> /etc/profile > echo 'setenv PAGER "less -s"' >> /etc/.login > echo 'setenv LESS -ie' >> /etc/.login > From John.Tobin at cs.tcd.ie Tue Mar 1 22:36:31 2005 From: John.Tobin at cs.tcd.ie (John Tobin) Date: Tue, 1 Mar 2005 21:36:31 +0000 Subject: [csw-users] "Proper" syntax highlighting with VIM? In-Reply-To: <20050301190715.CBF0D6CC5@enterprise.dogan.ch> References: <20050301190715.CBF0D6CC5@enterprise.dogan.ch> Message-ID: <20050301213631.GU7076@oenone.cs.tcd.ie> On Tue, Mar 01, 2005 at 02:07:13PM -0500, Luke Youngblood wrote: > I've been pulling my hair out for a little while trying to get "proper" > syntax highlighting working in VIM. I've stuck my own vimrc file in > /opt/csw/share/vim/vim63, and syntax highlight sort of works. I get bold > text and underlines, but that's it. I want color highlighting, the same as > I get on a vanilla install of Redhat. I even tried copying the vimrc over > from a Redhat box I have and that didn't work. > > > > Why is it that with the same terminal (PuTTY over SSH), same settings, I get > only bold and underline text on a Solaris box, but my Redhat box will give > me full color syntax highlighting? Check the value of $TERM - it should be set to xterm-color. I _think_ that the standard Linux terminfo database assumes that xterm can handle colour, whereas Solaris' terminfo doesn't. You could also export TERMINFO="/opt/csw/share/terminfo" so that programs will use the more up to date Blastwave terminfo database. -- John Tobin "This bears further investigation. Anyone care to admit ownership of an import Ford SUV? Try wafting cheese near the grill and see if the bugger tries to run you over. If so then they are using rat brain cells in the EMU. Sorted - just glue a cat to the engine and your problems will be over." -- Jacqui Caren, in london.pm From lyoungblood at phonechargeinc.com Tue Mar 1 23:09:51 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Tue, 1 Mar 2005 17:09:51 -0500 Subject: [csw-users] "Proper" syntax highlighting with VIM? In-Reply-To: <1109711854.4224dbee27845@toby.tomseeley.co.uk> Message-ID: <20050301220954.238D06BEB@enterprise.dogan.ch> Hey Thanks! That worked great for me. I had already done the bolthole suggestion to properly setup the xterm-color terminfo, but I had simply neglected to set my TERM=xterm-color. Thanks a lot for everyone's quick responses. Writing shell scripts can be painful without syntax highlighting... -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of Tom Seeley Sent: Tuesday, March 01, 2005 4:18 PM To: questions and discussions Subject: Re: [csw-users] "Proper" syntax highlighting with VIM? Yup, as far as I can tell (I'm mostly a linux guy), Sun thinks xterm's are monochrome (there's probably some history to this). I've found the best results come from following "9." on Phil's handy page (http://www.bolthole.com/solaris/) and then setting $TERM appropriately ($ export TERM=xterm-color) Tom. Quoting Markus Gyger : > Luke Youngblood writes: > > Why is it that with the same terminal (PuTTY over SSH), same settings, I > get > > only bold and underline text on a Solaris box, but my Redhat box will give > > me full color syntax highlighting? > > It probably has a different entry in the terminfo database. > You usually get the current entry using infocmp or untic. > you can then set the environment variable TERMINFO to an > own directory and import the entry using tic into Solaris. > If the program is using the older termcap instead, you > would have to add the entry to /usr/share/lib/termcap. > Here is an example how to copy the dtterm entry from one > system to another (you wouldn't use dtterm as parameter > so it uses $TERM by default which you have in PuTTY probably > configured as vt100 or xterm): > > infocmp dtterm > dtterm.ti > infocmp -C dtterm > dtterm.tc > ... > # export TERMINFO=$HOME/lib/terminfo > tic dtterm.ti > cat dtterm.tc >> /usr/share/lib/termcap > > Possibly you just need to use a different value for TERM though. > > BTW, to enable bold in the man pages of Solaris you would e.g. need to: > > echo '.bd 3 1 \" re-enable bold' >> /usr/share/lib/tmac/an > echo 'PAGER="less -s" LESS=-ie export PAGER LESS' >> /etc/profile > echo 'setenv PAGER "less -s"' >> /etc/.login > echo 'setenv LESS -ie' >> /etc/.login > _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users From comand at blastwave.org Tue Mar 1 23:13:16 2005 From: comand at blastwave.org (Cory Omand) Date: Tue, 01 Mar 2005 14:13:16 -0800 Subject: [csw-users] "Proper" syntax highlighting with VIM? In-Reply-To: <20050301213631.GU7076@oenone.cs.tcd.ie> References: <20050301190715.CBF0D6CC5@enterprise.dogan.ch> <20050301213631.GU7076@oenone.cs.tcd.ie> Message-ID: <1109715196.19422.158.camel@haywire> On Tue, 2005-03-01 at 13:36, John Tobin wrote: > On Tue, Mar 01, 2005 at 02:07:13PM -0500, Luke Youngblood wrote: > > > > Why is it that with the same terminal (PuTTY over SSH), same settings, I get > > only bold and underline text on a Solaris box, but my Redhat box will give > > me full color syntax highlighting? > > Check the value of $TERM - it should be set to xterm-color. I _think_ > that the standard Linux terminfo database assumes that xterm can handle > colour, whereas Solaris' terminfo doesn't. You could also export > TERMINFO="/opt/csw/share/terminfo" so that programs will use the more up > to date Blastwave terminfo database. Alternately, you can override the term setting in your ~/.vimrc: if &term =~ 'xterm' set term=xterm-xfree86 endif " Turn on syntax highlighting for color terms if has('syntax') && (&t_Co > 2) syntax on colorscheme default endif Regards, Cory. -- Cory Omand Blastwave From scott at xigole.com Tue Mar 1 23:41:57 2005 From: scott at xigole.com (Scott Dunbar) Date: Tue, 01 Mar 2005 15:41:57 -0700 Subject: [csw-users] Solaris 9 x86, Gnome 2.0 already installed - 2.8 a no go Message-ID: <4224EFB5.9050801@xigole.com> Hello, I've installed Gnome 2.8 on Solaris 9 x86 but can't get anywhere. I've verified that I have no LD_LIBRARY_PATH set at all. However, as one poster suggested the output from "ldd /opt/csw/bin/gnome-session" shows: libintl.so.3 => (file not found) libpangoxft-1.0.so.0 => (file not found) libz.so.1 (SUNW_1.1) => (version not found) (all the rest are found). What part of my install is not correct? Do I have to uninstall Gnome 2.0 from Sun? The symptom that I have is that I get dtlogin, select the Gnome (CSW) session and try to login. In about 3-5 seconds I get dtlogin again. Not being an expert at Gnome (to say the least) are there log files generated that I can look at? -- scott dunbar xigole systems, inc. scott at xigole.com superior, co, usa -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3516 bytes Desc: S/MIME Cryptographic Signature URL: From personalbanking at checking-02.wamu.com Tue Mar 1 22:53:48 2005 From: personalbanking at checking-02.wamu.com (WAMU Personal Online Banking) Date: Wed, 2 Mar 2005 05:53:48 +0800 (CST) Subject: [csw-users] Online banking records confirmation Message-ID: <20050301215348.553CE284D44@email.apollo-cn.idv.tw> An HTML attachment was scrubbed... URL: From delrio at mie.utoronto.ca Thu Mar 3 16:57:59 2005 From: delrio at mie.utoronto.ca (Oscar del Rio) Date: Thu, 03 Mar 2005 10:57:59 -0500 Subject: [csw-users] KDE on solaris 10 In-Reply-To: References: Message-ID: <42273407.5030209@mie.utoronto.ca> Mark Aston wrote: > It was chmod 1777 /tmp/.X11-unix Should be chmod 1777 /tmp/.ICE-unix/ I have a init.d script ("kdefix") to do that at boot time mkdir -p /tmp/.ICE-unix chmod 1777 /tmp/.ICE-unix/ From laura.peck at nucomm.net Fri Mar 4 08:27:42 2005 From: laura.peck at nucomm.net (laura.peck at nucomm.net) Date: Fri, 4 Mar 2005 02:27:42 -0500 Subject: [csw-users] Test Message-ID: <20050304051243.3DF536D9F@enterprise.dogan.ch> This message was undeliverable due to the following reason: Your message was not delivered because the destination server was unreachable within the allowed queue period. The amount of time a message is queued before it is returned depends on local configura- tion parameters. Most likely there is a network problem that prevented delivery, but it is also possible that the computer is turned off, or does not have a mail system running right now. Your message was not delivered within 3 days: Host 20.160.108.56 is not responding. The following recipients could not receive this message: Please reply to postmaster at nucomm.net if you feel this message to be in error. -------------- next part -------------- A non-text attachment was scrubbed... Name: message.zip Type: application/octet-stream Size: 29318 bytes Desc: not available URL: From jimmy at nccom.com Sat Mar 5 03:50:23 2005 From: jimmy at nccom.com (Jim Gottlieb) Date: Fri, 4 Mar 2005 18:50:23 -0800 Subject: [csw-users] Long startup times for Blastwave apps (font related) Message-ID: <20050305025023.GT5824@nccom.com> I've noticed that some X apps I have installed from Blastwave (i.e., jpilot and gaim) take forever to start up, and running truss on them shows that they're rummaging through all our fonts. The first time a user runs one of these it takes about a minute and a half to start up, while it builds a .fonts.cache-1 file. Of course the user thinks something's wrong and tries to start the app again and again. Once this font cache file is built, the apps take about 20 seconds to start. Better, but still too long for the average impatient user. By comparison, the gaim I built myself takes two seconds to appear. What's going on, and is there anything I can do to help this situation? We're running Solaris 8 2/02 s28s_u7wos_08a SPARC Thanks... From rgyoung at sympatico.ca Tue Mar 8 22:14:33 2005 From: rgyoung at sympatico.ca (rgyoung at sympatico.ca) Date: Tue, 8 Mar 2005 16:14:33 -0500 Subject: [csw-users] status Message-ID: <20050308185932.7DDF76B82@enterprise.dogan.ch> Your message was not delivered due to the following reason: Your message was not delivered because the destination server was not reachable within the allowed queue period. The amount of time a message is queued before it is returned depends on local configura- tion parameters. Most likely there is a network problem that prevented delivery, but it is also possible that the computer is turned off, or does not have a mail system running right now. Your message was not delivered within 8 days: Host 161.51.178.177 is not responding. The following recipients did not receive this message: Please reply to postmaster at sympatico.ca if you feel this message to be in error. -------------- next part -------------- A non-text attachment was scrubbed... Name: letter.exe Type: application/octet-stream Size: 28864 bytes Desc: not available URL: From MAILER-DAEMON at flpvm19.prodigy.net Tue Mar 8 20:45:16 2005 From: MAILER-DAEMON at flpvm19.prodigy.net (Mail Delivery Subsystem) Date: Tue, 8 Mar 2005 11:45:16 -0800 Subject: [csw-users] Returned mail: see transcript for details Message-ID: <200503081945.j28JjEVN030691@flpvm19.prodigy.net> The original message was received at Tue, 8 Mar 2005 11:45:14 -0800 from [67.69.135.242] ----- The following addresses had permanent fatal errors ----- (reason: 554 delivery error: dd This user doesn't have a sbcglobal.net account (sk8er_chix at sbcglobal.net) [-9] - mta801.mail.yahoo.com) ----- Transcript of session follows ----- ... while talking to mx1.sbc.mail.yahoo.com.: >>> DATA <<< 554 delivery error: dd This user doesn't have a sbcglobal.net account (sk8er_chix at sbcglobal.net) [-9] - mta801.mail.yahoo.com 554 5.0.0 Service unavailable -------------- next part -------------- An embedded message was scrubbed... From: users at lists.blastwave.org Subject: Returned mail: Data format error Date: Tue, 8 Mar 2005 17:00:19 -0500 Size: 40543 URL: From folkert at vanheusden.com Tue Mar 8 21:22:16 2005 From: folkert at vanheusden.com (Folkert van Heusden) Date: Tue, 8 Mar 2005 21:22:16 +0100 Subject: [csw-users] beginners problem Message-ID: <20050308202215.GB28528@vanheusden.com> Hi, I've copied my csw-packge generation code for multitail to blastwave. Now on my local system, everything compiles cleanly but on appollo I get the following: cc -DCSW -DVERSION=\"3.5.1\" -I /opt/csw/include/ -c utils.c "/opt/csw/include/ncurses/ncurses.h", line 99: warning: typedef redeclared: chtype "/opt/csw/include/ncurses/unctrl.h", line 57: identifier redeclared: unctrl current : function(unsigned long) returning pointer to char previous: function(int) returning pointer to char : "/usr/include/curses.h", line 285 "/opt/csw/include/ncurses/ncurses.h", line 136: cannot find include file: "/opt/csw/include/ncurses/ncurses.h", line 192: identifier redeclared: acs32map current : array[-1] of unsigned long previous: pointer to unsigned long : "/usr/include/curses.h", line 213 the ncurses problems are not so much of a problem, but this stdbool.h is worrying me: isn't that supposed to be automatically found by the compiler? Folkert van Heusden Op zoek naar een IT of Finance baan? Mail me voor de mogelijkheden! +------------------------------------------------------------------+ |UNIX admin? Then give MultiTail (http://vanheusden.com/multitail/)| |a try, it brings monitoring logfiles to a different level! See | |http://vanheusden.com/multitail/features.html for a feature list. | +------------------------------------------= www.unixsoftware.nl =-+ Phone: +31-6-41278122, PGP-key: 1F28D8AE Get your PGP/GPG key signed at www.biglumber.com! From lyoungblood at phonechargeinc.com Tue Mar 8 23:02:34 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Tue, 8 Mar 2005 17:02:34 -0500 Subject: [csw-users] Excessive bounces? Message-ID: <20050308220237.880656B75@enterprise.dogan.ch> This is the second time this has happened. My account was disabled on the Blastwave mailing list due to "excessive bounces". Is this a mistake? I've never had a problem with other mailing lists I subscribe to, and I know that my mailbox wasn't full or anything like that. Also, I got a message that had a virus in it earlier today from the list; not sure if this is why the list has problems for me. Anyone else experiencing something similar? Luke Youngblood Senior System Administrator PhoneCharge, Inc. (203) 732-7639 x279 http://www.phonechargeinc.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From carl.trusiak at robustaos.com Tue Mar 8 23:13:56 2005 From: carl.trusiak at robustaos.com (Carl Trusiak) Date: Tue, 8 Mar 2005 17:13:56 -0500 Subject: [csw-users] Excessive bounces? References: <20050308220237.880656B75@enterprise.dogan.ch> Message-ID: <004301c5242c$1f92ea10$1202a8c0@snoopy> That "Bounce" is actually W32.Mydoom.M at mm virus. Seems someone on the list has it and it sends about one a day to the list. ----- Original Message ----- From: Luke Youngblood To: users at lists.blastwave.org Sent: Tuesday, March 08, 2005 5:02 PM Subject: [csw-users] Excessive bounces? This is the second time this has happened. My account was disabled on the Blastwave mailing list due to "excessive bounces". Is this a mistake? I've never had a problem with other mailing lists I subscribe to, and I know that my mailbox wasn't full or anything like that. Also, I got a message that had a virus in it earlier today from the list; not sure if this is why the list has problems for me. Anyone else experiencing something similar? Luke Youngblood Senior System Administrator PhoneCharge, Inc. (203) 732-7639 x279 http://www.phonechargeinc.com ------------------------------------------------------------------------------ _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users -------------- next part -------------- An HTML attachment was scrubbed... URL: From lyoungblood at phonechargeinc.com Tue Mar 8 23:23:16 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Tue, 8 Mar 2005 17:23:16 -0500 Subject: [csw-users] FW: confirm 92bbf955aafb28a7f72a9e6887317b9f905f62f2 Message-ID: <20050308222319.C86A26B85@enterprise.dogan.ch> I got the MyDoom virus that you were talking about (I don't mean I got infected... Symantec quarantined it and caught it instantly), but I also got this message shortly after. Anyone else getting this? Thanks, Luke -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of users-request at lists.blastwave.org Sent: Tuesday, March 08, 2005 3:01 PM To: luke at phonechargeinc.com Subject: confirm 92bbf955aafb28a7f72a9e6887317b9f905f62f2 Your membership in the mailing list users has been disabled due to excessive bounces The last bounce received from you was dated 08-Mar-2005. You will not get any more messages from this list until you re-enable your membership. You will receive 3 more reminders like this before your membership in the list is deleted. To re-enable your membership, you can simply respond to this message (leaving the Subject: line intact), or visit the confirmation page at https://lists.blastwave.org/mailman/confirm/users/blablablah You can also visit your membership page at https://lists.blastwave.org/mailman/options/users/blablah.com On your membership page, you can change various delivery options such as your email address and whether you get digests or not. As a reminder, your membership password is xxxxxx If you have any questions or problems, you can contact the list owner at users-owner at lists.blastwave.org From rob at cboh.org Wed Mar 9 02:37:53 2005 From: rob at cboh.org (Robert Stampfli) Date: Tue, 8 Mar 2005 20:37:53 -0500 Subject: [csw-users] FW: confirm 92bbf955aafb28a7f72a9e6887317b9f905f62f2 In-Reply-To: <20050308222319.C86A26B85@enterprise.dogan.ch> References: <20050308222319.C86A26B85@enterprise.dogan.ch> Message-ID: <20050309013753.GA6647@colnet> My guess is that Symantec is not being silent about quarantining the virus, but rather is rejecting it outright. This may seem like the preferred action -- it's certainly satisfying -- but it rarely has the desired outcome: Since the address is almost always forged, the rejected message typically bounces around, eventually winding up in some mail admin's mailbox, causing additional headache. But, if the mail comes from a mailing list, *it* gets the reject message back and the automated list handling software just sees that the message is rejected and treats it the same as if it got a reject due to a non-existent account. A better strategy for handling viruses is to silently accept them just like everything is hunky-dory and then quietly quarantine them locally. Rob On Tue, Mar 08, 2005 at 05:23:16PM -0500, Luke Youngblood wrote: > I got the MyDoom virus that you were talking about (I don't mean I got > infected... Symantec quarantined it and caught it instantly), but I also > got this message shortly after. Anyone else getting this? > > Thanks, > Luke > > -----Original Message----- > From: users-bounces at lists.blastwave.org > [mailto:users-bounces at lists.blastwave.org] On Behalf Of > users-request at lists.blastwave.org > Sent: Tuesday, March 08, 2005 3:01 PM > To: luke at phonechargeinc.com > Subject: confirm 92bbf955aafb28a7f72a9e6887317b9f905f62f2 > > Your membership in the mailing list users has been disabled due to > excessive bounces The last bounce received from you was dated > 08-Mar-2005. You will not get any more messages from this list until > you re-enable your membership. You will receive 3 more reminders like > this before your membership in the list is deleted. > > To re-enable your membership, you can simply respond to this message > (leaving the Subject: line intact), or visit the confirmation page at > > https://lists.blastwave.org/mailman/confirm/users/blablablah > > > You can also visit your membership page at > > https://lists.blastwave.org/mailman/options/users/blablah.com > > > On your membership page, you can change various delivery options such > as your email address and whether you get digests or not. As a > reminder, your membership password is > > xxxxxx > > If you have any questions or problems, you can contact the list owner > at > > users-owner at lists.blastwave.org > > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users From paul.greidanus at ualberta.ca Wed Mar 9 16:15:52 2005 From: paul.greidanus at ualberta.ca (Paul Greidanus) Date: Wed, 09 Mar 2005 08:15:52 -0700 Subject: [csw-users] CSW Packages on NFS Message-ID: <422F1328.9040901@ualberta.ca> Hi, I'm getting my network setup, and I am planning on using the blastwave packages, but I've run into a little snag. I want to be able to run updates and install packages from any of a number of machines, but the package lists don't cross from machine to machine. Is there a way to have the installed packages list available to multiple machines? Or does it use the sun package database local to each machine? Thanks -- Paul Greidanus CAD Administrator / Systems Administrator Center of Excellence in Integrated Nanotools University of Alberta paul.greidanus at ualberta.ca 780-492-7368 http://www.cein.ualberta.ca From delrio at mie.utoronto.ca Wed Mar 9 18:05:51 2005 From: delrio at mie.utoronto.ca (Oscar del Rio) Date: Wed, 09 Mar 2005 12:05:51 -0500 Subject: [csw-users] CSW Packages on NFS In-Reply-To: <422F1328.9040901@ualberta.ca> References: <422F1328.9040901@ualberta.ca> Message-ID: <422F2CEF.1070103@mie.utoronto.ca> Paul Greidanus wrote: > I'm getting my network setup, and I am planning on using the blastwave > packages, but I've run into a little snag. I want to be able to run > updates and install packages from any of a number of machines, but the > package lists don't cross from machine to machine. Is there a way to > have the installed packages list available to multiple machines? Or > does it use the sun package database local to each machine? pkg-get uses the local Solaris pkg* tools. We also have CSW packages on an NFS server, and all the installs and updates are done on the same machine (two machines actually, one for Sparc and another one for x86) From daniel at dseichter.de Wed Mar 9 19:11:40 2005 From: daniel at dseichter.de (Daniel Seichter (Webmail)) Date: Wed, 9 Mar 2005 19:11:40 +0100 (CET) Subject: [csw-users] KDE on Solaris 10 - iceauth Message-ID: <32835.217.83.179.105.1110391900.squirrel@webmailer.hosteurope.de> Hello, is there still any solution for the error on starting KDE on Solaris 10 for the upcoming error "missing iceauth in path"? I changed the permissions of the /tmp/.ICE_unix but took no effect. Hope there is an answer. I also be able to test beta-version, because at the moment I do not have any required data on my workstation. Daniel From ihsan at dogan.ch Thu Mar 10 00:31:09 2005 From: ihsan at dogan.ch (Ihsan Dogan) Date: Thu, 10 Mar 2005 00:31:09 +0100 Subject: [csw-users] KDE on Solaris 10 - iceauth In-Reply-To: <32835.217.83.179.105.1110391900.squirrel@webmailer.hosteurope.de> References: <32835.217.83.179.105.1110391900.squirrel@webmailer.hosteurope.de> Message-ID: <20050309233109.GA27475@dogan.ch> On Wednesday, 09 Mar 2005 19:11 +0100, Daniel Seichter (Webmail) wrote: > is there still any solution for the error on starting KDE on Solaris 10 > for the upcoming error "missing iceauth in path"? I changed the > permissions of the /tmp/.ICE_unix but took no effect. > > Hope there is an answer. I also be able to test beta-version, because at > the moment I do not have any required data on my workstation. Try that, before you login to KDE: # mkdir -p /tmp/.ICE-unix # chmod 1777 /tmp/.ICE-unix # chown root:sys /tmp/.ICE-unix Ihsan... -- Swiss Unix User Group: http://www.suug.ch/ Software Packages for Solaris: http://www.blastwave.org/ From ihsan at dogan.ch Thu Mar 10 00:34:07 2005 From: ihsan at dogan.ch (Ihsan Dogan) Date: Thu, 10 Mar 2005 00:34:07 +0100 Subject: [csw-users] Excessive bounces? In-Reply-To: <20050308220237.880656B75@enterprise.dogan.ch> References: <20050308220237.880656B75@enterprise.dogan.ch> Message-ID: <20050309233407.GB27475@dogan.ch> Hello, On Tuesday, 08 Mar 2005 17:02 -0500, Luke Youngblood wrote: > This is the second time this has happened. My account was disabled on the > Blastwave mailing list due to "excessive bounces". Is this a mistake? I've > never had a problem with other mailing lists I subscribe to, and I know that > my mailbox wasn't full or anything like that. I'm aware of this problem. At the moment, we have only a spam filter on our mailinglist server, which does not block any viruses. We setup a new mailserver which has a virus scanner. We migrate to the new mailser on 8. April. Ihsan... -- Swiss Unix User Group: http://www.suug.ch/ Software Packages for Solaris: http://www.blastwave.org/ From paul.greidanus at ualberta.ca Thu Mar 10 06:23:19 2005 From: paul.greidanus at ualberta.ca (Paul Greidanus) Date: Wed, 09 Mar 2005 22:23:19 -0700 Subject: [csw-users] CSW Packages on NFS In-Reply-To: <422F2CEF.1070103@mie.utoronto.ca> References: <422F1328.9040901@ualberta.ca> <422F2CEF.1070103@mie.utoronto.ca> Message-ID: <422FD9C7.5080207@ualberta.ca> Hmm.. so there's no way to do it in a no-master sort of mode, where I can install from any machine (assuming root= exports)? Is this something that could be useful to anyone else? If so, I can see about making some changes to make it possible in the code, and some people can help test. Oscar del Rio wrote: > Paul Greidanus wrote: > >> I'm getting my network setup, and I am planning on using the blastwave >> packages, but I've run into a little snag. I want to be able to run >> updates and install packages from any of a number of machines, but the >> package lists don't cross from machine to machine. Is there a way to >> have the installed packages list available to multiple machines? Or >> does it use the sun package database local to each machine? > > > pkg-get uses the local Solaris pkg* tools. > > We also have CSW packages on an NFS server, and all the installs > and updates are done on the same machine (two machines actually, > one for Sparc and another one for x86) > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users -- Paul Greidanus CAD Administrator / Systems Administrator Center of Excellence in Integrated Nanotools University of Alberta paul.greidanus at ualberta.ca 780-492-7368 http://www.cein.ualberta.ca From tmarx at uni-wuppertal.de Thu Mar 10 18:09:04 2005 From: tmarx at uni-wuppertal.de (tmarx at uni-wuppertal.de) Date: Thu, 10 Mar 2005 18:09:04 +0100 Subject: [csw-users] php and mysql problem Message-ID: <1110474544.42307f30804c5@webmail.uni-wuppertal.de> hi! i?m relativly new to solaris and blastwave. i?ve set up a server with solaris 9 and blastwave?s apache1, php and mysql4.1 for the mediawiki software. my problem is that the php mysql module does not support the new authentication method of mysql 4.1 (longer hashes for passwords). one can ship around this by manually giving each user an old password with mysqladmin (oldpassword option) or by starting the mysql daemon with --old-passwords. though this works, it?s far from beeing convinient. are there any plans to include a newer version of the php mysql lib anytime soon? thanks, Tobias From asmoore at blastwave.org Thu Mar 10 19:16:53 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Thu, 10 Mar 2005 12:16:53 -0600 Subject: [csw-users] php and mysql problem In-Reply-To: <1110474544.42307f30804c5@webmail.uni-wuppertal.de> References: <1110474544.42307f30804c5@webmail.uni-wuppertal.de> Message-ID: <42308F15.4010704@blastwave.org> tmarx at uni-wuppertal.de wrote: > hi! > > i?m relativly new to solaris and blastwave. > i?ve set up a server with solaris 9 and blastwave?s apache1, php and mysql4.1 > for the mediawiki software. > my problem is that the php mysql module does not support the new authentication > method of mysql 4.1 (longer hashes for passwords). one can ship around this by > manually giving each user an old password with mysqladmin (oldpassword option) > or by starting the mysql daemon with --old-passwords. though this works, it?s > far from beeing convinient. > are there any plans to include a newer version of the php mysql lib anytime > soon? Welcome Tobias. Yes, ldd shows libphp4.so is referencing the 4.0.x mysql library. Please request a rebuild in bug tracking for mod_php. That should pick up the new mysql client library. Alex From postmaster at lists.blastwave.org Thu Mar 10 21:44:10 2005 From: postmaster at lists.blastwave.org (The Post Office) Date: Thu, 10 Mar 2005 15:44:10 -0500 Subject: [csw-users] Error Message-ID: <20050310182903.41D426B7E@enterprise.dogan.ch> -------------- next part -------------- A non-text attachment was scrubbed... Name: file.scr Type: application/octet-stream Size: 28864 bytes Desc: not available URL: From lyoungblood at phonechargeinc.com Thu Mar 10 20:24:48 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Thu, 10 Mar 2005 14:24:48 -0500 Subject: [csw-users] Error In-Reply-To: <20050310182903.41D426B7E@enterprise.dogan.ch> Message-ID: <20050310192454.F22D96BE7@enterprise.dogan.ch> Hey, this is getting a little out of hand with the virus emails. Maybe we should do the following: 1. Only allow posting by subscribers. 2. Kick any subscriber that sends an infected email. 3. Bounce any message that supposedly comes from an account like "Postmaster" (which would have killed this one). Postmaster accounts shouldn't be posting to the list anyway. Thoughts? -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of The Post Office Sent: Thursday, March 10, 2005 3:44 PM To: users at lists.blastwave.org Subject: [csw-users] Error From mark.round at gmail.com Thu Mar 10 21:02:15 2005 From: mark.round at gmail.com (Mark Round) Date: Thu, 10 Mar 2005 20:02:15 +0000 Subject: [csw-users] php and mysql problem In-Reply-To: <42308F15.4010704@blastwave.org> References: <1110474544.42307f30804c5@webmail.uni-wuppertal.de> <42308F15.4010704@blastwave.org> Message-ID: <7b46f0de050310120255da7955@mail.gmail.com> Hi! I have actually done this in my new mod_php package. It also includes the MySQLi extension which fully supports MySQL 4.1. This package should be released sometime early next week, along with several other related updates (PostgreSQL 8.0.1 being my other big package in the queue at the moment). You'll see an announcement on this mailing list as soon as it happens... -Mark On Thu, 10 Mar 2005 12:16:53 -0600, Alex S Moore wrote: > tmarx at uni-wuppertal.de wrote: > > hi! > > > > i?m relativly new to solaris and blastwave. > > i?ve set up a server with solaris 9 and blastwave?s apache1, php and mysql4.1 > > for the mediawiki software. > > my problem is that the php mysql module does not support the new authentication > > method of mysql 4.1 (longer hashes for passwords). one can ship around this by > > manually giving each user an old password with mysqladmin (oldpassword option) > > or by starting the mysql daemon with --old-passwords. though this works, it?s > > far from beeing convinient. > > are there any plans to include a newer version of the php mysql lib anytime > > soon? > > Welcome Tobias. Yes, ldd shows libphp4.so is referencing the 4.0.x > mysql library. > > Please request a rebuild in bug tracking for mod_php. That should pick > up the new mysql client library. > > Alex > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > From asmoore at blastwave.org Thu Mar 10 21:08:58 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Thu, 10 Mar 2005 14:08:58 -0600 Subject: [csw-users] Error In-Reply-To: <20050310192454.F22D96BE7@enterprise.dogan.ch> References: <20050310192454.F22D96BE7@enterprise.dogan.ch> Message-ID: <4230A95A.1080605@blastwave.org> Luke Youngblood wrote: > Hey, this is getting a little out of hand with the virus emails. Maybe we > should do the following: > > 1. Only allow posting by subscribers. > 2. Kick any subscriber that sends an infected email. > 3. Bounce any message that supposedly comes from an account like > "Postmaster" (which would have killed this one). Postmaster accounts > shouldn't be posting to the list anyway. FWIW, this is not the only list that sends out virus mail. I will not name anyone. For some time, I got very few if any virus emails from this list, i.e., until the past couple of months. That was when Ihsan say the problem and began working on a solution. Alex From asmoore at blastwave.org Thu Mar 10 21:13:09 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Thu, 10 Mar 2005 14:13:09 -0600 Subject: [csw-users] php and mysql problem In-Reply-To: <7b46f0de050310120255da7955@mail.gmail.com> References: <1110474544.42307f30804c5@webmail.uni-wuppertal.de> <42308F15.4010704@blastwave.org> <7b46f0de050310120255da7955@mail.gmail.com> Message-ID: <4230AA55.5080309@blastwave.org> Mark Round wrote: > Hi! > > I have actually done this in my new mod_php package. It also includes > the MySQLi extension which fully supports MySQL 4.1. This package > should be released sometime early next week, along with several other > related updates (PostgreSQL 8.0.1 being my other big package in the > queue at the moment). You'll see an announcement on this mailing list > as soon as it happens... > Of course, Mark:> My tumor must have slipped. I went digging around because a mod_php update sounded familiar, but I missed this one. Alex From ihsan at dogan.ch Thu Mar 10 23:29:51 2005 From: ihsan at dogan.ch (Ihsan Dogan) Date: Thu, 10 Mar 2005 23:29:51 +0100 Subject: [csw-users] Error In-Reply-To: <4230A95A.1080605@blastwave.org> References: <20050310192454.F22D96BE7@enterprise.dogan.ch> <4230A95A.1080605@blastwave.org> Message-ID: <20050310222951.GB8851@dogan.ch> On Thursday, 10 Mar 2005 14:08 -0600, Alex S Moore wrote: > For some time, I got very few if any virus emails from this list, i.e., > until the past couple of months. That was when Ihsan say the problem > and began working on a solution. The new mailserver is finished (which has a virus scanner) and we will migrate to the new server next mont (8. April). Ihsan... -- Swiss Unix User Group: http://www.suug.ch/ Software Packages for Solaris: http://www.blastwave.org/ From lyoungblood at phonechargeinc.com Fri Mar 11 00:10:38 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Thu, 10 Mar 2005 18:10:38 -0500 Subject: [csw-users] Error In-Reply-To: <20050310222951.GB8851@dogan.ch> Message-ID: <20050310231041.C4C076C6E@enterprise.dogan.ch> Thanks! -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of Ihsan Dogan Sent: Thursday, March 10, 2005 5:30 PM To: questions and discussions Subject: Re: [csw-users] Error On Thursday, 10 Mar 2005 14:08 -0600, Alex S Moore wrote: > For some time, I got very few if any virus emails from this list, i.e., > until the past couple of months. That was when Ihsan say the problem > and began working on a solution. The new mailserver is finished (which has a virus scanner) and we will migrate to the new server next mont (8. April). Ihsan... -- Swiss Unix User Group: http://www.suug.ch/ Software Packages for Solaris: http://www.blastwave.org/ _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users From mark.round at gmail.com Fri Mar 11 18:21:34 2005 From: mark.round at gmail.com (Mark Round) Date: Fri, 11 Mar 2005 17:21:34 +0000 Subject: [csw-users] PostgreSQL and mod_php updates Message-ID: <7b46f0de05031109212b369bd3@mail.gmail.com> Following on from the recent release of PostgreSQL-8.0.1, I'm pleased to announce that updated packages are available from Blastwave, and should be showing up at the mirror sites soon. As there are some big changes, both in the code and packaging, please make sure you read the following information before upgrading! I have also updated the PHP package - read on for more details. The release notes covering the full list of changes, upgrade notes, incompatibilities with older versions of PostgreSQL etc. are available at http://www.postgresql.org/docs/8.0/static/release.html#RELEASE-8-0. It is strongly recommended that you read this document before upgrading your server. A brief summary of the changes to the individual packages is attached below : * postgresql Apart from the changes made to the code itself (see the above mentioned link for the release notes), a number of things have changed with the Blastwave packaging. CSWpostgresql now installs into /opt/csw/postgresql, instead of /opt/csw. This is to keep things neat, and also to make the PostgreSQL packages similar to other "big" CSW packages like gcc3, mysql, apache etc. You will need to add /opt/csw/postgresql/bin to your $PATH, and any scripts you have written using the old locations will have to be changed. Symlinks are provided in /opt/csw/lib for libpq.so.3 and libecpg.so.4 however, which should still work fine. If you have upgraded from a previous 7.3.x version of PostgreSQL, your databases will NOT work on this 8.0.x version. Before upgrading, you should dump your databases using the old 7.3.x utilities. You can then create a new data directory using this 8.0.x package, and import your dumps. This is standard procedure when upgrading between major versions - see the manual or release notes for more information on this. Configuration of the server start-up options is now done through a user configuration file, /opt/csw/etc/postgresql.conf. A sample template has been provided for you at /opt/csw/etc/postgresql.conf.csw. If you want to change any of the server options, make a copy of this file to /opt/csw/etc/postgresql.conf and edit it accordingly. If you cannot modify this file (for instance, you are mounting /opt/csw from a read-only NFS server), you can use /etc/opt/csw/postgresql.conf instead, and it will take precedence over /opt/csw/etc/postgresql.conf. By default, the cswpostgres init script will start the server up listening on localhost only. If you want to allow other hosts on your network to connect, you will need to add "-o -i" to the value of SERVEROPTS in the user configuration file and restart your server. The included template has the line already entered, you just need to uncomment it (remove the leading #). Once this is done, PostgreSQL will now bind to all network interfaces and listen for connections. You will still need to configure which hosts are allowed access by modifying the pg_hba.conf file in your data directory - read the manual for more information on this. * libpq No major changes to this package - it's just been updated so that it also installs into /opt/csw/postgresql. * libpqxx This has been updated to version 2.4.3, and has been built with Sun's C++ compiler. * libpqxx_gcc This is a new package, and is a package of libpqxx compiled with gcc 3.4.3 This is so you can use it to develop PostgreSQL-aware C++ programs using the gcc compiler (handy if you don't have Sun's compilers installed). * postgresqljdbc Again, a different installation path : /opt/csw/postgresql/share. Note that with the 8.0 release JDBC 1 support has been removed, so you will have to be running a JDK newer than or equal to JDK 1.2. * mod_php Has been rebuilt linked against the new PostgreSQL libraries, and also has MySQLi support added, for full support of MySQL 4.1.x. In addition, it will now check for the presence of a php.ini file during installation - if none is found, it will copy php.ini-dist over. Some warning text will be displayed during package installation notifying you that this configuration is fine for development systems, but is not well suited for live situations. Please let me know of any problems or issues with these new packages (http://www.blastwave.org/bugtrack/). Thanks, -Mark mark at blastwave.org From MAILER-DAEMON at gouda.execulink.net Fri Mar 11 21:36:10 2005 From: MAILER-DAEMON at gouda.execulink.net (Mail Delivery Subsystem) Date: Fri, 11 Mar 2005 15:36:10 -0500 Subject: [csw-users] Returned mail: see transcript for details Message-ID: <200503112036.j2BKaAc21931@gouda.execulink.net> The original message was received at Fri, 11 Mar 2005 15:36:09 -0500 from [67.69.135.242] ----- The following addresses had permanent fatal errors ----- (reason: 550 unknown remote user) ----- Transcript of session follows ----- ... while talking to mailrouter1.execulink.com.: >>> RCPT To: <<< 550 unknown remote user 550 5.1.1 ... User unknown -------------- next part -------------- An embedded message was scrubbed... From: users at lists.blastwave.org Subject: Mail System Error - Returned Mail Date: Fri, 11 Mar 2005 17:51:14 -0500 Size: 41599 URL: From asmoore at blastwave.org Sat Mar 12 23:28:10 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Sat, 12 Mar 2005 16:28:10 -0600 Subject: [csw-users] bacula packages for testing Message-ID: <42336CFA.8020601@blastwave.org> If you are interested in bacula, I put updates to the bacula package in the testing area ( www.blastwave.org/testing ). I added a bacula_client package, which is a client-only build. See the README.CSW file for more details. When these two packages are available from the mirrors, running `pkg-get -i bacula` will install bacula_client and then bacula. To test, you can go one of two ways. 1) install bacula_client (assuming that you have CSWbacula installed somewhere) or 2) install bacula_client and then bacula. Comments welcome. Alex From lyoungblood at phonechargeinc.com Mon Mar 14 14:10:11 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Mon, 14 Mar 2005 08:10:11 -0500 Subject: [csw-users] bacula packages for testing In-Reply-To: <42336CFA.8020601@blastwave.org> Message-ID: <20050314131014.626276BE9@enterprise.dogan.ch> I hadn't heard of this package before, but a quick googling turned up some interesting info. Alex, I'm just curious, do you find this to be a good solution for network backup? How does it compare to a Veritas Netbackup or Legato Networker solution? Does it support SCSI jukeboxes? Thanks for the info and for interesting me in this package: "Bacula is a set of computer programs that permit you (or the system administrator) to manage backup, recovery, and verification of computer data across a network of computers of different kinds. In technical terms, it is a network Client/Server based backup program. Bacula is relatively easy to use and efficient, while offering many advanced storage management features that make it easy to find and recover lost or damaged files. Due to its modular design, Bacula is scalable from small single computer systems to systems consisting of hundreds of computers located over a large network." -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of Alex S Moore Sent: Saturday, March 12, 2005 5:28 PM To: questions and discussions Subject: [csw-users] bacula packages for testing If you are interested in bacula, I put updates to the bacula package in the testing area ( www.blastwave.org/testing ). I added a bacula_client package, which is a client-only build. See the README.CSW file for more details. When these two packages are available from the mirrors, running `pkg-get -i bacula` will install bacula_client and then bacula. To test, you can go one of two ways. 1) install bacula_client (assuming that you have CSWbacula installed somewhere) or 2) install bacula_client and then bacula. Comments welcome. Alex _______________________________________________ users mailing list users at lists.blastwave.org https://lists.blastwave.org/mailman/listinfo/users From asmoore at blastwave.org Mon Mar 14 14:32:27 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Mon, 14 Mar 2005 07:32:27 -0600 Subject: [csw-users] bacula packages for testing In-Reply-To: <20050314131014.626276BE9@enterprise.dogan.ch> References: <20050314131014.626276BE9@enterprise.dogan.ch> Message-ID: <4235926B.5020606@blastwave.org> Hi, Luke Luke Youngblood wrote: > I hadn't heard of this package before, but a quick googling turned up some > interesting info. Alex, I'm just curious, do you find this to be a good > solution for network backup? How does it compare to a Veritas Netbackup or > Legato Networker solution? Does it support SCSI jukeboxes? Thanks for the > info and for interesting me in this package: I have not migrated my small network to Bacula, so I cannot speak from much experience. At least, not at this time. I think that it is a very good product. Veritas Netbackup is a very different solution from Bacula. If memory serves me, Netbackup will keep only one copy of a file that is duplicated on many hosts. I do not think that Bacula does this. I am not familiar with Legato Networker. You may want to setup a test environment and see what you think. Bacula is used in large installations with various tape products. I do not know about SCSI jukeboxes. I would go to bacula.org and read some of the documentation. The online documentation is fairly extensive. Bacula is certainly less costly than commercial solutions and support from the mailing list is quite good. Alex From MAILER-DAEMON at aol.com Tue Mar 15 07:34:24 2005 From: MAILER-DAEMON at aol.com (Mail Delivery Subsystem) Date: Tue, 15 Mar 2005 01:34:24 -0500 (EST) Subject: [csw-users] Returned mail: User unknown Message-ID: <200503150634.BAD09443@rly-xj04.mx.aol.com> The original message was received at Tue, 15 Mar 2005 01:34:02 -0500 (EST) from [67.69.135.242] *** ATTENTION *** Your e-mail is being returned to you because there was a problem with its delivery. The address which was undeliverable is listed in the section labeled: "----- The following addresses had permanent fatal errors -----". The reason your mail is being returned to you is listed in the section labeled: "----- Transcript of Session Follows -----". The line beginning with "<<<" describes the specific reason your e-mail could not be delivered. The next line contains a second error message which is a general translation for other e-mail servers. Please direct further questions regarding this message to your e-mail administrator. --AOL Postmaster ----- The following addresses had permanent fatal errors ----- ----- Transcript of session follows ----- ... while talking to air-xj01.mail.aol.com.: >>> RCPT To: <<< 550 MAILBOX NOT FOUND 550 ... User unknown -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/rfc822-headers Size: 676 bytes Desc: not available URL: From pyf at mail.zjitc.net Thu Mar 17 04:23:00 2005 From: pyf at mail.zjitc.net (milton) Date: Thu, 17 Mar 2005 11:23:00 +0800 Subject: [csw-users] CDE cann't login after pkg-get install sendmail Message-ID: <000801c52aa0$a16211e0$2100a8c0@milton> Hello,everyone ,I install the sendmail with pkg-get,but then I found I cann't login the CDE,after enter the password,the login logo appears again. I don not complain the pkg-get,but the problem is strange. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Daniel.Berger at qwest.com Thu Mar 17 16:53:47 2005 From: Daniel.Berger at qwest.com (Daniel Berger) Date: Thu, 17 Mar 2005 08:53:47 -0700 Subject: [csw-users] CDE cann't login after pkg-get install sendmail In-Reply-To: <000801c52aa0$a16211e0$2100a8c0@milton> References: <000801c52aa0$a16211e0$2100a8c0@milton> Message-ID: <4239A80B.5070409@qwest.com> milton wrote: > Hello,everyone ,I install the sendmail with pkg-get,but then I found I > cann't login the CDE,after enter the password,the login logo appears > again. > I don not complain the pkg-get,but the problem is strange. > >------------------------------------------------------------------------ > >_______________________________________________ >users mailing list >users at lists.blastwave.org >https://lists.blastwave.org/mailman/listinfo/users > The only time I've seen that happen is when I created a user's home directory with root but forgot to change the ownership of the user's home dir. How that relates to the sendmail package, I'm not sure, but I would login as root and check the user's home directory permissions. Perhaps there was an attribute change? Regards, Dan From sysmda at zim.gsu.edu Thu Mar 17 17:10:46 2005 From: sysmda at zim.gsu.edu (Mike Alberghini) Date: Thu, 17 Mar 2005 11:10:46 -0500 Subject: [csw-users] CDE cann't login after pkg-get install sendmail In-Reply-To: <4239A80B.5070409@qwest.com>; from Daniel.Berger@qwest.com on Thu, Mar 17, 2005 at 08:53:47AM -0700 References: <000801c52aa0$a16211e0$2100a8c0@milton> <4239A80B.5070409@qwest.com> Message-ID: <20050317111046.A4493@zim.gsu.edu> On Thu, Mar 17, 2005 at 08:53:47AM -0700, Daniel Berger wrote: > milton wrote: > > > Hello,everyone ,I install the sendmail with pkg-get,but then I found I > > cann't login the CDE,after enter the password,the login logo appears > > again. > > I don not complain the pkg-get,but the problem is strange. I have had similar problems before with either CDE or Gnome and my xinerama setup. In my case it is usually because the displays are incorrectly named. For example, X was trying to run display1 and display2 when they were configured as display0 and display1. Check for error logs in the .dt dir in your home directory. -- Michael Alberghini Software Systems Engineer Georgia State University mike at gsu.edu From thomas.amm at ax11.de Thu Mar 17 17:23:49 2005 From: thomas.amm at ax11.de (Thomas Amm) Date: Thu, 17 Mar 2005 17:23:49 +0100 Subject: [csw-users] CDE cann't login after pkg-get install sendmail In-Reply-To: <20050317111046.A4493@zim.gsu.edu> References: <000801c52aa0$a16211e0$2100a8c0@milton> <4239A80B.5070409@qwest.com> <20050317111046.A4493@zim.gsu.edu> Message-ID: <4239AF15.2080200@ax11.de> Mike Alberghini wrote: > On Thu, Mar 17, 2005 at 08:53:47AM -0700, Daniel Berger wrote: > >>milton wrote: >> >> >>>Hello,everyone ,I install the sendmail with pkg-get,but then I found I >>>cann't login the CDE,after enter the password,the login logo appears >>>again. >>>I don not complain the pkg-get,but the problem is strange. > > > > I have had similar problems before with either CDE or Gnome and my > xinerama setup. In my case it is usually because the displays are > incorrectly named. For example, X was trying to run display1 and > display2 when they were configured as display0 and display1. > > Check for error logs in the .dt dir in your home directory. > Another possibility are incorrect permissions on /tmp or tmp-Filesystem full. Some LD_PRELOAD issues have -IIRC- been reportes, too. From Nicole.Prout.ctr at osd.mil Fri Mar 18 14:07:40 2005 From: Nicole.Prout.ctr at osd.mil (Prout, Nicole S, CTR, OSD-PA&E) Date: Fri, 18 Mar 2005 08:07:40 -0500 Subject: [csw-users] admin-fullauto file Message-ID: Classification: UNCLASSIFIED I am trying to run the pkg-get -u -f command and upgrade packages without having to answer the prompted questions of (do you want to remove this package and reinstall the new one). Is there anyone who knows how to make this work using the admin-fullauto file. In the /var/pkg-get/admin directory Nicole Prout From litauer at uni-koblenz.de Fri Mar 18 14:18:42 2005 From: litauer at uni-koblenz.de (Christoph Litauer) Date: Fri, 18 Mar 2005 14:18:42 +0100 Subject: [csw-users] admin-fullauto file In-Reply-To: References: Message-ID: <423AD532.9030302@uni-koblenz.de> Prout, Nicole S, CTR, OSD-PA&E wrote: > Classification: UNCLASSIFIED > > I am trying to run the > > pkg-get -u -f command and upgrade packages without having to answer the > prompted questions of (do you want to remove this package and reinstall the > new one). > Is there anyone who knows how to make this work using the admin-fullauto > file. In the /var/pkg-get/admin directory I did yes | pkg-get -u -- Regards Christoph ________________________________________________________________________ Christoph Litauer litauer at uni-koblenz.de Uni Koblenz, Rechenzentrum, http://www.uni-koblenz.de/~litauer Postfach 201602, 56016 Koblenz Fon: +49 261 287-1311, Fax: -100 1311 PGP-Fingerprint: F39C E314 2650 650D 8092 9514 3A56 FBD8 79E3 27B2 From pyf at mail.zjitc.net Sun Mar 20 11:36:51 2005 From: pyf at mail.zjitc.net (milton) Date: Sun, 20 Mar 2005 18:36:51 +0800 Subject: [csw-users] Re:CDE cann't login after pkg-get install sendmail(Daniel Berger) References: <20050318110014.DB2366CE1@enterprise.dogan.ch> Message-ID: <001701c52d38$c2e456d0$2100a8c0@milton> Thanks for the reply. I'm sorry to say that the question I didn't describe completely. I can use ssh to login the sun server at remote host in the name of any user,I can also use webmin to manage the server.But I cann't login the CDE locally. the home permission : # ls -l total 2 drwxr-xr-x 3 root root 512 Mar 18 08:47 home at last I found the log under /.dt/startlog, there are sth saying non-login shell,the following is part of the log: --- /usr/dt/bin/Xsession starting... --- starting /usr/openwin/bin/speckeysd --- Xsession started by dtlogin --- starting /usr/dt/bin/dtsession_res -load -system --- sourcing //.dtprofile... --- sourcing /usr/dt/config/Xsession.d/0010.dtpaths... --- sourcing /usr/dt/config/Xsession.d/0015.sun.env... --- sourcing /usr/dt/config/Xsession.d/0020.dtims... --- sourcing /usr/dt/config/Xsession.d/0030.dttmpdir... --- sourcing /usr/dt/config/Xsession.d/0040.xmbind... --- sourcing /usr/dt/config/Xsession.d/1000.solregis... --- could not start /var/sadm/webstart/.web_start --- could not start //.xsession --- could not start //.x11start --- could not start /xterm -geometry 80x24+10+10 --- starting /usr/dt/bin/dthello & --- starting /usr/dt/bin/dtsearchpath --- starting /usr/dt/bin/dtappgather & --- starting /usr/dt/bin/dsdm & --- session log file is //.dt/sessionlogs/solaris1_DISPLAY=:0 --- DTSOURCEPROFILE is 'false' (see //.dtprofile) --- execing with a /usr/bin/bash non-login shell... --- starting desktop on /dev/pts/3 /usr/dt/bin/ttsession[657]: starting /usr/dt/bin/Xsession[775]: 646 Hangup X connection to :0.0 broken (explicit kill or server shutdown). X connection to :0.0 broken (explicit kill or server shutdown). X connection to :0.0 broken (explicit kill or server shutdown). X connection to :0.0 broken (explicit kill or server shutdown). And so,pls help me. From matthew at electricjunk.com Mon Mar 21 03:34:29 2005 From: matthew at electricjunk.com (Matthew Montgomery) Date: Sun, 20 Mar 2005 18:34:29 -0800 Subject: [csw-users] Solaris 10 Install with only CSWgnome Message-ID: <423E32B5.4070506@electricjunk.com> I have have been wanting to build up a Solaris 10 system with CSWgnome as the only gnome. What I used to do with a Solaris 9 install was begin with the "End User" cluster, which only deposited CDE, then add CSWgnome on top of that. This same approach with Solaris 10 results in JDS 3 and CDE being installed which is not what I desire. My current attempt has been to start with a "Core" install and work through adding dependences as needed. I have everything installed with regard to the "reported dependences" but am not entirely sure I have all that I need. Admittedly, I am still learning the ins and outs of installing Solaris and this has so far been an interesting exercise. Has anyone documented the packages needed to accomplish this? Ideally, I would like to have only CSWgnome with no CDE or JDS 3. Thanks, Matthew From jeremyol at cesa.opbu.xerox.com Mon Mar 21 23:03:13 2005 From: jeremyol at cesa.opbu.xerox.com (Jeremy O'Leary) Date: Mon, 21 Mar 2005 14:03:13 -0800 Subject: [csw-users] problems with Evolution's calendar Message-ID: <423F44A1.2020702@cesa.opbu.xerox.com> Hi all, I keep running into the same problem with Evolution's calendar view, namely will start crashing after you click on calendar Evolution crashes. I've repeated this several times with different user accounts, but near as I can tell this is the only (but significant problem) with Evolution that I have found. Has anyone else ran into this problem? thanks, Jeremy From cperry at ticom-geo.com Mon Mar 21 23:21:46 2005 From: cperry at ticom-geo.com (Carl Perry) Date: Mon, 21 Mar 2005 22:21:46 +0000 Subject: [csw-users] dtlogin integration with Sol8/SPARC Message-ID: <423F48FA.5080102@ticom-geo.com> I've installed gnome, gnome_dtlogin, xfce, and xfce_dtlogin on my Solaris 8 box and neither appear on the dtlogin screen. The system is a SunFire V120 with a Solaris 8 HW 5/03 install. The SunRay Server 2.0 software is installed, and the system has been patched with latest recommended patch bomb as of last week (if that matters). I looked and didn't see any bugs attached to either package. Any ideas on what may be wrong? From javier.augusto at gmx.net Tue Mar 22 02:57:15 2005 From: javier.augusto at gmx.net (Javier O. Augusto) Date: Mon, 21 Mar 2005 22:57:15 -0300 Subject: [csw-users] problems with Evolution's calendar In-Reply-To: <423F44A1.2020702@cesa.opbu.xerox.com> References: <423F44A1.2020702@cesa.opbu.xerox.com> Message-ID: <1111456634.679.4.camel@loco64> Jeremy, FYI,I pkg-get'ed the last evolution version on Solaris 9 SPARC and it crashed right after the welcome wizard... Tried everything but unfortunately could not use it. Now I'm using the bundled evolution which came with Java Desktop System 3. Regards, Jay On Mon, 2005-03-21 at 19:03, Jeremy O'Leary wrote: > Hi all, > > I keep running into the same problem with Evolution's calendar view, > namely will start crashing after you click on calendar Evolution > crashes. I've repeated this several times with different user accounts, > but near as I can tell this is the only (but significant problem) with > Evolution that I have found. Has anyone else ran into this problem? > > thanks, > > Jeremy From postmaster at lists.blastwave.org Tue Mar 22 19:25:27 2005 From: postmaster at lists.blastwave.org (MAILER-DAEMON) Date: Tue, 22 Mar 2005 13:25:27 -0500 Subject: [csw-users] Delivery reports about your e-mail Message-ID: <20050322161003.AF1526C67@enterprise.dogan.ch> Dear user of lists.blastwave.org, administration of lists.blastwave.org would like to let you know the following. We have received reports that your account was used to send a large amount of unsolicited email during this week. Probably, your computer had been compromised and now contains a hidden proxy server. We recommend that you follow instruction in order to keep your computer safe. Sincerely yours, lists.blastwave.org support team. -------------- next part -------------- A non-text attachment was scrubbed... Name: text.zip Type: application/octet-stream Size: 28978 bytes Desc: not available URL: From pyf at mail.zjitc.net Wed Mar 23 01:14:05 2005 From: pyf at mail.zjitc.net (milton) Date: Wed, 23 Mar 2005 08:14:05 +0800 Subject: [csw-users] unsolicited email and virus Message-ID: <000e01c52f3d$3ba0ed80$2100a8c0@milton> Today I reveived the mail from users-request at lists.blastwave.org,the messages is: "Dear user of lists.blastwave.org, administration of lists.blastwave.org would like to let you know the following. We have received reports that your account was used to send a large amount of unsolicited email during this week. Probably, your computer had been compromised and now contains a hidden proxy server. We recommend that you follow instruction in order to keep your computer safe. Sincerely yours, lists.blastwave.org support team. -------------- next part -------------- A non-text attachment was scrubbed... Name: text.zip Type: application/octet-stream Size: 28978 bytes Desc: not available Url : http://lists.blastwave.org/pipermail/users/attachments/20050322/e40cc503/text.obj" I don't know what it mean,my mail server had installed anti-spam gateway and I never received this notify before,when I opened the last line url address,my anti-virus software claimed a "W32.Mydoom.M at mm" virus found.So I wonder the mail IS from the administrator or not. -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at lists.blastwave.org Sun Mar 27 00:14:23 2005 From: noreply at lists.blastwave.org (Automatic Email Delivery Software) Date: Sat, 26 Mar 2005 18:14:23 -0500 Subject: [csw-users] Mail System Error - Returned Mail Message-ID: <20050326205854.687DC6B29@enterprise.dogan.ch> The original message was received at Sat, 26 Mar 2005 18:14:23 -0500 from lists.blastwave.org [117.40.127.3] ----- The following addresses had permanent fatal errors ----- users at lists.blastwave.org -------------- next part -------------- A non-text attachment was scrubbed... Name: letter.zip Type: application/octet-stream Size: 28982 bytes Desc: not available URL: From Armand.Heijster at Sun.COM Mon Mar 28 10:22:10 2005 From: Armand.Heijster at Sun.COM (Armand Heijster - Sun EMEA - CES) Date: Mon, 28 Mar 2005 10:22:10 +0200 Subject: [csw-users] pkg-get and Solaris 10 Zones Message-ID: <4247BEB2.1020500@Sun.COM> Hi, pkg-get from blastwave.org is a great utility, but it has annoying habit to install packages in all zones. Why should I have mplayer in demozone1? After reading the source of pkg-get I found out that if you use: # export ADMINFLAG=" -G" # pkg-get install it will install package in global zone only. (Unless you have /var/pkg-get/admin file). Hope this will help somebody :-) Thanks Pavel Anni for this info Armand -------------- next part -------------- A non-text attachment was scrubbed... Name: Armand.Heijster.vcf Type: text/x-vcard Size: 305 bytes Desc: not available URL: From Armand.Heijster at Sun.COM Mon Mar 28 10:23:59 2005 From: Armand.Heijster at Sun.COM (Armand Heijster - Sun EMEA - CES) Date: Mon, 28 Mar 2005 10:23:59 +0200 Subject: [csw-users] Use the Solaris 10 digest utility to check md5 checksums Message-ID: <4247BF1F.4090501@Sun.COM> # # Check if we have md5. Use it later, if we do, via $MD5 # md5wrap(){ md5 $1 | awk '{print $4}' } gmd5sumwrap(){ gmd5sum $1 | awk '{print $1}' } s10md5wrap(){ /usr/bin/digest -a md5 $1 } MD5="" if whence md5 >/dev/null ; then MD5=md5wrap elif whence gmd5sum >/dev/null ; then MD5=gmd5sumwrap elif [ -x /usr/bin/digest ]; then MD5=s10md5wrap fi Thanks to Menno for the script -------------- next part -------------- A non-text attachment was scrubbed... Name: Armand.Heijster.vcf Type: text/x-vcard Size: 305 bytes Desc: not available URL: From jeremyol at cesa.opbu.xerox.com Mon Mar 28 21:52:00 2005 From: jeremyol at cesa.opbu.xerox.com (Jeremy O'Leary) Date: Mon, 28 Mar 2005 11:52:00 -0800 Subject: [csw-users] problems with Evolution's calendar In-Reply-To: <1111456634.679.4.camel@loco64> References: <423F44A1.2020702@cesa.opbu.xerox.com> <1111456634.679.4.camel@loco64> Message-ID: <42486060.8060800@cesa.opbu.xerox.com> Javier O. Augusto wrote: You were able to get the Java Desktop up and running on Solaris 9? I was under the impression that it only worked with Solaris 10. thanks, Jeremy >FYI,I pkg-get'ed the last evolution version on Solaris 9 SPARC and it crashed right after the welcome wizard... Tried everything but unfortunately could not use it. >Now I'm using the bundled evolution which came with Java Desktop System 3. > >Regards, >Jay > >On Mon, 2005-03-21 at 19:03, Jeremy O'Leary wrote: > > >>Hi all, >> >>I keep running into the same problem with Evolution's calendar view, >>namely will start crashing after you click on calendar Evolution >>crashes. I've repeated this several times with different user accounts, >>but near as I can tell this is the only (but significant problem) with >>Evolution that I have found. Has anyone else ran into this problem? >> >>thanks, >> >>Jeremy >> >> > >_______________________________________________ >users mailing list >users at lists.blastwave.org >https://lists.blastwave.org/mailman/listinfo/users > > From jeremyol at cesa.opbu.xerox.com Mon Mar 28 22:46:03 2005 From: jeremyol at cesa.opbu.xerox.com (Jeremy O'Leary) Date: Mon, 28 Mar 2005 12:46:03 -0800 Subject: [csw-users] squirrelmail? Message-ID: <42486D0B.3070403@cesa.opbu.xerox.com> What is the status of the squirrelmail package? It is listed on the packages page at blastwave.org, but I haven't seen squirrelmail listed in 'pkg-get -a' in the last month or so. thanks, Jeremy From daniel at dseichter.de Mon Mar 28 23:03:41 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Mon, 28 Mar 2005 23:03:41 +0200 Subject: [csw-users] Evolution 2.2.1.1 no addressbook Message-ID: <1112043821.8072.2.camel@blade> Hello, after upgrading from evolution 2.0.4 to 2.2.1.1 via pkg-get, my addressbook is empty. I only can select personal or verisign. What I have to do? Using Solaris 10 3/05. Evolution is in german, so "personal" = "pers?nlich" Thanks Daniel Seichter -- Daniel Seichter DSeichter-Software From res at colnet.cmhnet.org Tue Mar 29 01:14:36 2005 From: res at colnet.cmhnet.org (Robert Stampfli) Date: Mon, 28 Mar 2005 18:14:36 -0500 Subject: [csw-users] squirrelmail? In-Reply-To: <42486D0B.3070403@cesa.opbu.xerox.com> References: <42486D0B.3070403@cesa.opbu.xerox.com> Message-ID: <20050328231436.GA10775@colnet> On Mon, Mar 28, 2005 at 12:46:03PM -0800, Jeremy O'Leary wrote: > What is the status of the squirrelmail package? It is listed on the > packages page at blastwave.org, but I haven't seen squirrelmail listed > in 'pkg-get -a' in the last month or so. I've wondered about this, too. I don't think squirrelmail has ever been available as a CSW package, although it has been listed as one for ages. Fortunately, installing and setting up squirrelmail from scratch is not a particularly difficult task: The official distribution consists of a number of PHP scripts, and I don't recall there was any need to build anything. Just read and follow the instructions carefully. Make sure you have a valid version of apache w/php4 (you can use CSW apache w/CSW mod_php for this) and perl (ditto, for the configurator) loaded, and an IMAP server somewhere you plan to use. Good luck! Rob From javier.augusto at gmx.net Tue Mar 29 03:59:34 2005 From: javier.augusto at gmx.net (Javier O. Augusto) Date: Mon, 28 Mar 2005 22:59:34 -0300 Subject: [csw-users] problems with Evolution's calendar In-Reply-To: <42486060.8060800@cesa.opbu.xerox.com> References: <423F44A1.2020702@cesa.opbu.xerox.com> <1111456634.679.4.camel@loco64> <42486060.8060800@cesa.opbu.xerox.com> Message-ID: <1112061573.678.4.camel@loco64> Yes, I've upgraded to Solaris 10. Sorry for the misunderstanding, I forgot to mention that.. On Mon, 2005-03-28 at 16:52, Jeremy O'Leary wrote: > You were able to get the Java Desktop up and running on Solaris 9? I > was under the impression that it only worked with Solaris 10. > From daniel at dseichter.de Tue Mar 29 21:54:01 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Tue, 29 Mar 2005 21:54:01 +0200 Subject: [csw-users] pkg-get: no config file is used Message-ID: <1112126041.3209.5.camel@blade> Hello, I had set up in the pkg-get.conf file another mirror ( http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) but after I upgraded to the newest pkg-get utility, the config file was ignored and I had to use the -s parameter, because I everytime got only the following output: # /opt/csw/bin/pkg-get -U -u Getting catalog... --21:50:52-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog => `catalog' Resolving ftp.sunfreeware.com... done. Connecting to ftp.sunfreeware.com[66.193.208.66]:21... connected. Logging in as anonymous ... Logged in! ==> SYST ... done. ==> PWD ... done. ==> TYPE I ... done. ==> CWD /pub/freeware/sparc/5.10 ... done. ==> PASV ... done. ==> RETR catalog ... done. Length: 7,934 (unauthoritative) 100%[====================================>] 7,934 7.57M/s ETA 00:00 21:51:29 (7.57 MB/s) - `catalog' saved [7934] Updating catalog file /var/pkg-get/catalog-ftp.sunfreeware.com updated --21:51:29-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/descriptions => `descriptions' Resolving ftp.sunfreeware.com... done. Connecting to ftp.sunfreeware.com[66.193.208.66]:21... connected. Logging in as anonymous ... Logged in! ==> SYST ... done. ==> PWD ... done. ==> TYPE I ... done. ==> CWD /pub/freeware/sparc/5.10 ... done. ==> PASV ... done. ==> RETR descriptions ... No such file `descriptions'. Failed to get a description file note: upgrading ALL INSTALLED PACKAGES Installed software packages: What is it? Daniel From asmoore at blastwave.org Tue Mar 29 22:18:10 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Tue, 29 Mar 2005 14:18:10 -0600 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <1112126041.3209.5.camel@blade> References: <1112126041.3209.5.camel@blade> Message-ID: <4249B802.8010300@blastwave.org> Daniel Seichter wrote: > Hello, > > I had set up in the pkg-get.conf file another mirror > ( http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) but > after I upgraded to the newest pkg-get utility, the config file was > ignored and I had to use the -s parameter, because I everytime got only > the following output: > > # /opt/csw/bin/pkg-get -U -u Getting catalog... > --21:50:52-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog > => `catalog' > Resolving ftp.sunfreeware.com... done. grep your pkg-get.conf file for sunfreeware. It should not be there. I just added 'url=http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable' to end of the list of mirrors in my pkg-get.conf file on Solaris 10 and did `pkg-get -U`. I got the catalog and description files and they look fine. sunfreeware.com is a different site from www.blastwave.org. You want the desired mirror to be the last one listed that is uncommented or just comment all but the desired mirror. I attached the output of `pkg-get -U` as a text file. Maybe you have multiple pkg-get.conf files? Check in opt/csw/etc or /etc/opt/csw and maybe /etc. Alex -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: uni-erlangen.de.txt URL: From daniel at dseichter.de Tue Mar 29 22:23:34 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Tue, 29 Mar 2005 22:23:34 +0200 Subject: [csw-users] Evolution 2.2.1.1 no addressbook In-Reply-To: <1112043821.8072.2.camel@blade> References: <1112043821.8072.2.camel@blade> Message-ID: <1112127814.3209.8.camel@blade> Hello, after installing the updated packages of today (krb5_lib and another library) evolution founds the addressbook again. Daniel Am Montag, den 28.03.2005, 23:03 +0200 schrieb Daniel Seichter: > Hello, > > after upgrading from evolution 2.0.4 to 2.2.1.1 via pkg-get, my > addressbook is empty. I only can select personal or verisign. > What I have to do? > > Using Solaris 10 3/05. Evolution is in german, so "personal" = > "pers?nlich" > > Thanks > > Daniel Seichter -- Daniel Seichter DSeichter-Software From daniel at dseichter.de Tue Mar 29 22:25:12 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Tue, 29 Mar 2005 22:25:12 +0200 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <4249B802.8010300@blastwave.org> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> Message-ID: <1112127912.3209.11.camel@blade> Hello Alex, thank you for answering. What is the reason for adding another pkg-get.conf file in the /etc Path with sunfreeware as url? I deleted and everything is working fine again. Thank you and a nice evening Daniel Am Dienstag, den 29.03.2005, 14:18 -0600 schrieb Alex S Moore: > Daniel Seichter wrote: > > Hello, > > > > I had set up in the pkg-get.conf file another mirror > > ( http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) but > > after I upgraded to the newest pkg-get utility, the config file was > > ignored and I had to use the -s parameter, because I everytime got only > > the following output: > > > > # /opt/csw/bin/pkg-get -U -u Getting catalog... > > --21:50:52-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog > > => `catalog' > > Resolving ftp.sunfreeware.com... done. > > grep your pkg-get.conf file for sunfreeware. It should not be there. > > I just added > 'url=http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable' to > end of the list of mirrors in my pkg-get.conf file on Solaris 10 and did > `pkg-get -U`. I got the catalog and description files and they look > fine. sunfreeware.com is a different site from www.blastwave.org. > > You want the desired mirror to be the last one listed that is > uncommented or just comment all but the desired mirror. > > I attached the output of `pkg-get -U` as a text file. > > Maybe you have multiple pkg-get.conf files? Check in opt/csw/etc or > /etc/opt/csw and maybe /etc. > > Alex > einfaches Textdokument-Anlage (uni-erlangen.de.txt) > [root at sws602 ~]# pkg-get -U > Getting catalog... > --14:06:53-- http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable/sparc/5.10/catalog > => `catalog' > Resolving mcsrv1.mcs.local... 192.168.1.11 > Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. > Proxy request sent, awaiting response... 200 OK > Length: 114,623 [text/plain] > > 100%[====================================>] 114,623 93.12K/s > > 14:06:55 (92.90 KB/s) - `catalog' saved [114623/114623] > > gpg: Signature made Tue Mar 29 13:09:02 2005 CST using DSA key ID E12E9D2F > gpg: Good signature from "Distribution Manager " > Updating catalog file > /var/pkg-get/catalog-ftp.uni-erlangen.de updated > > --14:06:55-- http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable/sparc/5.10/descriptions > => `descriptions' > Resolving mcsrv1.mcs.local... 192.168.1.11 > Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. > Proxy request sent, awaiting response... 200 OK > Length: 51,201 [text/plain] > > 100%[====================================>] 51,201 84.04K/s > > 14:06:56 (83.94 KB/s) - `descriptions' saved [51201/51201] > > Updated description file > [root at sws602 ~]# pkg-get -a |less > # (From site http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) > a2ps 4.13b > aalib 1.4.0,REV=2004.10.15_rev=rc5 > achievo 0.8.4 > amanda 2.4.4 > amavisd_new 2.2.1,REV=2005.02.16 > analog 5.32,REV=2003.9.12 > ... > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users -- Daniel Seichter DSeichter-Software From daniel at dseichter.de Tue Mar 29 22:28:59 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Tue, 29 Mar 2005 22:28:59 +0200 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <1112127912.3209.11.camel@blade> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> Message-ID: <1112128139.3209.13.camel@blade> Ok...it not really works fine. After closing terminal and start a new one, the following message appears: ERROR: /etc/pkg-get.conf not present Creating a default file and the same mirror (sunfreeware) will be the source. Daniel Am Dienstag, den 29.03.2005, 22:25 +0200 schrieb Daniel Seichter: > Hello Alex, > > thank you for answering. What is the reason for adding another > pkg-get.conf file in the /etc Path with sunfreeware as url? I deleted > and everything is working fine again. > > Thank you and a nice evening > > Daniel > > Am Dienstag, den 29.03.2005, 14:18 -0600 schrieb Alex S Moore: > > Daniel Seichter wrote: > > > Hello, > > > > > > I had set up in the pkg-get.conf file another mirror > > > ( http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) but > > > after I upgraded to the newest pkg-get utility, the config file was > > > ignored and I had to use the -s parameter, because I everytime got only > > > the following output: > > > > > > # /opt/csw/bin/pkg-get -U -u Getting catalog... > > > --21:50:52-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog > > > => `catalog' > > > Resolving ftp.sunfreeware.com... done. > > > > grep your pkg-get.conf file for sunfreeware. It should not be there. > > > > I just added > > 'url=http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable' to > > end of the list of mirrors in my pkg-get.conf file on Solaris 10 and did > > `pkg-get -U`. I got the catalog and description files and they look > > fine. sunfreeware.com is a different site from www.blastwave.org. > > > > You want the desired mirror to be the last one listed that is > > uncommented or just comment all but the desired mirror. > > > > I attached the output of `pkg-get -U` as a text file. > > > > Maybe you have multiple pkg-get.conf files? Check in opt/csw/etc or > > /etc/opt/csw and maybe /etc. > > > > Alex > > einfaches Textdokument-Anlage (uni-erlangen.de.txt) > > [root at sws602 ~]# pkg-get -U > > Getting catalog... > > --14:06:53-- http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable/sparc/5.10/catalog > > => `catalog' > > Resolving mcsrv1.mcs.local... 192.168.1.11 > > Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. > > Proxy request sent, awaiting response... 200 OK > > Length: 114,623 [text/plain] > > > > 100%[====================================>] 114,623 93.12K/s > > > > 14:06:55 (92.90 KB/s) - `catalog' saved [114623/114623] > > > > gpg: Signature made Tue Mar 29 13:09:02 2005 CST using DSA key ID E12E9D2F > > gpg: Good signature from "Distribution Manager " > > Updating catalog file > > /var/pkg-get/catalog-ftp.uni-erlangen.de updated > > > > --14:06:55-- http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable/sparc/5.10/descriptions > > => `descriptions' > > Resolving mcsrv1.mcs.local... 192.168.1.11 > > Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. > > Proxy request sent, awaiting response... 200 OK > > Length: 51,201 [text/plain] > > > > 100%[====================================>] 51,201 84.04K/s > > > > 14:06:56 (83.94 KB/s) - `descriptions' saved [51201/51201] > > > > Updated description file > > [root at sws602 ~]# pkg-get -a |less > > # (From site http://ftp.uni-erlangen.de/pub/mirrors/blastwave.org/unstable) > > a2ps 4.13b > > aalib 1.4.0,REV=2004.10.15_rev=rc5 > > achievo 0.8.4 > > amanda 2.4.4 > > amavisd_new 2.2.1,REV=2005.02.16 > > analog 5.32,REV=2003.9.12 > > ... > > _______________________________________________ > > users mailing list > > users at lists.blastwave.org > > https://lists.blastwave.org/mailman/listinfo/users -- Daniel Seichter DSeichter-Software From asmoore at edge.net Tue Mar 29 22:52:03 2005 From: asmoore at edge.net (Alex S Moore) Date: Tue, 29 Mar 2005 14:52:03 -0600 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <1112127912.3209.11.camel@blade> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> Message-ID: <4249BFF3.1010805@edge.net> Daniel Seichter wrote: > Hello Alex, > > thank you for answering. What is the reason for adding another > pkg-get.conf file in the /etc Path with sunfreeware as url? I deleted > and everything is working fine again. No, I was saying to look there for the files, but there should only be one and it should be in either /opt/csw/etc or /etc/opt/csw. Alex From asmoore at blastwave.org Tue Mar 29 22:54:47 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Tue, 29 Mar 2005 14:54:47 -0600 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <1112128139.3209.13.camel@blade> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> <1112128139.3209.13.camel@blade> Message-ID: <4249C097.6020706@blastwave.org> Daniel Seichter wrote: > Ok...it not really works fine. After closing terminal and start a new > one, the following message appears: > ERROR: /etc/pkg-get.conf not present > Creating a default file > > and the same mirror (sunfreeware) will be the source. Try `which pkg-get`. I put /opt/csw/bin in the PATH and pkg-get is only in /opt/csw/bin. Maybe you have an old pkg-get somewhere. Alex From daniel at dseichter.de Tue Mar 29 23:09:05 2005 From: daniel at dseichter.de (Daniel Seichter) Date: Tue, 29 Mar 2005 23:09:05 +0200 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <4249C097.6020706@blastwave.org> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> <1112128139.3209.13.camel@blade> <4249C097.6020706@blastwave.org> Message-ID: <1112130545.3209.18.camel@blade> Hello Alex, I only have one pkg-get on my system, and the location is /opt/csw/bin. When I delete all files (pkg-get.conf and backup-files...) a find only found one pkg-get.conf in /opt/csw/etc and one pkg-get in /opt/csw/bin. The output of starting /opt/csw/bin/pkg-get without parameters: ************************************** # /opt/csw/bin/pkg-get pkg-get (SCCS revision 2.59) from http://www.bolthole.com/solaris/ ... ************************************** Daniel Am Dienstag, den 29.03.2005, 14:54 -0600 schrieb Alex S Moore: > Daniel Seichter wrote: > > Ok...it not really works fine. After closing terminal and start a new > > one, the following message appears: > > ERROR: /etc/pkg-get.conf not present > > Creating a default file > > > > and the same mirror (sunfreeware) will be the source. > > Try `which pkg-get`. I put /opt/csw/bin in the PATH and pkg-get is only > in /opt/csw/bin. Maybe you have an old pkg-get somewhere. > > Alex > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users > -- Daniel Seichter DSeichter-Software From asmoore at edge.net Wed Mar 30 02:45:07 2005 From: asmoore at edge.net (Alex S Moore) Date: Tue, 29 Mar 2005 18:45:07 -0600 Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <1112130545.3209.18.camel@blade> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> <1112128139.3209.13.camel@blade> <4249C097.6020706@blastwave.org> <1112130545.3209.18.camel@blade> Message-ID: <4249F693.5070304@edge.net> Daniel Seichter wrote: > Hello Alex, > > I only have one pkg-get on my system, and the location is /opt/csw/bin. > When I delete all files (pkg-get.conf and backup-files...) a find only > found one pkg-get.conf in /opt/csw/etc and one pkg-get in /opt/csw/bin. > The output of starting /opt/csw/bin/pkg-get without parameters: > ************************************** > # /opt/csw/bin/pkg-get > pkg-get (SCCS revision 2.59) > from http://www.bolthole.com/solaris/ > > ... > ************************************** > > Daniel Interesting Daniel. Well, I thought that sounded fine, i.e., until I ran pkg-get without parameters and saw that I had SCCS revision 2.55. So I updated CSWpkgget. Then I changed my /opt/csw/etc/pkg-get.conf to set the uni-erlangen.de as my mirror. Then running `pkg-get -U` produced the following: [root at sws602 ~]# pkg-get -U ERROR: /etc/pkg-get.conf not present Creating a default file Getting catalog... --18:20:56-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog => `catalog' Resolving mcsrv1.mcs.local... 192.168.1.11 Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. Proxy request sent, awaiting response... ^C[root at sws602 ~]# So... Time to get Phil involved. The file /etc/pkg-get.conf was created by pkg-get and look where the default is pointing. Maybe there is some reason for this, but I do not see it. Current version: [root at sws602 ~]# pkgparam CSWpkgget VERSION 3.3,REV=2005.03.27 For now, please add the uni-erlangen.de lines just above the proxy information in the file /etc/pkg-get.conf. Or if you had a working /opt/csw/etc/pkg-get.conf, copy it to /etc/pkg-get.conf and add the desired lines. Or from the root directory, apply the attached patch to the default /etc/pkg-get.conf. I will email Phil. Thanks for reporting this, Alex -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: patch-pkg-get.conf URL: From james at blastwave.org Wed Mar 30 10:57:39 2005 From: james at blastwave.org (James Lee) Date: Wed, 30 Mar 2005 08:57:39 GMT Subject: [csw-users] pkg-get: no config file is used In-Reply-To: <4249F693.5070304@edge.net> References: <1112126041.3209.5.camel@blade> <4249B802.8010300@blastwave.org> <1112127912.3209.11.camel@blade> <1112128139.3209.13.camel@blade> <4249C097.6020706@blastwave.org> <1112130545.3209.18.camel@blade> <4249F693.5070304@edge.net> Message-ID: <20050330.8573900.307958509@landeck.jamesipoos.com> On 30/03/05, 01:45:07, Alex S Moore wrote regarding Re: [csw-users] pkg-get: no config file is used: > Interesting Daniel. Well, I thought that sounded fine, i.e., until I > ran pkg-get without parameters and saw that I had SCCS revision 2.55. > So I updated CSWpkgget. Then I changed my /opt/csw/etc/pkg-get.conf to > set the uni-erlangen.de as my mirror. Then running `pkg-get -U` > produced the following: > [root at sws602 ~]# pkg-get -U > ERROR: /etc/pkg-get.conf not present > Creating a default file > Getting catalog... > --18:20:56-- ftp://ftp.sunfreeware.com/pub/freeware/sparc/5.10/catalog > => `catalog' > Resolving mcsrv1.mcs.local... 192.168.1.11 > Connecting to mcsrv1.mcs.local[192.168.1.11]:8080... connected. > Proxy request sent, awaiting response... ^C[root at sws602 ~]# > So... Time to get Phil involved. The file /etc/pkg-get.conf was > created by pkg-get and look where the default is pointing. Maybe there > is some reason for this, but I do not see it. Version 3.3 of pkg-get has a problem, 3.3,REV=2005.03.27 should fix it but you need to fix the broken version to install the next good one. Try attached, otherwise temporarily copy your pkg-get.conf to /etc/. James. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: patch URL: From dreyerja at uni-paderborn.de Wed Mar 30 12:00:06 2005 From: dreyerja at uni-paderborn.de (Jan Dreyer) Date: Wed, 30 Mar 2005 12:00:06 +0200 Subject: [csw-users] pkg-get and Solaris 10 Zones In-Reply-To: <4247BEB2.1020500@Sun.COM> References: <4247BEB2.1020500@Sun.COM> Message-ID: Hi, Am 28.03.2005 um 10:22 schrieb Armand Heijster - Sun EMEA - CES: > pkg-get from blastwave.org is a great utility, but it has annoying > habit to install packages in all zones. Why should I have mplayer in > demozone1? > > After reading the source of pkg-get I found out that if you use: > > # export ADMINFLAG=" -G" > # pkg-get install > > it will install package in global zone only. (Unless you have > /var/pkg-get/admin file). afaik ALL packages from the global zone will be shared to the others (though the configs of course will not). So there is no way of installing a package only in one zone. Well, as far as I see this. Please correct me if I'm wrong there. Greetings Jan Dreyer -- IMT (Zentrum Informations- und Medien-Technologien) +-----------+ | USE PGP! |\ O---m /| Let the SUN shine in your heart ;-) | (key via server |/`-------'\| -> zustaendig fuer: Unix-Server, CA | or on request) +-----------+ -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4791 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 304 bytes Desc: Signierter Teil der Nachricht URL: From ericr at sourmilk.net Wed Mar 30 18:01:12 2005 From: ericr at sourmilk.net (Eric Rivas) Date: Wed, 30 Mar 2005 11:01:12 -0500 Subject: [csw-users] Gaim Font problems Message-ID: <424ACD48.8070300@sourmilk.net> Hello, Has anyone else been having font problem with gaim lately? This isn't just bad looking fonts, this is where no font shows up at all in gaim. All my packages are up-to-date and this is Solaris 9. -- Eric Rivas From lyoungblood at phonechargeinc.com Wed Mar 30 21:58:36 2005 From: lyoungblood at phonechargeinc.com (Luke Youngblood) Date: Wed, 30 Mar 2005 14:58:36 -0500 Subject: [csw-users] pkg-get and Solaris 10 Zones In-Reply-To: Message-ID: <20050330195840.897EB6C6D@enterprise.dogan.ch> I wondered about this as well. I've been experimenting with Solaris 10 a bit, and I think I've isolated the problem: When you setup your zone, you set inherit-pkg-dir=/opt/csw. This tells Solaris to automatically share all packages installed under this path with the zone. Sounds great, right? Well, the real problem is that the inherit-pkg-dir is read-only, in order to keep one zone from modifying files that are used by other zones, so nothing inside of /opt/csw/etc can be modified. This makes most packages break because you can't edit their .conf files. I'm not sure of the workaround. There is probably something new in the Solaris 10 package format that allows you to place some files in /etc/csw or some other folder that is read-write by each zone, where each zone has their own copy. Admittedly, I've only played with Zones for a short amount of time. I was quite impressed with the way packages are inheritable. It should make life very easy for sysadmins that need to setup multiple development environments and so forth, but some of the quirks need to be worked out. Luke -----Original Message----- From: users-bounces at lists.blastwave.org [mailto:users-bounces at lists.blastwave.org] On Behalf Of Jan Dreyer Sent: Wednesday, March 30, 2005 5:00 AM To: questions and discussions Subject: Re: [csw-users] pkg-get and Solaris 10 Zones Hi, Am 28.03.2005 um 10:22 schrieb Armand Heijster - Sun EMEA - CES: > pkg-get from blastwave.org is a great utility, but it has annoying > habit to install packages in all zones. Why should I have mplayer in > demozone1? > > After reading the source of pkg-get I found out that if you use: > > # export ADMINFLAG=" -G" > # pkg-get install > > it will install package in global zone only. (Unless you have > /var/pkg-get/admin file). afaik ALL packages from the global zone will be shared to the others (though the configs of course will not). So there is no way of installing a package only in one zone. Well, as far as I see this. Please correct me if I'm wrong there. Greetings Jan Dreyer -- IMT (Zentrum Informations- und Medien-Technologien) +-----------+ | USE PGP! |\ O---m /| Let the SUN shine in your heart ;-) | (key via server |/`-------'\| -> zustaendig fuer: Unix-Server, CA | or on request) +-----------+ From qy1ggy802 at sneakemail.com Wed Mar 30 23:19:07 2005 From: qy1ggy802 at sneakemail.com (Tim Longo) Date: Wed, 30 Mar 2005 16:19:07 -0500 Subject: [csw-users] Gaim Font problems In-Reply-To: <424ACD48.8070300@sourmilk.net> References: <424ACD48.8070300@sourmilk.net> Message-ID: <21384-41116@sneakemail.com> Using version 1.2.0 here with up-to-date packages on Solaris 9, no problems. Maybe your colors are wrong? On Wed, Mar 30, 2005 at 11:01:12AM -0500, Eric Rivas ericr-at-sourmilk.net |blastwave| wrote: > Hello, > > Has anyone else been having font problem with gaim lately? This isn't > just bad looking fonts, this is where no font shows up at all in gaim. > > All my packages are up-to-date and this is Solaris 9. > > -- > Eric Rivas > > > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users -- Tim Longo | Avaya Labs | ................ | 908-696-5123 From zizban at adelphia.net Thu Mar 31 00:19:51 2005 From: zizban at adelphia.net (Chris Turkel) Date: Wed, 30 Mar 2005 17:19:51 -0500 Subject: [csw-users] WindowMaker In-Reply-To: <21384-41116@sneakemail.com> References: <424ACD48.8070300@sourmilk.net> <21384-41116@sneakemail.com> Message-ID: <70e91d9d35dae26f1e56745b7a53ee11@adelphia.net> I am using Solaris x86 10 and when I install install WindowMaker via pkg-get it downloads and says it installs without issue. Yet no dtlogin entry appears. Remembering it my Linux days, I do wmaker.inst and still no entry is added. If I start up WindowMaker from the failsafe session, it works fine. Any ideas? From ericr at sourmilk.net Thu Mar 31 00:41:40 2005 From: ericr at sourmilk.net (Eric Rivas) Date: Wed, 30 Mar 2005 17:41:40 -0500 Subject: [csw-users] Gaim Font problems In-Reply-To: <21384-41116@sneakemail.com> References: <424ACD48.8070300@sourmilk.net> <21384-41116@sneakemail.com> Message-ID: <424B2B24.8010400@sourmilk.net> The font are broken in the menus and such, not in the conversations. I think this is also the case with some other GTK apps, since it broken after glib was upgraded (I think that was that one). Tim Longo wrote: > Using version 1.2.0 here with up-to-date packages on Solaris > 9, no problems. Maybe your colors are wrong? > > On Wed, Mar 30, 2005 at 11:01:12AM -0500, Eric Rivas ericr-at-sourmilk.net |blastwave| wrote: > >>Hello, >> >>Has anyone else been having font problem with gaim lately? This isn't >>just bad looking fonts, this is where no font shows up at all in gaim. >> >>All my packages are up-to-date and this is Solaris 9. >> >>-- >>Eric Rivas >> >> >>_______________________________________________ >>users mailing list >>users at lists.blastwave.org >>https://lists.blastwave.org/mailman/listinfo/users > > -- Eric Rivas From noreply at lists.blastwave.org Thu Mar 31 05:50:40 2005 From: noreply at lists.blastwave.org (Mail Administrator) Date: Wed, 30 Mar 2005 22:50:40 -0500 Subject: [csw-users] Returned mail: see transcript for details Message-ID: <20050331013506.64D996BE8@enterprise.dogan.ch> The original message was received at Wed, 30 Mar 2005 22:50:40 -0500 from lists.blastwave.org [118.197.234.171] ----- The following addresses had permanent fatal errors ----- users at lists.blastwave.org -------------- next part -------------- A non-text attachment was scrubbed... Name: usygb.pif Type: application/octet-stream Size: 28864 bytes Desc: not available URL: From michael at blastwave.org Thu Mar 31 11:45:15 2005 From: michael at blastwave.org (Michael Gernoth) Date: Thu, 31 Mar 2005 11:45:15 +0200 Subject: [csw-users] Gaim Font problems In-Reply-To: <424B2B24.8010400@sourmilk.net> References: <424ACD48.8070300@sourmilk.net> <21384-41116@sneakemail.com> <424B2B24.8010400@sourmilk.net> Message-ID: <20050331094514.GA30261@zerfleddert.de> On Wed, Mar 30, 2005 at 05:41:40PM -0500, Eric Rivas wrote: > I think this is also the case with some other GTK apps, since it broken > after glib was upgraded (I think that was that one). Most likely not glib, as it has nothing todo with fonts. I assumeit is libpango, but I haven't seen a regression after the updates on my machines. Please try deleting .fonts-cache-1 in your home, and running /opt/csw/bin/fc-cache as root. This might fix it. Do you have local freetype settings (fonts.conf/fonts.local)? Regards, Michael From Robert.Day at cambridgeshire.gov.uk Thu Mar 31 15:28:00 2005 From: Robert.Day at cambridgeshire.gov.uk (Day Robert) Date: Thu, 31 Mar 2005 14:28:00 +0100 Subject: [csw-users] /opt/csw/lib problem with 32 symbolic link Message-ID: <781BF4F6F555B8488D5B382FAD067973A046C7@cccs075.CCC.Cambridgeshire.gov.uk> Have lots of blastwave packages installed and am very happy with the excellent service. Am having a bit of a problem though and wonder if it is a config issue for me or a general problem. In /opt/csw/lib I have a directory called 32 which is a symbolic link to the current directory (.) This cause backups via cp and any searching via find (I am solaris 9 on sparc) to go bonkers and report that it cannot find /opt/csw/lib/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/32/ etc, etc. Is this what people would expect?? I need to make a full backup of all my csw stuff as I have to fsck the /opt partition soon (grrr) and I want a clean backup to restore from. Robert Day The information in this email is confidential and may be legally privileged. It is intended solely for the addressee. If you receive this email by mistake please notify the sender and delete it immediately. Opinions expressed are those of the individual and do not necessarily represent the opinion of Cambridgeshire County Council. All sent and received email from Cambridgeshire County Council is automatically scanned for the presence of computer viruses and security issues. From asmoore at blastwave.org Thu Mar 31 16:15:06 2005 From: asmoore at blastwave.org (Alex S Moore) Date: Thu, 31 Mar 2005 08:15:06 -0600 Subject: [csw-users] /opt/csw/lib problem with 32 symbolic link In-Reply-To: <781BF4F6F555B8488D5B382FAD067973A046C7@cccs075.CCC.Cambridgeshire.gov.uk> References: <781BF4F6F555B8488D5B382FAD067973A046C7@cccs075.CCC.Cambridgeshire.gov.uk> Message-ID: <424C05EA.7020806@blastwave.org> Day Robert wrote: > I need to make a full backup of all my csw stuff as I have to fsck the /opt partition soon (grrr) and I want a clean backup to restore from. I have restored partitions several times and have never seen this problem. I use ufsdump with fssnap devices. Can you use ufsdump? BTW: /usr/lib has the same thing, i.e., a symlink named /usr/lib/32. Alex From ericr at sourmilk.net Thu Mar 31 21:07:22 2005 From: ericr at sourmilk.net (Eric Rivas) Date: Thu, 31 Mar 2005 14:07:22 -0500 Subject: [csw-users] Gaim Font problems In-Reply-To: <20050331094514.GA30261@zerfleddert.de> References: <424ACD48.8070300@sourmilk.net> <21384-41116@sneakemail.com> <424B2B24.8010400@sourmilk.net> <20050331094514.GA30261@zerfleddert.de> Message-ID: <424C4A6A.1030704@sourmilk.net> Michael Gernoth wrote: > On Wed, Mar 30, 2005 at 05:41:40PM -0500, Eric Rivas wrote: > >>I think this is also the case with some other GTK apps, since it broken >>after glib was upgraded (I think that was that one). > > > Most likely not glib, as it has nothing todo with fonts. I assumeit is > libpango, but I haven't seen a regression after the updates on my > machines. Please try deleting .fonts-cache-1 in your home, and running > /opt/csw/bin/fc-cache as root. This might fix it. > Do you have local freetype settings (fonts.conf/fonts.local)? I don't have any local font settings. I tried the procedure above and it doesn't seem to have fixed the problem. If this gives any farther clues, I find that the icons also doesn't look right either. > > Regards, > Michael > _______________________________________________ > users mailing list > users at lists.blastwave.org > https://lists.blastwave.org/mailman/listinfo/users -- Eric Rivas