From lists Sun Aug 1 07:13:10 2004 From: lists (michael) Date: Sun, 01 Aug 2004 07:13:10 -0400 Subject: [nycbug-talk] X and screen. was: BSD on a desktop In-Reply-To: <20180B1D-E31C-11D8-857E-000393BC62B8@nomadlogic.org> References: <20040731164554.GA27567@scottro11.homeunix.net> <20040731140123.150768b4@bogomips.optonline.net> <20180B1D-E31C-11D8-857E-000393BC62B8@nomadlogic.org> Message-ID: <410CD046.1080003@genoverly.net> on 20040731 2:04 PM pete wright had written... > > hey marc, > here is a dumb question...can you run say Xterm in a screen session, > detach the session (along with xterm) then re-attach the session > somewhere else and have the xterm come back. i've tried it out, but > have a feeling that it's not possible or i'm missing a swtich somewhere. > > -p > Pete, I'm also a big fan of screen. The 2 main situations I use it are 1.) ssh into a remote server- start a screen session - do stuff, maybe kick off a long compile, dettach. I can then go to work- ssh into that server and reattach. The process has been running and I can pick up where I left off. 2.) I was uncomfortable with running x on a workstation then walking away. Anyone could kill the session and drop down to a prompt... with my credentials. So, I actually use it everytime I run startx. May would say a common solution would be to use a display manager like XDM, KDM, GDM but.. Common solutions are not always the right ones or the most secure ones. I may be wrong, but, as far as I know: -- Display mgrs require you to run X.. there are many times I just don't want to -- Display mgrs require you to launch X as root. -- Display mgrs control your machine.. it is very difficult to close X and drop to a prompt... say, if you were going to do a large compile and wanted to free up some overhead I wanted to secure my workstation, but, I didn't want to loose access to my console altogether. Option "DontVTSwitch" "true" Option "DontZap" "true" ... would have required a reboot in case something went wrong with X. Disabling "magic sysreq key" and ctrl+alt+del could also lock me out of my own box... except for the Power button and the wall plug. My answer was to use a very familiar utility called 'screen'. 1) I logon as a user (not root) 2) type 'screen', and I'm given a new prompt 3) at the new prompt I type 'startx'. Which ever WM/DE is set in the .xinitrc loads (KDE, GNOME, fluxbox...etc). 4) takes me back to the 'screen' prompt. 5) " d" to detach ('man screen' for more) and I'm back at the original prompt. 6) from here I can 'logout'... the logon prompt appears. 7) takes me back to the WM/DE I only have to do this once for each re-boot, which is not often. Now I can use any X screensaver/lock I choose. I can walk away from my desk knowing X is locked and the box is secured. Without my password, noone can use my credentials. If they need the box, they can log in themselves. I can also recover from any X mishaps more gracefully than a re-boot. Michael From lists Sun Aug 1 07:26:38 2004 From: lists (michael) Date: Sun, 01 Aug 2004 07:26:38 -0400 Subject: [nycbug-talk] BSD on a desktop In-Reply-To: References: Message-ID: <410CD36E.4040900@genoverly.net> on 20040731 11:53 AM pete wright had written... > ...pete strap's on his asbestos fireman suit.... > For me it's really the tabbed shells that won me over with using GNOME > or KDE. You can use tab's in gnome-term, but it's kinda crappy compared > to konsole. if you have not tried it out, the default shortcut is > ctl+shift+t to make a new tab, and shift+left/right arrow key moves from > tab to tab. > To empathize... I migrated from KDE to fluxbox a while back but really missed konsole tabs. I know I could use 'screen' for this purpose but I was used to fact I could see all the tabs and know which one was logged on to the database and which one was ssh'd here or there. I also liked to to move around. I spent a few weeks trying out different terms (x,a,e, etc) and settled on aterm. No outstanding reason, it just suits me. It seems quick and light, is highly customizable, and generally not distracting. I want to concentrate on the work, not the term (or the root window for that matter). I customized my .Xdefaults for bg, fg, cursor color, etc. I could put all the custom stuff there, I guess I really haven't completely settled on dimensions and fonts and... whatever to be the default for all terms. I made a few adjustments to my .xinitrc so 3 terms would launch right away. aterm -sb -sr -g 115x30+50+200 -fn 9x15 -fb 9x15 --saveLines 15000 & aterm -sb -sr -g 115x30+50+200 -fn 9x15 -fb 9x15 --saveLines 15000 & aterm -sb -sr -g 115x30+50+200 -fn 9x15 -fb 9x15 --saveLines 15000 & And then made some changes in fluxbox... So they would be grouped, I added "aterm aterm" to my group file. This is also handy because anytime I open a new aterm it will be added to my existing group. To me, this is a *huge* benefit of fluxbox. After that I added some entries to the keys file to mimic konsole tab movement: Shift Right :NextTab Shift Left :PrevTab So it may not be the Perfect Term, but it works for me. Michael From pete Sun Aug 1 11:58:38 2004 From: pete (Pete Wright) Date: Sun, 01 Aug 2004 10:58:38 -0500 Subject: [nycbug-talk] ports [was re: BSD on a desktop] In-Reply-To: <20040731221427.GA8138@yinaska.pair.com> References: <20040731221427.GA8138@yinaska.pair.com> Message-ID: <410D132E.2030409@nomadlogic.org> Okan Demirmen wrote: > >anyway, i'm not here to start a war or anything, but i just want to >point that out on openbsd. now, it's been a while for me on netbsd, so >i'm sure someone will clarify for us what netbsd does...i'm sure it's >close or similar to openbsd's build infrastructure. > > > yea that is YANTAO (yet another nice thing about Obsd ;). You can achieve similar results, if you are a member of the group wheel, by allowing wheel to write to the ports tree. i don't have the ports tree installed on any of my OpenBSD machines right now, how do they handle the download and extracting of source code? Also, I thought NetBSD used pkgsrc tho, while OpenBSD uses a FreeBSD ports. man 7 ports(OpenBSD): " The OpenBSD Ports Collection (shamelessly stolen from the FreeBSD Ports Collection) offers a simple way for users and administrators to install applications." -p -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From okan Sun Aug 1 17:09:05 2004 From: okan (Okan Demirmen) Date: Sun, 1 Aug 2004 17:09:05 -0400 Subject: [nycbug-talk] X and screen. was: BSD on a desktop In-Reply-To: <410CD046.1080003@genoverly.net> References: <20040731164554.GA27567@scottro11.homeunix.net> <20040731140123.150768b4@bogomips.optonline.net> <20180B1D-E31C-11D8-857E-000393BC62B8@nomadlogic.org> <410CD046.1080003@genoverly.net> Message-ID: <20040801210905.GA10658@yinaska.pair.com> On Sun 2004.08.01 at 07:13 -0400, michael wrote: > on 20040731 2:04 PM pete wright had written... > > > > >hey marc, > > here is a dumb question...can you run say Xterm in a screen session, > >detach the session (along with xterm) then re-attach the session > >somewhere else and have the xterm come back. i've tried it out, but > >have a feeling that it's not possible or i'm missing a swtich somewhere. > > > >-p > > > > Pete, > I'm also a big fan of screen. The 2 main situations I use it are > > 1.) ssh into a remote server- start a screen session - do stuff, maybe > kick off a long compile, dettach. I can then go to work- ssh into that > server and reattach. The process has been running and I can pick up > where I left off. > > 2.) I was uncomfortable with running x on a workstation then walking > away. Anyone could kill the session and drop down to a prompt... with > my credentials. So, I actually use it everytime I run startx. May > would say a common solution would be to use a display manager like XDM, > KDM, GDM but.. Common solutions are not always the right ones or the > most secure ones. I may be wrong, but, as far as I know: and only in the spirit of alternatives, one may start x, backgrounded, and exit from the console: startx & then exit shell or depending on your setup okan > -- Display mgrs require you to run X.. there are many times I just don't > want to > -- Display mgrs require you to launch X as root. > -- Display mgrs control your machine.. it is very difficult to close X > and drop to a prompt... say, if you were going to do a large compile and > wanted to free up some overhead > > I wanted to secure my workstation, but, I didn't want to loose access to > my console altogether. > > Option "DontVTSwitch" "true" > Option "DontZap" "true" > > ... would have required a reboot in case something went wrong with X. > Disabling "magic sysreq key" and ctrl+alt+del could also lock me out of > my own box... except for the Power button and the wall plug. > > My answer was to use a very familiar utility called 'screen'. > > 1) I logon as a user (not root) > 2) type 'screen', and I'm given a new prompt > 3) at the new prompt I type 'startx'. Which ever WM/DE is set in the > .xinitrc loads (KDE, GNOME, fluxbox...etc). > 4) takes me back to the 'screen' prompt. > 5) " d" to detach ('man screen' for more) and I'm back at the > original prompt. > 6) from here I can 'logout'... the logon prompt appears. > 7) takes me back to the WM/DE > > I only have to do this once for each re-boot, which is not often. > > Now I can use any X screensaver/lock I choose. I can walk away from my > desk knowing X is locked and the box is secured. Without my password, > noone can use my credentials. If they need the box, they can log in > themselves. I can also recover from any X mishaps more gracefully than a > re-boot. > > Michael > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month -- Okan Demirmen PGP-Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xB3670934 PGP-Fingerprint: 226D B4AE 78A9 7F4E CD2B 1B44 C281 AF18 B367 0934 From george Mon Aug 2 00:04:58 2004 From: george (G.Rosamond) Date: Mon, 2 Aug 2004 00:04:58 -0400 Subject: [nycbug-talk] Article on Unix and open source Message-ID: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> http://os.newsforge.com/article.pl?sid=04/07/28/2057223 The article is titled "can gnu ever be unix?", but the author repeatedly refers to gnu and bsds. Thoughts? g From jesse Mon Aug 2 00:45:33 2004 From: jesse (Jesse Callaway) Date: Mon, 2 Aug 2004 00:45:33 -0400 Subject: [nycbug-talk] Article on Unix and open source In-Reply-To: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> References: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> Message-ID: On Aug 2, 2004, at 12:04 AM, G.Rosamond wrote: > http://os.newsforge.com/article.pl?sid=04/07/28/2057223 > > The article is titled "can gnu ever be unix?", but the author > repeatedly refers to gnu and bsds. > > Thoughts? > > g > "In researching this article I met with hurdles that almost made me give up on writing it." - newsforge.com article 4/7/28/2057223 I guess that money from the Open Group made you think twice, huh. This is pretty crazy. I like that he hints that Windows could be certified with some code revamping. It's an amusing thought. The whole article is rather uninformed and not newsworthy. It's an ad with bad information. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 781 bytes Desc: not available Url : http://lists.nycbug.org/pipermail/talk/attachments/20040802/c705d0f8/attachment.bin From sunny-ml Mon Aug 2 07:03:56 2004 From: sunny-ml (Sunny Dubey) Date: Mon, 2 Aug 2004 07:03:56 -0400 Subject: [nycbug-talk] Article on Unix and open source In-Reply-To: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> References: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> Message-ID: <200408020703.57329.sunny-ml@opencurve.org> On Monday 02 August 2004 12:04 am, G.Rosamond wrote: > http://os.newsforge.com/article.pl?sid=04/07/28/2057223 > > The article is titled "can gnu ever be unix?", but the author > repeatedly refers to gnu and bsds. > > Thoughts? > Linux has been certified POSIX.1. It was done by a company called Lasemoon. No one cared about linux being POSIX, and the company tanked. Apparently another german company called Unifix Software seems to have continued with this POSIX compliancy effort, and it seems not too many people take notice of this either. IMO customers just don't care about SUS/POSIX as they used to anymore. Sunny Dubey From george Mon Aug 2 08:38:36 2004 From: george (G.Rosamond) Date: Mon, 2 Aug 2004 08:38:36 -0400 Subject: [nycbug-talk] Article on Unix and open source In-Reply-To: References: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> Message-ID: On Aug 2, 2004, at 12:45 AM, Jesse Callaway wrote: > > On Aug 2, 2004, at 12:04 AM, G.Rosamond wrote: > >> http://os.newsforge.com/article.pl?sid=04/07/28/2057223 >> >> The article is titled "can gnu ever be unix?", but the author >> repeatedly refers to gnu and bsds. >> >> Thoughts? >> >> g >> > > "In researching this article I met with hurdles that almost made me > give up on writing it." - newsforge.com article 4/7/28/2057223 > > I guess that money from the Open Group made you think twice, huh. > > This is pretty crazy. I like that he hints that Windows could be > certified with some code revamping. It's an amusing thought. The whole > article is rather uninformed and not newsworthy. It's an ad with bad > information. It's actually a funny article, IMO. GNU's not Unix could be Unix-certified? I think there's a tendency to put the Unix certification process on an altar. . .either as a throwback to the past or as a self-defense to the SCO run-around. Fundamentally, the clearest thing to me is the spirit of the Unix tradition, which is not about costly processes and hollow labels, but rather about dynamic, open development, in addition to allegiance to the standard Unix development models and principles. The perception of traditional Unix being over-priced but amazingly stable and secure is a more recent phenomena than the public-at-large thinks. . . Everyone should take the opportunity to speak to Brian, Bubette and others from the Lower East Side Mac Unix Users Group (lesmuug.org). While some people in NYCBUG have attended their meetings and are even long-time members of it, those of you who have not heard about the old Bell Labs days might learn a bit. LESMUUG is not a group of people looking for Quark shortcuts. There are some technical heavy-hitters there who always cause my mind to race when they speak. For instance, I heard about Brian's opinion of "open source" via a third party (Big I): there's nothing new about it, it's always been the way Unix development happened. It was just labelled 'open source' in the 1990's. This was also mentioned by Peter Salus several times at USENIX. . . g -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 2230 bytes Desc: not available Url : http://lists.nycbug.org/pipermail/talk/attachments/20040802/e4f0105b/attachment.bin From pete Mon Aug 2 11:03:17 2004 From: pete (Pete Wright) Date: Mon, 02 Aug 2004 10:03:17 -0500 Subject: [nycbug-talk] Article on Unix and open source In-Reply-To: <200408020703.57329.sunny-ml@opencurve.org> References: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> <200408020703.57329.sunny-ml@opencurve.org> Message-ID: <410E57B5.7000908@nomadlogic.org> Sunny Dubey wrote: >On Monday 02 August 2004 12:04 am, G.Rosamond wrote: > > >>http://os.newsforge.com/article.pl?sid=04/07/28/2057223 >> >>The article is titled "can gnu ever be unix?", but the author >>repeatedly refers to gnu and bsds. >> >>Thoughts? >> >> >> > >Linux has been certified POSIX.1. It was done by a company called Lasemoon. >No one cared about linux being POSIX, and the company tanked. Apparently >another german company called Unifix Software seems to have continued with >this POSIX compliancy effort, and it seems not too many people take notice of >this either. > >IMO customers just don't care about SUS/POSIX as they used to anymore. > > which is funny, because POSIX standards really say alot more about a system than "Unix." -p -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From pete Mon Aug 2 11:24:13 2004 From: pete (Pete Wright) Date: Mon, 02 Aug 2004 10:24:13 -0500 Subject: [nycbug-talk] Article on Unix and open source In-Reply-To: References: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> Message-ID: <410E5C9D.5040302@nomadlogic.org> G.Rosamond wrote: > > > On Aug 2, 2004, at 12:45 AM, Jesse Callaway wrote: > > > On Aug 2, 2004, at 12:04 AM, G.Rosamond wrote: > > http://os.newsforge.com/article.pl?sid=04/07/28/2057223 > > The article is titled "can gnu ever be unix?", but the author > repeatedly refers to gnu and bsds. > > Thoughts? > > g > > > "In researching this article I met with hurdles that almost made > me give up on writing it." - newsforge.com article 4/7/28/2057223 > > I guess that money from the Open Group made you think twice, huh. > > This is pretty crazy. I like that he hints that Windows could be > certified with some code revamping. It's an amusing thought. The > whole article is rather uninformed and not newsworthy. It's an ad > with bad information. > > > It's actually a funny article, IMO. > > GNU's not Unix could be Unix-certified? I think there's a tendency to > put the Unix certification process on an altar. . .either as a > throwback to the past or as a self-defense to the SCO run-around. > > Fundamentally, the clearest thing to me is the spirit of the Unix > tradition, which is not about costly processes and hollow labels, but > rather about dynamic, open development, in addition to allegiance to > the standard Unix development models and principles. The perception of > traditional Unix being over-priced but amazingly stable and secure is > a more recent phenomena than the public-at-large thinks. . . > > Everyone should take the opportunity to speak to Brian, Bubette and > others from the Lower East Side Mac Unix Users Group (lesmuug.org). > While some people in NYCBUG have attended their meetings and are even > long-time members of it, those of you who have not heard about the old > Bell Labs days might learn a bit. LESMUUG is not a group of people > looking for Quark shortcuts. There are some technical heavy-hitters > there who always cause my mind to race when they speak. > > For instance, I heard about Brian's opinion of "open source" via a > third party (Big I): there's nothing new about it, it's always been > the way Unix development happened. It was just labelled 'open source' > in the 1990's. This was also mentioned by Peter Salus several times at > USENIX. . . > I agree with you pretty much George, Unix Cert. just tastes like getting that sticker on your software that states "Windows Certified." I mean shoot, if you look at the open groups list of certified systems it's just Solaris on Sun/AIX on Power with one Tru64 on Alpha thrown in there. I think there are two distinct concepts that we have to keep clear here tho. GNU and "open source." Open source, if I remember my history correctly (or is it current events), was a label made up by a bunch of gnu/linux folks in Cali. including Eric Raymond. I think they did not intend for it be any different than "the unix way," just another way of looking at it. I think what they really wanted was to put a more business like appearance on the who whole GNU/FSF thing. On the other hand we got Stallman and GNU, and frankly it doesn't matter if like him or hate him I can't imagine the FSF letting the GNU system get "Unix Certified." -p -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From mlists Mon Aug 2 10:46:46 2004 From: mlists (mlists at bizintegrators.com) Date: Mon, 2 Aug 2004 10:46:46 -0400 Subject: [nycbug-talk] Article on Unix and open source In-Reply-To: <410E5C9D.5040302@nomadlogic.org> References: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> <410E5C9D.5040302@nomadlogic.org> Message-ID: <20040802144646.GF10310@bizintegrators.com> > > I think there are two distinct concepts that we have to keep clear here > tho. GNU and "open source." Open source, if I remember my history > correctly (or is it current events), was a label made up by a bunch of > gnu/linux folks in Cali. including Eric Raymond. I think they did not > intend for it be any different than "the unix way," just another way of > looking at it. I think what they really wanted was to put a more > business like appearance on the who whole GNU/FSF thing. On the other > hand we got Stallman and GNU, and frankly it doesn't matter if like him > or hate him I can't imagine the FSF letting the GNU system get "Unix > Certified." There was an interview recently with Stallman, and he answers the open source question (he said it many times, but this time I saved it, since I can never repeat his words [or anyones..]): "You clearly point out in many interviews and articles you write that you don't associate free software with the open source movement. Why is that?" http://www.builderau.com.au/program/0,39024614,39130008,00.htm From louis Mon Aug 2 11:19:33 2004 From: louis (Louis Bertrand) Date: Mon, 2 Aug 2004 11:19:33 -0400 (EDT) Subject: [nycbug-talk] Article on Unix and open source In-Reply-To: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> References: <1ECCB85D-E439-11D8-9DB8-000D9328615E@sddi.net> Message-ID: On Mon, 2 Aug 2004, G.Rosamond wrote: > http://os.newsforge.com/article.pl?sid=04/07/28/2057223 > > The article is titled "can gnu ever be unix?", but the author > repeatedly refers to gnu and bsds. > > Thoughts? > The BSDs are pretty good about making sure that innovation doesn't break existing programs and APIs. It's just what the developers do. Certification would spend money and effort that could better be used for development. As for RMS, he seems to be doing flip-flops in a logical cul-de-sac. "When a free software advocate looks at the same thing, she will see a nasty, unethical license. "I don't care how 'powerful' it is, if it takes away my freedom," she will say. "Let's start writing the free replacement now!" So I wonder how many GPL'd programs needed to be replaced by more openly licensed ones to keep BSD free? Ciao --Louis From george Mon Aug 2 11:50:58 2004 From: george (G.Rosamond) Date: Mon, 2 Aug 2004 11:50:58 -0400 Subject: [nycbug-talk] ftp site. . . Message-ID: does anyone have an ftp site i could use for g4u. ..? www.feyrer.de/g4u you would need to create the g4u user "install" with ftp access. And have a few gig of space to spare ;-) Come to think of it. . .I'm sure there are others who might want this too. . . g From fifi Mon Aug 2 12:01:03 2004 From: fifi (Mike Sawicki) Date: Mon, 2 Aug 2004 12:01:03 -0400 Subject: [nycbug-talk] ftp site. . . In-Reply-To: References: Message-ID: <20040802160103.GX87092@HAX.ORG> On Mon, Aug 02, 2004 at 11:50:58AM -0400, G.Rosamond wrote: > does anyone have an ftp site i could use for g4u. ..? > > www.feyrer.de/g4u > > you would need to create the g4u user "install" with ftp access. And > have a few gig of space to spare ;-) > > Come to think of it. . .I'm sure there are others who might want this > too. . . > Why wouldn't you just want to use a local ftp server on your LAN? Seems to be more sensible than copying large binary images to and from the 'Net.. Mike Sawicki (fifi at HAX.ORG) From george Mon Aug 2 12:05:44 2004 From: george (G.Rosamond) Date: Mon, 2 Aug 2004 12:05:44 -0400 Subject: [nycbug-talk] ftp site. . . In-Reply-To: <20040802160103.GX87092@HAX.ORG> References: <20040802160103.GX87092@HAX.ORG> Message-ID: On Aug 2, 2004, at 12:01 PM, Mike Sawicki wrote: > On Mon, Aug 02, 2004 at 11:50:58AM -0400, G.Rosamond wrote: >> does anyone have an ftp site i could use for g4u. ..? >> >> www.feyrer.de/g4u >> >> you would need to create the g4u user "install" with ftp access. And >> have a few gig of space to spare ;-) >> >> Come to think of it. . .I'm sure there are others who might want this >> too. . . >> > > Why wouldn't you just want to use a local ftp server on your LAN? > Seems to be more sensible than copying large binary images to and > from the 'Net.. > Of course. . .but all my boxes are in use right now. . .I may end up doing some rejigging anyway for the issue of speed. Plus that doesn't help me with clients. . . I was thinking more of a public service for nycbug members. . .although there are clearly security issues here. . . Wonder if g4u can use ssh/scp. . .time to RTFM. . . g From lists Mon Aug 2 12:37:13 2004 From: lists (michael) Date: Mon, 2 Aug 2004 12:37:13 -0400 Subject: [nycbug-talk] ftp site. . . In-Reply-To: References: <20040802160103.GX87092@HAX.ORG> Message-ID: <20040802123713.1f71daf7@delinux.abwatley.com> On Mon, 2 Aug 2004 12:05:44 -0400 G.Rosamond wrote: > > Wonder if g4u can use ssh/scp. . .time to RTFM. . . > 5.8 Can you add feature XXX? I got requests for adding many features to g4u: o using TFTP o using SSH/scp o using NFS o adding a X or curses based GUI o writing images to CDROM / deployment from CDROM o support for PCMCIA/CardBus o bzip2 compression The problem with them is all the same: they need space, and there is already too little on the floppy due to the many drivers contained on it. Suggestions on what drivers to remove are welcome. Moving away from floppy to CD-only distribution is not an option for me at this point, sorry. -- --- From dlavigne6 Mon Aug 2 20:30:58 2004 From: dlavigne6 (Dru) Date: Mon, 2 Aug 2004 20:30:58 -0400 (EDT) Subject: [nycbug-talk] Re: Women in Open Source (fwd) Message-ID: <20040802200705.I608@dru.domain.org> A few months ago, I was asked to partake in an email survey, the results of which are to be officially published tomorrow (and later in a print magazine) at: http://pyre.third-bit.com/wios/ My final feedback to the surveyor (and their response) follows. Personally, I find the results alarming and am interested in hearing the perspective from the group. While it won't come out in the article, it did bring up another slant that should be pursued (though I don't know how yet...) The uninformed perception re: open source and geekdom seems to be unfairly tainted by slashdot moronics and programmer tantrums. I've found the perception of BSD to be far more mature. Sounds like some sort of opportunity here. Comments? Dru >> It's sad that these were your findings. I guess BSD users live in a more >> sheltered part of geek-space. While I've had to wear my flame-suit a few >> times over technical disagreements, I've never experienced anything >> close to sexual harrassment. My name maybe gender neutral, but the >> community certainly knows that I'm female. >I'm just speculating here, but I wonder if there are any connections >between the BSD community's friendliness, the fact that it didn't >bandwagon nearly as dramatically as some other projects, and Apple's >adoption of it. Apple certainly has a long history of caring more about >"soft" issues than most other computer companies; it's hard to imagine >that culture co-operating with the slash 'n' burn of Slashdot... >> Small technical inaccuracy: "Mac OS X....on Linux" is like saying Al >> Gore invented the Internet. It is BSD-based--at the very least, "Unix" >> would be more accurate than "Linux". >Yup, our bad --- thanks for pointing it out. From pete Mon Aug 2 22:24:32 2004 From: pete (Pete Wright) Date: Mon, 02 Aug 2004 21:24:32 -0500 Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <20040802200705.I608@dru.domain.org> References: <20040802200705.I608@dru.domain.org> Message-ID: <410EF760.1060500@nomadlogic.org> Dru wrote: > > A few months ago, I was asked to partake in an email survey, the > results of which are to be officially published tomorrow (and later in > a print magazine) at: > > http://pyre.third-bit.com/wios/ > > My final feedback to the surveyor (and their response) follows. > Personally, I > find the results alarming and am interested in hearing the perspective > from > the group. > > While it won't come out in the article, it did bring up another slant > that should be pursued (though I don't know how yet...) The uninformed > perception > re: open source and geekdom seems to be unfairly tainted by slashdot > moronics > and programmer tantrums. I've found the perception of BSD to be far more > mature. Sounds like some sort of opportunity here. > > Comments? > Dru, I think your comments are spot on. I found this line interesting: "...it is ironic to compare the rush to clone Microsoft's .NET to the indifference with which FLOSS developers have greeted Apple's UI." I think this is right after your correction about linux/osx. If they are refering to the MONO project, it would seem to be a non-sequator. i hope it's just another mistake and not flame bait. so dru, do you think from your experience that most FLOSS projects are just boy's clubs...or what? -p -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From george Mon Aug 2 21:24:55 2004 From: george (G.Rosamond) Date: Mon, 2 Aug 2004 21:24:55 -0400 Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <20040802200705.I608@dru.domain.org> References: <20040802200705.I608@dru.domain.org> Message-ID: On Aug 2, 2004, at 8:30 PM, Dru wrote: > > A few months ago, I was asked to partake in an email survey, the > results of which are to be officially published tomorrow (and later in > a print magazine) at: > > http://pyre.third-bit.com/wios/ Surprising that it's taken this long to actually get some of this documented. . .It's a reality that few comment on. . . > > My final feedback to the surveyor (and their response) follows. > Personally, I > find the results alarming and am interested in hearing the perspective > from > the group. Agree. . . The larger issue of the lack of women and non-whites in technology is the context, but there are definitely problems at the more local level. .and that should be apparent to everyone. . . Lots of techs think that contemporary computing somehow sits above the history of work. . .which maybe explains the popularity of sci fi and films like the Matrix. . . Techs are predominantly men not because men are innately technically more skilled. It was unheard of to have a female secretary until the 20th century. Men were not wanted in the textile mills of New England in the early 19th century. Gender and work is not some linear process from the hunters and gatherers to today. And even that world has been massively misinterpreted. I'm sure some people do think that women are not naturally as technical. . .it's not surprising in some way, since, as the article notes, the major developers in the FLOSS world are men. . . everyone in their 30's and up today comes from a world where technology was a limited field, and the directions pushed of men to math and science was accepted as normal. There are a handful of women on the list. . .and partially, as I stated above, it's because of a world bigger than NYCBUG. However, I do think it's reasonable for the NYCBUG members to discuss our own little world. > > While it won't come out in the article, it did bring up another slant > that should be pursued (though I don't know how yet...) The uninformed > perception > re: open source and geekdom seems to be unfairly tainted by slashdot > moronics > and programmer tantrums. I've found the perception of BSD to be far > more > mature. Sounds like some sort of opportunity here. > > Comments? > > Dru Definitely an issue. . .Slashdot crowd is younger, less socially adjusted, and rarely have earned a nickel due to their technical skills in a normal workplace. . . >>> It's sad that these were your findings. I guess BSD users live in a >>> more >>> sheltered part of geek-space. While I've had to wear my flame-suit a >>> few >>> times over technical disagreements, I've never experienced anything >>> close to sexual harrassment. My name maybe gender neutral, but the >>> community certainly knows that I'm female. > >> I'm just speculating here, but I wonder if there are any connections >> between the BSD community's friendliness, the fact that it didn't >> bandwagon nearly as dramatically as some other projects, and Apple's >> adoption of it. Apple certainly has a long history of caring more >> about >> "soft" issues than most other computer companies; it's hard to imagine >> that culture co-operating with the slash 'n' burn of Slashdot... > And Apple may be more careful about it, but that's because the bulk of their clients are middle class professional men and women. . .Doesn't stop Jobs from making sexist comments, nor Waz when he spoke at HOPE/2600. . . >>> Small technical inaccuracy: "Mac OS X....on Linux" is like saying Al >>> Gore invented the Internet. It is BSD-based--at the very least, >>> "Unix" >>> would be more accurate than "Linux". > >> Yup, our bad --- thanks for pointing it out. >> That's something worth getting into a fistfight about Dru. . . g From matador-gtabug Mon Aug 2 22:01:14 2004 From: matador-gtabug (Matador) Date: Mon, 02 Aug 2004 22:01:14 -0400 Subject: [nycbug-talk] Advice on setting up a RAID array In-Reply-To: <41099621.6070009@us.army.mil> References: <41099621.6070009@us.army.mil> Message-ID: <410EF1EA.4030708@matadorsplace.com> As far as a raid card that works out of the box with FreeBSD 5.x. I can tell you from experience, that the Adaptec 2410SA does a nice job. # dmesg | grep aacd aacd0: on aac0 aacd0: 76292MB (156247808 sectors) When I first booted up from bootable cd to install the o/s ; I was delighted to see /dev/aacd0 as my drive to partition. This is the reason why I got the card. Its a 4 port SATA card. As far as getting > 500gb ; well you'd most likely have to go with 4 * 200+ gig hard drives to acheive it. I can tell you, it was fun running the raid 1 and pulling out a sata cable while the o/s and process' were running. I was doing a Beavis and Butthead type laugh as I did it. Then I reconnected the cable, rebooted, went to adaptec's config bios, and saw the drive rebuilding the array. Then I rebooted, and of course the o/s booted. Then I pulled the #1 cable (the one that it was rebuilding *FROM*) ; rebooted, and when I restarted, I lost all data. Anyway, 2410 has my thumbs up. Cheers, --Matador Jonathan wrote: > Hello all, > I'm thinking about setting up a RAID array for my computer for a few > reasons: > 1. I'm really bad about backups and I have too much information that is > reorganized too often to try to backup on CDs > 2. I'd like to have more hard drive space for future use > 3. I have some money to spend :) and I have not spent any on computers > for over 6 months :( > > The main things I am looking for with the RAID array are (not > necessarily in priority order): > 1. Size, I'd like to go 500GB+ > 2. Redundancy, the main requirement I'm planning to try and mitigate > any crashes considering I have no backups (I do know hard drive crashes > are not the only thing that can destroy data but hard drive crashes are > my main concern) > 3. Preferably Hardware RAID so it is more compatible across OSes and > performs better. > 4. SATA, I don't know if this is even an option yet but SATA would be > very nice esp. considering 18in IDE cables can't reach anywhere near the > top of my case where I would need to put the drives. > 5. Compatibility, I don't doubt whatever I get would work under windows > but I also want to be sure it will work under the BSDs (FreeBSD-current > won't boot right now but I want to try NetBSD one of these days > (5.2.1-release does work for some reason)) > > Awaiting much helpful advice ;) > Jonathan > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month From mspitze1 Mon Aug 2 22:28:04 2004 From: mspitze1 (Marc Spitzer) Date: Mon, 02 Aug 2004 22:28:04 -0400 Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <20040802200705.I608@dru.domain.org> References: <20040802200705.I608@dru.domain.org> Message-ID: <20040802222804.1fe59775@bogomips.optonline.net> On Mon, 02 Aug 2004 20:30:58 -0400 (EDT) Dru wrote: > > A few months ago, I was asked to partake in an email survey, the > results of which are to be officially published tomorrow (and later in > a print magazine) at: > > http://pyre.third-bit.com/wios/ > > My final feedback to the surveyor (and their response) follows. > Personally, I find the results alarming and am interested in hearing > the perspective from the group. > > While it won't come out in the article, it did bring up another slant > that should be pursued (though I don't know how yet...) The uninformed > perception re: open source and geekdom seems to be unfairly tainted by > slashdot moronics and programmer tantrums. I've found the perception > of BSD to be far more mature. Sounds like some sort of opportunity > here. One of my opinions on BSD vs Linux mindset is as follows: BSD is old school, aka MIT AI koans. Where the student is trying to impress the *Professor*. So the reward, recognition, comes from thinking about hard problems and then implementing the solution. The fact that you wrote lots of code is besides the point, its a given. Linux is new school. The students are trying to impress the other students. And these people are not yet wise enough to realize that coding is all things considered the easy bit. This leads to the fascination with reimplementing the designs of others, instead of writing 1/5 the code and spending 10X the effort to do something NEW. > > Comments? >From the subject I thought you were selling a calender. marc From okan Mon Aug 2 22:39:32 2004 From: okan (Okan Demirmen) Date: Mon, 2 Aug 2004 22:39:32 -0400 Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <20040802222804.1fe59775@bogomips.optonline.net> References: <20040802200705.I608@dru.domain.org> <20040802222804.1fe59775@bogomips.optonline.net> Message-ID: <20040803023932.GA7534@yinaska.pair.com> On Mon 2004.08.02 at 22:28 -0400, Marc Spitzer wrote: > On Mon, 02 Aug 2004 20:30:58 -0400 (EDT) > Dru wrote: > > > > > A few months ago, I was asked to partake in an email survey, the > > results of which are to be officially published tomorrow (and later in > > a print magazine) at: > > > > http://pyre.third-bit.com/wios/ > > > > My final feedback to the surveyor (and their response) follows. > > Personally, I find the results alarming and am interested in hearing > > the perspective from the group. > > > > While it won't come out in the article, it did bring up another slant > > that should be pursued (though I don't know how yet...) The uninformed > > perception re: open source and geekdom seems to be unfairly tainted by > > slashdot moronics and programmer tantrums. I've found the perception > > of BSD to be far more mature. Sounds like some sort of opportunity > > here. > > One of my opinions on BSD vs Linux mindset is as follows: > > BSD is old school, aka MIT AI koans. Where the student is trying to > impress the *Professor*. So the reward, recognition, comes from > thinking about hard problems and then implementing the solution. The > fact that you wrote lots of code is besides the point, its a given. > > Linux is new school. The students are trying to impress the other > students. And these people are not yet wise enough to realize that > coding is all things considered the easy bit. This leads to the > fascination with reimplementing the designs of others, instead of > writing 1/5 the code and spending 10X the effort to do something NEW. > ah yes, the age old evolutionary vs revolutionary mindset - i agree. okan -- Okan Demirmen PGP-Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xB3670934 PGP-Fingerprint: 226D B4AE 78A9 7F4E CD2B 1B44 C281 AF18 B367 0934 From pete Mon Aug 2 23:50:21 2004 From: pete (Pete Wright) Date: Mon, 02 Aug 2004 22:50:21 -0500 Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <20040802222804.1fe59775@bogomips.optonline.net> References: <20040802200705.I608@dru.domain.org> <20040802222804.1fe59775@bogomips.optonline.net> Message-ID: <410F0B7D.6050807@nomadlogic.org> Marc Spitzer wrote: >One of my opinions on BSD vs Linux mindset is as follows: > >BSD is old school, aka MIT AI koans. Where the student is trying to >impress the *Professor*. So the reward, recognition, comes from >thinking about hard problems and then implementing the solution. The >fact that you wrote lots of code is besides the point, its a given. > >Linux is new school. The students are trying to impress the other >students. And these people are not yet wise enough to realize that >coding is all things considered the easy bit. This leads to the >fascination with reimplementing the designs of others, instead of >writing 1/5 the code and spending 10X the effort to do something NEW. > > > yea i'm not too sure about that. there are alot of gnu/linux developers that have been around for a *long* time. Maybe the user base has that feeling about that, or even the /. crowd, but I would not say that that is a fair picture to paint of the core devs on the kernel team, or even alot of the people that work with linux in different ways (Jim Gettys who helped create the X windows system at MIT for example, or even Keith Packard, Donal Becker). look i'm trying to flame here, i just think we should keep things in perspective... -p -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From okan Mon Aug 2 23:07:40 2004 From: okan (Okan Demirmen) Date: Mon, 2 Aug 2004 23:07:40 -0400 Subject: [nycbug-talk] ports [was re: BSD on a desktop] In-Reply-To: <410D132E.2030409@nomadlogic.org> References: <20040731221427.GA8138@yinaska.pair.com> <410D132E.2030409@nomadlogic.org> Message-ID: <20040803030740.GA10709@yinaska.pair.com> On Sun 2004.08.01 at 10:58 -0500, Pete Wright wrote: > i don't have the ports tree > installed on any of my OpenBSD machines right now, how do they handle > the download and extracting of source code? not sure exactly what the question is, but the infrastructure grabs the source from MASTER_SITES, checks distinfo (md5/rmd160/sha1), then extracts into the workdir - just like the other porting systems....it is just that openbsd does this as a normal user, as does pkgsrc. not sure if i answered the question i didn't get ;) > Also, I thought NetBSD used pkgsrc tho, while OpenBSD uses a FreeBSD > ports. man 7 ports(OpenBSD): > " The OpenBSD Ports Collection (shamelessly stolen from the FreeBSD Ports > Collection) offers a simple way for users and administrators to install > applications." true, initially, but it has changed quite a bit since then... -- Okan Demirmen PGP-Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xB3670934 PGP-Fingerprint: 226D B4AE 78A9 7F4E CD2B 1B44 C281 AF18 B367 0934 From pete Tue Aug 3 00:20:24 2004 From: pete (Pete Wright) Date: Mon, 02 Aug 2004 23:20:24 -0500 Subject: [nycbug-talk] ports [was re: BSD on a desktop] In-Reply-To: <20040803030740.GA10709@yinaska.pair.com> References: <20040731221427.GA8138@yinaska.pair.com> <410D132E.2030409@nomadlogic.org> <20040803030740.GA10709@yinaska.pair.com> Message-ID: <410F1288.6050203@nomadlogic.org> Okan Demirmen wrote: >On Sun 2004.08.01 at 10:58 -0500, Pete Wright wrote: > > >>i don't have the ports tree >>installed on any of my OpenBSD machines right now, how do they handle >>the download and extracting of source code? >> >> > >not sure exactly what the question is, but the infrastructure grabs the >source from MASTER_SITES, checks distinfo (md5/rmd160/sha1), then >extracts into the workdir - just like the other porting systems....it >is just that openbsd does this as a normal user, as does pkgsrc. > >not sure if i answered the question i didn't get ;) > > cool, so it all seems pretty similar. just wanted to make sure i wasn't missing some obvious. thanks! > > >>Also, I thought NetBSD used pkgsrc tho, while OpenBSD uses a FreeBSD >>ports. man 7 ports(OpenBSD): >>" The OpenBSD Ports Collection (shamelessly stolen from the FreeBSD Ports >> Collection) offers a simple way for users and administrators to install >> applications." >> >> > >true, initially, but it has changed quite a bit since then... > > > yea no doubt. fortunately it does not seem too hard for admins to modify FreeBSD to be closer the behavior you pointed out...which is probably one of those good things ;^) -p -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From mspitze1 Mon Aug 2 23:30:05 2004 From: mspitze1 (Marc Spitzer) Date: Mon, 02 Aug 2004 23:30:05 -0400 Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <410F0B7D.6050807@nomadlogic.org> References: <20040802200705.I608@dru.domain.org> <20040802222804.1fe59775@bogomips.optonline.net> <410F0B7D.6050807@nomadlogic.org> Message-ID: <20040802233005.232afcd3@bogomips.optonline.net> On Mon, 02 Aug 2004 22:50:21 -0500 Pete Wright wrote: > Marc Spitzer wrote: > > >One of my opinions on BSD vs Linux mindset is as follows: > > > >BSD is old school, aka MIT AI koans. Where the student is trying to > >impress the *Professor*. So the reward, recognition, comes from > >thinking about hard problems and then implementing the solution. The > > > >fact that you wrote lots of code is besides the point, its a given. > > > >Linux is new school. The students are trying to impress the other > >students. And these people are not yet wise enough to realize that > >coding is all things considered the easy bit. This leads to the > >fascination with reimplementing the designs of others, instead of > >writing 1/5 the code and spending 10X the effort to do something NEW. > > > > > > > yea i'm not too sure about that. there are alot of gnu/linux > developers that have been around for a *long* time. Maybe the user > base has that feeling about that, or even the /. crowd, but I would > not say that that is a fair picture to paint of the core devs on the > kernel team, or even alot of the people that work with linux in > different ways (Jim Gettys who helped create the X windows system at > MIT for example, or even Keith Packard, Donal Becker). look i'm > trying to flame here, i just think we should keep things in > perspective... Well I was talking about the general feel of the community from my experience and POV. Real heavy lifter, in BSD or Linux, are a small minority of the people involved, even of the coders involved. And I was not talking about them. I was talking about the 31337 11nuX Hax0r that I have seen about so much vs the equivalent BSD user who just wants it to work so he/she can get on with their day. marc > > -p > > -- > ~~~oO00Oo~~~ > Pete Wright > pete at nomadlogic.org > www.nomadlogic.org/~pete > From ike Tue Aug 3 04:06:32 2004 From: ike (Isaac Levy) Date: Tue, 3 Aug 2004 04:06:32 -0400 Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <20040802200705.I608@dru.domain.org> References: <20040802200705.I608@dru.domain.org> Message-ID: <083A7F90-E524-11D8-BF86-000D9368D406@lesmuug.org> Hi Dru, All, On Aug 2, 2004, at 8:30 PM, Dru wrote: > > A few months ago, I was asked to partake in an email survey, the > results of which are to be officially published tomorrow (and later in > a print magazine) at: > > http://pyre.third-bit.com/wios/ > > My final feedback to the surveyor (and their response) follows. > Personally, I > find the results alarming and am interested in hearing the perspective > from > the group. > > While it won't come out in the article, it did bring up another slant > that should be pursued (though I don't know how yet...) The uninformed > perception > re: open source and geekdom seems to be unfairly tainted by slashdot > moronics > and programmer tantrums. I've found the perception of BSD to be far > more > mature. Sounds like some sort of opportunity here. > > Comments? > > Dru > > >>> It's sad that these were your findings. I guess BSD users live in a >>> more >>> sheltered part of geek-space. While I've had to wear my flame-suit a >>> few >>> times over technical disagreements, I've never experienced anything >>> close to sexual harrassment. My name maybe gender neutral, but the >>> community certainly knows that I'm female. > >> I'm just speculating here, but I wonder if there are any connections >> between the BSD community's friendliness, the fact that it didn't >> bandwagon nearly as dramatically as some other projects, and Apple's >> adoption of it. Apple certainly has a long history of caring more >> about >> "soft" issues than most other computer companies; it's hard to imagine >> that culture co-operating with the slash 'n' burn of Slashdot... With direct regard to the article- I'm extremely shocked and disappointed to see an assessment of IT culture giving anyone such an extremely portrayed 'cold shoulder', though I have survived a few boys-clubs around Tech/IT over the years- (dodged them, is more like it...) and well, I walked away and went elsewhere... I mean, to be honest, Theo DeRadt, politically, is a great example of this. If women get the cold shoulder in Open Source, one always has the source code and the ability to participate in the greater dialogue by proactive involvement, i.e. just go make something... I've personally gotten some disturbing cold shoulders in my time- gone elsewhere, and made stuff- and I'm a white male. With that, I have to say what most frustrated me are the definitive conclusions the survey seems to draw about FLOSS and tech culture at large- the 'slashdotters' represent a serious and highly visible minority from my experiences. From my male perspective, I am surrounded by extremely mature, intelligent men in a world where I rarely think about gender- (note that in my last sentence does note that the overwhelming majority of my world is men [and yes, perhaps noteworthy, the majority are BSD heads or unix oldschoolers or apple folks]). I have no idea how or what to make of all of this though- seeing as hacking itself isn't about gender, it's about hacking- in the myriad of manifestations that make up 'this world'. -- Dru- after reading the survey, I'm reminded of a conversation we had in Ottawa at BSDCan, (at that Black Thorn pub that everybody filled over-capacity that one night...), we were talking casually about just this thought- women in IT/OS. I told a somewhat silly personal story which I'll repeat here just because I thought it relevant... though I feel somewhat uncomfortable with it because I am only 27 years old, and have no kids, and well, would rather be talking at length about how much fun I've been having with your recent hardcore book- not about gender politics in IT... My grandmother starts off with, 'So have you met anybody new lately?' basically, being nosy about weather or not I was seeing anybody, and at the time I was simply working/hacking a lot and not dating anyone. 'Sure Grandma, I've met a few CIO's, lots of great programmers from all over the place, and some really hardcore sysadmins- all really cool guys.' She then noted, 'There simply aren't any girls in what you do, are there.' Nope. In my work, in NYC, (perhaps biased by my age and lack of experiences), I have only worked with one female unix hacker, or any kind of female in tech for that matter. So I thought to ask my grandmother why SHE thought there are no women in my world? I mean, when thinking about it, it's pretty imbalanced... and after her thinking it over, she came up with the following hypothesis: - Basically, she theorized, that at about the time kids really learn mathematics and science in schools, it's right around puberty- an age where the girls are developing far ahead of the boys. With that, she said she remembered being clearly taught NOT to get more right answers or compete with the boys in class, and her being much more aware than the boys, letting her clearly see quite clearly the boys ego's being hurt by any girl who would trump them... So, she said she simply remembers stepping back from anything intellectual, and pursuing the boys- and diving into 'girly' pursuits... (and persuing boys), and from that, she felt was the clearest reason why her grandson wasn't meeting more girls in his daily life- because culture and circumstance happened to direct things that way... With that, it's her take, though after all her years of experience- seeing a few generations grow up, I tend to listen to it- though really, I'm not sure. (perhaps I need to have some kids eventually and take some notes...) -- Rocket, .ike From dlavigne6 Tue Aug 3 10:14:37 2004 From: dlavigne6 (Dru) Date: Tue, 3 Aug 2004 10:14:37 -0400 (EDT) Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <410EF760.1060500@nomadlogic.org> References: <20040802200705.I608@dru.domain.org> <410EF760.1060500@nomadlogic.org> Message-ID: <20040803094825.E597@dru.domain.org> On Mon, 2 Aug 2004, Pete Wright wrote: > so dru, do you think from your experience that most FLOSS projects are just > boy's clubs...or what? Definitely not a boys club, not from my perspective. I've had 4 careers so far, 3 of which are obviously male-dominated. I've been a mover, a worker at a scrapyard, a municipal government employee, and an IT techie. I quickly found out from my moving and scrapyard stints that while guys will initially groan when they see a female on site, you earn great respect once you show that you're there to work and that you do your job well. They keep each other in-line, watch out for you, and woe to the fellow who hints anything inappropriate. I discovered boys club when I became a govt employee. While 85% of the workforce was female, they were the grunts. All the good paying, good respect positions were held by males who did all the stuff that gives govt. a bad name: extended lunches, golf games, secret back scratchings behind closed doors. Being a smart cookie, I quickly worked my way through all the female positions and asked how I could improve my position further (the pay was beyond terrible). I was told to get a certain degree for a certain pay hike and promptly started night classes. Half way through my degree (when they realized I was serious) my manager had a meeting with me to explain how I was to be commended for my efforts but in this day of "budgetary cutbacks" and "fiscal restrictions" it wasn't likely I would be seeing a pay increase anytime soon. I quit on the spot. (happened to be the 4th of July which appealed to the American half of me...) When I entered IT, it was at the tail-end of the boom, when govt. was still paying people for retraining. Half of my class of 12 was female and 4 of the top 5 in the class were female (girls tend to be more studious). By the time I was teaching at the school, we always had at least one female per group of 12, but more often 2 -5 per group. How many (male or female) actually found and kept IT jobs once the boom busted? I don't know. My introduction to open source was through the FreeBSD questions list. While I quickly learned to RTFM, besides that I found it to be a friendly enough place with lots to offer learning-wise. The only weird thing that happened on the list was some time in 98 or so some guy (who's name I've long forgotten) had a little schizo-fit. (Anyone remember that one?) Was told to clean up his posts or be banned but he quit the list himself with quite a flaming swan-song. Anyways, I'm rambling and need more coffee. Dru From jschauma Tue Aug 3 10:26:05 2004 From: jschauma (Jan Schaumann) Date: Tue, 3 Aug 2004 10:26:05 -0400 Subject: [nycbug-talk] EuroBSDCon 2004 Message-ID: <20040803142605.GC9289@netmeister.org> Hi, I just saw a message on Usenet that EuroBSDCon 2004 so far has only very few people signed up to attend. If they can't get some more reservations within the next two weeks, then this conference might be cancelled! Anybody who's interested in attending should register soon (and tell friends). http://2004.eurobsdcon.org -Jan -- "I am so amazingly cool you could keep a side of meat in me for a month. I am so hip I have difficulty seeing over my pelvis." -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 186 bytes Desc: not available Url : http://lists.nycbug.org/pipermail/talk/attachments/20040803/f51bba7f/attachment.bin From dlavigne6 Tue Aug 3 10:22:49 2004 From: dlavigne6 (Dru) Date: Tue, 3 Aug 2004 10:22:49 -0400 (EDT) Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <20040802222804.1fe59775@bogomips.optonline.net> References: <20040802200705.I608@dru.domain.org> <20040802222804.1fe59775@bogomips.optonline.net> Message-ID: <20040803102155.P597@dru.domain.org> On Mon, 2 Aug 2004, Marc Spitzer wrote: >> From the subject I thought you were selling a calender. LOL. But from the article, it sounds like we'd be hard pressed to find 12 ladies to photograph ;-) Dru From zperkov Tue Aug 3 10:35:49 2004 From: zperkov (Zoran Perkov) Date: Tue, 3 Aug 2004 10:35:49 -0400 Subject: [nycbug-talk] August 4th Message-ID: <8a85118004080307352f155992@mail.gmail.com> Hello all, Fairly new to the list...been playing with FreeBsd the past 6 months or so. I am thinking about attending the apple store meeting on wed. Do i need to sign up somewhere or do i just show up? Secret knock?? thanks. -z From george Tue Aug 3 10:38:22 2004 From: george (G.Rosamond) Date: Tue, 3 Aug 2004 10:38:22 -0400 Subject: [nycbug-talk] August 4th In-Reply-To: <8a85118004080307352f155992@mail.gmail.com> References: <8a85118004080307352f155992@mail.gmail.com> Message-ID: On Aug 3, 2004, at 10:35 AM, Zoran Perkov wrote: > Hello all, > > Fairly new to the list...been playing with FreeBsd the past 6 months > or so. > I am thinking about attending the apple store meeting on wed. > Do i need to sign up somewhere or do i just show up? Secret knock?? > Wear a red hat, reveal your daemon tatoo, specification sized, to the first person on your left when you enter the store. . . Okay, just go in the Apple Store and walk up the stairs. . .no rsvp, lists, necessary. g From dlavigne6 Tue Aug 3 10:44:17 2004 From: dlavigne6 (Dru) Date: Tue, 3 Aug 2004 10:44:17 -0400 (EDT) Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <083A7F90-E524-11D8-BF86-000D9368D406@lesmuug.org> References: <20040802200705.I608@dru.domain.org> <083A7F90-E524-11D8-BF86-000D9368D406@lesmuug.org> Message-ID: <20040803102340.P597@dru.domain.org> On Tue, 3 Aug 2004, Isaac Levy wrote: > With direct regard to the article- > I'm extremely shocked and disappointed to see an assessment of IT culture > giving anyone such an extremely portrayed 'cold shoulder', though I have > survived a few boys-clubs around Tech/IT over the years- (dodged them, is > more like it...) and well, I walked away and went elsewhere... That always reminds me of Dan and how the freebsddiary and freshports wouldn't exist if he had taken criticism literally. > I mean, to be honest, Theo DeRadt, politically, is a great example of this. Yes, even the friendly BSDs have their Theos.... > With that, I have to say what most frustrated me are the definitive > conclusions the survey seems to draw about FLOSS and tech culture at large- > the 'slashdotters' represent a serious and highly visible minority from my > experiences. Agreed. And I'd like to see it put out there that they are a highly visible _minority_. (just better not slashdot it...) Maybe an article for the Daemonnews, anyone? I'll definitely be writing something on my O'Reilly blog about it. Might make mention of it in my EuroBSDcon talk, assuming it's not cancelled. > Dru- after reading the survey, I'm reminded of a conversation we had in > Ottawa at BSDCan, (at that Black Thorn pub that everybody filled > over-capacity that one night...), we were talking casually about just this > thought- women in IT/OS. Yup, that came to my mind as well. And I still agree with your grandmother, that the roots happen around middle school age. But I think it's a bit more insidious than girls liking guys. I was shocked that in this day and age my daughter still saw sexism regarding mathematics and science at her high school. If a girl had questions on a math problem, she was still pooh-poohed and not taken seriously and treated like she might hurt her brain or something. I expected this of my mother's generation but certainly not my daughter's! I'm reminded of the advanced physics class I took in university. 5 girls in a class of 120. By December, the class was down to about 50 (it was a hard class!), but there were still 5 girls in that class of 50... > I told a somewhat silly personal story which I'll repeat here just because I > thought it relevant... though I feel somewhat uncomfortable with it because > I am only 27 years old, and have no kids, and well, would rather be talking > at length about how much fun I've been having with your recent hardcore book- > not about gender politics in IT... You'll have to write a book yourself sometime. Not necessarily about tech but "life from Ike's perspective". It would be a best seller :-) And I'm glad you're having fun with the book... Dru From jesse Tue Aug 3 15:19:45 2004 From: jesse (Jesse Callaway) Date: Tue, 3 Aug 2004 15:19:45 -0400 Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <20040803102340.P597@dru.domain.org> References: <20040802200705.I608@dru.domain.org> <083A7F90-E524-11D8-BF86-000D9368D406@lesmuug.org> <20040803102340.P597@dru.domain.org> Message-ID: <1476C1CC-E582-11D8-9D30-000A95BD8054@theholymountain.com> So what's the report? IS there a disparity between corporate coders and FLOSS (corporate backed or otherwise) coders with respect to numbers of females? I'm not comfortable with the current women/tech ratio, but to say that it's far worse in FLOSS environments is a sign that there has been no improvement and that it's actually worse when there aren't any cops around. I believe a lot of the general problem is summed up in many books. The solution is just the same as that of racism. People who say racism isn't a problem are way too ignorant... OR are isolated in an environment where it doesn't seem like much of an issue. However people still believe in astrology which is almost the same as racism/sexism. I don't see weening people off of astrology anytime soon. It just won't go away as long as the general population maintains it's mediocrity and doesn't have time to think about anything but their individual sanity. That said. I think we have more potential to turn this around than most populations. It's historically been noted, even in the book 'Hackers', that women code just as well as men. I think special interest groups should champion those women who do succeed because there is a cultural hurdle. This has been working with the African and Latino Americans... present someone who can be looked up to. Make it cool to be a hacker for girls. A lot of women are immune to the jeers, but they are special women. Really, think of getting into the fashion industry as a non-gay male. hope I didn't contradict myself too many times here... From louis Tue Aug 3 16:16:34 2004 From: louis (Louis Bertrand) Date: Tue, 3 Aug 2004 16:16:34 -0400 (EDT) Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <1476C1CC-E582-11D8-9D30-000A95BD8054@theholymountain.com> References: <20040802200705.I608@dru.domain.org> <083A7F90-E524-11D8-BF86-000D9368D406@lesmuug.org> <20040803102340.P597@dru.domain.org> <1476C1CC-E582-11D8-9D30-000A95BD8054@theholymountain.com> Message-ID: On Tue, 3 Aug 2004, Jesse Callaway wrote: > women. Really, think of getting into the fashion industry as a non-gay > male. > But wait! Does that mean Apple programmers are gay males? Apple's sales go up when they introduce new colours so I figure they must be in the fashion industry ;) Kidding aside, I think one of the main problems is how programming is viewed. You can view it from the user space or the problem space. The difference being "what am I trying to accomplish?" vs. "What tool should I use?". It's sort of like the difference between O-O programming, where you try to write code that models real world objects or concepts, and procedural programming where you only think in terms of data structures and algorithms; fundamentally they are the same, but you think about them differently. I think we need radically more "thinking like users who just want to get their work done" to attract women to programming. Here's an example: look at the various spam filtering/blacklisting utilities out there (nothing spurs creativity like being bombarded with gibberish, it seems). They are invariably small standalone utilities that blacklist or tag spam as it is detected. However, there is no smoothly integrated solution -- you have to hand-stitch them together with procmail or amavis. It all works, yes, but by the time you've put it all together, you would have been better off just changing email addresses and getting on with your life. And finally, if this post wasn't already long enough, I refer you to this interesting thread in the Python Edu-SIG mailing list "Girls, women and Programming (- and Python)": http://mail.python.org/pipermail/edu-sig/2002-August/002137.html Ciao --Louis From jesse Tue Aug 3 16:30:45 2004 From: jesse (Jesse Callaway) Date: Tue, 3 Aug 2004 16:30:45 -0400 Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: References: <20040802200705.I608@dru.domain.org> <083A7F90-E524-11D8-BF86-000D9368D406@lesmuug.org> <20040803102340.P597@dru.domain.org> <1476C1CC-E582-11D8-9D30-000A95BD8054@theholymountain.com> Message-ID: On Aug 3, 2004, at 4:16 PM, Louis Bertrand wrote: > On Tue, 3 Aug 2004, Jesse Callaway wrote: > >> women. Really, think of getting into the fashion industry as a non-gay >> male. >> > But wait! Does that mean Apple programmers are gay males? Apple's sales > go up when they introduce new colours so I figure they must be in the > fashion industry ;) > > Kidding aside, I think one of the main problems is how programming is > viewed. You can view it from the user space or the problem space. > The difference being "what am I trying to accomplish?" vs. "What tool > should I use?". It's sort of like the difference between O-O > programming, > where you try to write code that models real world objects or concepts, > and procedural programming where you only think in terms of data > structures > and algorithms; fundamentally they are the same, but you think about > them > differently. I think we need radically more "thinking like users who > just > want to get their work done" to attract women to programming. > > Here's an example: look at the various spam filtering/blacklisting > utilities out there (nothing spurs creativity like being bombarded > with gibberish, it seems). They are invariably small standalone > utilities > that blacklist or tag spam as it is detected. However, there is no > smoothly integrated solution -- you have to hand-stitch them together > with procmail or amavis. It all works, yes, but by the time you've put > it all together, you would have been better off just changing email > addresses and getting on with your life. > > And finally, if this post wasn't already long enough, I refer you to > this interesting thread in the Python Edu-SIG mailing list "Girls, > women and Programming (- and Python)": > http://mail.python.org/pipermail/edu-sig/2002-August/002137.html > > Ciao > --Louis > > > Well if German girls are taking Python classes I think that's almost far enough. It's spawning the interest and creating a "whole new world" (don't get scared, me spitting out the window is a whole new world...) basically and environment where girls and computers are cool. (may I remind us that it's yet again a new world since this email started) Maybe this change of environment is happening rapidly enough to be somewhat acceptable.... maybe it's not. I think numbers or other analysis that come out of this report may be a good bellwether. But the BSD's. Are BSD users more friendly and is it closer to this ideal environment? I'll admit, I don't know. I haven't tried commiting code as a male, let alone as a female. From chrisc Tue Aug 3 23:34:35 2004 From: chrisc (Chris Coleman) Date: Tue, 3 Aug 2004 22:34:35 -0500 Subject: [nycbug-talk] Advocacy.daemonnews.org Message-ID: <34F0711C-E5C7-11D8-979A-000393A620A4@daemonnews.org> Hi, I'm putting together a BSD advocacy resource site. I'm trying to flesh it out a bit before I really start marketing it. I've expanded the categories and added a few articles so far, but it needs quite a bit more. I'm hoping you will take a look at it and help me fill in the areas that are of most interest to you. Chris Coleman Editor in Chief Daemon News http://www.daemonnews.org BSD Mall http://www.bsdmall.com Print Magazine http://magazine.daemonnews.org From ike Wed Aug 4 03:19:43 2004 From: ike (Isaac Levy) Date: Wed, 4 Aug 2004 03:19:43 -0400 Subject: [nycbug-talk] where to find vt220 terminal keyboard? Message-ID: Hi all, I just snagged a DEC vt220 terminal for 20 bucks- but it doesn't have a keyboard- (and no usb port either ) - does anyone know where I can get a keyboard for this thing on the cheap? Rocket- .ike From pete Wed Aug 4 08:12:01 2004 From: pete (pete wright) Date: Wed, 4 Aug 2004 08:12:01 -0400 Subject: [nycbug-talk] where to find vt220 terminal keyboard? In-Reply-To: References: Message-ID: <7DA3EEBA-E60F-11D8-A629-000393BC62B8@nomadlogic.org> On Aug 4, 2004, at 3:19 AM, Isaac Levy wrote: > Hi all, > > I just snagged a DEC vt220 terminal for 20 bucks- but it doesn't have > a keyboard- (and no usb port either ) - does anyone know where I > can get a keyboard for this thing on the cheap? ebay? -p From jschauma Wed Aug 4 10:26:19 2004 From: jschauma (Jan Schaumann) Date: Wed, 4 Aug 2004 10:26:19 -0400 Subject: [nycbug-talk] Advocacy.daemonnews.org In-Reply-To: <34F0711C-E5C7-11D8-979A-000393A620A4@daemonnews.org> References: <34F0711C-E5C7-11D8-979A-000393A620A4@daemonnews.org> Message-ID: <20040804142619.GA3497@netmeister.org> Chris Coleman wrote: > I'm putting together a BSD advocacy resource site. You may want to post a message to netbsd-advocacy at netbsd.org. -Jan -- I always said there was something fundamentally wrong with the universe. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 186 bytes Desc: not available Url : http://lists.nycbug.org/pipermail/talk/attachments/20040804/95762a6e/attachment.bin From trish Wed Aug 4 10:52:46 2004 From: trish (Trish Lynch) Date: Wed, 4 Aug 2004 10:52:46 -0400 (EDT) Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <20040802200705.I608@dru.domain.org> References: <20040802200705.I608@dru.domain.org> Message-ID: <20040804104546.B74934@ultra.bsdunix.net> On Mon, 2 Aug 2004, Dru wrote: > > >> It's sad that these were your findings. I guess BSD users live in a more > >> sheltered part of geek-space. While I've had to wear my flame-suit a few > >> times over technical disagreements, I've never experienced anything > >> close to sexual harrassment. My name maybe gender neutral, but the > >> community certainly knows that I'm female. > > >I'm just speculating here, but I wonder if there are any connections > >between the BSD community's friendliness, the fact that it didn't > >bandwagon nearly as dramatically as some other projects, and Apple's > >adoption of it. Apple certainly has a long history of caring more about > >"soft" issues than most other computer companies; it's hard to imagine > >that culture co-operating with the slash 'n' burn of Slashdot... > Bullshit, the Slashdot team in general were very welcoming to the women on our team, we had 3 women on the network team, including one that was going from male to female (myself). Never once did I feel like women were cut short... there just weren't many of them. Now the readers on the other hand.... but almost none of those readers are the actual "Open Source Community" (and I say it like that, because its equal to the "Gay Community", "Lesbian Community", and "Queer Community", its a large group of people with a common bond or interest, interested in accomplishing some goal...), they were ..... admirers of a sort, wannabes, little haxx0r punks, who knew very little... many of them grew up, but they didn't lose the immature streak. I don't have high hopes for the "Slashdot Weenies" Now to answer about the BSD community, which I've been around for a LONG time, it seems to be more accepting to freaks, geeks, queer and gender bending people, I suspect this is because of Kirk and Eric, but there are plenty other gay, lesbian, bi, and transgendered people in the BSD community. I'd like to think, as long as you meet the technical standard and/or are willing to learn to step up to that, whether it be in code, documentation, or advocacy, since all three are important to the life and growth of a project.... it doesn't matter if you're XX, XY, ZYX, VDXY, or come from Mars. I've generally felt that overall, getting past the initial "oooooh, its a girl!" thing, that it didn't matter who you were, as long as your work was good. There are many women in BSD history... Margo Seltzer (Berkeley DB) being one giant. I feel that, from where I come from, Open Source, Leather, and Queer Communities, that the study of sociology within subcultures is really interesting to say the least, but I'd say this research did not have enough of a sample to be conclusive. -Trish -- Trish Lynch trish at bsdunix.net Ecartis Core Team trish at listmistress.org EFNet IRC Operator/SysAdmin @ irc.dkom.at AilleCat at EFNet Key fingerprint = 781D 2B47 AA4B FC88 B919 0CD6 26B2 1D62 6FC1 FF16 From trish Wed Aug 4 10:58:24 2004 From: trish (Trish Lynch) Date: Wed, 4 Aug 2004 10:58:24 -0400 (EDT) Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <410F0B7D.6050807@nomadlogic.org> References: <20040802200705.I608@dru.domain.org> <20040802222804.1fe59775@bogomips.optonline.net> <410F0B7D.6050807@nomadlogic.org> Message-ID: <20040804105529.Y74934@ultra.bsdunix.net> On Mon, 2 Aug 2004, Pete Wright wrote: > > yea i'm not too sure about that. there are alot of gnu/linux developers > that have been around for a *long* time. Maybe the user base has that > feeling about that, or even the /. crowd, but I would not say that that > is a fair picture to paint of the core devs on the kernel team, or even > alot of the people that work with linux in different ways (Jim Gettys > who helped create the X windows system at MIT for example, or even Keith > Packard, Donal Becker). look i'm trying to flame here, i just think we > should keep things in perspective... > Yeah, I used to work with Ted T'so at VA Linux, well he worked out of his house, but we used to get together fairly regularly for dinner, and always had a great time. It was always interesting how much he felt Linux should "steal" from BSD because it was innovative, new, or just plain "made sense". He actually wrote a BSD file style config file for his machines that essentially then ran a script and converted it into a format of the ".config" file in the kernel source directory, because he figured the BSD style of configuration of a kernel made more sense. -Trish -- Trish Lynch trish at bsdunix.net Ecartis Core Team trish at listmistress.org EFNet IRC Operator/SysAdmin @ irc.dkom.at AilleCat at EFNet Key fingerprint = 781D 2B47 AA4B FC88 B919 0CD6 26B2 1D62 6FC1 FF16 From george Wed Aug 4 11:07:23 2004 From: george (G.Rosamond) Date: Wed, 4 Aug 2004 11:07:23 -0400 Subject: [nycbug-talk] Re: Women in Open Source (fwd) In-Reply-To: <20040804104546.B74934@ultra.bsdunix.net> References: <20040802200705.I608@dru.domain.org> <20040804104546.B74934@ultra.bsdunix.net> Message-ID: Woohoo. . .'talk' is alive! On Aug 4, 2004, at 10:52 AM, Trish Lynch wrote: > On Mon, 2 Aug 2004, Dru wrote: > >> >>>> It's sad that these were your findings. I guess BSD users live in a >>>> more >>>> sheltered part of geek-space. While I've had to wear my flame-suit >>>> a few >>>> times over technical disagreements, I've never experienced anything >>>> close to sexual harrassment. My name maybe gender neutral, but the >>>> community certainly knows that I'm female. >> >>> I'm just speculating here, but I wonder if there are any connections >>> between the BSD community's friendliness, the fact that it didn't >>> bandwagon nearly as dramatically as some other projects, and Apple's >>> adoption of it. Apple certainly has a long history of caring more >>> about >>> "soft" issues than most other computer companies; it's hard to >>> imagine >>> that culture co-operating with the slash 'n' burn of Slashdot... >> > > Bullshit, the Slashdot team in general were very welcoming to the > women on > our team, we had 3 women on the network team, including one that was > going > from male to female (myself). Never once did I feel like women were cut > short... there just weren't many of them. I don't think any reference was made to the staff at Slashdot. . .it was a reference to the posters and those who self-identify as the Slashdot community at-large. > Now the readers on the other hand.... but almost none of those readers > are > the actual "Open Source Community" (and I say it like that, because its > equal to the "Gay Community", "Lesbian Community", and "Queer > Community", > its a large group of people with a common bond or interest, interested > in > accomplishing some goal...), they were ..... admirers of a sort, > wannabes, > little haxx0r punks, who knew very little... many of them grew up, but > they didn't lose the immature streak. Of course. . .no argument here. . .a differentiation does need to be made between the Slashdot operators (none of whom I know personally, although I am fond of the appreciation for the Who) and the generally non-technical wage-earners who dominate the posts. . . > > I don't have high hopes for the "Slashdot Weenies" > Phew. . . > Now to answer about the BSD community, which I've been around for a > LONG > time, it seems to be more accepting to freaks, geeks, queer and gender > bending people, I suspect this is because of Kirk and Eric, but there > are > plenty other gay, lesbian, bi, and transgendered people in the BSD > community. I'd like to think, as long as you meet the technical > standard > and/or are willing to learn to step up to that, whether it be in code, > documentation, or advocacy, since all three are important to the life > and > growth of a project.... it doesn't matter if you're XX, XY, ZYX, VDXY, > or > come from Mars. I've generally felt that overall, getting past the > initial > "oooooh, its a girl!" thing, that it didn't matter who you were, as > long > as your work was good. There are many women in BSD history... Margo > Seltzer (Berkeley DB) being one giant. No technical community is perfect, but there is definitely many degrees of difference between the BSD world and the others. . . The reality is that women are very much sidelined in the larger technical world, and this is reflected in the low numbers of women at BSD events in general, including NYCBUG. This goes back, I would argue, to a number of factors including the deemphasis on math and science for young women moving through the education system. > I feel that, from where I come from, Open Source, Leather, and Queer > Communities, that the study of sociology within subcultures is really > interesting to say the least, but I'd say this research did not have > enough of a sample to be conclusive. Interesting, yes. Unfortunately, technical communities see themselves as outside or above society, so it's a bit difficult. . . g From kstarsinic Wed Aug 4 13:16:54 2004 From: kstarsinic (Kurt Starsinic) Date: Wed, 4 Aug 2004 13:16:54 -0400 Subject: [nycbug-talk] where to find vt220 terminal keyboard? In-Reply-To: References: Message-ID: <3cf4c086040804101639b2be9d@mail.gmail.com> On Wed, 4 Aug 2004 03:19:43 -0400, Isaac Levy wrote: > I just snagged a DEC vt220 terminal for 20 bucks- but it doesn't have a > keyboard- (and no usb port either ) - does anyone know where I can > get a keyboard for this thing on the cheap? You might try here: http://www.cs.utk.edu/~shuford/terminal/various.html#dealer . . . which I found here: http://www.cs.utk.edu/~shuford/terminal/dec.html Good luck, Kurt From kit Wed Aug 4 14:36:25 2004 From: kit (Kit Halsted) Date: Wed, 4 Aug 2004 14:36:25 -0400 Subject: [nycbug-talk] where to find vt220 terminal keyboard? In-Reply-To: References: Message-ID: Hey Ike: I got a keyboard from eBay for the VT-320 I found on the street. Then I had lots of fun trying to dig up an MMJ connector so I could wire up a serial cable, followed by several lessons on the difference between modern terminal emulators & not-so-modern terminals... What the Sparc 4 expected when set to VT-100 & what the VT-320 spat out in VT-100 mode were pretty different. It was kinda fun, but I ended up using a Keyspan USB<->Serial dongle to hook my PowerBook up to serial on the Sun so I could copy & paste. -Kit At 3:19 AM -0400 8/4/04, Isaac Levy wrote: >Hi all, > >I just snagged a DEC vt220 terminal for 20 bucks- but it doesn't >have a keyboard- (and no usb port either ) - does anyone know >where I can get a keyboard for this thing on the cheap? > >Rocket- >.ike -- "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin "...qui desiderat pacem, praeparet bellum" (...if you would have peace, be prepared for war) -Flavius Vegetius Renatus From marco Wed Aug 4 16:31:20 2004 From: marco (marco at metm.org) Date: Wed, 4 Aug 2004 16:31:20 -0400 Subject: [nycbug-talk] Installfest this friday Message-ID: <20040804203119.GE2216@metm.org> Hello everyone, Sorry I didn't re-announce sooner. I've been busy... We are on for this friday. I've been getting some emails about directions, so if you need 'em let me know. A reminder, I have some extra gear, but routers/switches, monitors, keyboards are welcome especially if we get alot of installees. I have DSL. 1 4 port router. 1 extra monitor. 2 keyboards. 1-2 powerstrips. Some extra ethernet cables. Large table and large loft. Ample parking on the street (this is Brooklyn unless there is a large party at the club down the street, you should be able to park on my street, otherwise pretty close by) You should probably bring your own power-cords. I have iso's of FreeBSD 4.10 and 5.2 as well as OpenBSD 3.5 Bring your install disks if you want to try something different. And if you can a monitor (sorry) My address and directions are already online: http://lists.nycbug.org/pipermail/talk/2004-June/001649.html But I am happy to email them to you if you need. -- Marco From dlavigne6 Wed Aug 4 16:36:07 2004 From: dlavigne6 (Dru) Date: Wed, 4 Aug 2004 16:36:07 -0400 (EDT) Subject: [nycbug-talk] http://www.oreillynet.com/pub/wlg/5367 Message-ID: <20040804163519.J575@dru.domain.org> My latest O'Reilly blog... If I have time tomorrow, I'll be blogging the Women in Open Source article. Dru From marco Thu Aug 5 00:00:31 2004 From: marco (Marco Scoffier) Date: Thu, 5 Aug 2004 00:00:31 -0400 Subject: [nycbug-talk] Installfest Fri. Aug 6th 6pm-??? In-Reply-To: <20040804203119.GE2216@metm.org> References: <20040804203119.GE2216@metm.org> Message-ID: <20040805040030.GA4513@metm.org> It has come to my attention that no times have been posted. So I am going to throw out: 6pm till late. I imagine most people will filter in, maybe we can hit a high-point around 10 when I can go get the pizza's (grimaldi's closes at 11 I think) If you are coming with something to install I suggest you come earlish, because come later, I imagine much less will get done. -- Marco From george Thu Aug 5 02:38:40 2004 From: george (G.Rosamond) Date: Thu, 5 Aug 2004 02:38:40 -0400 Subject: [nycbug-talk] Installfest Fri. Aug 6th 6pm-??? In-Reply-To: <20040805040030.GA4513@metm.org> References: <20040804203119.GE2216@metm.org> <20040805040030.GA4513@metm.org> Message-ID: <16BF14FE-E6AA-11D8-8F03-000D9328615E@sddi.net> On Aug 5, 2004, at 12:00 AM, Marco Scoffier wrote: > It has come to my attention that no times have been posted. So I am > going to throw out: > > 6pm till late. > > I imagine most people will filter in, maybe we can hit a high-point > around 10 when I can go get the pizza's (grimaldi's closes at 11 I > think) If you are coming with something to install I suggest you come > earlish, because come later, I imagine much less will get done. > > Sounds good Marco. . .I'll see you there. . . +1 g From lists Thu Aug 5 08:03:35 2004 From: lists (michael) Date: Thu, 5 Aug 2004 08:03:35 -0400 Subject: [nycbug-talk] mail gateway Message-ID: <20040805080335.14fd8b36@delinux.abwatley.com> I'm setting up a new mail gateway using OpenBSD. I got the OS installed, and the MTA installed. Now I'm looking at filtering the mail. A lot of posts to the OpenBSD mailing lists suggest: Fairly-Secure Anti-SPAM Gateway By Scott Vintinner http://www.flakshack.com/anti-spam/ I have set up other mail servers with Postfix, SpamAssassin, and Razor, and they ran well. So I thought this would not be too much of a stretch for me. The only thing giving me trouble is all the perl requirements. Specifically amavisd-new - http://www.ijs.si/software/amavisd/ requires p5-BerkeleyDB. Yea, I hear ya... yesterday, I thought that was trivial, too. I searched packages and ports and didn't see it. I tried perls install utility MCPAN, and it finds it, but fails.. in fact, MCPAN fails on everything. But that is for another day Before I go any further, has anyone already built a port for that? Michael -- --- From hans Thu Aug 5 10:01:20 2004 From: hans (Hans Zaunere) Date: Thu, 5 Aug 2004 07:01:20 -0700 Subject: [nycbug-talk] Future Meeting: AMP on BSD Message-ID: <41EE526EC2D3C74286415780D3BA9F870371DA08@ehost011-1.exch011.intermedia.net> Hi all, I'll be giving a presentation on AMP (Apache/MySQL/PHP) running under BSD on Sept. 1st. I wanted to ping this list to get some feedback about what general topics I should cover. Installation and configuring? From source? From ports? Security? Writing a simple application? Installing pre-written applications? What do people want to learn about... any feedback would be appreciated. --- Hans Zaunere President New York PHP http://nyphp.org From pete Thu Aug 5 11:09:20 2004 From: pete (Pete Wright) Date: Thu, 05 Aug 2004 10:09:20 -0500 Subject: [nycbug-talk] Future Meeting: AMP on BSD In-Reply-To: <41EE526EC2D3C74286415780D3BA9F870371DA08@ehost011-1.exch011.intermedia.net> References: <41EE526EC2D3C74286415780D3BA9F870371DA08@ehost011-1.exch011.intermedia.net> Message-ID: <41124DA0.3000908@nomadlogic.org> Hans Zaunere wrote: >Hi all, > >I'll be giving a presentation on AMP (Apache/MySQL/PHP) running under >BSD on Sept. 1st. I wanted to ping this list to get some feedback about >what general topics I should cover. > >Installation and configuring? From source? From ports? > >Security? > >Writing a simple application? Installing pre-written applications? > >What do people want to learn about... any feedback would be appreciated. > > > I've seen several "helper" applications out there that use the GD library to draw graphs to represent statistics dynamicly in PHP (for example a bacula web frontend has just been released that will draw pretty bar graphs of how much data was backed up last night, etc). So that would be interesting for me, if you were going to show a demo of building an app. Secure php/mysql coding practices is also something that may of interest to people as well. -pete -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From lists Thu Aug 5 12:12:54 2004 From: lists (michael) Date: Thu, 5 Aug 2004 12:12:54 -0400 Subject: [nycbug-talk] mail gateway In-Reply-To: <20040805080335.14fd8b36@delinux.abwatley.com> References: <20040805080335.14fd8b36@delinux.abwatley.com> Message-ID: <20040805121254.27efb5f4@delinux.abwatley.com> On Thu, 5 Aug 2004 08:03:35 -0400 michael wrote: [SOLVED] I had to edit the config file manually, then make etc. 1. locate installed BerkeleyDB files. 2. edit perl config file prior to make ../.cpan/build/BerkeleyDB-0.25/config.in INCLUDE = /usr/local/include/db4 LIB = /usr/local/lib/db4 3. perl Makefile.PL 4. make 5. make test 6. make install 7. /usr/local/sbin/amavisd debug ... look for errors in each step.. Michael -- --- From pete Thu Aug 5 13:28:12 2004 From: pete (Pete Wright) Date: Thu, 05 Aug 2004 12:28:12 -0500 Subject: [nycbug-talk] mail gateway In-Reply-To: <20040805121254.27efb5f4@delinux.abwatley.com> References: <20040805080335.14fd8b36@delinux.abwatley.com> <20040805121254.27efb5f4@delinux.abwatley.com> Message-ID: <41126E2C.2070607@nomadlogic.org> michael wrote: >On Thu, 5 Aug 2004 08:03:35 -0400 >michael wrote: > >[SOLVED] > >I had to edit the config file manually, then make etc. > >1. locate installed BerkeleyDB files. >2. edit perl config file prior to make > ../.cpan/build/BerkeleyDB-0.25/config.in > INCLUDE = /usr/local/include/db4 > LIB = /usr/local/lib/db4 >3. perl Makefile.PL >4. make >5. make test >6. make install >7. /usr/local/sbin/amavisd debug > >... look for errors in each step.. >Michael > > > > > > hey michael, when you get this thing up and running i'd love to hear how it goes. the site you referenced looks like a nice tutorial. if it goes well, this might even be a nice meeting topic, or something to add to the library. -p -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From spork Thu Aug 5 13:10:54 2004 From: spork (Charles Sprickman) Date: Thu, 5 Aug 2004 13:10:54 -0400 (EDT) Subject: [nycbug-talk] Future Meeting: AMP on BSD In-Reply-To: <41EE526EC2D3C74286415780D3BA9F870371DA08@ehost011-1.exch011.intermedia.net> References: <41EE526EC2D3C74286415780D3BA9F870371DA08@ehost011-1.exch011.intermedia.net> Message-ID: <20040805130742.W58435@toad.nat.fasttrackmonkey.com> On Thu, 5 Aug 2004, Hans Zaunere wrote: > I'll be giving a presentation on AMP (Apache/MySQL/PHP) running under > BSD on Sept. 1st. I wanted to ping this list to get some feedback about > what general topics I should cover. > > What do people want to learn about... any feedback would be appreciated. I'd love to hear more about how to make mysql run right. It's an ongoing issue that comes up on the lists, and I for one still see issues under moderate load with Linux Threads and the "skip-name-resolve" option. Also some good tips on configuring php beyond the port build; what do you recommend changing in the stock php.ini, what are some performance tips, and which of the various accellerators do you find work best (turck-mmcache looked good, but that project apparently died)? Thanks, Charles > --- > Hans Zaunere > President > New York PHP > http://nyphp.org > > > > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month > From dave-dated-1092332947.9059ae Thu Aug 5 13:48:50 2004 From: dave-dated-1092332947.9059ae (Dave Steinberg) Date: Thu, 5 Aug 2004 13:48:50 -0400 Subject: Fwd: [nycbug-talk] Future Meeting: AMP on BSD Message-ID: Meant to hit reply-all... >> From an OpenBSD-centric position, I'd be interested in hearing about >> installing pre-written applications inside the chroot'ed environment. >> In a large app, finding all the dependencies can be tricky - any tips >> or techniques? What about programs that use the mail() function - is >> there a way to support this without installing a shell inside the >> chroot? Any other functions that don't play nicely? >> >> I'm less interested in a simple application - there's php howto's and >> books for that, and doesn't seem very bsd specific to me. >> >> Regards, >> -- >> Dave Steinberg >> http://www.geekisp.com/ From george Thu Aug 5 15:37:57 2004 From: george (George Georgalis) Date: Thu, 5 Aug 2004 15:37:57 -0400 Subject: [nycbug-talk] last nights's nycebug meeting Message-ID: <20040805193757.GF19345@trot.local> Hi all great meeting last night, not to mention the following 6 hrs of drinking and belligerence -- well pointless arguments at least. True to open spirit, I'm sending links to the via boards, as asked. http://www.viavpsd.com/product/ I've most recently setup an EPIA M10000, looks like the new ML has a better integrated video, the CL has two net interfaces for firewalls. I chose via because the board runs at 17 watts, while providing 1Ghz cpu, 266 Mhz memory bus, a quiet fan and all integrated components, including 1394 firewire, 2 133 ata controllers, 5 channel audio (or spdif), video in/out and dedicated hardware for decoding DVDs (XFree86 supports it). No serial boot, but net-booting is in bios and from there your kernel can give serial access. My setup is with a $25 sata controller and $130, 160Gb sata drive. And I use the http://idotpc.com "ITX-PC Aluminum 200W Silent Cube" which looks much nicer than the picture. 8x8x12" Is small, yet I have 2 disks in there in addition to full size cdrom -- it's all quiet and cool. I'm getting 42-50MB/sec in disk benchmarks. I've heard of people using striped raid sata for 100Mb/sec video capture. Oh, the cpu is new arch but PII/mmx compatible. It looks like via has new high(er) performance chipset http://www.via.com.tw/en/c-series/cn400.jsp included integrated sata, faster ram, hdtv.... Someone said via publishes their hardware api, which makes sense because all their drivers have been supported for a while (at least in linux) Networking on Linux? Some of you asked, maybe I'll be up to speed on BSD soon: setting up bridging in linux, allows iptables packet filtering on a firewall without an internet address, accept I did give it an ip for remote administration... at one point I had a lan on eth0 in addition to the filtered dmz with internet ip addresses. brctl addbr br0 brctl addif br0 eth1 brctl addif br0 eth2 ip link set lo up ip link set br0 up ip link set eth0 up ip link set eth1 up ip link set eth2 up ip addr add 127.0.0.1/8 brd + label lo dev lo ip addr add 192.168.0.1/24 brd + label eth0 dev eth0 ip addr add 11.22.33.1/24 brd + label br0 dev br0 ip route add default via 11.22.00.1 dev br0 echo 1 > /proc/sys/net/ipv4/conf/all/proxy_arp echo 1 > /proc/sys/net/ipv4/ip_forward ip neighbor flush dev eth0 # better do it on your router too! ip neighbor flush dev eth1 # better do it on your router too! The brctl program is part of the bridge-utils package. "brd +" means calculate and set the broadcast address. Below is the usage for tc and ip. From the iproute package, the most advanced traffic control and ip networking programs available under linux, certainly seem to have the most elaborate command line usage... I think they are by the same author who wrote most of linux networking. http://linux-ip.net/gl/ip-cref/ http://www.wlug.org.nz/tc-cbq%288%29 neat wiki at www.wlug.org.nz -- look what it does... http://www.wlug.org.nz/tc-cbq(8) A qdisc howto outlines a typical application, (this howto is probably the best for linux networking) http://lartc.org/howto/lartc.qdisc.classful.html#AEN939 The ip traffic within the kernel for bridging and qdisc is by no means direct, works "well enough" but doesn't look clean on a diagram. Maybe *BSD networking/firewalling is a little cleaner??? // George + tc help Usage: tc [ OPTIONS ] OBJECT { COMMAND | help } where OBJECT := { qdisc | class | filter } OPTIONS := { -s[tatistics] | -d[etails] | -r[aw] | -b[atch] file } + tc qdisc help Usage: tc qdisc [ add | del | replace | change | get ] dev STRING [ handle QHANDLE ] [ root | ingress | parent CLASSID ] [ estimator INTERVAL TIME_CONSTANT ] [ [ QDISC_KIND ] [ help | OPTIONS ] ] tc qdisc show [ dev STRING ] [ingress] Where: QDISC_KIND := { [p|b]fifo | tbf | prio | cbq | red | etc. } OPTIONS := ... try tc qdisc add help + tc class help Usage: tc class [ add | del | change | get ] dev STRING [ classid CLASSID ] [ root | parent CLASSID ] [ [ QDISC_KIND ] [ help | OPTIONS ] ] tc class show [ dev STRING ] [ root | parent CLASSID ] Where: QDISC_KIND := { prio | cbq | etc. } OPTIONS := ... try tc class add help + tc filter help Usage: tc filter [ add | del | change | get ] dev STRING [ pref PRIO ] [ protocol PROTO ] [ estimator INTERVAL TIME_CONSTANT ] [ root | classid CLASSID ] [ handle FILTERID ] [ [ FILTER_TYPE ] [ help | OPTIONS ] ] tc filter show [ dev STRING ] [ root | parent CLASSID ] Where: FILTER_TYPE := { rsvp | u32 | fw | route | etc. } FILTERID := ... format depends on classifier, see there OPTIONS := ... try tc filter add help + ip help Usage: ip [ OPTIONS ] OBJECT { COMMAND | help } where OBJECT := { link | addr | route | rule | neigh | tunnel | maddr | mroute | monitor } OPTIONS := { -V[ersion] | -s[tatistics] | -r[esolve] | -f[amily] { inet | inet6 | ipx | dnet | link } | -o[neline] } + ip link help Usage: ip link set DEVICE { up | down | arp { on | off } | dynamic { on | off } | multicast { on | off } | txqueuelen PACKETS | name NEWNAME | address LLADDR | broadcast LLADDR | mtu MTU } ip link show [ DEVICE ] + ip addr help Usage: ip addr {add|del} IFADDR dev STRING ip addr {show|flush} [ dev STRING ] [ scope SCOPE-ID ] [ to PREFIX ] [ FLAG-LIST ] [ label PATTERN ] IFADDR := PREFIX | ADDR peer PREFIX [ broadcast ADDR ] [ anycast ADDR ] [ label STRING ] [ scope SCOPE-ID ] SCOPE-ID := [ host | link | global | NUMBER ] FLAG-LIST := [ FLAG-LIST ] FLAG FLAG := [ permanent | dynamic | secondary | primary | tentative | deprecated ] + ip route help Usage: ip route { list | flush } SELECTOR ip route get ADDRESS [ from ADDRESS iif STRING ] [ oif STRING ] [ tos TOS ] ip route { add | del | change | append | replace | monitor } ROUTE SELECTOR := [ root PREFIX ] [ match PREFIX ] [ exact PREFIX ] [ table TABLE_ID ] [ proto RTPROTO ] [ type TYPE ] [ scope SCOPE ] ROUTE := NODE_SPEC [ INFO_SPEC ] NODE_SPEC := [ TYPE ] PREFIX [ tos TOS ] [ table TABLE_ID ] [ proto RTPROTO ] [ scope SCOPE ] [ metric METRIC ] INFO_SPEC := NH OPTIONS FLAGS [ nexthop NH ]... NH := [ via ADDRESS ] [ dev STRING ] [ weight NUMBER ] NHFLAGS OPTIONS := FLAGS [ mtu NUMBER ] [ advmss NUMBER ] [ rtt NUMBER ] [ rttvar NUMBER ] [ window NUMBER] [ cwnd NUMBER ] [ ssthresh REALM ] [ realms REALM ] TYPE := [ unicast | local | broadcast | multicast | throw | unreachable | prohibit | blackhole | nat ] TABLE_ID := [ local | main | default | all | NUMBER ] SCOPE := [ host | link | global | NUMBER ] FLAGS := [ equalize ] NHFLAGS := [ onlink | pervasive ] RTPROTO := [ kernel | boot | static | NUMBER ] + ip rule help Usage: ip rule [ list | add | del ] SELECTOR ACTION SELECTOR := [ from PREFIX ] [ to PREFIX ] [ tos TOS ] [ fwmark FWMARK ] [ dev STRING ] [ pref NUMBER ] ACTION := [ table TABLE_ID ] [ nat ADDRESS ] [ prohibit | reject | unreachable ] [ realms [SRCREALM/]DSTREALM ] TABLE_ID := [ local | main | default | NUMBER ] + ip neigh help Usage: ip neigh { add | del | change | replace } { ADDR [ lladdr LLADDR ] [ nud { permanent | noarp | stale | reachable } ] | proxy ADDR } [ dev DEV ] ip neigh {show|flush} [ to PREFIX ] [ dev DEV ] [ nud STATE ] + ip tunnel help Usage: ip tunnel { add | change | del | show } [ NAME ] [ mode { ipip | gre | sit } ] [ remote ADDR ] [ local ADDR ] [ [i|o]seq ] [ [i|o]key KEY ] [ [i|o]csum ] [ ttl TTL ] [ tos TOS ] [ [no]pmtudisc ] [ dev PHYS_DEV ] $ ip addr 1: lo: mtu 16436 qdisc noqueue link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo 2: shaper0: <> mtu 1500 qdisc noop qlen 10 link/ether 3: eth0: mtu 1500 qdisc pfifo_fast qlen 1000 link/ether 00:40:f4:70:91:24 brd ff:ff:ff:ff:ff:ff inet 192.168.80.30/24 brd 192.168.80.255 scope global eth0 inet 192.168.80.33/24 brd 192.168.80.255 scope global secondary eth0:3 4: teql0: mtu 1500 qdisc noop qlen 100 link/void $ ip route 192.168.80.0/24 dev eth0 proto kernel scope link src 192.168.80.30 default via 192.168.80.10 dev eth0 src 192.168.80.33 default via 192.168.80.10 dev eth0 -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From george Thu Aug 5 15:44:00 2004 From: george (george magiros) Date: Thu, 5 Aug 2004 15:44:00 -0400 (EDT) Subject: [nycbug-talk] soekris (general io ports) Message-ID: <200408051944.i75Ji072025671@localhost.localdomain> FYI, I found out that most (all?) of the boards have general io pins onboard. This is probably old knowledge but anyway these pins come off from the processor (AMD ElanSC520). Only a freebsd driver seems to exist to drive them. Someone made a lcd interface using these pins (see http://phk.freebsd.dk/soekris/, and picture http://phk.freebsd.dk/soekris/lcd/soekris-lcd.png) gm From pete Thu Aug 5 16:59:15 2004 From: pete (Pete Wright) Date: Thu, 05 Aug 2004 15:59:15 -0500 Subject: [nycbug-talk] soekris (general io ports) In-Reply-To: <200408051944.i75Ji072025671@localhost.localdomain> References: <200408051944.i75Ji072025671@localhost.localdomain> Message-ID: <41129FA3.7060500@nomadlogic.org> george magiros wrote: >FYI, I found out that most (all?) of the boards have >general io pins onboard. This is probably old knowledge >but anyway these pins come off from the processor (AMD ElanSC520). >Only a freebsd driver seems to exist to drive them. Someone >made a lcd interface using these pins >(see http://phk.freebsd.dk/soekris/, and picture >http://phk.freebsd.dk/soekris/lcd/soekris-lcd.png) > > > execellent links! now i just have to figure out a way to plot bandwidth usage out to an LCD ;) -p -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From pete Thu Aug 5 17:02:21 2004 From: pete (Pete Wright) Date: Thu, 05 Aug 2004 16:02:21 -0500 Subject: [nycbug-talk] last nights's nycebug meeting In-Reply-To: <20040805193757.GF19345@trot.local> References: <20040805193757.GF19345@trot.local> Message-ID: <4112A05D.1020108@nomadlogic.org> George Georgalis wrote: >Hi all > >great meeting last night, not to mention the following 6 hrs of >drinking and belligerence -- well pointless arguments at least. > >True to open spirit, I'm sending links to the via boards, as asked. >http://www.viavpsd.com/product/ > >I've most recently setup an EPIA M10000, looks like the new ML has a >better integrated video, the CL has two net interfaces for firewalls. I >chose via because the board runs at 17 watts, while providing 1Ghz >cpu, 266 Mhz memory bus, a quiet fan and all integrated components, >including 1394 firewire, 2 133 ata controllers, 5 channel audio (or >spdif), video in/out and dedicated hardware for decoding DVDs (XFree86 >supports it). No serial boot, but net-booting is in bios and from >there your kernel can give serial access. My setup is with a $25 sata >controller and $130, 160Gb sata drive. And I use the http://idotpc.com >"ITX-PC Aluminum 200W Silent Cube" which looks much nicer than the >picture. 8x8x12" Is small, yet I have 2 disks in there in addition to >full size cdrom -- it's all quiet and cool. I'm getting 42-50MB/sec >in disk benchmarks. I've heard of people using striped raid sata for >100Mb/sec video capture. Oh, the cpu is new arch but PII/mmx compatible. > > > i am sorta familiar with these boards, are they mini-atx form factor by any chance? These would make a hell of a thin client or X terminal eh? -p -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From hans Thu Aug 5 16:24:58 2004 From: hans (Hans Zaunere) Date: Thu, 5 Aug 2004 13:24:58 -0700 Subject: [nycbug-talk] Future Meeting: AMP on BSD Message-ID: <41EE526EC2D3C74286415780D3BA9F8703799875@ehost011-1.exch011.intermedia.net> > I've seen several "helper" applications out there that use the GD > library to draw graphs to represent statistics dynamicly in PHP (for > example a bacula web frontend has just been released that will draw > pretty bar graphs of how much data was backed up last night, etc). So > that would be interesting for me, if you were going to show a demo of > building an app. Secure php/mysql coding practices is also something That's probably not something I could do in 45-60 minutes, but I could certainly touch on it. There is also a great presentation specifically on the subject: http://nyphp.org/content/presentations/GDintro/ > that may of interest to people as well. Security is always a good topic. I'll definitely touch on some common security oversights when dealing with AMP H From hans Thu Aug 5 16:27:08 2004 From: hans (Hans Zaunere) Date: Thu, 5 Aug 2004 13:27:08 -0700 Subject: [nycbug-talk] Future Meeting: AMP on BSD Message-ID: <41EE526EC2D3C74286415780D3BA9F8703799885@ehost011-1.exch011.intermedia.net> > > I'll be giving a presentation on AMP (Apache/MySQL/PHP) running under > > BSD on Sept. 1st. I wanted to ping this list to get some feedback about > > what general topics I should cover. > > > > What do people want to learn about... any feedback would be appreciated. > > I'd love to hear more about how to make mysql run right. It's an ongoing > issue that comes up on the lists, and I for one still see issues under > moderate load with Linux Threads and the "skip-name-resolve" option. Interesting... which BSD? I run MySQL both with native threads and LinuxThreads on FreeBSD without issue. I'll certainly touch on some of this, and answer any questions people have. > Also some good tips on configuring php beyond the port build; what do you > recommend changing in the stock php.ini, what are some performance tips, > and which of the various accellerators do you find work best > (turck-mmcache looked good, but that project apparently died)? Good points, too (hint: always use php.ini-recommended). H From hans Thu Aug 5 16:29:43 2004 From: hans (Hans Zaunere) Date: Thu, 5 Aug 2004 13:29:43 -0700 Subject: [nycbug-talk] Future Meeting: AMP on BSD Message-ID: <41EE526EC2D3C74286415780D3BA9F870379988D@ehost011-1.exch011.intermedia.net> > >> From an OpenBSD-centric position, I'd be interested in hearing about > >> installing pre-written applications inside the chroot'ed environment. > >> In a large app, finding all the dependencies can be tricky - any tips > >> or techniques? What about programs that use the mail() function - is > >> there a way to support this without installing a shell inside the > >> chroot? Any other functions that don't play nicely? Again, security is a top choice... noted. As far as running in a chroot, there's not much you can do... by nature of a chroot, dependencies need to be within the new root. That said, security is always an important concern, and something I'll cover. H From booleanman Thu Aug 5 17:07:24 2004 From: booleanman (Fred McCann) Date: Thu, 05 Aug 2004 17:07:24 -0400 Subject: [nycbug-talk] Tomcat + JDK 1.4 on FreeBSD Message-ID: <4112A18C.5020903@mac.com> I would like to run tomcat in production on FreeBSD and I'm currently trying to weigh that vs. running it on some distribution of linux. Is anyone on the list currently using java on FreeBSD? If so what are you seeing for performance and how are you running java? Is it one of the linux 1.4 jdks running in linux compatibility mode? Is anyone running the native BSD port? I tried installing the native port last night, but I couldn't get it to take. It was requesting the linux jdk from sun: j2sdk-1_4_2_04-linux-i586.bin Unfortunately the only version I could find on the sun site is: j2sdk-1_4_2_05-linux-i586.bin Which stopped me dead (until I figure away around it). - Fred From george Thu Aug 5 17:22:07 2004 From: george (George Georgalis) Date: Thu, 5 Aug 2004 17:22:07 -0400 Subject: [nycbug-talk] last nights's nycebug meeting In-Reply-To: <4112A05D.1020108@nomadlogic.org> References: <20040805193757.GF19345@trot.local> <4112A05D.1020108@nomadlogic.org> Message-ID: <20040805212207.GH19345@trot.local> On Thu, Aug 05, 2004 at 04:02:21PM -0500, Pete Wright wrote: >George Georgalis wrote: > >>Hi all >> >>great meeting last night, not to mention the following 6 hrs of >>drinking and belligerence -- well pointless arguments at least. >> >>True to open spirit, I'm sending links to the via boards, as asked. >>http://www.viavpsd.com/product/ >> >>I've most recently setup an EPIA M10000, looks like the new ML has a >>better integrated video, the CL has two net interfaces for firewalls. I >>chose via because the board runs at 17 watts, while providing 1Ghz >>cpu, 266 Mhz memory bus, a quiet fan and all integrated components, >>including 1394 firewire, 2 133 ata controllers, 5 channel audio (or >>spdif), video in/out and dedicated hardware for decoding DVDs (XFree86 >>supports it). No serial boot, but net-booting is in bios and from >>there your kernel can give serial access. My setup is with a $25 sata >>controller and $130, 160Gb sata drive. And I use the http://idotpc.com >>"ITX-PC Aluminum 200W Silent Cube" which looks much nicer than the >>picture. 8x8x12" Is small, yet I have 2 disks in there in addition to >>full size cdrom -- it's all quiet and cool. I'm getting 42-50MB/sec >>in disk benchmarks. I've heard of people using striped raid sata for >>100Mb/sec video capture. Oh, the cpu is new arch but PII/mmx compatible. >> >> >> >i am sorta familiar with these boards, are they mini-atx form factor by >any chance? These would make a hell of a thin client or X terminal eh? well yes, and or multimedia jukebox. they look about twice the size of the Soekris boards and require separate memory modules (upto 1 GB). the 600Mhz CL has two net interfaces, fanless cpu, dvd decoder and can be run with 12v powersupply. They were designed for kiosk / automotive / POS (point of sale, credit card processing) applications. Hobbiest put them in everything from Mac SE cases to cigar boxes, http://mini-itx.com/ the next gen north bridge is designed to support GB ethernet, which could bring thin clients to the 5 channel audio, HDTV world... // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From pete Thu Aug 5 18:24:35 2004 From: pete (Pete Wright) Date: Thu, 05 Aug 2004 17:24:35 -0500 Subject: [nycbug-talk] last nights's nycebug meeting In-Reply-To: <20040805212207.GH19345@trot.local> References: <20040805193757.GF19345@trot.local> <4112A05D.1020108@nomadlogic.org> <20040805212207.GH19345@trot.local> Message-ID: <4112B3A3.70801@nomadlogic.org> George Georgalis wrote: >On Thu, Aug 05, 2004 at 04:02:21PM -0500, Pete Wright wrote: > > >>George Georgalis wrote: >> >> >> >>>Hi all >>> >>>great meeting last night, not to mention the following 6 hrs of >>>drinking and belligerence -- well pointless arguments at least. >>> >>>True to open spirit, I'm sending links to the via boards, as asked. >>>http://www.viavpsd.com/product/ >>> >>>I've most recently setup an EPIA M10000, looks like the new ML has a >>>better integrated video, the CL has two net interfaces for firewalls. I >>>chose via because the board runs at 17 watts, while providing 1Ghz >>>cpu, 266 Mhz memory bus, a quiet fan and all integrated components, >>>including 1394 firewire, 2 133 ata controllers, 5 channel audio (or >>>spdif), video in/out and dedicated hardware for decoding DVDs (XFree86 >>>supports it). No serial boot, but net-booting is in bios and from >>>there your kernel can give serial access. My setup is with a $25 sata >>>controller and $130, 160Gb sata drive. And I use the http://idotpc.com >>>"ITX-PC Aluminum 200W Silent Cube" which looks much nicer than the >>>picture. 8x8x12" Is small, yet I have 2 disks in there in addition to >>>full size cdrom -- it's all quiet and cool. I'm getting 42-50MB/sec >>>in disk benchmarks. I've heard of people using striped raid sata for >>>100Mb/sec video capture. Oh, the cpu is new arch but PII/mmx compatible. >>> >>> >>> >>> >>> >>i am sorta familiar with these boards, are they mini-atx form factor by >>any chance? These would make a hell of a thin client or X terminal eh? >> >> > >well yes, and or multimedia jukebox. they look about twice the size of >the Soekris boards and require separate memory modules (upto 1 GB). the >600Mhz CL has two net interfaces, fanless cpu, dvd decoder and can be >run with 12v powersupply. > >They were designed for kiosk / automotive / POS (point of sale, credit >card processing) applications. Hobbiest put them in everything from Mac >SE cases to cigar boxes, http://mini-itx.com/ > >the next gen north bridge is designed to support GB ethernet, which >could bring thin clients to the 5 channel audio, HDTV world... > > > yea these sound really interesting! well i guess i'll have to add this to my list of gadgets that i'll need to check out ;) -pete -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From sunny-ml Thu Aug 5 17:52:14 2004 From: sunny-ml (Sunny Dubey) Date: Thu, 5 Aug 2004 17:52:14 -0400 Subject: [nycbug-talk] Future Meeting: AMP on BSD In-Reply-To: <41EE526EC2D3C74286415780D3BA9F870371DA08@ehost011-1.exch011.intermedia.net> References: <41EE526EC2D3C74286415780D3BA9F870371DA08@ehost011-1.exch011.intermedia.net> Message-ID: <200408051752.15247.sunny-ml@opencurve.org> On Thursday 05 August 2004 10:01, Hans Zaunere wrote: > Hi all, > > I'll be giving a presentation on AMP (Apache/MySQL/PHP) running under > BSD on Sept. 1st. I wanted to ping this list to get some feedback about > what general topics I should cover. > > Installation and configuring? From source? From ports? > > Security? > > Writing a simple application? Installing pre-written applications? > > What do people want to learn about... any feedback would be appreciated. some definitive alternative to mail(). everytime I use, or attempt to use mail(), all the real PHPers jump on my back and rabidly tell me to use some other X, Y, and Z function on the web to replace mail(). Its annoying. (though PHP's mail() has some compatibility issues with postfix, but its largely a postfix issue due to improper documentation, and the postfix author's distaste of a particular sendmail feature (he thinks its broken)) Sunny Dubey From spork Thu Aug 5 18:16:20 2004 From: spork (Charles Sprickman) Date: Thu, 5 Aug 2004 18:16:20 -0400 (EDT) Subject: [nycbug-talk] Future Meeting: AMP on BSD In-Reply-To: <41EE526EC2D3C74286415780D3BA9F8703799885@ehost011-1.exch011.intermedia.net> References: <41EE526EC2D3C74286415780D3BA9F8703799885@ehost011-1.exch011.intermedia.net> Message-ID: <20040805180206.A58435@toad.nat.fasttrackmonkey.com> On Thu, 5 Aug 2004, Hans Zaunere wrote: > > I'd love to hear more about how to make mysql run right. It's an > ongoing > > issue that comes up on the lists, and I for one still see issues under > > moderate load with Linux Threads and the "skip-name-resolve" option. > > Interesting... which BSD? I run MySQL both with native threads and > LinuxThreads on FreeBSD without issue. I'll certainly touch on some of > this, and answer any questions people have. FreeBSD 4.7, 4.8 and 4.9. While going with LinuxThreads gets rid of the "spinning at 99% cpu" problem, I've found that if the box is doing anything else (especially mail delivery w/qmail or sendmail periodically chugging through a queue), mysql just starts timing out on local (socket) or network queries. We're talking both select-only at 15 q/S tops here on a database that only is about 20MB. I recently brought this up on the mysql list with lots of specifics (no, the machine's not swapping, disk io is sane, cpu is not pegged). The one thing that does seem to stand out is that the box spends lots of time in "system" cpu and context switches as qmail spikes, and this seems to be when either threading library starves mysqld and the application (vpopmail) starts timing out. > > Also some good tips on configuring php beyond the port build; what do > you > > recommend changing in the stock php.ini, what are some performance > tips, > > and which of the various accellerators do you find work best > > (turck-mmcache looked good, but that project apparently died)? > > Good points, too (hint: always use php.ini-recommended). Excellent... thanks. If you can live with Turck-mmcache's sig 11's on HUPs, the speed increase on a single purpose application like squirrelmail is staggering. In general, I'm something of a stranger to php.ini and more specifically getting a sane and usable safe-mode config going... Hope you've got four or five hours blocked out for the meeting. :) C > H > > From okan Thu Aug 5 18:19:29 2004 From: okan (Okan Demirmen) Date: Thu, 5 Aug 2004 18:19:29 -0400 Subject: [nycbug-talk] soekris (general io ports) In-Reply-To: <200408051944.i75Ji072025671@localhost.localdomain> References: <200408051944.i75Ji072025671@localhost.localdomain> Message-ID: <20040805221929.GA35274@yinaska.pair.com> On Thu 2004.08.05 at 15:44 -0400, george magiros wrote: > FYI, I found out that most (all?) of the boards have > general io pins onboard. This is probably old knowledge > but anyway these pins come off from the processor (AMD ElanSC520). > Only a freebsd driver seems to exist to drive them. Someone > made a lcd interface using these pins > (see http://phk.freebsd.dk/soekris/, and picture > http://phk.freebsd.dk/soekris/lcd/soekris-lcd.png) also see OpenBSD - gpio(4) and gpoictl(8) - it's in by default. okan -- Okan Demirmen PGP-Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xB3670934 PGP-Fingerprint: 226D B4AE 78A9 7F4E CD2B 1B44 C281 AF18 B367 0934 From george Thu Aug 5 19:20:04 2004 From: george (George Georgalis) Date: Thu, 5 Aug 2004 19:20:04 -0400 Subject: [nycbug-talk] Tomcat + JDK 1.4 on FreeBSD In-Reply-To: <4112A18C.5020903@mac.com> References: <4112A18C.5020903@mac.com> Message-ID: <20040805232004.GI19345@trot.local> On Thu, Aug 05, 2004 at 05:07:24PM -0400, Fred McCann wrote: >I would like to run tomcat in production on FreeBSD and I'm currently >trying to weigh that vs. running it on some distribution of linux. Is >anyone on the list currently using java on FreeBSD? If so what are you >seeing for performance and how are you running java? Is it one of the >linux 1.4 jdks running in linux compatibility mode? Is anyone running >the native BSD port? > >I tried installing the native port last night, but I couldn't get it to >take. It was requesting the linux jdk from sun: > >j2sdk-1_4_2_04-linux-i586.bin > >Unfortunately the only version I could find on the sun site is: > >j2sdk-1_4_2_05-linux-i586.bin > >Which stopped me dead (until I figure away around it). I think there is something in at least one BSD that allows you to run linux binaries, but that file, I think, is a self extracting shell script license and binary(ies) which would have run under the emulator. Oh wait, there is a 4 page article in issue 7 (summer 2002) of daemon news I picked up at the meeting last night (heh, thought it was current), I can't photocopy it because a lot is printed with red background and my digital camera is on the brink. ...oh wait, http://www.freebsd.org/doc/en_US.ISO8859-1/articles/java-tomcat/ same authors/title, updated this year. // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From trish Thu Aug 5 21:13:02 2004 From: trish (Trish Lynch) Date: Thu, 5 Aug 2004 21:13:02 -0400 (EDT) Subject: [nycbug-talk] Tomcat + JDK 1.4 on FreeBSD In-Reply-To: <4112A18C.5020903@mac.com> References: <4112A18C.5020903@mac.com> Message-ID: <20040805211155.G74934@ultra.bsdunix.net> On Thu, 5 Aug 2004, Fred McCann wrote: > I would like to run tomcat in production on FreeBSD and I'm currently > trying to weigh that vs. running it on some distribution of linux. Is > anyone on the list currently using java on FreeBSD? If so what are you > seeing for performance and how are you running java? Is it one of the > linux 1.4 jdks running in linux compatibility mode? Is anyone running > the native BSD port? > > I tried installing the native port last night, but I couldn't get it to > take. It was requesting the linux jdk from sun: > > j2sdk-1_4_2_04-linux-i586.bin > > Unfortunately the only version I could find on the sun site is: > > j2sdk-1_4_2_05-linux-i586.bin > > Which stopped me dead (until I figure away around it). > > - Fred Right now, believe it or not, we're running some major stuff under the native FreeBSD port of jdk 1.4 and tomcat.... it works really well. just takes forever to build but once you build, you can make a package. -Trish -- Trish Lynch trish at bsdunix.net Ecartis Core Team trish at listmistress.org EFNet IRC Operator/SysAdmin @ irc.dkom.at AilleCat at EFNet Key fingerprint = 781D 2B47 AA4B FC88 B919 0CD6 26B2 1D62 6FC1 FF16 From hans Thu Aug 5 22:42:44 2004 From: hans (Hans Zaunere) Date: Thu, 5 Aug 2004 19:42:44 -0700 Subject: [nycbug-talk] Future Meeting: AMP on BSD Message-ID: <41EE526EC2D3C74286415780D3BA9F8703799B80@ehost011-1.exch011.intermedia.net> > > Hi all, > > > > I'll be giving a presentation on AMP (Apache/MySQL/PHP) running under > > BSD on Sept. 1st. I wanted to ping this list to get some feedback about > > what general topics I should cover. > > > > Installation and configuring? From source? From ports? > > > > Security? > > > > Writing a simple application? Installing pre-written applications? > > > > What do people want to learn about... any feedback would be appreciated. > > some definitive alternative to mail(). everytime I use, or attempt to use > mail(), all the real PHPers jump on my back and rabidly tell me to use some > other X, Y, and Z function on the web to replace mail(). Its annoying. Well, not to turn this into a PHP list (there is http://nyphp.org/lists where all these questions are welcome and a RTFM is a rare thing) mail() isn't a bad thing. It can bite you if you are sending large volumes of mail out (like thousands a minute) but other than that, it's fine. > (though PHP's mail() has some compatibility issues with postfix, but its > largely a postfix issue due to improper documentation, and the postfix > author's distaste of a particular sendmail feature (he thinks its broken)) Yeah, some of the flags might be an issue with postfix, but I don't recall anything specific off the top (and I use mail() with postfix everyday). --- Hans Zaunere President New York PHP http://nyphp.org From hans Thu Aug 5 22:46:25 2004 From: hans (Hans Zaunere) Date: Thu, 5 Aug 2004 19:46:25 -0700 Subject: [nycbug-talk] Future Meeting: AMP on BSD Message-ID: <41EE526EC2D3C74286415780D3BA9F8703799B82@ehost011-1.exch011.intermedia.net> > > > I'd love to hear more about how to make mysql run right. It's an > > ongoing > > > issue that comes up on the lists, and I for one still see issues under > > > moderate load with Linux Threads and the "skip-name-resolve" option. > > > > Interesting... which BSD? I run MySQL both with native threads and > > LinuxThreads on FreeBSD without issue. I'll certainly touch on some of > > this, and answer any questions people have. > > FreeBSD 4.7, 4.8 and 4.9. While going with LinuxThreads gets rid of the > "spinning at 99% cpu" problem, I've found that if the box is doing > anything else (especially mail delivery w/qmail or sendmail periodically > chugging through a queue), mysql just starts timing out on local (socket) > or network queries. We're talking both select-only at 15 q/S tops here on > a database that only is about 20MB. I recently brought this up on the > mysql list with lots of specifics (no, the machine's not swapping, disk io > is sane, cpu is not pegged). The one thing that does seem to stand out is > that the box spends lots of time in "system" cpu and context switches as > qmail spikes, and this seems to be when either threading library starves > mysqld and the application (vpopmail) starts timing out. Quite strange. I use MySQL on fairly loaded FreeBSD boxes of the same version - with many other servers running - and haven't seen these issues. Did you use MySQL from ports, or the binary supplied from http://dev.mysql.com ? Give the binary supplied if not. > > > Also some good tips on configuring php beyond the port build; what do > > you > > > recommend changing in the stock php.ini, what are some performance > > tips, > > > and which of the various accellerators do you find work best > > > (turck-mmcache looked good, but that project apparently died)? > > > > Good points, too (hint: always use php.ini-recommended). > > Excellent... thanks. If you can live with Turck-mmcache's sig 11's on > HUPs, the speed increase on a single purpose application like squirrelmail > is staggering. Yeah, I wouldn't live with that. There are IonCube Accelerator and Zend, too. > In general, I'm something of a stranger to php.ini and more specifically > getting a sane and usable safe-mode config going... Hope you've got four > or five hours blocked out for the meeting. :) Sure I do... bars are open until 4am :) --- Hans Zaunere President New York PHP http://nyphp.org From george Thu Aug 5 22:49:21 2004 From: george (George Rosamond) Date: Thu, 05 Aug 2004 22:49:21 -0400 Subject: [nycbug-talk] our best virtual member? Message-ID: <4112F1B1.9020102@sddi.net> Well, there are many pictures of NYCBUG you could get. At the monthly meetings. At the bar afterwards. On the talk list. But our #nycbug on freenode may be the most interesting. . . we have a 'member' who's a very talented young tech, who despises Apple, has never been to a meeting, yet is probably responsible for 90% of the irc traffic. . . http://opencurve.org/~sunny/irc/stats/nycbug.html Yes, it's our buddy Sunny. . .Thanks Sunny. ..we'll have to have this on the site. . . Is it running on UML? I hope you have backups. . . g From sunny-ml Thu Aug 5 23:12:55 2004 From: sunny-ml (Sunny Dubey) Date: Thu, 5 Aug 2004 23:12:55 -0400 Subject: [nycbug-talk] our best virtual member? In-Reply-To: <4112F1B1.9020102@sddi.net> References: <4112F1B1.9020102@sddi.net> Message-ID: <200408052312.56452.sunny-ml@opencurve.org> On Thursday 05 August 2004 22:49, George Rosamond wrote: > Well, there are many pictures of NYCBUG you could get. > > At the monthly meetings. > > At the bar afterwards. > > On the talk list. > > But our #nycbug on freenode may be the most interesting. . . > > we have a 'member' who's a very talented young tech, who despises Apple, > has never been to a meeting, yet is probably responsible for 90% of the > irc traffic. . . > > http://opencurve.org/~sunny/irc/stats/nycbug.html haha a few points: first, the version of onis I'm using is outdated, I should probably upgrade secondly, the stats look really funny because I just started logging and generating stats sometime this afternoon while bored at work. Given enough conversation and enough time, they will look like any other stats pages. I can give anyone logs of the channel, but they are in irssi format > > Yes, it's our buddy Sunny. . .Thanks Sunny. ..we'll have to have this on > the site. . . you can have nycbug.org pull the page every 40 mins or so, because thats how often the page is regenerated. I could "push" the file too, but thats insecure. > > Is it running on UML? I hope you have backups. . . I think you're having a hard time accepting UML to be totally kickass technology ... I shall have to get my hitmen after you .... :^P Sunny Dubey From trish Fri Aug 6 00:15:02 2004 From: trish (Trish Lynch) Date: Fri, 6 Aug 2004 00:15:02 -0400 (EDT) Subject: [nycbug-talk] our best virtual member? In-Reply-To: <4112F1B1.9020102@sddi.net> References: <4112F1B1.9020102@sddi.net> Message-ID: <20040806001424.N74934@ultra.bsdunix.net> On Thu, 5 Aug 2004, George Rosamond wrote: > Well, there are many pictures of NYCBUG you could get. > > At the monthly meetings. > > At the bar afterwards. > > On the talk list. > > But our #nycbug on freenode may be the most interesting. . . > > we have a 'member' who's a very talented young tech, who despises Apple, > has never been to a meeting, yet is probably responsible for 90% of the > irc traffic. . . > > http://opencurve.org/~sunny/irc/stats/nycbug.html > > Yes, it's our buddy Sunny. . .Thanks Sunny. ..we'll have to have this on > the site. . . > > Is it running on UML? I hope you have backups. . . > > g stopped on late tonight, but decided sleep was in my best interest. I'll probably talk/type tomorrow a bit with some of you. -Trish -- Trish Lynch trish at bsdunix.net Ecartis Core Team trish at listmistress.org EFNet IRC Operator/SysAdmin @ irc.dkom.at AilleCat at EFNet Key fingerprint = 781D 2B47 AA4B FC88 B919 0CD6 26B2 1D62 6FC1 FF16 From jesse Fri Aug 6 03:25:35 2004 From: jesse (Jesse Callaway) Date: Fri, 6 Aug 2004 03:25:35 -0400 Subject: [nycbug-talk] soekris (general io ports) In-Reply-To: <200408051944.i75Ji072025671@localhost.localdomain> References: <200408051944.i75Ji072025671@localhost.localdomain> Message-ID: On Aug 5, 2004, at 3:44 PM, george magiros wrote: > FYI, I found out that most (all?) of the boards have > general io pins onboard. This is probably old knowledge > but anyway these pins come off from the processor (AMD ElanSC520). > Only a freebsd driver seems to exist to drive them. Someone > made a lcd interface using these pins > (see http://phk.freebsd.dk/soekris/, and picture > http://phk.freebsd.dk/soekris/lcd/soekris-lcd.png) > > gm > _______________________________________________ oooh! Christmas lights! This is my favorite.... ....ALERT YOU ARE BEING HACKED 23.4312% OF THE TIME...THIS IS OVER THE MASONIC THRESHOLD... This would be fun to play with. From george Fri Aug 6 10:10:08 2004 From: george (G.Rosamond) Date: Fri, 6 Aug 2004 10:10:08 -0400 Subject: [nycbug-talk] Fwd: Call For Papers: Usenix 2005 FREENIX track Message-ID: <529030DF-E7B2-11D8-8759-000D9328615E@sddi.net> Begin forwarded message: > From: "Todd C. Miller" > Date: August 5, 2004 9:28:18 AM EDT > To: announce at openbsd.org > Subject: Call For Papers: Usenix 2005 FREENIX track > > ------------------------------------------------------- > Call For Papers: > FREENIX Track > http://www.usenix.org/events/usenix05/cfp/freenix.html > ------------------------------------------------------- > > FREENIX is the forum on free and open source software. We are looking > for papers providing practical and/or academic insight. FREENIX is an > excellent showcase for the latest developments in and interesting > applications of free and open source software. Any project with a focus > on software that is redistributable in source-code form and available > online is a good candidate for a FREENIX submission. (Submissions > focusing on proprietary software will not be accepted.) Projects that, > while not yet 100% finished, anticipate release in the near term are > also good candidates for FREENIX. Submission of any sort of free and > open source software-related work is encouraged, including: > > - Project reports > - Academic studies and relevant theory > - Usage and development experiences, both successful and unsuccessful > > The emphasis of a FREENIX submission should be on clearly > communicating important and technically interesting software ideas to > a broad audience. > > IMPORTANT DATES: > Submissions due Monday, October 18, 2004 > Notification to authors Tuesday, December 7, 2004 > Camera-ready papers due Thursday, February 24, 2005 > > Submission guidelines and a full list of suggested topics are available > on our website: > http://www.usenix.org/events/usenix05/cfp/freenix.html > > We look forward to your submissions > From george Fri Aug 6 10:15:56 2004 From: george (G.Rosamond) Date: Fri, 6 Aug 2004 10:15:56 -0400 Subject: [nycbug-talk] installfest Message-ID: <21FDA564-E7B3-11D8-8759-000D9328615E@sddi.net> anyone bringing a copy of DragonFlyBSD? g From truk Fri Aug 6 12:07:04 2004 From: truk (Kurt Miller) Date: Fri, 06 Aug 2004 12:07:04 -0400 Subject: [nycbug-talk] Tomcat + JDK 1.4 on FreeBSD References: <4112A18C.5020903@mac.com> Message-ID: <022c01c47bcf$6a61d660$1d0110ac@focus> From: "Fred McCann" > I would like to run tomcat in production on FreeBSD and I'm currently > trying to weigh that vs. running it on some distribution of linux. Is > anyone on the list currently using java on FreeBSD? If so what are you > seeing for performance and how are you running java? Is it one of the > linux 1.4 jdks running in linux compatibility mode? Is anyone running > the native BSD port? > > I tried installing the native port last night, but I couldn't get it to > take. It was requesting the linux jdk from sun: > > j2sdk-1_4_2_04-linux-i586.bin > > Unfortunately the only version I could find on the sun site is: > > j2sdk-1_4_2_05-linux-i586.bin > > Which stopped me dead (until I figure away around it). > http://java.sun.com/products/archive/ is where to find older releases. That should get you going again. -Kurt From george Fri Aug 6 12:57:59 2004 From: george (G.Rosamond) Date: Fri, 6 Aug 2004 12:57:59 -0400 Subject: [nycbug-talk] NYCBUG need. . . Message-ID: If anyone works in a graphics or architecture shop. ..maybe you could help us out. We need a large sign with our logo/name that we can hang on the back of the theater in the Apple Store. . .it may at least put some defining notice there during our meeting. The logo is downloadable as png or ai files on the home page. . .it's the funky one with a nice daemonic tail. Something large (around 2' x 5' or so), with our name spelled out, www site and the logo would be great. . . g From tux Fri Aug 6 13:13:10 2004 From: tux (Kevin Reiter) Date: Fri, 6 Aug 2004 13:13:10 -0400 Subject: [nycbug-talk] NYCBUG need. . . References: Message-ID: <00c401c47bd8$a6ca3a80$0600a8c0@geekiskahn.net> > We need a large sign with our logo/name that we can hang on the back of > the theater in the Apple Store. . .it may at least put some defining > notice there during our meeting. I have a few clients that own sign shops that might be willing to do me a favor... no promises, but I'll see what they say. Is there any kind of deadline, or just ASAP? From george Fri Aug 6 13:10:17 2004 From: george (G.Rosamond) Date: Fri, 6 Aug 2004 13:10:17 -0400 Subject: [nycbug-talk] NYCBUG need. . . In-Reply-To: <00c401c47bd8$a6ca3a80$0600a8c0@geekiskahn.net> References: <00c401c47bd8$a6ca3a80$0600a8c0@geekiskahn.net> Message-ID: <7D55E318-E7CB-11D8-8759-000D9328615E@sddi.net> On Aug 6, 2004, at 1:13 PM, Kevin Reiter wrote: >> We need a large sign with our logo/name that we can hang on the back >> of >> the theater in the Apple Store. . .it may at least put some defining >> notice there during our meeting. > > I have a few clients that own sign shops that might be willing to do > me a > favor... no promises, but I'll see what they say. Is there any kind > of > deadline, or just ASAP? Before the next meeting would be great. . . Let's talk offline about layout first. . . Thanks Kevin. . .much appreciated. . . g From pete Fri Aug 6 19:34:39 2004 From: pete (Pete Wright) Date: Fri, 06 Aug 2004 18:34:39 -0500 Subject: [nycbug-talk] installfest In-Reply-To: <21FDA564-E7B3-11D8-8759-000D9328615E@sddi.net> References: <21FDA564-E7B3-11D8-8759-000D9328615E@sddi.net> Message-ID: <4114158F.50801@nomadlogic.org> G.Rosamond wrote: > anyone bringing a copy of DragonFlyBSD? > guy's i would, but all hell broke loose at my job today. it doesn't look like i'll be able to make this installfest either. the good news is my job search is going well ;^) so i hope you all have fun. i'll post some pics and notes on this years SIGGRAPH on my blog when i get out there (whoo hoo OpenGL2 here is come!). i'll post the link when i got some stuff up. -p -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From lists Sat Aug 7 11:29:30 2004 From: lists (michael) Date: Sat, 07 Aug 2004 11:29:30 -0400 Subject: [nycbug-talk] [Fwd: Newsletter from O'Reilly] Message-ID: <4114F55A.9030205@genoverly.net> -------- Original Message -------- Subject: Newsletter from O'Reilly UG Program, August 6 Date: Fri, 06 Aug 2004 16:33:34 -0700 ================================================================ O'Reilly News for User Group Members August 6, 2004 ================================================================ ---------------------------------------------------------------- Book News ---------------------------------------------------------------- -XML Hacks -CSS Pocket Reference, 2nd Edition -IRC Hacks -Cyber Adversary Characterization -OpenOffice.org Writer -AI for Game Developers -IT Ethics Handbook -Upgrading to PHP 5 -SpamAssassin -We the Media -Zero-Day Exploit -Mono: A Developer's Notebook ---------------------------------------------------------------- Upcoming Events ---------------------------------------------------------------- -Deke McClellend ("Adobe Photoshop CS One-on-One") 2004 Australian InDesign Conference--August 12-14 -Wil Wheaton ("Just a Geek" and "Dancing Barefoot") at Hollywood Borders--August 15 -Wil Wheaton ("Just a Geek" and "Dancing Barefoot") at Mysterious Galaxy Books, San Diego, CA--August 21 -O'Reilly at PhotoShopWorld, Orlando, Florida--August 31 & September 2 ---------------------------------------------------------------- Conference News ---------------------------------------------------------------- -Registration Is Open for O'Reilly's Mac OS X Conference-- October 25-28, 2004 ---------------------------------------------------------------- News ---------------------------------------------------------------- -We the Media Blog -Techies Reshape 9/11 History -O'Reilly Radar: OSCON 2004 -Top 10 Online Investing Tips -The Great Linux Desktop Migration Contest--Enter by August 9 -O'Reilly and MySQL AB Present the MySQL Users Conference -Questioning Promises at LinuxWorld -Open Source and NASA's Mars Rover -21.5 Things You Can Do with Office 2004 -Creating DVD/VCD Photo Slide Shows for Your Mac -OS 9, Mine, All Mine -Windows Server Hacks: Creating a Password Reset Disk -Power Up the Windows Clipboard -Rapid Application Development with VB.NET 2.0 -XML-Java Data Binding Using XMLBeans -Keeping Up with the Java Joneses -What Countermeasures Really Mean ---------------------------------------------------------------- News From Your Peers ---------------------------------------------------------------- -Report from OSCON 2004 ================================================ Book News ================================================ Did you know you can request a free book to review for your group? Ask your group leader for more information. For book review writing tips and suggestions, go to: http://ug.oreilly.com/bookreviews.html Don't forget, you can receive 20% off any O'Reilly, No Starch, Paraglyph, Pragmatic Bookshelf, or Syngress book you purchase directly from O'Reilly. Just use code DSUG when ordering online or by phone 800-998-9938. http://www.oreilly.com/ ***Free ground shipping is available for online orders of at least $29.95 that go to a single U.S. address. This offer applies to U.S. delivery addresses in the 50 states and Puerto Rico. For more details, go to: http://www.oreilly.com/news/freeshipping_0703.html ---------------------------------------------------------------- New Releases ---------------------------------------------------------------- ***XML Hacks Publisher: O'Reilly ISBN: 0596007116 This practical, roll-up-your-sleeves guide distills years of ingenious XML hacking into a complete set of tips, tricks, and tools for people who want to uncover the true power of XML. With plenty of real-world projects that illustrate how to define, read, create, and manipulate XML documents, you'll learn to put XML to work on the Internet and within productivity applications. Explore and experiment, discover clever shortcuts, show off just a little, and have fun in the process, with this invaluable book. http://www.oreilly.com/catalog/xmlhks/ A slew of sample hacks are available free online: http://www.oreilly.com/catalog/xmlhks/chapter/index.html ***CSS Pocket Reference, 2nd Edition Publisher: O'Reilly ISBN: 0596007779 "CSS Pocket Reference, 2nd Edition" is an indispensable reference for web designers and developers. This handy book condenses all the details in its companion volume, "Cascading Style Sheets: The Definitive Guide," into one easy-to-use cheat-sheet, covering the essential information you need to effectively implement CSS. There's an introduction to CSS, an alphabetical reference to the CSS2 and CSS 2.1 properties, and detailed information about CSS support in browsers. When you're stuck and need an answer quickly, you'll want this completely updated pocket reference at your fingertips. http://www.oreilly.com/catalog/csspr2/ A sample excerpt on "Basic Visual Layout" is available online: http://www.oreilly.com/catalog/csspr2/chapter/index.html ***IRC Hacks Publisher: O'Reilly ISBN: 059600687X IRC (Internet Relay Chat) is more than an accessible, multi-platform chat environment; it's a network of intercommunicating servers that allows thousands of clients to connect from anywhere in the world. "IRC Hacks" shows you how IRC works, and how to best use some of the features that have made IRC the most successful, most scalable, and most mature chat system on the planet. Featuring contributions from renowned IRC hackers, many of whom collaborated on IRC, this collection of tips and tools covers just about everything needed to become a true IRC master. http://www.oreilly.com/catalog/irchks/ Sample hacks are available online: http://www.oreilly.com/catalog/irchks/chapter/index.html ***Cyber Adversary Characterization Publisher: Syngress ISBN: 1931836116 The ever-increasing emphasis and reliance on the use of computers and the Internet has come hand in hand with the increased threat of cyber-crime. Many systems and infrastructures are exceedingly vulnerable to attacks, as the complexity of computer networks is growing faster than the ability to understand and protect them. Heightened vigilance is not enough, but needs to be coupled with active defensive measures to guarantee the best protection. This book provides the reader with understanding of and an ability to anticipate that "cyber adversary" silently waiting in the wings to attack. http://www.oreilly.com/catalog/1931836116/ ***OpenOffice.org Writer Publisher: O'Reilly ISBN: 0596008260 This handy reference to using Writer, the word processor that comes with OpenOffice.org, is the open source alternative to Microsoft Word. You???ll learn how to write, edit, and review documents; use templates and styles effectively; control page layout; insert, edit, and create graphics; and much more--even how to make a smooth transition from Word. With the complete office suite included on a CD, this book makes using Writer an easy decision. http://www.oreilly.com/catalog/openoffice/ Chapter 2, "Writing, Editing, and Reviewing Documents," is available online: http://www.oreilly.com/catalog/openoffice/chapter/index.html ***AI for Game Developers Publisher: O'Reilly ISBN: 0596005555 Written for the novice AI programmer, this book introduces techniques such as finite state machines, fuzzy logic, neural networks, and many others, in straightforward, easy-to-understand language, supported with code samples written in C/C++. The book explains basic techniques such as chasing and evading, pattern movement, and flocking to genetic algorithms, then presents a mix of deterministic (traditional) and non-deterministic (newer) AI techniques, all designed to provide usable techniques you can apply to your games right now. http://www.oreilly.com/catalog/ai/ ***IT Ethics Handbook Publisher: Syngress ISBN: 1931836140 Ethical judgments are no different in the area of computing from those in any other area. Computers raise problems of privacy, ownership, theft, and power, to name but a few. This book covers subjects ranging from defensive architecture, offensive issues, privacy, the use of information, and the human element of employer and employee ethics. The book is written by IT professionals for IT professionals, and always brings any discussion back to a practical example and application. http://www.oreilly.com/catalog/1931836140/ ***Upgrading to PHP 5 Publisher: O'Reilly ISBN: 0596006365 If you're using PHP 4, chances are good that an upgrade to PHP 5 is in your future. This book offers a concise appraisal of the differences between versions 4 and 5, a detailed look at what's new in PHP 5, and explanations of how these changes affect you. The book also covers more advanced features and each new feature is shown in code, helping you to know when to use it and how it's better than PHP 4. Chapter 4, "SQLite," is available online: http://www.oreilly.com/catalog/upgradephp5/chapter/index.html ***SpamAssassin Publisher: O'Reilly ISBN: 0596007078 SpamAssassin is the leading open source spam-fighting tool. The drawback? Until now, it was SpamAssassin's lack of published documentation. This clear, concise new guide shows system administrators how to integrate this tool effectively into their networks. The book clarifies installation, configuration, and use of SpamAssassin versions 2.63 and 3.0 for Unix sysadmins using Postfix, sendmail, Exim, or qmail mail servers. SpamAssassin, together with this essential book, provides the tools you need to take back your organization's inboxes. http://www.oreilly.com/catalog/spamassassin/ Chapter 2, "SpamAssassin Basics," is available online: http://www.oreilly.com/catalog/spamassassin/chapter/index.html ***We the Media Publisher: O'Reilly ISBN: 0596007337 Not content to accept the news as reported, grassroots journalists are dismantling Big Media's news monopoly, and publishing in real time to a worldwide audience via the Internet. The impact of their work is just beginning to be felt by professional journalists and the newsmakers they cover. In "We the Media," nationally known business and technology columnist Dan Gillmor tells the story of this emerging phenomenon, and sheds light on this deep shift in how we make and consume the news. http://www.oreilly.com/catalog/wemedia/ The book's Introduction is available online: http://www.oreilly.com/catalog/wemedia/chapter/index.html ***Zero-Day Exploit Publisher: Syngress ISBN: 19318360 A group of highly sophisticated cyber-terrorists have developed a Zero-Day Exploit targeting critical, pertrochemical infrastructure systems in the United States. Once launched, the exploit will cripple the country's ability to respond or defend itself. The only defense against disaster rests with an elite cyber-security expert with the skill and savvy to thwart the plot. http://www.oreilly.com/catalog/1931836094/ ***Mono: A Developer's Notebook Publisher: O'Reilly ISBN: 0596007922 This no-fluff, lab-style guide jumps right into Mono 1.0 as you work through nearly 50 mini-projects that introduce you to the most important and compelling aspects of the 1.0 release. You'll learn how to acquire, install, and run Mono on Linux, Windows, or Mac OS X. You'll work with the various Mono components: Gtk#; the CLR; the class libraries (.NET and Mono); and much more. This book lets you roll up your sleeves and see what Mono can do. http://www.oreilly.com/catalog/monoadn/ Chapter 3, "Core .NET," is available online: http://www.oreilly.com/catalog/monoadn/chapter/index.html ================================================ Upcoming Events ================================================ ***For more events, please see: http://events.oreilly.com/ ***Deke McClellend ("Adobe Photoshop CS One-on-One") 2004 Australian InDesign Conference, Melbourne, Australia--August 12-14 Deke is a featured speaker at the annual national conference dedicated to supporting this fast-growing application user community. http://www.theindesignconference.com/australia/indexa.html ***Wil Wheaton ("Just a Geek" and "Dancing Barefoot"), Hollywood Borders--August 15 Wil stops by the Hollywood Borders to sign copies of "Just a Geek" at 2:00pm. 1501 Vine Street, Hollywood, CA http://www.bordersstores.com/stores/store_pg.jsp?storeID=354 ***Wil Wheaton ("Just a Geek" and "Dancing Barefoot") at Mysterious Galaxy Books, San Diego, CA--August 21 WIl also stops by Mysterious Galaxy starting at 1:30 p.m. 7051 Clairemont Mesa Blvd., San Diego, CA http://www.mystgalaxy.com/ ***O'Reilly at PhotoShopWorld, Orlando, Florida--August 31 & September 2 Deke McClelland will be teaching Adobe Illustrator Techniques in a pre-conference session on August 31. Make sure you come by and say hi at our booth (#334) in the expo hall on September 2. Orange County Convention Center, Orlando, FL http://www.photoshopworld.com/ ================================================ Conference News ================================================ ***Registration Is Open for O'Reilly's Mac OS X Conference Join us for the third annual Mac OS X Conference, October 25-28, 2004, in Santa Clara, California. You'll hear from Stewart Copeland, the former drummer for the Police who now creates award-winning film and television scores using Mac OS X technology; "New York Times" columnist David Pogue; Andy Ihnatko of the "Chicago Sun-Times"; Karelia Sofware's Dan Wood; Brent Simmons of Ranchero Software; Michael Bartosh of 4AM Media; Mac authors Dori Smith, Gordon Meyer, and Ted Landau; and many more. User Group members who register before September 10, 2004 get a double discount. Use code DSUG when you register, and receive 20% off the "Early Bird" price. To register, go to: http://conferences.oreillynet.com/cs/macosx2004/create/ord_mac04 O'Reilly Mac OS X Conference October 25-28, 2004 Westin Santa Clara, Santa Clara, CA http://conferences.oreilly.com/macosxcon/ ================================================ News From O'Reilly & Beyond ================================================ --------------------- General News --------------------- ***"We the Media" Blog Nationally recognized technology columnist Dan Gillmor has launched a new blog that covers the shifts we're seeing as journalism becomes less of a lecture and more of a conversation. Check it out if you're interested in the future of journalism, and don't miss his latest book on the topic, "We the Media." http://wethemedia.oreilly.com/ ***Techies Reshape 9/11 History Within hours of the release of The 9/11 Commission Report, multiple formats of the report were posted online by people interested in increasing its accessibility and usability. One of those people was PDF expert Sid Steward, who reduced the file size of the commission's original PDF, added bookmarks, and created a front-page HTML portal. Learn how easy and flexible PDF can be in Sid's upcoming "PDF Hacks." http://www.wired.com/news/politics/0,1283,64346,00.html ***O'Reilly Radar: OSCON 2004 Daniel Steinberg reports on Tim O'Reilly's OSCON 2004 keynote. Tim's remarks focused on what is currently on his radar. He discussed Internet applications and social software, and ended with the announcement that O'Reilly will be producing the third annual MySQL Conference next year in Santa Clara, CA http://www.onlamp.com/pub/a/onlamp/2004/07/29/radar.html ***Top 10 Online Investing Tips Plucked from the pages of "Online Investing Hacks," author Bonnie Biafore offers ten of the most important things you can do to improve your financial situation, and the tools that will simplify these tasks. http://www.oreillynet.com/pub/a/network/2004/07/23/onlineinvestinghacks.html --------------------- Open Source --------------------- ***The Great Linux Desktop Migration Contest--Enter by August 9 If you're considering, or you have already embarked upon, a Linux desktop migration, here's your chance to help guide and inspire others and be eligible to win an all-expense-paid trip to Barcelona, Spain. Novell and O'Reilly Media have joined forces to present this contest and are looking for entries that describe the benefits realized from a desktop migration, a phased migration plan, or the most practical tips for migrating to Linux. http://www.linuxdevcenter.com/linux/contest/ ***O'Reilly and MySQL AB Present the MySQL Users Conference According to Tim O'Reilly, "MySQL is at the heart of revolutionary changes in the computer industry." Join us in Santa Clara, CA in April 2005 to meet the MySQL development team, peruse the latest products and services, get detailed insight into new features in MySQL 5.0, and much more. http://www.mysqluc.com/ ***Questioning Promises at LinuxWorld O'Reilly editor Andy Oram reports this week from LinuxWorld 2004 in San Francisco. He'll be exploring the promises of Linux and trying to determine how realistic they are, because, as Andy writes, "In many areas, the important foundations have been laid--but a lot remains to be done." http://oreillynet.com/pub/wlg/5357 ***Open Source and NASA's Mars Rover NASA's recent Mars Rover mission uses a host of open source tools. Three members of the team presented how they promoted open source software at NASA, use it in the project, and hope to release more code in the future. Ann Barcomb reports. http://www.onlamp.com/pub/a/onlamp/2004/08/02/oss_mars_rover.html --------------------- Mac --------------------- ***21.5 Things You Can Do with Office 2004 By now you've probably read about all the new features in Microsoft Office 2004. Good. Because we're not going to cover them here again. Instead, Giles Turnbull shows you 21 and a half things you can do in Office that you might not have previously realized. http://www.macdevcenter.com/pub/a/mac/2004/08/03/ms_office.html ***Creating DVD/VCD Photo Slide Shows for Your Mac Let's face it: you still have friends and family who've yet to enter the computer age. And yet you'd like to send them copies of your vacation photos (or your newborn, or your cat) taken with your digital camera. What to do? Wei-Meng Lee offers an alternative to using iPhoto for creating slide-show CDs--Ulead's DVD PictureShow for Mac. He walks us through how to burn digital photos onto disc so anyone with a DVD/VCD player can view them. http://www.macdevcenter.com/pub/a/mac/2004/07/27/DVDslideshowonMac.html ***OS 9, Mine, All Mine What serious Mac fan in his or her right mind would consider booting anything other than OS X? Well, lots of them. Giles Turnbull interviews a handful of dedicated OS 9 users to find out why. http://www.macdevcenter.com/pub/a/mac/2004/07/23/os9.html --------------------- Windows --------------------- ***Windows Server Hacks: Creating a Password Reset Disk Losing a password for an account can be anything from a pain to a disaster. Mitch Tulloch, author of "Windows Server Hacks," shows you how to solve the problem by creating a password recovery disk. http://www.windowsdevcenter.com/pub/a/windows/2004/08/03/password_reset.html ***Power Up the Windows Clipboard The Windows Clipboard is about as useless a utility as you can imagine. Throw it away and replace it with one of these clipboard power tools. http://www.windowsdevcenter.com/pub/a/windows/2004/08/03/clipboard.html ***Rapid Application Development with VB.NET 2.0 Jesse Liberty has supported the idea that it really doesn't matter if you program in C# or in VB.NET, since both are just syntactic sugar layered on top of the Microsoft Intermediate Language--the true language of .NET. But that appears to be changing with Whidbey. Get a look at the new My Object in VB.NET 2.0 in this article by Jesse, author of "Programming Visual Basic .NET, 2nd Edition." http://www.ondotnet.com/pub/a/dotnet/2004/08/02/libertywhidbey.html --------------------- Java --------------------- **XML-Java Data Binding Using XMLBeans XMLBeans, currently in the Apache incubation process, is a promising framework for providing XML/Java data binding unmarshalling well-formed XML into Java objects, and marshalling Java objects into XML files. Hetel Shah provides an introduction to its features. http://www.onjava.com/pub/a/onjava/2004/07/28/XMLBeans.html ***Keeping Up with the Java Joneses Ian Darwin covers a variety of new Java 1.5 features, including J2SE 1.5 threading, the return of printf, and the IDEs NetBeans and Eclipse. Ian wraps up this article with resources to help you keep up with the rest of the Java Joneses. Ian is the author of the recently released "Java Cookbook, 2nd Edition." http://www.onjava.com/pub/a/onjava/2004/07/28/javackbk2.html --------------------- Security --------------------- ***What Countermeasures Really Mean As the number and range of attacks on computer systems have grown exponentially and conventional firewalls and intrusion detection systems have proven inadequate for the task, security researchers have started to talk about employing "countermeasures" to preserve security. http://www.oreillynet.com/pub/a/security/2004/08/03/symbiot.html ================================================ News From Your Peers ================================================ ***Report from OSCON 2004 Steve Riggins of the Portland Mac Users Group and the statewide Oregon MacPioneers User Group gives us his scoop on the 2004 O'Reilly Open Source Convention in Portland, OR. Thanks Steve! And thanks to OMUG leader Steve Welsh for passing this along. http://homepage.mac.com/ydkm/News/oscon04report.htm Don't forget to check out the O'Reilly UG wiki to see what user groups across the globe are up to: http://wiki.oreillynet.com/usergroups/lpt?HomePage Until next time-- From george Sat Aug 7 17:01:05 2004 From: george (G.Rosamond) Date: Sat, 7 Aug 2004 17:01:05 -0400 Subject: [nycbug-talk] install fest Message-ID: Turned out pretty good. . . There were a few of us. . .and a few last minute cancellations. . . Michael George G. Marco Rod (new guy, just found us out this week) George Played a bit with OBSD. . .didn't have null modem cable to do a Soekris install. . . Worked on Rod's FBSD 5.2.1 box. . . Ate some pizza, drank some beer. g From jromero Sat Aug 7 18:27:50 2004 From: jromero (JRomero) Date: Sat, 7 Aug 2004 18:27:50 -0400 Subject: [nycbug-talk] openbsd, ipsec and roaming clients Message-ID: <200408071827.50133.jromero@romero3000.com> Just got my soekris up and running doing nat and basic packet filtering. Its working great so far. I would like to configure isakmpd to enable access of ipsec connections from roaming clients. The clients would be windows and unix clients. The roaming clients will most likely also be behind other NAT'ed firewalls. Has anyone tried this??? [remote client] -----> [nat firewall] <-------------> [soekris w/nat] -->LAN From george Sat Aug 7 18:35:59 2004 From: george (George Georgalis) Date: Sat, 7 Aug 2004 18:35:59 -0400 Subject: [nycbug-talk] install fest In-Reply-To: References: Message-ID: <20040807223559.GG13690@trot.local> On Sat, Aug 07, 2004 at 05:01:05PM -0400, G Rosamond wrote: >Worked on Rod's FBSD 5.2.1 box. . . this thread might have helped solve Rod's problem... http://leaf.dragonflybsd.org/mailarchive/kernel/2004-08/msg00080.html We didn't build/install kernel before installworld. Seems odd that it would _the_ problem, but something to keep in mind none-the-less. make buildworld make buildkernel make installkernel make installworld // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From george Sat Aug 7 19:22:09 2004 From: george (George Georgalis) Date: Sat, 7 Aug 2004 19:22:09 -0400 Subject: [nycbug-talk] install fest In-Reply-To: References: Message-ID: <20040807232153.GI13690@trot.local> On Sat, Aug 07, 2004 at 05:01:05PM -0400, G Rosamond wrote: > >Played a bit with OBSD. . .didn't have null modem cable to do a Soekris >install. . . > I'm kinda stuck, can't make an obsd bootable install disk... here's what I tried #!/bin/bash rsync -av --progress --delete --delete-excluded \ --exclude='alpha' \ --exclude='amd64' \ --exclude='arm' \ --exclude='cats' \ --exclude='hp300' \ --exclude='hppa' \ --exclude='m68k' \ --exclude='m88k' \ --exclude='mac68k' \ --exclude='macppc' \ --exclude='mvme68k' \ --exclude='mvme88k' \ --exclude='packages' \ --exclude='powerpc' \ --exclude='sparc' \ --exclude='sparc64' \ --exclude='vax' \ rsync://ftp.nluug.nl/OpenBSD/3.5/ openbsd/3.5/ mkisofs -r -G ./i386/bsd.rd ./ \ | ssh root at localhost "cdrecord -v dev=0,0,0 -eject -data -" The cd is made with the expected files $ ls /cdrom ANNOUNCEMENT PACKAGES SIZES i386 src.tar.gz Changelogs PORTS XF4.tar.gz ports.tar.gz sys.tar.gz HARDWARE README ftplist root.mail tools $ find /cdrom | wc -l 135 ...but it doesn't boot. Any ideas? // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From okan Sun Aug 8 01:27:42 2004 From: okan (Okan Demirmen) Date: Sun, 8 Aug 2004 01:27:42 -0400 Subject: [nycbug-talk] install fest In-Reply-To: <20040807232153.GI13690@trot.local> References: <20040807232153.GI13690@trot.local> Message-ID: <20040808052742.GA84834@yinaska.pair.com> On Sat 2004.08.07 at 19:22 -0400, George Georgalis wrote: > On Sat, Aug 07, 2004 at 05:01:05PM -0400, G Rosamond wrote: > > > >Played a bit with OBSD. . .didn't have null modem cable to do a Soekris > >install. . . > > > > I'm kinda stuck, can't make an obsd bootable install disk... here's what I tried > > > #!/bin/bash > > rsync -av --progress --delete --delete-excluded \ > --exclude='alpha' \ > --exclude='amd64' \ > --exclude='arm' \ > --exclude='cats' \ > --exclude='hp300' \ > --exclude='hppa' \ > --exclude='m68k' \ > --exclude='m88k' \ > --exclude='mac68k' \ > --exclude='macppc' \ > --exclude='mvme68k' \ > --exclude='mvme88k' \ > --exclude='packages' \ > --exclude='powerpc' \ > --exclude='sparc' \ > --exclude='sparc64' \ > --exclude='vax' \ > rsync://ftp.nluug.nl/OpenBSD/3.5/ openbsd/3.5/ > > mkisofs -r -G ./i386/bsd.rd ./ \ > | ssh root at localhost "cdrecord -v dev=0,0,0 -eject -data -" bsd.rd is simply a ramdisk - you need an fs such as cdrom.fs in i386/ something like mkisofs -r -b i386/cdrom.fs . | ssh.... okan oh, and you probably do, but make sure you ahve all of i386/* > > The cd is made with the expected files > > $ ls /cdrom > ANNOUNCEMENT PACKAGES SIZES i386 src.tar.gz > Changelogs PORTS XF4.tar.gz ports.tar.gz sys.tar.gz > HARDWARE README ftplist root.mail tools > $ find /cdrom | wc -l > 135 > > ...but it doesn't boot. Any ideas? > > // George > > -- > George Georgalis, Architect and administrator, Linux services. IXOYE > http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org > Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month -- Okan Demirmen PGP-Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xB3670934 PGP-Fingerprint: 226D B4AE 78A9 7F4E CD2B 1B44 C281 AF18 B367 0934 From marco Tue Aug 10 10:26:02 2004 From: marco (marco at metm.org) Date: Tue, 10 Aug 2004 10:26:02 -0400 Subject: [nycbug-talk] for the website: best mailing lists Message-ID: <20040810142601.GA4021@metm.org> This is a question and a suggestion. What are the best mailing lists to be on to get information? What BSD mailing lists do you guys read most frequently? (other than nycbug which is a given) freebsd-questions ? openbsd-misc ? are there some harder to find ones which are real gems? I have often found that people have their own personal little stash of mailing lists, and email is often one of the best ways of getting information. Perhaps I am old fashioned but I have always prefered news and email to 'online forums' Would a list of email lists and their different characters be a good addition to the links page? -- Marco From okan Tue Aug 10 10:41:50 2004 From: okan (Okan Demirmen) Date: Tue, 10 Aug 2004 10:41:50 -0400 Subject: [nycbug-talk] for the website: best mailing lists In-Reply-To: <20040810142601.GA4021@metm.org> References: <20040810142601.GA4021@metm.org> Message-ID: <20040810144150.GB11479@yinaska.pair.com> On Tue 2004.08.10 at 10:26 -0400, marco at metm.org wrote: > This is a question and a suggestion. > > What are the best mailing lists to be on to get information? > What BSD mailing lists do you guys read most frequently? > (other than nycbug which is a given) > freebsd-questions ? openbsd-misc ? > are there some harder to find ones which are real gems? browse through http://marc.theaimsgroup.com/ ...for openbsd, i'd say misc@, ports@ and tech@ at the least for some humor and good info. some of the other openbsd lists are good, depending on how close you wish to follow the project. (i.e. source-changes@ - great for watching the evolution) my $.02 for openbsd lists ;) > I have often found that people have their own personal little stash of > mailing lists, and email is often one of the best ways of getting > information. Perhaps I am old fashioned but I have always prefered news > and email to 'online forums' > > Would a list of email lists and their different characters be a good > addition to the links page? > > -- > Marco > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month -- Okan Demirmen PGP-Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xB3670934 PGP-Fingerprint: 226D B4AE 78A9 7F4E CD2B 1B44 C281 AF18 B367 0934 From dave-dated-1092754701.544da9 Tue Aug 10 10:57:59 2004 From: dave-dated-1092754701.544da9 (Dave Steinberg) Date: Tue, 10 Aug 2004 10:57:59 -0400 Subject: [nycbug-talk] for the website: best mailing lists In-Reply-To: <20040810144150.GB11479@yinaska.pair.com> References: <20040810142601.GA4021@metm.org> <20040810144150.GB11479@yinaska.pair.com> Message-ID: > browse through http://marc.theaimsgroup.com/ ...for openbsd, i'd > say misc@, ports@ and tech@ at the least for some humor and good > info. some of the other openbsd lists are good, depending on how > close you wish to follow the project. (i.e. source-changes@ - great > for watching the evolution) > > my $.02 for openbsd lists ;) And if you get sick of the tidal wave crashing on you every morning, digest mode is great. Especially for source-changes and misc at . Regards, -- Dave Steinberg http://www.geekisp.com/ From marco Tue Aug 10 11:10:09 2004 From: marco (Marco Scoffier) Date: Tue, 10 Aug 2004 11:10:09 -0400 Subject: [nycbug-talk] for the website: best mailing lists In-Reply-To: <20040810144150.GB11479@yinaska.pair.com> References: <20040810142601.GA4021@metm.org> <20040810144150.GB11479@yinaska.pair.com> Message-ID: <20040810151009.GC4021@metm.org> On Tue, Aug 10, 2004 at 10:41:50AM -0400, Okan Demirmen wrote: > > browse through http://marc.theaimsgroup.com/ ...for openbsd, i'd I've seen this link before but never followed. Nice. Thanks. -- Marco From sunny-ml Tue Aug 10 11:21:38 2004 From: sunny-ml (Sunny Dubey) Date: Tue, 10 Aug 2004 11:21:38 -0400 Subject: [nycbug-talk] for the website: best mailing lists In-Reply-To: <20040810151009.GC4021@metm.org> References: <20040810142601.GA4021@metm.org> <20040810144150.GB11479@yinaska.pair.com> <20040810151009.GC4021@metm.org> Message-ID: <200408101121.38521.sunny-ml@opencurve.org> On Tuesday 10 August 2004 11:10, Marco Scoffier wrote: > On Tue, Aug 10, 2004 at 10:41:50AM -0400, Okan Demirmen wrote: > > browse through http://marc.theaimsgroup.com/ ...for openbsd, i'd > > I've seen this link before but never followed. Nice. Thanks. I find Gmane to be great stuff: http://gmane.org/ It has excellent threading support, which really really helps with complex threads. Sunny Dubey From hans Tue Aug 10 14:51:55 2004 From: hans (Hans Zaunere) Date: Tue, 10 Aug 2004 11:51:55 -0700 Subject: [nycbug-talk] Paging Kurt Miller Apache committer Message-ID: <41EE526EC2D3C74286415780D3BA9F870387D2AE@ehost011-1.exch011.intermedia.net> Please contact me offlist, Hans From hans Tue Aug 10 16:04:52 2004 From: hans (Hans Zaunere) Date: Tue, 10 Aug 2004 13:04:52 -0700 Subject: [nycbug-talk] NYCBUG Mailing Lists Message-ID: <41EE526EC2D3C74286415780D3BA9F870387D3EB@ehost011-1.exch011.intermedia.net> Good afternoon, The Announce and Talk mailing lists have been combined, and every subscribed to Talk is on Announce. From this point forward, announcements will only be posted to the Announce list. This message will be the last message that is cross-posted. Thus, everyone should receive it twice; once on Announce, and once on Talk. If you do not, please see http://lists.nycbug.org to manage your subscriptions, or contact me directly for assistance. Hans Z. From jschauma Tue Aug 10 16:23:49 2004 From: jschauma (Jan Schaumann) Date: Tue, 10 Aug 2004 16:23:49 -0400 Subject: [nycbug-talk] NYCBUG Mailing Lists In-Reply-To: <41EE526EC2D3C74286415780D3BA9F870387D3EB@ehost011-1.exch011.intermedia.net> References: <41EE526EC2D3C74286415780D3BA9F870387D3EB@ehost011-1.exch011.intermedia.net> Message-ID: <20040810202349.GA29570@netmeister.org> Hans Zaunere wrote: > The Announce and Talk mailing lists have been combined, and every > subscribed to Talk is on Announce. From this point forward, > announcements will only be posted to the Announce list. I'm not sure I understand this. Why would announce and talk be combined? If they were combined, why would combining them imply that they should be seeded with that talk-subscribers? -Jan -- chown -R us:enemy your_base -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 186 bytes Desc: not available Url : http://lists.nycbug.org/pipermail/talk/attachments/20040810/8ed991f0/attachment.bin From hans Tue Aug 10 16:19:45 2004 From: hans (Hans Zaunere) Date: Tue, 10 Aug 2004 13:19:45 -0700 Subject: [nycbug-talk] NYCBUG Mailing Lists Message-ID: <41EE526EC2D3C74286415780D3BA9F870387D41D@ehost011-1.exch011.intermedia.net> > > The Announce and Talk mailing lists have been combined, and every > > subscribed to Talk is on Announce. From this point forward, > > announcements will only be posted to the Announce list. > > I'm not sure I understand this. Why would announce and talk be > combined? If they were combined, why would combining them imply that > they should be seeded with that talk-subscribers? If you're on talk, and announcements are posted to talk as they have been, wouldn't you want to be on announce where announcements will be posted from now on? H From okan Tue Aug 10 16:20:01 2004 From: okan (Okan Demirmen) Date: Tue, 10 Aug 2004 16:20:01 -0400 Subject: [nycbug-talk] NYCBUG Mailing Lists In-Reply-To: <20040810202349.GA29570@netmeister.org> References: <41EE526EC2D3C74286415780D3BA9F870387D3EB@ehost011-1.exch011.intermedia.net> <20040810202349.GA29570@netmeister.org> Message-ID: <20040810202001.GA84505@yinaska.pair.com> On Tue 2004.08.10 at 16:23 -0400, Jan Schaumann wrote: > Hans Zaunere wrote: > > > The Announce and Talk mailing lists have been combined, and every > > subscribed to Talk is on Announce. From this point forward, > > announcements will only be posted to the Announce list. > > I'm not sure I understand this. Why would announce and talk be > combined? If they were combined, why would combining them imply that > they should be seeded with that talk-subscribers? i imagine that annonce@ has talk@ as a subscriber. > -Jan > > -- > chown -R us:enemy your_base > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month -- Okan Demirmen PGP-Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xB3670934 PGP-Fingerprint: 226D B4AE 78A9 7F4E CD2B 1B44 C281 AF18 B367 0934 From jschauma Tue Aug 10 16:31:03 2004 From: jschauma (Jan Schaumann) Date: Tue, 10 Aug 2004 16:31:03 -0400 Subject: [nycbug-talk] NYCBUG Mailing Lists In-Reply-To: <41EE526EC2D3C74286415780D3BA9F870387D41D@ehost011-1.exch011.intermedia.net> References: <41EE526EC2D3C74286415780D3BA9F870387D41D@ehost011-1.exch011.intermedia.net> Message-ID: <20040810203103.GB29570@netmeister.org> Hans Zaunere wrote: > > > > The Announce and Talk mailing lists have been combined, and every > > > subscribed to Talk is on Announce. From this point forward, > > > announcements will only be posted to the Announce list. > > > > I'm not sure I understand this. Why would announce and talk be > > combined? If they were combined, why would combining them imply that > > they should be seeded with that talk-subscribers? > > If you're on talk, and announcements are posted to talk as they have > been, wouldn't you want to be on announce where announcements will be > posted from now on? I might, but I also might not. Changes in mailing lists should be handled very carefully -- the only time seeding an ML with the previous subscribers is close to foolproof is if the ML has been renamed. I understood your message to mean that I am now subscribed to two lists (which is why I got the message twice): talk and announce. This seems to contradict the notion of these two being combined. But I may just be confused... -Jan -- If you can read this, you're not the president. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 186 bytes Desc: not available Url : http://lists.nycbug.org/pipermail/talk/attachments/20040810/aa5f854d/attachment.bin From hans Tue Aug 10 16:26:28 2004 From: hans (Hans Zaunere) Date: Tue, 10 Aug 2004 13:26:28 -0700 Subject: [nycbug-talk] NYCBUG Mailing Lists Message-ID: <41EE526EC2D3C74286415780D3BA9F870387D435@ehost011-1.exch011.intermedia.net> > > > > The Announce and Talk mailing lists have been combined, and every > > > > subscribed to Talk is on Announce. From this point forward, > > > > announcements will only be posted to the Announce list. > > > > > > I'm not sure I understand this. Why would announce and talk be > > > combined? If they were combined, why would combining them imply that > > > they should be seeded with that talk-subscribers? > > > > If you're on talk, and announcements are posted to talk as they have > > been, wouldn't you want to be on announce where announcements will be > > posted from now on? > > I might, but I also might not. Changes in mailing lists should be > handled very carefully -- the only time seeding an ML with the previous > subscribers is close to foolproof is if the ML has been renamed. The merge was quite easy, actually. > I understood your message to mean that I am now subscribed to two lists > (which is why I got the message twice): talk and announce. This seems That's correct... > to contradict the notion of these two being combined. Which is I why I said: "This message will be the last message that is cross-posted. Thus, everyone should receive it twice; once on Announce, and once on Talk. If you do not, please see http://lists.nycbug.org to manage your subscriptions, or contact me directly for assistance." H From jschauma Tue Aug 10 16:39:28 2004 From: jschauma (Jan Schaumann) Date: Tue, 10 Aug 2004 16:39:28 -0400 Subject: [nycbug-talk] NYCBUG Mailing Lists In-Reply-To: <41EE526EC2D3C74286415780D3BA9F870387D435@ehost011-1.exch011.intermedia.net> References: <41EE526EC2D3C74286415780D3BA9F870387D435@ehost011-1.exch011.intermedia.net> Message-ID: <20040810203928.GD29570@netmeister.org> Hans Zaunere wrote: > > I understood your message to mean that I am now subscribed to two > lists > > (which is why I got the message twice): talk and announce. This seems > > That's correct... > > > to contradict the notion of these two being combined. > > Which is I why I said: > > "This message will be the last message that is cross-posted. Thus, > everyone should receive it twice; once on Announce, and once on Talk. > If you do not, please see http://lists.nycbug.org to manage your > subscriptions, or contact me directly for assistance." So the statement ``the lists have been combined'' actually ment: ``there's a new list to which you have been subscribed''. I don't think that's a good idea, but oh well, whatever. I'll just unsubscribe. -Jan -- "Life," said Marvin, "don't talk to me about life." -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 186 bytes Desc: not available Url : http://lists.nycbug.org/pipermail/talk/attachments/20040810/a3644bd1/attachment.bin From lists Tue Aug 10 16:43:50 2004 From: lists (michael) Date: Tue, 10 Aug 2004 16:43:50 -0400 Subject: [nycbug-talk] NYCBUG Mailing Lists In-Reply-To: <20040810203103.GB29570@netmeister.org> References: <41EE526EC2D3C74286415780D3BA9F870387D41D@ehost011-1.exch011.intermedia.net> <20040810203103.GB29570@netmeister.org> Message-ID: <20040810164350.63d14105@delinux.abwatley.com> On Tue, 10 Aug 2004 16:31:03 -0400 Jan Schaumann wrote: > But I may just be confused... > This looks like a little house keeping to me. The talk list will now get any announcements automatically. If you were subscribed to 1 list, you are now subscribed to 1 list. If you were subscribed to 2 lists, you are now subscribed to 1 list. This is not offensive to me. Michael -- --- From jschauma Tue Aug 10 17:14:56 2004 From: jschauma (Jan Schaumann) Date: Tue, 10 Aug 2004 17:14:56 -0400 Subject: [nycbug-talk] NYCBUG Mailing Lists In-Reply-To: <20040810164350.63d14105@delinux.abwatley.com> References: <41EE526EC2D3C74286415780D3BA9F870387D41D@ehost011-1.exch011.intermedia.net> <20040810203103.GB29570@netmeister.org> <20040810164350.63d14105@delinux.abwatley.com> Message-ID: <20040810211456.GC14882@netmeister.org> michael wrote: > This looks like a little house keeping to me. The talk list will now > get any announcements automatically. > > If you were subscribed to 1 list, you are now subscribed to 1 list. > If you were subscribed to 2 lists, you are now subscribed to 1 list. Not quite. I was only subscribed to 1 list, and then was suddenly subscribed to 2 lists. (I since unsubscribed from the second list, so now I'm back to one.) But I'll shut up now. -Jan -- If you are undertaking anything substantial, C is the only reasonable choice of programming language. -- UNIX User's Supplementary Documents -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 186 bytes Desc: not available Url : http://lists.nycbug.org/pipermail/talk/attachments/20040810/ce3810a9/attachment.bin From spork Tue Aug 10 17:10:28 2004 From: spork (Charles Sprickman) Date: Tue, 10 Aug 2004 17:10:28 -0400 (EDT) Subject: [nycbug-talk] NYCBUG Mailing Lists In-Reply-To: <20040810211456.GC14882@netmeister.org> References: <41EE526EC2D3C74286415780D3BA9F870387D41D@ehost011-1.exch011.intermedia.net> <20040810203103.GB29570@netmeister.org> <20040810164350.63d14105@delinux.abwatley.com> <20040810211456.GC14882@netmeister.org> Message-ID: <20040810170958.Q718@toad.nat.fasttrackmonkey.com> On Tue, 10 Aug 2004, Jan Schaumann wrote: > I was only subscribed to 1 list, and then was suddenly subscribed to 2 > lists. (I since unsubscribed from the second list, so now I'm back to > one.) But regardless, you would get no more or less email. :) C > But I'll shut up now. > > -Jan > > -- > If you are undertaking anything substantial, C is the only reasonable choice > of programming language. > -- UNIX User's Supplementary Documents > From jfreeman Tue Aug 10 18:03:34 2004 From: jfreeman (Joshua S. Freeman) Date: Tue, 10 Aug 2004 18:03:34 -0400 Subject: [nycbug-talk] quick and dirty su question Message-ID: ok.. i can ssh into my freebsd box i am a sudoer and that works fine i cannot su - or su -root or su root... even though I know that root password. Someone help me out here.. i've briefly googled, unsuccessfully... I know i'll find the answer eventually but I need it now.. :-( -- Joshua S. Freeman Dir. of Information Technology New York Botanical Garden v: 718 817 8937 m: 347 392 2560 This message (including any attachments) contains confidential information intended for a specific individual/group of individuals and a specific purpose, and is protected by law. If you are not an intended recipient, you should delete this message. Any disclosure, copying, or distribution of this message, or the taking of any action based on it, is strictly prohibited. From marco Tue Aug 10 18:07:53 2004 From: marco (marco at metm.org) Date: Tue, 10 Aug 2004 18:07:53 -0400 Subject: [nycbug-talk] quick and dirty su question In-Reply-To: References: Message-ID: <20040810220752.GA698@metm.org> On Tue, Aug 10, 2004 at 06:03:34PM -0400, Joshua S. Freeman wrote: > ok.. > > i can ssh into my freebsd box > > i am a sudoer and that works fine > > i cannot su - or su -root or su root... > > even though I know that root password. > > Someone help me out here.. i've briefly googled, unsuccessfully... > > I know i'll find the answer eventually but I need it now.. In order to su to root you have to be part of the 'wheel' group. -- Marco From bob Tue Aug 10 18:08:06 2004 From: bob (Bob Ippolito) Date: Tue, 10 Aug 2004 18:08:06 -0400 Subject: [nycbug-talk] quick and dirty su question In-Reply-To: References: Message-ID: sudo -s On Aug 10, 2004, at 6:03 PM, Joshua S. Freeman wrote: > ok.. > > i can ssh into my freebsd box > > i am a sudoer and that works fine > > i cannot su - or su -root or su root... > > even though I know that root password. > > Someone help me out here.. i've briefly googled, unsuccessfully... > > I know i'll find the answer eventually but I need it now.. > > :-( > -- > Joshua S. Freeman > Dir. of Information Technology > New York Botanical Garden > v: 718 817 8937 m: 347 392 2560 > > This message (including any attachments) contains confidential > information > intended for a specific individual/group of individuals and a specific > purpose, and is protected by law. If you are not an intended > recipient, you > should delete this message. Any disclosure, copying, or distribution > of > this message, or the taking of any action based on it, is strictly > prohibited. > > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month From hans Tue Aug 10 18:20:53 2004 From: hans (Hans Zaunere) Date: Tue, 10 Aug 2004 15:20:53 -0700 Subject: [nycbug-talk] NYCBUG Mailing Lists Message-ID: <41EE526EC2D3C74286415780D3BA9F87038FE8A8@ehost011-1.exch011.intermedia.net> > > I was only subscribed to 1 list, and then was suddenly subscribed to 2 > > lists. (I since unsubscribed from the second list, so now I'm back to > > one.) Jan, that's fine, but just note that you'll miss all announcements. > But regardless, you would get no more or less email. :) Charles, exactly... H From jfreeman Wed Aug 11 10:53:41 2004 From: jfreeman (Joshua S. Freeman) Date: Wed, 11 Aug 2004 10:53:41 -0400 Subject: [nycbug-talk] ps / top question Message-ID: I'm still in the process of doing some bacula testing. Yesterday, around 12:30 i started writing rawfill to a tape in my tape library. When I was ready to go at 6:30 or so, it was still running. I hit 'control-z' and then 'bg'. I shutdown my 'puter and went home. Today ps returns: root 26509 0.0 0.1 1444 976 p0- DL 12:30AM 4:48.17 ./tapetest /dev and top returns: PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND 27919 root 28 0 1904K 1200K RUN 0:00 0.94% 0.24% top 26509 root -6 0 1444K 976K physst 4:48 0.00% 0.00% tapetest two questions: in the PS results, what does DL mean for a STAT and, is there ANY way to wake this process up so it can complete or do I have to kill -9 and start over? TIA, J. -- Joshua S. Freeman Dir. of Information Technology New York Botanical Garden v: 718 817 8937 m: 347 392 2560 This message (including any attachments) contains confidential information intended for a specific individual/group of individuals and a specific purpose, and is protected by law. If you are not an intended recipient, you should delete this message. Any disclosure, copying, or distribution of this message, or the taking of any action based on it, is strictly prohibited. From jfreeman Wed Aug 11 12:47:56 2004 From: jfreeman (Joshua S. Freeman) Date: Wed, 11 Aug 2004 12:47:56 -0400 Subject: [nycbug-talk] physst Message-ID: does anyone know what 'physst' means in the context of STATE when you run top to see your running processes? J. -- Joshua S. Freeman Dir. of Information Technology New York Botanical Garden v: 718 817 8937 m: 347 392 2560 This message (including any attachments) contains confidential information intended for a specific individual/group of individuals and a specific purpose, and is protected by law. If you are not an intended recipient, you should delete this message. Any disclosure, copying, or distribution of this message, or the taking of any action based on it, is strictly prohibited. From kstarsinic Wed Aug 11 14:11:39 2004 From: kstarsinic (Kurt Starsinic) Date: Wed, 11 Aug 2004 14:11:39 -0400 Subject: [nycbug-talk] physst In-Reply-To: References: Message-ID: <3cf4c0860408111111349b5bd6@mail.gmail.com> On Wed, 11 Aug 2004 12:47:56 -0400, Joshua S. Freeman wrote: > does anyone know what 'physst' means in the context of STATE when you run > top to see your running processes? It's actually a truncation of "physstr". It's something to do with physical I/O, and usually becomes a topic of interest when one encounters a process that can't be killed. A Google search reveals that it's asserted in sys/kern/phys_io.c and sys/kern/vfs_aio.c. HTH. - Kurt From jfreeman Wed Aug 11 14:31:36 2004 From: jfreeman (Joshua S. Freeman) Date: Wed, 11 Aug 2004 14:31:36 -0400 Subject: [nycbug-talk] physst In-Reply-To: <3cf4c0860408111111349b5bd6@mail.gmail.com> Message-ID: interesting.. well, what's supposed to be happening is that the taptest utility associated with bacula should be doing a 'rawfill' of data onto a tape in a tapedrive... :-) J. -- Joshua S. Freeman Dir. of Information Technology New York Botanical Garden v: 718 817 8937 m: 347 392 2560 This message (including any attachments) contains confidential information intended for a specific individual/group of individuals and a specific purpose, and is protected by law. If you are not an intended recipient, you should delete this message. Any disclosure, copying, or distribution of this message, or the taking of any action based on it, is strictly prohibited. > From: Kurt Starsinic > Reply-To: kstar at cpan.org > Date: Wed, 11 Aug 2004 14:11:39 -0400 > To: "Joshua S. Freeman" > Cc: "NYCBUG discussion list > Subject: Re: [nycbug-talk] physst > > On Wed, 11 Aug 2004 12:47:56 -0400, Joshua S. Freeman > wrote: >> does anyone know what 'physst' means in the context of STATE when you run >> top to see your running processes? > > It's actually a truncation of "physstr". It's something to do > with physical I/O, and usually becomes a topic of interest when one > encounters a process that can't be killed. A Google search reveals > that it's asserted in sys/kern/phys_io.c and sys/kern/vfs_aio.c. HTH. > > - Kurt > From tux Wed Aug 11 15:09:06 2004 From: tux (Kevin Reiter) Date: Wed, 11 Aug 2004 15:09:06 -0400 Subject: [nycbug-talk] FreeBSD.org Maillist.. Message-ID: <000701c47fd6$ad623580$0600a8c0@geekiskahn.net> Has anyone noticed anything strange with it today? I've tried to change the e-mail address I use for the subscriptions, and I keep receiving "bad format string" notifications: The results of your email command are provided below. Attached is your original message. - Results: Invalid confirmation string. Note that confirmation strings expire approximately 3 days after the initial subscription request. If your confirmation has expired, please try to re-submit your original request or message. I've tried responding to the original mail message as well as clicking the included URL within the subscribe message and receive the same thing. Odd... -Kev From kstarsinic Wed Aug 11 15:06:45 2004 From: kstarsinic (Kurt Starsinic) Date: Wed, 11 Aug 2004 15:06:45 -0400 Subject: [nycbug-talk] physst In-Reply-To: References: Message-ID: <3cf4c086040811120619aaa967@mail.gmail.com> On Wed, 11 Aug 2004 14:31:36 -0400, Joshua S. Freeman wrote: > interesting.. > > well, what's supposed to be happening is that the taptest utility associated > with bacula should be doing a 'rawfill' of data onto a tape in a > tapedrive... It's only a problem if it *freezes* in that state. For something that's doing relatively raw I/O to a relatively slow device, I would *expect* the process to be mostly "waiting for the hardware" until taptest completes. When I said that it "usually becomes *of interest*" with a process that can't get killed, I meant it's one of the very few ways that a process can (theoretically, and even then only in the case of device driver bugs) get into an unkillable state. - Kurt From elric Wed Aug 11 16:28:11 2004 From: elric (Roland C. Dowdeswell) Date: Wed, 11 Aug 2004 16:28:11 -0400 Subject: [nycbug-talk] quick and dirty su question In-Reply-To: Your message of "Tue, 10 Aug 2004 18:03:34 EDT." Message-ID: <20040811202811.12D9B174C7@arioch.imrryr.org> On 1092175414 seconds since the Beginning of the UNIX epoch "Joshua S. Freeman" wrote: > >i am a sudoer and that works fine > >i cannot su - or su -root or su root... > >even though I know that root password. Are you listed explicitly in the wheel group? If not, then you are not allowed to su. -- Roland Dowdeswell http://www.Imrryr.ORG/~elric/ From ike Wed Aug 11 17:47:21 2004 From: ike (Isaac Levy) Date: Wed, 11 Aug 2004 17:47:21 -0400 Subject: [nycbug-talk] FreeBSD.org Maillist.. In-Reply-To: <000701c47fd6$ad623580$0600a8c0@geekiskahn.net> References: <000701c47fd6$ad623580$0600a8c0@geekiskahn.net> Message-ID: <0661EBB3-EBE0-11D8-A005-000D9368D406@lesmuug.org> On Aug 11, 2004, at 3:09 PM, Kevin Reiter wrote: > Has anyone noticed anything strange with it today? I've tried to > change the > e-mail address I use for the subscriptions, and I keep receiving "bad > format > string" notifications: > > The results of your email command are provided below. Attached is your > original message. > > - Results: > Invalid confirmation string. Note that confirmation strings expire > approximately 3 days after the initial subscription request. If your > confirmation has expired, please try to re-submit your original > request or > message. > > I've tried responding to the original mail message as well as clicking > the > included URL within the subscribe message and receive the same thing. > > Odd... Could their mailman (or whatever list manager) be barfing or need some maintenance? Rocket- .ike From ike Wed Aug 11 19:01:29 2004 From: ike (Isaac Levy) Date: Wed, 11 Aug 2004 19:01:29 -0400 Subject: [nycbug-talk] CARP, coming to a FreeBSD box near you... Message-ID: <6128805E-EBEA-11D8-A005-000D9368D406@lesmuug.org> Hi all, There's been some fun discussion about OpenBSD's CARP at nycbug meetings- (I'm still personally reeling from Canada and seeing CARP/pfsync in action). Anyhow, with that, it seems as though a place for carp in the FreeBSD source tree has been made, with plans to introduce it after FreeBSD 5-STABLE cycle: http://www.freebsd.org/cgi/getmsg.cgi?fetch=2552657+0+/usr/local/www/ db/text/2004/cvs-all/20040808.cvs-all or- http://tinyurl.com/54vp7 -- For those of you who've cut yourselves on the edge, compiling the patch for CARP/FreeBSD, this is likely welcome news... Rocket- .ike From george Wed Aug 11 20:04:52 2004 From: george (George Georgalis) Date: Wed, 11 Aug 2004 20:04:52 -0400 Subject: [nycbug-talk] install fest In-Reply-To: <20040808052742.GA84834@yinaska.pair.com> References: <20040807232153.GI13690@trot.local> <20040808052742.GA84834@yinaska.pair.com> Message-ID: <20040812000452.GE5627@trot.local> On Sun, Aug 08, 2004 at 01:27:42AM -0400, Okan Demirmen wrote: >On Sat 2004.08.07 at 19:22 -0400, George Georgalis wrote: >> mkisofs -r -G ./i386/bsd.rd ./ \ >> | ssh root at localhost "cdrecord -v dev=0,0,0 -eject -data -" > >bsd.rd is simply a ramdisk - you need an fs such as cdrom.fs in i386/ > >something like mkisofs -r -b i386/cdrom.fs . | ssh.... Thanks, yeah; eventually, I didn't get *exactly* what I wanted on the cd, but too much is better than too little... Now my main tasks have been learning the disk label program... heh, and I consider myself a linux fdisk/mbr expert, disklabel is hard, particularly when not "just using the whole disk" Per Theo's request to test the 3.6 openbsd iso http://www.monkey.org/openbsd/archive/tech/0408/msg00331.html (which should be in all the snapshot mirrors now...) and my desire to learn new stuff (while not making coasters), anybody got comments/notes on setting up a PXE (network installer) based on the iso filesystem? (have done similar under linux... so the server is not so much a problem as exactly what to put in it) // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From ike Wed Aug 11 20:23:04 2004 From: ike (Isaac Levy) Date: Wed, 11 Aug 2004 20:23:04 -0400 Subject: [nycbug-talk] OpenBSD quick install from FreeBSD perspective? Message-ID: Hi all, I had a quick question re. OpenBSD installs, coming from a long love of FreeBSD: Basiclly, say I've got my OpenBSD install tweaked and all set to install (and re-install on hardware in the event of something catastrophic), but I want to come up with some way to pre-format the partitions on a clean wipe of a machine. This may sound like a dumb question, but I was thinking about it from the perspective of the FreeBSD installer, which gives fine auto-defaults for partition sizes, and the install is nearly muscle-memory at this point... -- Or, am I missing something cooler/simpler alltogether? Are my pre-conceived notions getting in my own way here? Any urls, or tricks, tips, or man page references greatly appreciated! Rocket- .ike From george Wed Aug 11 20:32:14 2004 From: george (George Georgalis) Date: Wed, 11 Aug 2004 20:32:14 -0400 Subject: [nycbug-talk] OpenBSD quick install from FreeBSD perspective? In-Reply-To: References: Message-ID: <20040812003214.GF5627@trot.local> On Wed, Aug 11, 2004 at 08:23:04PM -0400, Isaac Levy wrote: >Hi all, > >I had a quick question re. OpenBSD installs, coming from a long love of >FreeBSD: > >Basiclly, say I've got my OpenBSD install tweaked and all set to >install (and re-install on hardware in the event of something >catastrophic), but I want to come up with some way to pre-format the >partitions on a clean wipe of a machine. > >This may sound like a dumb question, but I was thinking about it from >the perspective of the FreeBSD installer, which gives fine >auto-defaults for partition sizes, and the install is nearly >muscle-memory at this point... > I'm not sure what you're talking about.... it's been a year + since I tried the FreeBSD installer; but OpenBSD installer offers complete flexibility in setting/formatting the slices and partitions. If you mean automated to your settings, I would guess that is just a matter of cracking open the installer script and changing to execute your commands, but this is beyond my personal BSD experience. Actually programming that is secondary (for me) to the PXE network boot question, in my post a little while ago. // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From ike Wed Aug 11 20:36:49 2004 From: ike (Isaac Levy) Date: Wed, 11 Aug 2004 20:36:49 -0400 Subject: [nycbug-talk] OpenBSD quick install from FreeBSD perspective? In-Reply-To: <20040812003214.GF5627@trot.local> References: <20040812003214.GF5627@trot.local> Message-ID: Wordup George, On Aug 11, 2004, at 8:32 PM, George Georgalis wrote: > > Actually programming that is secondary (for me) to the PXE network boot > question, in my post a little while ago. Dig- I wish I could help you with that one- but I've not messed with the PXE booting at all... our heads seem in similar but different states here... :) Rocket- .ike From chrisc Thu Aug 12 00:15:12 2004 From: chrisc (Chris Coleman) Date: Wed, 11 Aug 2004 21:15:12 -0700 (PDT) Subject: [nycbug-talk] OpenBSD Book Message-ID: <20040811211429.O16743@ithildin.daemonnews.org> I have a book publisher asking me for an OpenBSD author to write a book. Anyone interested? -Chris From lists Thu Aug 12 06:53:53 2004 From: lists (michael) Date: Thu, 12 Aug 2004 06:53:53 -0400 Subject: [nycbug-talk] BSD distros Message-ID: <411B4C41.1050701@genoverly.net> Aside from calling them "distros", which makes me uncomfortable.. this is an interesting article for an introduction to the big *BSD's. http://www.serverwatch.com/tutorials/article.php/3393051 August 10, 2004 Differentiating Among BSD Distros By Martin Brown Organizations that want to use a public Unix variant have two solutions from which to chose: Linux and BSD. The much talked about Linux camp contains a variety of distributions that include different utilities and tool sets. The same is true of the less frequently covered BSD camp. This article compares and contrasts the four main BSD variants and offers recommendations for both server- and desktop-based solutions. From george Thu Aug 12 09:36:26 2004 From: george (George Georgalis) Date: Thu, 12 Aug 2004 09:36:26 -0400 Subject: PXE boot Re: [nycbug-talk] install fest In-Reply-To: <20040812000452.GE5627@trot.local> References: <20040807232153.GI13690@trot.local> <20040808052742.GA84834@yinaska.pair.com> <20040812000452.GE5627@trot.local> Message-ID: <20040812133626.GP5627@trot.local> On Wed, Aug 11, 2004 at 08:04:52PM -0400, George Georgalis wrote: > >and my desire to learn new stuff (while not making coasters), anybody >got comments/notes on setting up a PXE (network installer) based on the >iso filesystem? (have done similar under linux... so the server is not >so much a problem as exactly what to put in it) Well I made great progress! I have dhcpd/PXE working, and I'm booting via OpenBSD/snapshots/i386/pxeboot with bsd.rd in my tftpd root etc/boot.conf Looks like there is a OpenBSD/3.5/i386/pxeboot too... now to modify the bsd.rd to program my custom install. How is that file made? $ file bsd.rd bsd.rd: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), statically linked, not stripped // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From truk Thu Aug 12 11:09:29 2004 From: truk (Kurt Miller) Date: Thu, 12 Aug 2004 11:09:29 -0400 Subject: PXE boot Re: [nycbug-talk] install fest References: <20040807232153.GI13690@trot.local> <20040808052742.GA84834@yinaska.pair.com> <20040812000452.GE5627@trot.local> <20040812133626.GP5627@trot.local> Message-ID: <004801c4807e$5d892480$1d0110ac@focus> From: "George Georgalis" > Looks like there is a OpenBSD/3.5/i386/pxeboot too... now to modify the > bsd.rd to program my custom install. How is that file made? > If your going to customize the install, you may as well build a stable system so that you install -stable with the latest patches. I use a separate VMWare install just for building -stable on. A dual booted laptop or extra machine works just as well too. See release(8), bsd.rd is built during that process. Modify /usr/src/distrib/miniroot install.sh and upgrade.sh as needed before doing the release(8) process. -Kurt From jschauma Thu Aug 12 12:27:35 2004 From: jschauma (Jan Schaumann) Date: Thu, 12 Aug 2004 12:27:35 -0400 Subject: [nycbug-talk] BSD distros In-Reply-To: <411B4C41.1050701@genoverly.net> References: <411B4C41.1050701@genoverly.net> Message-ID: <20040812162735.GA25530@netmeister.org> michael wrote: > Aside from calling them "distros", which makes me uncomfortable.. this > is an interesting article for an introduction to the big *BSD's. > > http://www.serverwatch.com/tutorials/article.php/3393051 I notice that the author changed the text a bit since yesterday. He originally stated that NetBSD came about b/c FreeBSD development took too long (or some other nonsense). I pointed out to him that NetBSD was born several months before FreeBSD, which he now seems to have corrected. -Jan -- I'm not even supposed to be here today! -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 186 bytes Desc: not available Url : http://lists.nycbug.org/pipermail/talk/attachments/20040812/b7f608ac/attachment.bin From george Thu Aug 12 17:27:38 2004 From: george (G.Rosamond) Date: Thu, 12 Aug 2004 17:27:38 -0400 Subject: [nycbug-talk] NYCBUG banner Message-ID: <6F72D0A6-ECA6-11D8-B638-000D9328615E@sddi.net> Thanks much to Kevin Reiter. . . Kevin has managed to get us a large (2'x5' or so) NYCBUG banner on vinyl with grommets and the whole nine. . . It will read: New York City *BSD User Group www.nycbug.org (Kevin. . .no 's' on 'user'). . . We look forward to having the banner draped over the back of the seating area at the Apple Theater next meeting. . . g From tux Thu Aug 12 17:57:40 2004 From: tux (Kevin Reiter) Date: Thu, 12 Aug 2004 17:57:40 -0400 Subject: [nycbug-talk] NYCBUG banner References: <6F72D0A6-ECA6-11D8-B638-000D9328615E@sddi.net> Message-ID: <004b01c480b7$6455eda0$0600a8c0@geekiskahn.net> : It will read: : : : New York City *BSD User Group : www.nycbug.org A point of clarification: the actual logo won't be used on the banner, just the "NYCBUG" using the logo colors. Everything else is the same (no "'s" after "User".) ETA is hopefully some time next week, but definitely before the next meeting (which I'll be attending *shock* to deliver the banner.) I'll take a picture of it and post it somewhere after it's done so everyone can drool/slobber over it :) -Kevin From tux Thu Aug 12 18:08:01 2004 From: tux (Kevin Reiter) Date: Thu, 12 Aug 2004 18:08:01 -0400 Subject: [nycbug-talk] Net Integrator Mark I Message-ID: <006d01c480b8$d57f6410$0600a8c0@geekiskahn.net> All, If anyone is interested, I have a Mark I for sale. The system is 2 months old, and if sold before EOM it will have it's three-year hardware and software warranties reset (to a full three years each) to the date of delivery. Current NITIX version is 3.76a#0. For further information on this unit, check out http://www.net-itech.com and http://www.nitix.com or contact me off-list. I'm not allowed (as per NDA) to advertise the price of this unit lower than MSRP, so please contact me off-list for the actual price. NOTE: NOT FOR RESALE ON ONLINE AUCTION SITES SUCH AS eBAY! MSRP: $3,399 -Kevin From trish Fri Aug 13 11:48:06 2004 From: trish (Trish Lynch) Date: Fri, 13 Aug 2004 11:48:06 -0400 (EDT) Subject: [nycbug-talk] FreeBSD.org Maillist.. In-Reply-To: <0661EBB3-EBE0-11D8-A005-000D9368D406@lesmuug.org> References: <000701c47fd6$ad623580$0600a8c0@geekiskahn.net> <0661EBB3-EBE0-11D8-A005-000D9368D406@lesmuug.org> Message-ID: <20040813114734.M17795@ultra.bsdunix.net> > > Could their mailman (or whatever list manager) be barfing or need some > maintenance? > > Rocket- > .ike > They should just use Ecartis and make everything simple ;) -Trish -- Trish Lynch trish at bsdunix.net Ecartis Core Team trish at listmistress.org EFNet IRC Operator/SysAdmin @ irc.dkom.at AilleCat at EFNet Key fingerprint = 781D 2B47 AA4B FC88 B919 0CD6 26B2 1D62 6FC1 FF16 From trish Fri Aug 13 11:49:48 2004 From: trish (Trish Lynch) Date: Fri, 13 Aug 2004 11:49:48 -0400 (EDT) Subject: [nycbug-talk] NYCBUG banner In-Reply-To: <6F72D0A6-ECA6-11D8-B638-000D9328615E@sddi.net> References: <6F72D0A6-ECA6-11D8-B638-000D9328615E@sddi.net> Message-ID: <20040813114914.P17795@ultra.bsdunix.net> On Thu, 12 Aug 2004, G.Rosamond wrote: > Thanks much to Kevin Reiter. . . > > Kevin has managed to get us a large (2'x5' or so) NYCBUG banner on > vinyl with grommets and the whole nine. . . > > It will read: > > > New York City *BSD User Group > www.nycbug.org > > (Kevin. . .no 's' on 'user'). . . > > We look forward to having the banner draped over the back of the > seating area at the Apple Theater next meeting. . . > I'm actually looking for someone that makes banners similar to that (but more for parade use).... Any ideas? -Trish -- Trish Lynch trish at bsdunix.net Ecartis Core Team trish at listmistress.org EFNet IRC Operator/SysAdmin @ irc.dkom.at AilleCat at EFNet Key fingerprint = 781D 2B47 AA4B FC88 B919 0CD6 26B2 1D62 6FC1 FF16 From tux Fri Aug 13 13:16:31 2004 From: tux (Kevin Reiter) Date: Fri, 13 Aug 2004 13:16:31 -0400 Subject: [nycbug-talk] NYCBUG banner References: <6F72D0A6-ECA6-11D8-B638-000D9328615E@sddi.net> <20040813114914.P17795@ultra.bsdunix.net> Message-ID: <002201c48159$47cf31d0$0600a8c0@geekiskahn.net> : I'm actually looking for someone that makes banners similar to that (but : more for parade use).... : : Any ideas? Just let me know what you want/need and I can find out. I have 2 clients that make signs, so it shouldn't be a problem. -Kevin From george Fri Aug 13 15:40:38 2004 From: george (George Georgalis) Date: Fri, 13 Aug 2004 15:40:38 -0400 Subject: [nycbug-talk] pkg_add and precompiled repositories Message-ID: <20040813194038.GB26817@trot.local> I was looking at my 2Gb mirror of OpenBSD/packages/i386/ and the pkg_add man and wondering about a better way. Apparently you can specify a URL with the pkg_add command or use the environmental PKG_PATH to specify local directories (delimited by double colon) to search for the package, but is there no convention to specify a URL as a repository??? I'd assume not put (and maintain) 2GB per host for the luxury of convenient package installs; NFS is an (undesired) option, but wouldn't it be much simpler to maintain one local repository and set a URL in PKG_PATH to ftp that box? I've not looked at DFly docs for this process, but I'll need a solution there too. // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From mlists Fri Aug 13 19:41:34 2004 From: mlists (mlists at bizintegrators.com) Date: Fri, 13 Aug 2004 19:41:34 -0400 Subject: [nycbug-talk] pkg_add and precompiled repositories In-Reply-To: <20040813194038.GB26817@trot.local> References: <20040813194038.GB26817@trot.local> Message-ID: <20040813234134.GA10310@bizintegrators.com> On Fri, Aug 13, 2004 at 03:40:38PM -0400, George Georgalis wrote: > I was looking at my 2Gb mirror of OpenBSD/packages/i386/ and the pkg_add > man and wondering about a better way. > > Apparently you can specify a URL with the pkg_add command or use the > environmental PKG_PATH to specify local directories (delimited by > double colon) to search for the package, but is there no convention to > specify a URL as a repository??? export PKG_PATH=ftp://ftp.openbsd.org/pub/OpenBSD/3.5/packages/i386/ pkg_add ${PKG_PATH}package-x.y.z.tgz Should do dependencies as well. Works with http also. > > I'd assume not put (and maintain) 2GB per host for the luxury of > convenient package installs; NFS is an (undesired) option, but wouldn't > it be much simpler to maintain one local repository and set a URL in > PKG_PATH to ftp that box? > You could keep in local depository only packages that you need, instead of all 2GB. Instead of NFS, you could use HTTP. From george Fri Aug 13 20:22:04 2004 From: george (George Georgalis) Date: Fri, 13 Aug 2004 20:22:04 -0400 Subject: [nycbug-talk] pkg_add and precompiled repositories In-Reply-To: <20040813234134.GA10310@bizintegrators.com> References: <20040813194038.GB26817@trot.local> <20040813234134.GA10310@bizintegrators.com> Message-ID: <20040814002203.GC26817@trot.local> On Fri, Aug 13, 2004 at 07:41:34PM -0400, mlists at bizintegrators.com wrote: >On Fri, Aug 13, 2004 at 03:40:38PM -0400, George Georgalis wrote: >> I was looking at my 2Gb mirror of OpenBSD/packages/i386/ and the pkg_add >> man and wondering about a better way. >> >> Apparently you can specify a URL with the pkg_add command or use the >> environmental PKG_PATH to specify local directories (delimited by >> double colon) to search for the package, but is there no convention to >> specify a URL as a repository??? > >export PKG_PATH=ftp://ftp.openbsd.org/pub/OpenBSD/3.5/packages/i386/ >pkg_add ${PKG_PATH}package-x.y.z.tgz In that case I would just program a function or alias (new_pkg_add) that takes $1 (package-x.y.z.tgz) to do the magic "check-n-use PKG_PATH or execute a pkg_add $PKG_URL/$1" it just seems like a kluge. I'm surprised it's not already worked out that a (or several) URL can be contained in PKG_PATH. If you build on that, to determine the most current version available, too, you've just improved on apt-get + apt/sources.list functionality... "pkg_add xfree86" anyone think of a reason why this wouldn't be a good patch for pkg_add? // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From mlists Fri Aug 13 20:45:36 2004 From: mlists (mlists at bizintegrators.com) Date: Fri, 13 Aug 2004 20:45:36 -0400 Subject: [nycbug-talk] pkg_add and precompiled repositories In-Reply-To: <20040814002203.GC26817@trot.local> References: <20040813194038.GB26817@trot.local> <20040813234134.GA10310@bizintegrators.com> <20040814002203.GC26817@trot.local> Message-ID: <20040814004536.GB10310@bizintegrators.com> On Fri, Aug 13, 2004 at 08:22:04PM -0400, George Georgalis wrote: > On Fri, Aug 13, 2004 at 07:41:34PM -0400, mlists at bizintegrators.com wrote: > >On Fri, Aug 13, 2004 at 03:40:38PM -0400, George Georgalis wrote: > >> I was looking at my 2Gb mirror of OpenBSD/packages/i386/ and the pkg_add > >> man and wondering about a better way. > >> > >> Apparently you can specify a URL with the pkg_add command or use the > >> environmental PKG_PATH to specify local directories (delimited by > >> double colon) to search for the package, but is there no convention to > >> specify a URL as a repository??? > > > >export PKG_PATH=ftp://ftp.openbsd.org/pub/OpenBSD/3.5/packages/i386/ > >pkg_add ${PKG_PATH}package-x.y.z.tgz > > In that case I would just program a function or alias (new_pkg_add) that > takes $1 (package-x.y.z.tgz) to do the magic "check-n-use PKG_PATH or > execute a pkg_add $PKG_URL/$1" You can do directly: pkg_add http://server/package I'm not sure this will pull dependencies, haven't used it in a while. > > it just seems like a kluge. I'm surprised it's not already worked out > that a (or several) URL can be contained in PKG_PATH. It can, like you saw in the man page, separated by column. Again, not sure about dependencies, but perhaps you can just set the PKG_PATH to an URL and then do pkg_add and it will pull them all from http. > If you build on > that, to determine the most current version available, too, you've just > improved on apt-get + apt/sources.list functionality... "pkg_add xfree86" There is usually only one / latest version available in packages directory on OpenBSD FTP site. From george Sat Aug 14 15:29:36 2004 From: george (George Georgalis) Date: Sat, 14 Aug 2004 15:29:36 -0400 Subject: [nycbug-talk] pkg_add and precompiled repositories In-Reply-To: <20040814004536.GB10310@bizintegrators.com> References: <20040813194038.GB26817@trot.local> <20040813234134.GA10310@bizintegrators.com> <20040814002203.GC26817@trot.local> <20040814004536.GB10310@bizintegrators.com> Message-ID: <20040814192936.GA22120@trot.local> On Fri, Aug 13, 2004 at 08:45:36PM -0400, mlists at bizintegrators.com wrote: >On Fri, Aug 13, 2004 at 08:22:04PM -0400, George Georgalis wrote: >> On Fri, Aug 13, 2004 at 07:41:34PM -0400, mlists at bizintegrators.com wrote: >> >On Fri, Aug 13, 2004 at 03:40:38PM -0400, George Georgalis wrote: >> >> I was looking at my 2Gb mirror of OpenBSD/packages/i386/ and the pkg_add >> >> man and wondering about a better way. >> >> >> >> Apparently you can specify a URL with the pkg_add command or use the >> >> environmental PKG_PATH to specify local directories (delimited by >> >> double colon) to search for the package, but is there no convention to >> >> specify a URL as a repository??? >> > >> >export PKG_PATH=ftp://ftp.openbsd.org/pub/OpenBSD/3.5/packages/i386/ >> >pkg_add ${PKG_PATH}package-x.y.z.tgz >> >> In that case I would just program a function or alias (new_pkg_add) that >> takes $1 (package-x.y.z.tgz) to do the magic "check-n-use PKG_PATH or >> execute a pkg_add $PKG_URL/$1" > >You can do directly: pkg_add http://server/package > >I'm not sure this will pull dependencies, haven't used it in a while. it says it will... http://www.openbsd.org/cgi-bin/man.cgi?query=pkg_add Some packages may depend on other packages. When resolving dependencies pkg_add will first look at already installed packages, then match depen- dencies with the list of packages left to install, then install default packages that satisfy the dependencies. ,that's openbsd. it looks like dragonfly has figured it out already. http://www.forknibbler.com/handbook/packages-using.html If you do not have a source of local packages then it will probably be easier to use the -r option to pkg_add(1). This will cause the utility to automatically determine the correct object format and release and then fetch and install the package from an FTP site. # pkg_add -r lsof The example above would download the correct package and add it without any further user intervention. If you want to specify an alternative DragonFly Packages Mirror, instead of the main distribution site, you have to set PACKAGESITE accordingly, to override the default settings. -r Use the remote fetching feature. This will determine the appro- priate objformat and release and then fetch and install the pack- age. // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From SKiefer Sat Aug 14 15:40:31 2004 From: SKiefer (SKiefer at bigben-interactive.de) Date: Sat, 14 Aug 2004 21:40:31 +0200 Subject: [nycbug-talk] Re: talk Digest, Vol 9, Issue 13 Message-ID: <19485048259999@mail.bigben-interactive.de> Vielen Dank f?r Ihre Nachricht! Ich bin am Montag, den 23.08.2004 wieder im Haus. In dringenden F?llen erreichen Sie mich Mobil : 0174-3474064 ch werde Ihnen schnellstm?glich antworten, sobald ich wieder im Haus bin. Thank you for your mail. I am out of the office until monday, august 23th 2004. In urgent cases please call me on my cellphone contact +49 174 34 740 64 I will get back to you as soon I am back in the office. Viele Gr??e, best regards, Stefan Kiefer Footertesttext From scottro Sun Aug 15 12:45:54 2004 From: scottro (Scott Robbins) Date: Sun, 15 Aug 2004 12:45:54 -0400 Subject: [nycbug-talk] Flash and advocacy Message-ID: <20040815164554.GA49591@scottro11.homeunix.net> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 A BSD enthusiast on the BSD forums has posted a petition to sign to be sent to Macromedia asking for a BSD flash version. Regardless of what we feel about flash pages :), it does seem a way to let a vendor know that BSD is major market. The petition is at http://arameus.net/petition/index.php At present there are still very few (48 or so) signatures. Anyway, thought it worth mentioning. - -- Scott PGP keyID EB3467D6 ( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 ) gpg --keyserver pgp.mit.edu --recv-keys EB3467D6 Buffy: I wish we could be regular kids. Angel: I'll never be a kid. Buffy: Okay then, a regular kid and her cradle-robbing creature-of-the-night boyfriend. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBH5NC+lTVdes0Z9YRAshSAKC92PD0tcucko+0du5Ta7L4OseJ1wCgtpNt 6n9utEdlzuoB132ESnsdWYs= =UTiE -----END PGP SIGNATURE----- From mspitze1 Sun Aug 15 12:48:54 2004 From: mspitze1 (Marc Spitzer) Date: Sun, 15 Aug 2004 12:48:54 -0400 Subject: [nycbug-talk] Ingres going open source Message-ID: <20040815124854.71bb4996@bogomips.optonline.net> Here is the link: http://opensource.ca.com/projects/ingres marc From j Sun Aug 15 13:00:05 2004 From: j (Freeman, Joshua) Date: Sun, 15 Aug 2004 13:00:05 -0400 Subject: [nycbug-talk] Job: freeBSD/bacula/spectralogic 10000 Message-ID: <319FD9EAB7A43E43895ACA5AA1F81E05051A29@xmail.nybg.org> I took a quick look at the NYCBUG site to see if it has a job board like nylug but didn't see one. Here's the situation: I have an ION computing rack-mounted server with a 4 drive RAID array running FreeBSD 4.10 stable. It's connected to spectralogic 10000 tape library with 20 slots and 2 AIT (3, i think) tape drives. I am looking for someone with enterprise-level backup experience to commit him/herself to: 1) installing bacula and getting it to successfully and reliably drive the SpectraLogic tape library including both drives and all the necessary functions. It's worth mentioning that there are documented/known issues with FreeBSD and Bacula having to do with Pthreads... 2) once item (1) has been successfully completed, item (2) will be to consult with us in putting together a really top-flight backup scheme for about 15 application servers and a currently unknown number of workstations. We need to achieve these 2 goals as soon as possible. If you are interested in applying for this gig, please send me: o a current resume o a brief cover letter o what you would charge for this work- I'd like to know your hourly rate as well what you'd charge as a project fee to cover all the work for a fixed price. Feel free to call or email me with any questions. Thanks! Joshua Joshua S. Freeman Director, Information Technology, NYBG v: 718 817 8937 m: 347 392 2560 jfreeman at nybg dot org -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.nycbug.org/pipermail/talk/attachments/20040815/6e8ff02f/attachment.html From bob Sun Aug 15 14:52:31 2004 From: bob (Bob Ippolito) Date: Sun, 15 Aug 2004 14:52:31 -0400 Subject: [nycbug-talk] Flash and advocacy In-Reply-To: <20040815164554.GA49591@scottro11.homeunix.net> References: <20040815164554.GA49591@scottro11.homeunix.net> Message-ID: <43586646-EEEC-11D8-B58B-000A95686CD8@redivi.com> On Aug 15, 2004, at 12:45 PM, Scott Robbins wrote: > A BSD enthusiast on the BSD forums has posted a petition to sign to be > sent to Macromedia asking for a BSD flash version. > > Regardless of what we feel about flash pages :), it does seem a way to > let a vendor know that BSD is major market. > > The petition is at > http://arameus.net/petition/index.php > > At present there are still very few (48 or so) signatures. Flash isn't just for web pages; it's pretty important for embedded applications. It's definitely the quickest and cheapest way to develop a custom GUI (no standard widgets, which is fine for touchscreen apps). I know of several companies that develop Linux based kiosk systems that use Flash. I've worked on a few in the past. Having another OS option would be nice. -bob From joshmccormack Sun Aug 15 16:42:53 2004 From: joshmccormack (Josh McCormack) Date: Sun, 15 Aug 2004 16:42:53 -0400 Subject: [nycbug-talk] hardware to give away and RAM needed Message-ID: <411FCACD.9090901@travelersdiary.com> I have some old hardware that I want to give away. If you can contribute parts to make these things more useable, perhaps we can assemble, load an OS at an install fest and hand it off to someone. Umax Vista S6 SCSI scanner Both of these were neighbors boxes they set free on the street: One box with K6/2 CPU, AT monitor port (not PS/2 or USB), one stick of RAM, a 6 Gig HD I removed, floppy, CD-ROM. It booted up, but with no AT keyboard/mouse I could do little with it. A Compaq Presario 4504 system with some old Intel CPU (pentium 100 something maybe) and ps/2 keyboard, has USB ports on it, no hard drive, no RAM. Can't remember what other drives it has. Pretty sure there's at least a CD-ROM drive on it. I'm also looking to change some RAM in a box. If anyone has some to sell or give away, I'm running a Dell OptiPlex GX110. I think I have two 128MB SDRAM, PC100 Non-parity sticks in there, I'd like to have two 256MB SDRAM PC100 Non-parity. Josh From ike Sun Aug 15 19:46:39 2004 From: ike (Isaac Levy) Date: Sun, 15 Aug 2004 19:46:39 -0400 Subject: [nycbug-talk] Job: freeBSD/bacula/spectralogic 10000 In-Reply-To: <319FD9EAB7A43E43895ACA5AA1F81E05051A29@xmail.nybg.org> References: <319FD9EAB7A43E43895ACA5AA1F81E05051A29@xmail.nybg.org> Message-ID: <5A36191A-EF15-11D8-9F05-000D9368D406@lesmuug.org> Hello Joshua, On Aug 15, 2004, at 1:00 PM, Freeman, Joshua wrote: > I took a quick look at the NYCBUG site to see if it has a job board > like nylug but didn't see one. Ahh- There is a Jobs mailing list, one of the 3 lists NYCBUG maintains: http://lists.nycbug.org/mailman/listinfo You should re-post it there! Best, .ike From j Sun Aug 15 20:31:36 2004 From: j (Freeman, Joshua) Date: Sun, 15 Aug 2004 20:31:36 -0400 Subject: [nycbug-talk] why I posted the job for FreeBSD/Bacula/SpectraLogic. (LONG!) Message-ID: <319FD9EAB7A43E43895ACA5AA1F81E05051A30@xmail.nybg.org> I've lost a couple of weeks now trying to get bacula to work with the tape library we have. it's a spectralogic 10000 library with 2 ait2 drives and 20 tape slots... Here, in some detail, are the steps I've taken so far.. 1)- configure bacula (it's already installed mind you, but I figured I'll start 'clean') pawpaw# ./configure --with-mysql ... (lots of config output cut) ... configure: WARNING: resolv.h: present but cannot be compiled configure: WARNING: resolv.h: check for missing prerequisite headers? configure: WARNING: resolv.h: proceeding with the preprocessor's result configure: WARNING: ## ------------------------------------ ## configure: WARNING: ## Report this to bug-autoconf at gnu.org. ## configure: WARNING: ## ------------------------------------ ## checking for resolv.h... yes ... (more config output cut) ... Configuration on Sat Aug 14 09:39:45 EDT 2004: Host: i386-unknown-freebsd4.10 -- freebsd 4.10-RELEASE Bacula version: 1.34.6 (28 July 2004) Source code location: . Install binaries: /sbin Install config files: /etc/bacula Scripts directory: /etc/bacula Working directory: /var/bacula/working PID directory: /var/run Subsys directory: /var/run/subsys C Compiler: gcc 2.95.4 C++ Compiler: g++ 2.95.4 Compiler flags: -g -O2 -pthread Linker flags: Libraries: -pthread -lxpg4 Statically Linked Tools: no Statically Linked FD: no Statically Linked SD: no Statically Linked DIR: no Statically Linked CONS: no Database type: MySQL Database lib: -L/usr/local/lib/mysql -lmysqlclient_r -lz Job Output Email: root at localhost Traceback Email: root at localhost SMTP Host Address: localhost Director Port: 9101 File daemon Port: 9102 Storage daemon Port: 9103 Director User: Director Group: Storage Daemon User: Storage DaemonGroup: File Daemon User: File Daemon Group: SQL binaries Directory /usr/local/bin Large file support: yes Bacula conio support: yes -ltermcap readline support: no TCP Wrappers support: no ZLIB support: yes enable-smartalloc: yes enable-gnome: no enable-wx-console: no client-only: no ACL support: no 2) make bacula... pawpaw# make ... make output cut ... 3) make install ... make install output cut ... ==== Make of filed is good ==== /usr/bin/install -c -m 0754 bacula-fd /sbin/bacula-fd ==> Found existing bacula-fd.conf, installing new conf file as bacula-fd.conf.new /usr/bin/install -c -m 640 bacula-fd.conf /etc/bacula/bacula-fd.conf.new ==== Make of console is good ==== /usr/bin/install -c -m 0754 bconsole /sbin/bconsole ==> Found existing bconsole.conf, installing new conf file as bconsole.conf.new /usr/bin/install -c -m 640 bconsole.conf /etc/bacula/bconsole.conf.new if test -f static-bconsole; then /usr/bin/install -c -m 0754 static-bconsole /sbin/static-bconsole; fi /usr/bin/install -c -m 0754 create_mysql_database /etc/bacula/create_mysql_database /usr/bin/install -c -m 0754 update_mysql_tables /etc/bacula/update_mysql_tables /usr/bin/install -c -m 0754 make_mysql_tables /etc/bacula/make_mysql_tables /usr/bin/install -c -m 0754 grant_mysql_privileges /etc/bacula/grant_mysql_privileges /usr/bin/install -c -m 0754 drop_mysql_tables /etc/bacula/drop_mysql_tables /usr/bin/install -c -m 0754 drop_mysql_database /etc/bacula/drop_mysql_database /usr/bin/install -c -m 0754 create_bacula_database /etc/bacula/create_bacula_database /usr/bin/install -c -m 0754 update_bacula_tables /etc/bacula/update_bacula_tables /usr/bin/install -c -m 0754 make_bacula_tables /etc/bacula/make_bacula_tables /usr/bin/install -c -m 0754 grant_bacula_privileges /etc/bacula/grant_bacula_privileges /usr/bin/install -c -m 0754 drop_bacula_tables /etc/bacula/drop_bacula_tables /usr/bin/install -c -m 0754 drop_bacula_database /etc/bacula/drop_bacula_database /usr/bin/install -c -m 0754 make_catalog_backup /etc/bacula/make_catalog_backup /usr/bin/install -c -m 0754 delete_catalog_backup /etc/bacula/delete_catalog_backup ==== Make of dird is good ==== /usr/bin/install -c -m 0754 bacula-dir /sbin/bacula-dir ==> Found existing bacula-dir.conf, installing new conf file as bacula-dir.conf.new /usr/bin/install -c -m 640 bacula-dir.conf /etc/bacula/bacula-dir.conf.new if test -f /etc/bacula/query.sql; then /bin/mv -f /etc/bacula/query.sql /etc/bacula/query.sql.save; fi /usr/bin/install -c -m 644 query.sql /etc/bacula/query.sql ===== Make of stored is good ==== /usr/bin/install -c -m 0754 bacula-sd /sbin/bacula-sd /usr/bin/install -c -m 0754 bls /sbin/bls /usr/bin/install -c -m 0754 bextract /sbin/bextract /usr/bin/install -c -m 0754 bcopy /sbin/bcopy /usr/bin/install -c -m 0754 bscan /sbin/bscan /usr/bin/install -c -m 0754 btape /sbin/btape ==> Found existing bacula-sd.conf, installing new conf file as bacula-sd.conf.new /usr/bin/install -c -m 640 bacula-sd.conf /etc/bacula/bacula-sd.conf.new /usr/bin/install -c -m 0754 bsmtp /sbin/bsmtp chmod 755 /sbin/bsmtp /usr/bin/install -c -m 0754 dbcheck /sbin/dbcheck 4) so, then we cd-ed into platforms/freebsd and typed... pawpaw# c++ -g -Wall -c tapetest.c pawpaw# c++ -g -Wall tapetest.o -o tapetest pawpaw# ./tapetest /dev/sa0 *rewind Rewound /dev/sa0 *rawfill 5) ... 24 hours later we see: weof_dev Wrote EOF to /dev/sa0 Write failed. Last block written=17043522. stat=-1 ERR=Invalid argument *rewind Rewound /dev/sa0 *scan Starting scan at file 0 Bad status from read -1. ERR=Invalid argument *quit so... 6) pawpaw# c++ -g -Wall -pthread -c tapetest.c pawpaw# c++ -g -Wall -pthread tapetest.o -o tapetest pawpaw# ./tapetest /dev/sa0 *rewind Rewound /dev/sa0 *rawfill Begin writing blocks of 64512 bytes. 7) and 24 hours after that we see: weof_dev Wrote EOF to /dev/sa0 Write failed. Last block written=17043522. stat=-1 ERR=Invalid argument *rewind Rewound /dev/sa0 *scan Starting scan at file 0 Bad status from read -1. ERR=Invalid argument *quit So.. if you've gotten this far, do you have any idea what's going wrong? I'm lost... :-) J. Joshua S. Freeman Director, Information Technology, NYBG v: 718 817 8937 m: 347 392 2560 jfreeman at nybg dot org -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.nycbug.org/pipermail/talk/attachments/20040815/c0fa6053/attachment.html From lists Mon Aug 16 17:06:49 2004 From: lists (michael) Date: Mon, 16 Aug 2004 17:06:49 -0400 Subject: [nycbug-talk] Call for papers Message-ID: <20040816170649.36ce1282@delinux.abwatley.com> NYCBUG NEEDS YOU! http://dev.nycbug.org The new website is nearly ready for its debut. But first, we need to stock the Library with *BSD knowledge. Here's your chance to publish! Make a submission to the NYCBUG website (aka, Add to the Library). We even built a page on the website just for that purpose. We need: * Articles * Presentations * White Papers * TechTips * Book Reviews * Software Reviews If your submission is already published elsewhere, or, is too long to fit; then just type the url in the "Internet Link" and put a description in the "Submission" box. You may upload one (1) file, if needed. You only get one shot at saving, so, most people paste here after they have written the submission elsewhere and know they have it right. Feel free to mark it up, but keep it simple please. Be sure to clear out the sample we have provided and write your own. Your name and email is so we can contact you, if needed. They will NEVER be published, unless, you make the decision to put it somewhere in the body of the submission. Submissions will NOT be visible immediately, they will be queued for review by NYCBUG admins. Not all submissions will be presented on the website. NYCBUG reserves the right to modify submissions deemed to be inaccurate or inappropriate. Help NYCBUG be "a BSD success story spreading more BSD success stories." -- END --- From george Mon Aug 16 19:04:09 2004 From: george (G.Rosamond) Date: Mon, 16 Aug 2004 19:04:09 -0400 Subject: [nycbug-talk] Call for papers In-Reply-To: <20040816170649.36ce1282@delinux.abwatley.com> References: <20040816170649.36ce1282@delinux.abwatley.com> Message-ID: <94D4BBE2-EFD8-11D8-B566-000D9328615E@sddi.net> wooooohoooooo . . . contribute contribute contribute. . . time to upload presentations, white papers, how-to's, etc. a 10 line set of instructions for setting up sshd the 14 lines on how to setup a jail maybe a 20 line (including sh-bang) *script* for setting up jails (and yes, sorry for top posting) g On Aug 16, 2004, at 5:06 PM, michael wrote: > NYCBUG NEEDS YOU! > > http://dev.nycbug.org > > The new website is nearly ready for its debut. But first, we need to > stock the Library with *BSD knowledge. Here's your chance to publish! > Make a submission to the NYCBUG website (aka, Add to the Library). We > even built a page on the website just for that purpose. > > We need: > * Articles > * Presentations > * White Papers > * TechTips > * Book Reviews > * Software Reviews > > If your submission is already published elsewhere, or, is too long to > fit; then just type the url in the "Internet Link" and put a > description > in the "Submission" box. You may upload one (1) file, if needed. You > only get one shot at saving, so, most people paste here after they have > written the submission elsewhere and know they have it right. Feel free > to mark it up, but keep it simple please. Be sure to clear out the > sample we have provided and write your own. Your name and email is so > we > can contact you, if needed. They will NEVER be published, unless, you > make the decision to put it somewhere in the body of the submission. > > Submissions will NOT be visible immediately, they will be queued for > review by NYCBUG admins. Not all submissions will be presented on the > website. NYCBUG reserves the right to modify submissions deemed to be > inaccurate or inappropriate. > > > Help NYCBUG be "a BSD success story spreading more BSD success > stories." > > > -- > END > --- > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month > From lists Tue Aug 17 12:03:14 2004 From: lists (michael) Date: Tue, 17 Aug 2004 12:03:14 -0400 Subject: [nycbug-talk] OpenBSD MySQL Message-ID: <20040817120314.6acd1ce8@delinux.abwatley.com> I'm trying to connect to a MySQL 4.1 server from an OpenBSD 3.5 box. > mysql -h remotehost -u username -p > Enter password: ***** > > ERROR 1251: Client does not support authentication protocol > requested by server; consider upgrading MySQL client Has anyone had any luck upgrading the MySQL client from the official package on OBSD3.5 to the 4.1.3 version? Michael -- --- From george Tue Aug 17 17:28:55 2004 From: george (G.Rosamond) Date: Tue, 17 Aug 2004 17:28:55 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . Message-ID: <712D881C-F094-11D8-9D7D-000D9328615E@sddi.net> If you didn't sign it yet, you should: http://arameus.net/petition/index.php From alex Tue Aug 17 16:43:30 2004 From: alex (alex at pilosoft.com) Date: Tue, 17 Aug 2004 16:43:30 -0400 (EDT) Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: <712D881C-F094-11D8-9D7D-000D9328615E@sddi.net> Message-ID: OK. I'm macromedia project manager in charge of Flash. I see 500 bsd users who want flash for bsd. My techs say its ~200 manhours [optimistic estimate] to do the port, proper release engineering, documentation, etc. Would I do it? Hell no, it additional exposure to flash just isn't worth it to the company. Basic math: 10k$ to port. say, 10000 users to gain. Can Macromedia expect revenue from their products to justify it? Unlikely. Unfortunately, BSD users are just *too damn small of a user base* to care about for a company that wants to take money. Get used to it. -- Alex Pilosov | DSL, Colocation, Hosting Services President | alex at pilosoft.com (800) 710-7031 Pilosoft, Inc. | http://www.pilosoft.com On Tue, 17 Aug 2004, G.Rosamond wrote: > If you didn't sign it yet, you should: > > http://arameus.net/petition/index.php > > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month > From pete Tue Aug 17 18:43:24 2004 From: pete (Pete Wright) Date: Tue, 17 Aug 2004 17:43:24 -0500 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: References: Message-ID: <41228A0C.9000504@nomadlogic.org> alex at pilosoft.com wrote: >OK. I'm macromedia project manager in charge of Flash. I see 500 bsd users >who want flash for bsd. My techs say its ~200 manhours [optimistic >estimate] to do the port, proper release engineering, documentation, etc. >Would I do it? Hell no, it additional exposure to flash just isn't worth >it to the company. > >Basic math: 10k$ to port. say, 10000 users to gain. Can Macromedia expect >revenue from their products to justify it? Unlikely. > > > do they from the linux players....flash player is still free right? >Unfortunately, BSD users are just *too damn small of a user base* to care >about for a company that wants to take money. Get used to it. > > > Heh, I agree with most of your points. But if I remember correctly there are ports of flash to IRIX and AIX (%99 sure about IRIX). Those are not exactly huge customer segments. Now granted, who knows what deal SGI and macromedia have (SGI testers for flash etc.) but I am sure the BSD folks can muster something up to help them out....I hope the code is not that unportable to make it such a huge deal to move it to another OS. -p -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From george Tue Aug 17 17:44:19 2004 From: george (G.Rosamond) Date: Tue, 17 Aug 2004 17:44:19 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: References: Message-ID: <97D95AC0-F096-11D8-9D7D-000D9328615E@sddi.net> On Aug 17, 2004, at 4:43 PM, alex at pilosoft.com wrote: > OK. I'm macromedia project manager in charge of Flash. I see 500 bsd > users > who want flash for bsd. My techs say its ~200 manhours [optimistic > estimate] to do the port, proper release engineering, documentation, > etc. > Would I do it? Hell no, it additional exposure to flash just isn't > worth > it to the company. Gee. . .I had you confused with a guy who ran a colo facility in downtown Manhattan. . . > > Basic math: 10k$ to port. say, 10000 users to gain. Can Macromedia > expect > revenue from their products to justify it? Unlikely. > > Unfortunately, BSD users are just *too damn small of a user base* to > care > about for a company that wants to take money. Get used to it. Agree it's an uphill battle with desktop software, although note Mozilla, OpenOffice, etc. But of course those are open source projects. However, it's also true that on the backend Oracle, has given more attention to the BSDs. And apparently Intel is now calling the OpenBSD developers, instead of them chasing Intel people. But that's still not desktop closed source software . . . Still doesn't hurt to make the effort. . . g From alex Tue Aug 17 16:51:45 2004 From: alex (alex at pilosoft.com) Date: Tue, 17 Aug 2004 16:51:45 -0400 (EDT) Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: <41228A0C.9000504@nomadlogic.org> Message-ID: > Heh, I agree with most of your points. But if I remember correctly > there are ports of flash to IRIX and AIX (%99 sure about IRIX). Those > are not exactly huge customer segments. Now granted, who knows what > deal SGI and macromedia have (SGI testers for flash etc.) but I am sure > the BSD folks can muster something up to help them out....I hope the > code is not that unportable to make it such a huge deal to move it to > another OS. -p I'm willing to bet there were/are special deals involving Real Money to get SGI/IBM to get on bandwagon. Hell, there probably are more office desktops in IBM itself than total number of BSD desktops... -alex From alex Tue Aug 17 16:53:07 2004 From: alex (alex at pilosoft.com) Date: Tue, 17 Aug 2004 16:53:07 -0400 (EDT) Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: <97D95AC0-F096-11D8-9D7D-000D9328615E@sddi.net> Message-ID: > Gee. . .I had you confused with a guy who ran a colo facility in > downtown Manhattan. . . :) > > Basic math: 10k$ to port. say, 10000 users to gain. Can Macromedia > > expect revenue from their products to justify it? Unlikely. > > > > Unfortunately, BSD users are just *too damn small of a user base* to > > care about for a company that wants to take money. Get used to it. > > Agree it's an uphill battle with desktop software, although note > Mozilla, OpenOffice, etc. But of course those are open source projects. > > However, it's also true that on the backend Oracle, has given more > attention to the BSDs. And apparently Intel is now calling the OpenBSD > developers, instead of them chasing Intel people. Server != desktop. People notice that in server space, BSD is well established. > But that's still not desktop closed source software . . . > > Still doesn't hurt to make the effort. . . Sure - just don't expect result. Frankly - I don't remember any petitiononline that achieved any result other than venting the frustration. -alex From pete Tue Aug 17 19:05:27 2004 From: pete (Pete Wright) Date: Tue, 17 Aug 2004 18:05:27 -0500 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: References: Message-ID: <41228F37.5020708@nomadlogic.org> alex at pilosoft.com wrote: >I'm willing to bet there were/are special deals involving Real Money to >get SGI/IBM to get on bandwagon. > >Hell, there probably are more office desktops in IBM itself than total >number of BSD desktops... > > > that's probably true. shoot, there were more IRIX desktops when they ported the flash player over to linux, and i don't think they got any "Real Money" from any corportation to so either. anyway, i don't see what the problem is with people letting thier voices be known...it seems to have worked rather well with the linux camp. -p -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From george Tue Aug 17 19:45:51 2004 From: george (G.Rosamond) Date: Tue, 17 Aug 2004 19:45:51 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: References: Message-ID: <923A8994-F0A7-11D8-9D7D-000D9328615E@sddi.net> On Aug 17, 2004, at 4:53 PM, alex at pilosoft.com wrote: >> Gee. . .I had you confused with a guy who ran a colo facility in >> downtown Manhattan. . . > :) Yes, Alex runs Pilosoft downtown, and they also provide broadband. > >>> Basic math: 10k$ to port. say, 10000 users to gain. Can Macromedia >>> expect revenue from their products to justify it? Unlikely. >>> >>> Unfortunately, BSD users are just *too damn small of a user base* to >>> care about for a company that wants to take money. Get used to it. >> >> Agree it's an uphill battle with desktop software, although note >> Mozilla, OpenOffice, etc. But of course those are open source >> projects. >> >> However, it's also true that on the backend Oracle, has given more >> attention to the BSDs. And apparently Intel is now calling the >> OpenBSD >> developers, instead of them chasing Intel people. > Server != desktop. People notice that in server space, BSD is well > established. Right, which is what I say here: >> But that's still not desktop closed source software . . . >> >> Still doesn't hurt to make the effort. . . > Sure - just don't expect result. Frankly - I don't remember any > petitiononline that achieved any result other than venting the > frustration. > All valid points. . .but I also think that BSD users making a stink does matter. . .it does put us on the map. We have discussed online petitions in NYCBUG before, and were going to launch it with the founding of the group, specifically around Intel and Centrino, back in January. Petitions aren't just about pressuring a firm, but also about galvanizing people and raising awareness. The core of the BSD community is not the home hobbyist desktop user, but rather developers focused on the backend world . . .which is certainly preferable to building stable operating systems. However, the BSD desktop users are a significant group which seems to have increased in size significantly over the past year, particularly with the Linux/IBM v SCO battles and OS X's recognition. I do think *we* should look to start something up like this in the future. . .but I think it would be more advantageous to focus on hardware manufacturers. *That's* what the core developers of each project really want. g From sunny-ml Wed Aug 18 16:17:16 2004 From: sunny-ml (Sunny Dubey) Date: Wed, 18 Aug 2004 16:17:16 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: <41228A0C.9000504@nomadlogic.org> References: <41228A0C.9000504@nomadlogic.org> Message-ID: <200408181617.16135.sunny-ml@opencurve.org> On Tuesday 17 August 2004 18:43, Pete Wright wrote: > Heh, I agree with most of your points. But if I remember correctly > there are ports of flash to IRIX and AIX (%99 sure about IRIX). that confirms something I've always suspected. Compatibility for other UNIXes. I say this because a while back I emailed Macromedia and asked them to add -e to their usage of the read command in the installer script ie: echo -n "Where do you want to install ? " read -e INSTALL_DIR Basically the -e is a GNU thing that allows for directory tab-completion (which would make great sense for the above situation). The email I got back was the guy thought it was a great idea, but he was wondering how compatible it would be outside GNU tools/readline. Now I know why he wondered that, heh Sunny Dubey From dqtran1 Wed Aug 18 19:53:33 2004 From: dqtran1 (dqtran1 at earthlink.net) Date: Wed, 18 Aug 2004 16:53:33 -0700 (GMT-07:00) Subject: [nycbug-talk] OT: Hello, My name is Don Tran, I am a LULA & UUASC Member Message-ID: <13391076.1092873213532.JavaMail.root@louie.psp.pas.earthlink.net> Hello, My name is Don Tran, I am a LULA (Linux Users of LA) & UUASC (Unix Users Assoc. of SO. CA) Member One of our UUASC members suggested I try your group. May I please post the Intro and bottom message to your user group members? ================================================== My name is Don Tran and I am an MBA candidate at CSU Cal-Poly Pomona, at the School of Business PMBA program. I am desperately seeking respondants for my online MBA survey on Identity Theft and Internet Security. I am asking for permission to post or forward the following below letter to your members: The thesis survey is about Identity Theft and Internet security. It should take about 4 minutes to do. The questions are very generic. e.g. do you use a firewall, do you use encryption, do you use virus scan. It does not ask for any individual names or company names. The Professor and I tried to word it to not be intrusive. The Chair for my thesis is Dr. Robert Schaffer, of the Marketing department/ School of Business. this is his email for authenticity. rwschaffer at csupomona.edu. The Co-Chair or second reader is Dr. Rhonda Rhodes, from the TOM (Techinical Operations and Management)department/ School of Business. The survey is 20 questions. and at the end there is a comments, questions, suggestions section, that if you supply your email I will try to respond. The last section also allows for you to supply an email address if you would like a short version of the survey thesis results. I am done hopefully after this survey with my Thesis and can graduate. It's all down hill after I get the results. Class of Summer 2004. Thanks Don Tran ============================================================= This is a formal request seeking respondants to assist me to complete my MBA thesis by filling out my online survey. It should take about 4 minutes of your time. I am seeking and need 300 respondants ASAP, to get a good sample. (Actually, I need as many as possible, as soon as possible, more than 300 is fine, that's just a minimum I need). Please feel free to assist me by referring others, to fill out this survey for me. The only criteria is that they be in the IT/IS field. That is my target frame (for reasons of the survey purpose). It is highly preferrable that the respondants be in some way in the IT/IS field. This would include (software developes, coders, programmers also). (That's why I contacted this group via the campus website) Please click on this link to begin the survey. http://216.156.234.71/don/ BTW, if you are unemployed, as some of us like myself are. Please fill it out as if your were working at your last gig. Thanks for the help, Don Tran From freebsd Thu Aug 19 14:40:09 2004 From: freebsd (freebsd) Date: Thu, 19 Aug 2004 14:40:09 -0400 Subject: [nycbug-talk] FreeBSD Newbie Message-ID: <200408191440.AA852328@slikstik.com> Hello All, I am new to freebsd and am looking for someone that can help me get my first machine up and running. The machine is brand new and freebsd is installed and boots fine. Right now I can't get the internet access working and have read through lots of material and I am pretty sure that rc.conf is right but I can't ping anything other that localhost. I would be happy to pay someone for a little phone support for a few weeks while I take the crash course. Anyone interested? Thanks, Jerry Mascari ________________________________________________________________ Sent via the WebMail system at slikstik.com From lists Thu Aug 19 15:20:00 2004 From: lists (michael) Date: Thu, 19 Aug 2004 15:20:00 -0400 Subject: [nycbug-talk] FreeBSD Newbie In-Reply-To: <200408191440.AA852328@slikstik.com> References: <200408191440.AA852328@slikstik.com> Message-ID: <20040819152000.41fd1a8c@delinux.abwatley.com> On Thu, 19 Aug 2004 14:40:09 -0400 "freebsd" wrote: > Right now I can't get the internet access > working and have read through lots of material and I am pretty sure > that rc.conf is right but I can't ping anything other that localhost. To configure the network interface card, first, see what you have.. ifconfig -a mine returned this: em0: flags=8843 mtu 1500 options=3 inet 172.16.240.10 netmask 0xffffff00 broadcast 172.16.240.255 inet6 fe80::20e:cff:fe58:32a8%em0 prefixlen 64 scopeid 0x1 ether 00:0e:0c:58:32:a8 media: Ethernet autoselect (100baseTX ) status: active So, this would be in my rc.conf: defaultrouter="172.16.240.1" hostname="machine.domain.com" ifconfig_em0="inet 172.16.240.10 netmask 255.255.255.0" What does your ifconfig -a return? Michael -- --- From freebsd Thu Aug 19 16:54:32 2004 From: freebsd (freebsd) Date: Thu, 19 Aug 2004 16:54:32 -0400 Subject: [nycbug-talk] Test Message-ID: <200408191654.AA2294376@slikstik.com> test ________________________________________________________________ Sent via the WebMail system at slikstik.com From freebsd Thu Aug 19 16:17:10 2004 From: freebsd (freebsd) Date: Thu, 19 Aug 2004 16:17:10 -0400 Subject: [nycbug-talk] test Message-ID: <200408191617.AA459214@slikstik.com> test ________________________________________________________________ Sent via the WebMail system at slikstik.com From freebsd Thu Aug 19 15:59:46 2004 From: freebsd (freebsd) Date: Thu, 19 Aug 2004 15:59:46 -0400 Subject: [nycbug-talk] Re: FreeBSD Newbie Message-ID: <200408191559.AA393810@slikstik.com> OK, here is what I got. # ifconfig rl0: flags=8843 MTU 1500 inet 64.242.167.1 netmask 0xfffff00 broadcast 64.242.167.255 inet6 fe00:20d:61ff:fe80:2beb%rl0 prefixlen 64 scopeid 0x1 ether 00:0d:61:80:2b:eb media: Ethernet autoselect (100baseTX ) Status: Active /etc/rc.conf looks like this (there is other stuff in rc.conf but I think these are the only lines that refer to the NIC): hostname="moon.instantlink.com" network_interface="rl0" ifconfig_rl0="inet 64.242.167.1 netmask 255.255.255.0" defaultrouter="64.242.160.1" router_enable="NO" Thanks for looking. Jerry Mascari ________________________________________________________________ Sent via the WebMail system at slikstik.com From freebsd Thu Aug 19 17:06:56 2004 From: freebsd (freebsd) Date: Thu, 19 Aug 2004 17:06:56 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie Message-ID: <200408191706.AA1376918@slikstik.com> OK, my ifconfig -a looks like this: rl0: flags=8843 mtu 1500 options=3 inet 64.242.167.1 netmask 0xffffff00 broadcast 64.242.167.255 inet6 fe80::20d:61ff:fe80:2beb%rl0 prefixlen 64 scopeid 0x1 ether 00:0d:61:80:2b:eb media: Ethernet autoselect (100baseTX ) status: active My /etc/rc.conf has some other stuff in it but the lines that are for the NIC have as follows: hostname="moon.instantlink.com" network_interface="rl0" ifconfig_rl0="inet 64.242.167.1 netmask 255.255.255.0" defaultrouter="64.242.160.1" router_enable="NO" I don't think I have a default route, when I ping I get "No route to host" Thanks, Jerry ________________________________________________________________ Sent via the WebMail system at slikstik.com From lists Thu Aug 19 17:54:08 2004 From: lists (michael) Date: Thu, 19 Aug 2004 17:54:08 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <200408191706.AA1376918@slikstik.com> References: <200408191706.AA1376918@slikstik.com> Message-ID: <20040819175408.5524b297@delinux.abwatley.com> On Thu, 19 Aug 2004 17:06:56 -0400 "freebsd" wrote: > OK, my ifconfig -a looks like this: > > rl0: flags=8843 mtu 1500 > options=3 > inet 64.242.167.1 netmask 0xffffff00 broadcast 64.242.167.255 > inet6 fe80::20d:61ff:fe80:2beb%rl0 prefixlen 64 scopeid 0x1 > ether 00:0d:61:80:2b:eb > media: Ethernet autoselect (100baseTX ) > status: active > > > My /etc/rc.conf has some other stuff in it but the lines that are for > the NIC have as follows: > > hostname="moon.instantlink.com" > network_interface="rl0" > ifconfig_rl0="inet 64.242.167.1 netmask 255.255.255.0" > defaultrouter="64.242.160.1" > router_enable="NO" > > I don't think I have a default route, when I ping I get "No route to > host" > > Thanks, > > Jerry > Well, I can ping your router, so that is a start! ->ping -c3 64.242.160.1 PING 64.242.160.1 (64.242.160.1): 56 data bytes 64 bytes from 64.242.160.1: icmp_seq=0 ttl=245 time=10.953 ms 64 bytes from 64.242.160.1: icmp_seq=1 ttl=245 time=9.725 ms 64 bytes from 64.242.160.1: icmp_seq=2 ttl=245 time=18.140 ms --- 64.242.160.1 ping statistics --- 3 packets transmitted, 3 packets received, 0% packet loss round-trip min/avg/max/stddev = 9.725/12.939/18.140/3.711 ms Let's check the obvious. What do you get when you ping yourself? Are you getting both a connect light and data light on the nic? Where are you plugging the wire coming out of your nic? Do you have another piece of cat5? Where did you get the IP? Did you make it up or was it given to you? Did you set up the nic and network with sysinstall? Anybody else wanna chime in? Michael -- --- From freebsd Thu Aug 19 17:58:34 2004 From: freebsd (freebsd) Date: Thu, 19 Aug 2004 17:58:34 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie Message-ID: <200408191758.AA6619950@slikstik.com> OK, I seem to have it working (thanks to whoever told me to try sysinstall) I went in there and changed the IP address from 64.242.167.1 to 64.242.160.4 (I have several class c's assigned to my network from my isp) I am guessing that I could have changed the netmask also to get the router and the IP address into the same subnet and that might have fixed it also, I will test that now. I think my biggest problem is that I got so darn spoiled since win98 came out that I lost a little bit of my common sense :). The only thing that kept me a little sharp has been dealing with cisco routers occasionaly. Once that sysinstall menu popped up it was clear sailing. Thanks for the help on that step anyway. I was told that "FreeBSD is secure out of the box" is that pretty true? Are there any major service I should turn off or on now that its "hot" Thanks, Jerry ---------- Original Message ---------------------------------- From: michael Date: Thu, 19 Aug 2004 17:54:08 -0400 >On Thu, 19 Aug 2004 17:06:56 -0400 >"freebsd" wrote: > >> OK, my ifconfig -a looks like this: >> >> rl0: flags=8843 mtu 1500 >> options=3 >> inet 64.242.167.1 netmask 0xffffff00 broadcast 64.242.167.255 >> inet6 fe80::20d:61ff:fe80:2beb%rl0 prefixlen 64 scopeid 0x1 >> ether 00:0d:61:80:2b:eb >> media: Ethernet autoselect (100baseTX ) >> status: active >> >> >> My /etc/rc.conf has some other stuff in it but the lines that are for >> the NIC have as follows: >> >> hostname="moon.instantlink.com" >> network_interface="rl0" >> ifconfig_rl0="inet 64.242.167.1 netmask 255.255.255.0" >> defaultrouter="64.242.160.1" >> router_enable="NO" >> >> I don't think I have a default route, when I ping I get "No route to >> host" >> >> Thanks, >> >> Jerry >> > >Well, I can ping your router, so that is a start! >->ping -c3 64.242.160.1 >PING 64.242.160.1 (64.242.160.1): 56 data bytes >64 bytes from 64.242.160.1: icmp_seq=0 ttl=245 time=10.953 ms >64 bytes from 64.242.160.1: icmp_seq=1 ttl=245 time=9.725 ms >64 bytes from 64.242.160.1: icmp_seq=2 ttl=245 time=18.140 ms > >--- 64.242.160.1 ping statistics --- >3 packets transmitted, 3 packets received, 0% packet loss >round-trip min/avg/max/stddev = 9.725/12.939/18.140/3.711 ms > > >Let's check the obvious. What do you get when you ping yourself? Are >you getting both a connect light and data light on the nic? Where are >you plugging the wire coming out of your nic? Do you have another piece >of cat5? Where did you get the IP? Did you make it up or was it given to >you? > >Did you set up the nic and network with sysinstall? > >Anybody else wanna chime in? >Michael > > > >-- >--- >_______________________________________________ >talk mailing list >talk at lists.nycbug.org >http://lists.nycbug.org/mailman/listinfo/talk >% Be sure to check out our Jobs and NYCBUG-announce lists >% We meet the first Wednesday of the month > ________________________________________________________________ Sent via the WebMail system at slikstik.com From mikel.king Thu Aug 19 18:14:00 2004 From: mikel.king (Mikel King) Date: Thu, 19 Aug 2004 18:14:00 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie Message-ID: <20040819221425.D0200A8795@virtu.nyphp.org> The bond address and the default route ip are not with in the same subnet... Sorry for the top post but it's hard enough to type from the phone. Cheers, mikel "freebsd" wrote: __________ >OK, my ifconfig -a looks like this: > > > > >rl0: flags=8843 mtu 1500 > options=3 > inet 64.242.167.1 netmask 0xffffff00 broadcast 64.242.167.255 > inet6 fe80::20d:61ff:fe80:2beb%rl0 prefixlen 64 scopeid 0x1 > ether 00:0d:61:80:2b:eb > media: Ethernet autoselect (100baseTX ) > status: active > > >My /etc/rc.conf has some other stuff in it but the lines that are for the NIC have as follows: > >hostname="moon.instantlink.com" >network_interface="rl0" >ifconfig_rl0="inet 64.242.167.1 netmask 255.255.255.0" >defaultrouter="64.242.160.1" >router_enable="NO" > >I don't think I have a default route, when I ping I get "No route to host" > >Thanks, > >Jerry > > > > > > >________________________________________________________________ >Sent via the WebMail system at slikstik.com > > > > >_______________________________________________ >talk mailing list >talk at lists.nycbug.org >http://lists.nycbug.org/mailman/listinfo/talk >% Be sure to check out our Jobs and NYCBUG-announce lists >% We meet the first Wednesday of the month From scottro Thu Aug 19 18:24:00 2004 From: scottro (Scott Robbins) Date: Thu, 19 Aug 2004 18:24:00 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <20040819175408.5524b297@delinux.abwatley.com> References: <200408191706.AA1376918@slikstik.com> <20040819175408.5524b297@delinux.abwatley.com> Message-ID: <20040819222400.GA57370@scottro11.homeunix.net> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thu, Aug 19, 2004 at 05:54:08PM -0400, michael wrote: > On Thu, 19 Aug 2004 17:06:56 -0400 > "freebsd" wrote: > > > OK, my ifconfig -a looks like this: > > > > rl0: flags=8843 mtu 1500 > > options=3 > > inet 64.242.167.1 netmask 0xffffff00 broadcast 64.242.167.255 > > inet6 fe80::20d:61ff:fe80:2beb%rl0 prefixlen 64 scopeid 0x1 > > ether 00:0d:61:80:2b:eb > > media: Ethernet autoselect (100baseTX ) > > status: active > > > > > > My /etc/rc.conf has some other stuff in it but the lines that are for > > the NIC have as follows: > > > > hostname="moon.instantlink.com" > > network_interface="rl0" > > ifconfig_rl0="inet 64.242.167.1 netmask 255.255.255.0" > > defaultrouter="64.242.160.1" > > router_enable="NO" > > > > I don't think I have a default route, when I ping I get "No route to > > host" > > > > Thanks, > > > > Jerry Ok, I've snipped Michael's excellent questions, just to take it from the very top--some of these are repetitions of his questions. Are you on DSL or cable? I'm guessing that this is a connection from your cable or DSL modem. Are all lights on? Is the cable securely in at both ends. How did you set this address? Did you make a choice, based on a guess, during installation? Just to check the very basic ping -c 2 127.0.01 ping -c 2 64.242.167.1 You should get responses from both of those. If you type route add default 64.242.160.1 do you get an error message to the effect that it's already there? If you type that, and don't get an error message, try ping -c 2 64.242.160.1 If you write down these settings, so you don't lose them, you might then try (this is assuming that you are using a cable or DSL modem and that your ISP didn't give you the address for rl0 dhclient rl0 and then, if you get a command prompt back try pinging again. (Another possibility is that nothing will happen--wait long enough and you should get an error message) :) Also cat /etc/resolv.conf - -- Scott PGP keyID EB3467D6 ( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 ) gpg --keyserver pgp.mit.edu --recv-keys EB3467D6 Buffy: What do you want? Angel: The same thing you do. Buffy: Okay. What do I want? Angel: To kill 'em. To kill 'em all. Buffy: Sorry, that's incorrect. But, you do get this watch and a year's supply of turtle wax. What I want is to be left alone. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBJSiA+lTVdes0Z9YRAv3tAKCdGe+lrKd+R2SHnEZvtPqhyNvNBQCgmJwe +NG16WKrRtiPChk15V4ZB1I= =6lI2 -----END PGP SIGNATURE----- From freebsd Thu Aug 19 20:49:06 2004 From: freebsd (freebsd) Date: Thu, 19 Aug 2004 20:49:06 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie Message-ID: <200408192049.AA95093050@slikstik.com> I got it connected. It seems that when I hit reply the email address is the address of whoever replied to me from the talk at lists.nycbug.org list. Is it the preferred method on this list to just reply to the people that reply to you directly, or is it preferred to reply to the address talk at lists.nycbug.org so that everyone can follow the thread? I know no one needs extra email in thier inbox, but sometimes everyone can benefit from the thread. If there is a moderator here maybe they could answer as I don't want to flood everyone with every response. Anyway, I got the nic working, I can ping everything by IP or domain name, I can telnet into the machine, but I can't log in as root, is that a security feature of freebsd? Is there a graphic interface to look at all user accounts on the machine and adjust permissions? Also in the docs I see commands such as route(8), does that mean you have to have a security level of 8 to use the command? Thanks, Jerry Mascari ---------- Original Message ---------------------------------- From: Scott Robbins Date: Thu, 19 Aug 2004 18:24:00 -0400 >-----BEGIN PGP SIGNED MESSAGE----- >Hash: SHA1 > >On Thu, Aug 19, 2004 at 05:54:08PM -0400, michael wrote: >> On Thu, 19 Aug 2004 17:06:56 -0400 >> "freebsd" wrote: >> >> > OK, my ifconfig -a looks like this: >> > >> > rl0: flags=8843 mtu 1500 >> > options=3 >> > inet 64.242.167.1 netmask 0xffffff00 broadcast 64.242.167.255 >> > inet6 fe80::20d:61ff:fe80:2beb%rl0 prefixlen 64 scopeid 0x1 >> > ether 00:0d:61:80:2b:eb >> > media: Ethernet autoselect (100baseTX ) >> > status: active >> > >> > >> > My /etc/rc.conf has some other stuff in it but the lines that are for >> > the NIC have as follows: >> > >> > hostname="moon.instantlink.com" >> > network_interface="rl0" >> > ifconfig_rl0="inet 64.242.167.1 netmask 255.255.255.0" >> > defaultrouter="64.242.160.1" >> > router_enable="NO" >> > >> > I don't think I have a default route, when I ping I get "No route to >> > host" >> > >> > Thanks, >> > >> > Jerry > >Ok, I've snipped Michael's excellent questions, just to take it from the >very top--some of these are repetitions of his questions. > >Are you on DSL or cable? I'm guessing that this is a connection from >your cable or DSL modem. > >Are all lights on? Is the cable securely in at both ends. > >How did you set this address? Did you make a choice, based on a guess, >during installation? > >Just to check the very basic > >ping -c 2 127.0.01 >ping -c 2 64.242.167.1 > >You should get responses from both of those. >If you type > >route add default 64.242.160.1 > >do you get an error message to the effect that it's already there? >If you type that, and don't get an error message, try > >ping -c 2 64.242.160.1 > >If you write down these settings, so you don't lose them, you might then >try (this is assuming that you are using a cable or DSL modem and that >your ISP didn't give you the address for rl0 > >dhclient rl0 > >and then, if you get a command prompt back try pinging again. > >(Another possibility is that nothing will happen--wait long enough and >you should get an error message) :) > > >Also > >cat /etc/resolv.conf > > > >- -- > >Scott > >PGP keyID EB3467D6 >( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 ) >gpg --keyserver pgp.mit.edu --recv-keys EB3467D6 > > Buffy: What do you want? >Angel: The same thing you do. >Buffy: Okay. What do I want? >Angel: To kill 'em. To kill 'em all. >Buffy: Sorry, that's incorrect. But, you do get this watch and a >year's supply of turtle wax. What I want is to be left alone. >-----BEGIN PGP SIGNATURE----- >Version: GnuPG v1.2.5 (FreeBSD) > >iD8DBQFBJSiA+lTVdes0Z9YRAv3tAKCdGe+lrKd+R2SHnEZvtPqhyNvNBQCgmJwe >+NG16WKrRtiPChk15V4ZB1I= >=6lI2 >-----END PGP SIGNATURE----- >_______________________________________________ >talk mailing list >talk at lists.nycbug.org >http://lists.nycbug.org/mailman/listinfo/talk >% Be sure to check out our Jobs and NYCBUG-announce lists >% We meet the first Wednesday of the month > ________________________________________________________________ Sent via the WebMail system at slikstik.com From dan Thu Aug 19 21:03:19 2004 From: dan (Dan Langille) Date: Thu, 19 Aug 2004 21:03:19 -0400 (EDT) Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <200408192049.AA95093050@slikstik.com> References: <200408192049.AA95093050@slikstik.com> Message-ID: <20040819210152.A39209@xeon.unixathome.org> On Thu, 19 Aug 2004, freebsd wrote: > I got it connected. It seems that when I hit reply the email address is > the address of whoever replied to me from the talk at lists.nycbug.org > list. Is it the preferred method on this list to just reply to the > people that reply to you directly, or is it preferred to reply to the > address talk at lists.nycbug.org so that everyone can follow the thread? I > know no one needs extra email in thier inbox, but sometimes everyone can > benefit from the thread. If there is a moderator here maybe they could > answer as I don't want to flood everyone with every response. Use, reply-to-all. That'll work. > Anyway, I got the nic working, I can ping everything by IP or domain > name, I can telnet into the machine, but I can't log in as root, is that > a security feature of freebsd? Is there a graphic interface to look at > all user accounts on the machine and adjust permissions? Telnet in. Then su to become root. > Also in the docs I see commands such as route(8), does that mean you > have to have a security level of 8 to use the command? Thanks, The 8 means section 8 of the manual. Issue this command: man man -- Dan Langille - http://www.langille.org/ From freebsd Thu Aug 19 21:27:31 2004 From: freebsd (freebsd) Date: Thu, 19 Aug 2004 21:27:31 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie Message-ID: <200408192127.AA101450042@slikstik.com> So I telnet in, log in with a regular username and password, then type su and , then I will be prompted for the root password? ---------- Original Message ---------------------------------- From: Dan Langille Date: Thu, 19 Aug 2004 21:03:19 -0400 (EDT) >On Thu, 19 Aug 2004, freebsd wrote: > >> I got it connected. It seems that when I hit reply the email address is >> the address of whoever replied to me from the talk at lists.nycbug.org >> list. Is it the preferred method on this list to just reply to the >> people that reply to you directly, or is it preferred to reply to the >> address talk at lists.nycbug.org so that everyone can follow the thread? I >> know no one needs extra email in thier inbox, but sometimes everyone can >> benefit from the thread. If there is a moderator here maybe they could >> answer as I don't want to flood everyone with every response. > >Use, reply-to-all. That'll work. > >> Anyway, I got the nic working, I can ping everything by IP or domain >> name, I can telnet into the machine, but I can't log in as root, is that >> a security feature of freebsd? Is there a graphic interface to look at >> all user accounts on the machine and adjust permissions? > >Telnet in. Then su to become root. > >> Also in the docs I see commands such as route(8), does that mean you >> have to have a security level of 8 to use the command? Thanks, > >The 8 means section 8 of the manual. Issue this command: man man > >-- >Dan Langille - http://www.langille.org/ > ________________________________________________________________ Sent via the WebMail system at slikstik.com From dan Thu Aug 19 21:41:25 2004 From: dan (Dan Langille) Date: Thu, 19 Aug 2004 21:41:25 -0400 (EDT) Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <200408192127.AA101450042@slikstik.com> References: <200408192127.AA101450042@slikstik.com> Message-ID: <20040819214047.S39209@xeon.unixathome.org> On Thu, 19 Aug 2004, freebsd wrote: > So I telnet in, log in with a regular username and password, then type > su and , then I will be prompted for the root password? Yes. Said user must be in the wheel group. I also use sudo (install it from ports). -- Dan Langille - http://www.langille.org/ From scottro Thu Aug 19 21:41:36 2004 From: scottro (Scott Robbins) Date: Thu, 19 Aug 2004 21:41:36 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <200408192049.AA95093050@slikstik.com> References: <200408192049.AA95093050@slikstik.com> Message-ID: <20040820014136.GA58427@scottro11.homeunix.net> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thu, Aug 19, 2004 at 08:49:06PM -0400, freebsd wrote: > I got it connected. It seems that when I hit reply the email address is the address of whoever replied to me from the talk at lists.nycbug.org list. Is it the preferred method on this list to just reply to the people that reply to you directly, or is it preferred to reply to the address talk at lists.nycbug.org so that everyone can follow the thread? I know no one needs extra email in thier inbox, but sometimes everyone can benefit from the thread. If there is a moderator here maybe they could answer as I don't want to flood everyone with every response. Many *nix technical mailing lists are like this. It has to do with what is known as munging headers. When the Gentoo Linux list changed over to this, there were some complaints, and a question was added to their faq. http://www.gentoo.org/doc/en/faq.xml#doc_chap8 Each mail client has different ways of dealing with this--on this particular list, assuming I don't forget and simply hit reply, my habit is to just reply to the list and not the individual poster. It's a judgement call--for example, on FreeBSD questions, many people prefer getting a copy of the reply that is also sent to the group. > > Anyway, I got the nic working, I can ping everything by IP or domain name, I can telnet into the machine, but I can't log in as root, is that a security feature of freebsd? Is there a graphic interface to look at all user accounts on the machine and adjust permissions? Dan answered the question about root. The permissions structure is somewhat different than MS (I'm guessing that is your background from your question about is there a graphical interface listing permissions.) Hrrm, to answer that question--I don't know. Don't some of the non-lightweight desktop managers like KDE have something like that? Hrrm, no, I think that shows directories and the permissions on them. (I run a lighter weight window manager so I'm just going by memory.) However, you will find that if you spend a little while getting used to the text based files, such as /etc/group, that they are as easy, or perhaps even easier to use than such graphical interfaces. > > Also in the docs I see commands such as route(8), does that mean you have to have a security level of 8 to use the command? Dan explained that one too--or actually, pointed you in the direction to learn it. Man pages can sometimes be a bit difficult to understand until you get used to them. (Quick hint, the answer to your question is in the EXAMPLES section). It can be a bit intimidating at first, and yes, it is nice to pay someone for handholding, but it seems that you're off to a good start using the less expensive resources such as this mailing list. :) Dan's site, http://www.freebsddiary.org/ is an excellent place to look for answers to specific questions, written in a way that is usually easy to understand. - -- Scott PGP keyID EB3467D6 ( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 ) gpg --keyserver pgp.mit.edu --recv-keys EB3467D6 Buffy: Do---do you think I chose to be like this? Do you have any idea how lonely it is, how dangerous? I would love to be upstairs watching TV or gossiping about boys or... God, even studying! But I have to save the world. Again. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBJVbQ+lTVdes0Z9YRAkguAJ9zoVu/5TyMhBi/tCydhOpJRSWRHwCeJCm5 V6prd9CNK6cNKAlLTKpy91g= =8/Uz -----END PGP SIGNATURE----- From dan Thu Aug 19 21:43:43 2004 From: dan (Dan Langille) Date: Thu, 19 Aug 2004 21:43:43 -0400 (EDT) Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <20040820014136.GA58427@scottro11.homeunix.net> References: <200408192049.AA95093050@slikstik.com> <20040820014136.GA58427@scottro11.homeunix.net> Message-ID: <20040819214320.F39209@xeon.unixathome.org> On Thu, 19 Aug 2004, Scott Robbins wrote: > Dan's site, http://www.freebsddiary.org/ is an excellent place to look > for answers to specific questions, written in a way that is usually easy > to understand. USUALLY? WHAT DO YOU MEAN BY USUALLY? ;) -- Dan Langille - http://www.langille.org/ From scottro Thu Aug 19 21:45:20 2004 From: scottro (Scott Robbins) Date: Thu, 19 Aug 2004 21:45:20 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <200408192127.AA101450042@slikstik.com> References: <200408192127.AA101450042@slikstik.com> Message-ID: <20040820014520.GB58427@scottro11.homeunix.net> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thu, Aug 19, 2004 at 09:27:31PM -0400, freebsd wrote: > So I telnet in, log in with a regular username and password, then type su and , then I will be prompted for the root password? Try it and see. :) Often, that is the best way to learn. I'm not being unsympathetic to your nervousness here. Judging from your posts, you want to learn, but aren't yet quite sure how to go about it. One other excellent resource is the FreeBSD handbook--you can purchase a copy and also find it online at http://www.freebsd.org - -- Scott PGP keyID EB3467D6 ( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 ) gpg --keyserver pgp.mit.edu --recv-keys EB3467D6 Spike: If every vampire who said he was at the Crucifixion was actually there it would've been like Woodstock. I was at Woodstock. I fed off a flower person and I spent six hours watching my hand move. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBJVew+lTVdes0Z9YRArX4AJ47f1a7tlTnTKzPkHP39N8176kt4wCeIzVw 6sPaVi9oKqIMY4IbW+a64N4= =xK19 -----END PGP SIGNATURE----- From freebsd Thu Aug 19 21:35:23 2004 From: freebsd (freebsd) Date: Thu, 19 Aug 2004 21:35:23 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie Message-ID: <200408192135.AA102498618@slikstik.com> Wheel group? I did not get to that part yet :). All i have touched on is the adduser command and the change password command (forgot what that one was though). What is sudo? ---------- Original Message ---------------------------------- From: Dan Langille Date: Thu, 19 Aug 2004 21:41:25 -0400 (EDT) >On Thu, 19 Aug 2004, freebsd wrote: > >> So I telnet in, log in with a regular username and password, then type >> su and , then I will be prompted for the root password? > >Yes. Said user must be in the wheel group. > >I also use sudo (install it from ports). > >-- >Dan Langille - http://www.langille.org/ > ________________________________________________________________ Sent via the WebMail system at slikstik.com From freebsd Thu Aug 19 21:40:38 2004 From: freebsd (freebsd) Date: Thu, 19 Aug 2004 21:40:38 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie Message-ID: <200408192140.AA118227182@slikstik.com> I intend to try it, I turned off the machine when I left the office though so I could not try it right away, have to wait till tomorrow otherwise I would have tried and not asked. Believe me I think I have typed every possible command that I found in the handbook and on the freebsddiary site, twice, its a wonder the machine even still boots after 2 days with me typing arbitraty commands and ee'ing into every .conf file I read about :). ---------- Original Message ---------------------------------- From: Scott Robbins Date: Thu, 19 Aug 2004 21:45:20 -0400 >-----BEGIN PGP SIGNED MESSAGE----- >Hash: SHA1 > >On Thu, Aug 19, 2004 at 09:27:31PM -0400, freebsd wrote: >> So I telnet in, log in with a regular username and password, then type su and , then I will be prompted for the root password? > > >Try it and see. :) > >Often, that is the best way to learn. > >I'm not being unsympathetic to your nervousness here. Judging from your >posts, you want to learn, but aren't yet quite sure how to go about it. > >One other excellent resource is the FreeBSD handbook--you can purchase a >copy and also find it online at http://www.freebsd.org > > > >- -- > >Scott > >PGP keyID EB3467D6 >( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 ) >gpg --keyserver pgp.mit.edu --recv-keys EB3467D6 > >Spike: If every vampire who said he was at the Crucifixion was >actually there it would've been like Woodstock. I was at >Woodstock. I fed off a flower person and I spent six hours >watching my hand move. > >-----BEGIN PGP SIGNATURE----- >Version: GnuPG v1.2.5 (FreeBSD) > >iD8DBQFBJVew+lTVdes0Z9YRArX4AJ47f1a7tlTnTKzPkHP39N8176kt4wCeIzVw >6sPaVi9oKqIMY4IbW+a64N4= >=xK19 >-----END PGP SIGNATURE----- >_______________________________________________ >talk mailing list >talk at lists.nycbug.org >http://lists.nycbug.org/mailman/listinfo/talk >% Be sure to check out our Jobs and NYCBUG-announce lists >% We meet the first Wednesday of the month > ________________________________________________________________ Sent via the WebMail system at slikstik.com From ahpook Thu Aug 19 21:53:38 2004 From: ahpook (Ah Pook) Date: Thu, 19 Aug 2004 21:53:38 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <20040820014136.GA58427@scottro11.homeunix.net> References: <200408192049.AA95093050@slikstik.com> <20040820014136.GA58427@scottro11.homeunix.net> Message-ID: <200408192153.38967.ahpook@optonline.net> On Thursday 19 August 2004 09:41 pm, Scott Robbins wrote: > Hrrm, to answer that question--I don't know. Don't some of the > non-lightweight desktop managers like KDE have something like that? > Hrrm, no, I think that shows directories and the permissions on them. > (I run a lighter weight window manager so I'm just going by memory.) KDE User Manager ('kuser') will do that. You can add and delete users, and adjust group settings. From scottro Thu Aug 19 21:57:21 2004 From: scottro (Scott Robbins) Date: Thu, 19 Aug 2004 21:57:21 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <20040819214320.F39209@xeon.unixathome.org> References: <200408192049.AA95093050@slikstik.com> <20040820014136.GA58427@scottro11.homeunix.net> <20040819214320.F39209@xeon.unixathome.org> Message-ID: <20040820015721.GA58572@scottro11.homeunix.net> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thu, Aug 19, 2004 at 09:43:43PM -0400, Dan Langille wrote: > On Thu, 19 Aug 2004, Scott Robbins wrote: > > > Dan's site, http://www.freebsddiary.org/ is an excellent place to look > > for answers to specific questions, written in a way that is usually easy > > to understand. > > USUALLY? WHAT DO YOU MEAN BY USUALLY? ;) There was one article that was beyond my understanding at the time. :) (yeah, yeah, I know, it was all ~my~ fault.) Ok, folks, Dan is NOT paying me to say this. His site, as most of us know, is one of the first stops when trying to learn something new. I'm pointing this out on this list for newcomers like the gentleman who started this thread. - -- Scott PGP keyID EB3467D6 ( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 ) gpg --keyserver pgp.mit.edu --recv-keys EB3467D6 Xander: And this...is called a snack food. Ampata: Snack food? Xander: Yeah. It's a delicious, spongy, golden cake stuffed with a delightful, creamy white substance of goodness. Xander: And the exciting part is that they have no ingredients that a human can pronounce, so it doesn't leave you with that heavy food feeling in your stomach. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBJVqB+lTVdes0Z9YRAi0wAJwJV0cEeFn0AMLZ720sgFBkhxgaAgCfeseT SwzZYLwpQsk8tiGp9j97pdI= =7Oxb -----END PGP SIGNATURE----- From pete Fri Aug 20 11:12:50 2004 From: pete (Pete Wright) Date: Fri, 20 Aug 2004 10:12:50 -0500 Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <200408191758.AA6619950@slikstik.com> References: <200408191758.AA6619950@slikstik.com> Message-ID: <412614F2.8070609@nomadlogic.org> freebsd wrote: > >I was told that "FreeBSD is secure out of the box" is that pretty true? Are there any major service I should turn off or on now that its "hot" > > > The one service I would disable right off the bat is "telnet". You can disable this in your /etc/inet.d file. If you put a # in front of the line that looks like this: telnet stream tcp nowait root /usr/libexec/telnetd telnetd then reload the inet daemon like this: $ kill -HUP `cat /var/run/inetd.pid` (those are backticks) as root that will disable this service. Before you do so, a little background. Telnet, as you know, is a program that allows you to establish a remote shell to your Unix host. There is a huge problem with telnet tho, all data is sent over the network clear text. So, when you log into your server anyone that can see your data will be able to see your username and passwords unencrypted. Yikes! So what do you do to get around this problem, you obviously want to still be able to remotely admin your Unix server. SSH, the Secure SHell, has all of the benefits of telnet expect your data is encrypted making it harder for the Axis of Evil to sinff your data. SSH is part of a default FreeBSD install, I would suggest checking out these links for more info: http://openssh.org/ and here is a random "primer" that i got off google http://www.chemistry.ohio-state.edu/compsupp/Docs/ssh_primer.html and finally from a shell $ man ssh So anyway, I would become familiar with ssh before turning off telnet; but from a security stand point that is the first thing I do before I start setting up any Unix host. I hope you enjoy hacking BSD, it rocks! There are usually helpfull people on #nycbug on irc.freenode.net as well, so come by and chat! -pete -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From jeff.knight Fri Aug 20 10:54:12 2004 From: jeff.knight (Jeff Knight) Date: Fri, 20 Aug 2004 10:54:12 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: <200408181617.16135.sunny-ml@opencurve.org> References: <41228A0C.9000504@nomadlogic.org> <200408181617.16135.sunny-ml@opencurve.org> Message-ID: <2ca9ba9104082007543ac516d6@mail.gmail.com> Forget Flash. Use SVG. http://www.w3.org/Graphics/SVG/ http://www.adobe.com/svg/ -- Jeff Knight Jeff.Knight at gmail.com From bob Fri Aug 20 11:28:48 2004 From: bob (Bob Ippolito) Date: Fri, 20 Aug 2004 11:28:48 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: <2ca9ba9104082007543ac516d6@mail.gmail.com> References: <41228A0C.9000504@nomadlogic.org> <200408181617.16135.sunny-ml@opencurve.org> <2ca9ba9104082007543ac516d6@mail.gmail.com> Message-ID: On Aug 20, 2004, at 10:54 AM, Jeff Knight wrote: > Forget Flash. Use SVG. > http://www.w3.org/Graphics/SVG/ > http://www.adobe.com/svg/ With all those great existing interactive applications and development tools for SVG, how could you possibly go wrong? :P -bob From freebsd Fri Aug 20 10:12:22 2004 From: freebsd (freebsd) Date: Fri, 20 Aug 2004 10:12:22 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie Message-ID: <200408201012.AA139264314@slikstik.com> ---------- Original Message ---------------------------------- From: Pete Wright Date: Fri, 20 Aug 2004 10:12:50 -0500 >freebsd wrote: > >> >>I was told that "FreeBSD is secure out of the box" is that pretty true? Are there any major service I should turn off or on now that its "hot" >> >> >> >The one service I would disable right off the bat is "telnet". You can >disable this in your /etc/inet.d file. If you put a # in front of the >line that looks like this: > >telnet stream tcp nowait root /usr/libexec/telnetd telnetd > >then reload the inet daemon like this: > >$ kill -HUP `cat /var/run/inetd.pid` >(those are backticks) > > as root that will disable this service. Before you do so, a little >background. Telnet, as you know, is a program that allows you to >establish a remote shell to your Unix host. There is a huge problem >with telnet tho, all data is sent over the network clear text. So, when >you log into your server anyone that can see your data will be able to >see your username and passwords unencrypted. Yikes! > > So what do you do to get around this problem, you obviously want to >still be able to remotely admin your Unix server. SSH, the Secure >SHell, has all of the benefits of telnet expect your data is encrypted >making it harder for the Axis of Evil to sinff your data. SSH is part >of a default FreeBSD install, I would suggest checking out these links >for more info: > >http://openssh.org/ >and here is a random "primer" that i got off google >http://www.chemistry.ohio-state.edu/compsupp/Docs/ssh_primer.html >and finally from a shell >$ man ssh > > So anyway, I would become familiar with ssh before turning off >telnet; but from a security stand point that is the first thing I do >before I start setting up any Unix host. > > I hope you enjoy hacking BSD, it rocks! There are usually helpfull >people on #nycbug on irc.freenode.net as well, so come by and chat! Thanks for pointing out the other resource on IRC. It looked to me that telnet was disabled when I installed by default and I had to enable it by removing the # from the inetd.conf file. Thanks. ________________________________________________________________ Sent via the WebMail system at slikstik.com From jeff.knight Fri Aug 20 12:34:44 2004 From: jeff.knight (Jeff Knight) Date: Fri, 20 Aug 2004 12:34:44 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: References: <41228A0C.9000504@nomadlogic.org> <200408181617.16135.sunny-ml@opencurve.org> <2ca9ba9104082007543ac516d6@mail.gmail.com> Message-ID: <2ca9ba9104082009347f5d6a40@mail.gmail.com> On Fri, 20 Aug 2004 11:28:48 -0400, Bob Ippolito wrote: > With all those great existing interactive applications and development > tools for SVG, how could you possibly go wrong? :P By holding your breath for Flash? -- Jeff Knight Jeff.Knight at gmail.com From lists Fri Aug 20 12:44:34 2004 From: lists (michael) Date: Fri, 20 Aug 2004 12:44:34 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: References: <41228A0C.9000504@nomadlogic.org> <200408181617.16135.sunny-ml@opencurve.org> <2ca9ba9104082007543ac516d6@mail.gmail.com> Message-ID: <20040820124434.1891bb30@delinux.abwatley.com> On Fri, 20 Aug 2004 11:28:48 -0400 Bob Ippolito wrote: > With all those great existing interactive applications and development > tools for SVG, how could you possibly go wrong? :P > > -bob > With all those great existing interactive applications and development tools for [MS Windows], how could you possibly go wrong? :P -- --- From bob Fri Aug 20 13:14:43 2004 From: bob (Bob Ippolito) Date: Fri, 20 Aug 2004 13:14:43 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: <2ca9ba9104082009347f5d6a40@mail.gmail.com> References: <41228A0C.9000504@nomadlogic.org> <200408181617.16135.sunny-ml@opencurve.org> <2ca9ba9104082007543ac516d6@mail.gmail.com> <2ca9ba9104082009347f5d6a40@mail.gmail.com> Message-ID: <6D74FD4B-F2CC-11D8-945F-000A95686CD8@redivi.com> On Aug 20, 2004, at 12:34 PM, Jeff Knight wrote: > On Fri, 20 Aug 2004 11:28:48 -0400, Bob Ippolito > wrote: >> With all those great existing interactive applications and development >> tools for SVG, how could you possibly go wrong? :P > > By holding your breath for Flash? Ok, so instead of cheaply developing an application (with win32/mac) that works on linux/mac/win32 and several embedded devices, I should train designers and interactive developers to use SVG development tools that well, don't exist... and deploy it with some browser plugin that isn't quite there yet? SVG makes sense as a replacement for say, EPS files for browser consumption, but it's no Flash killer at this point. -bob From jeff.knight Fri Aug 20 13:39:41 2004 From: jeff.knight (Jeff Knight) Date: Fri, 20 Aug 2004 13:39:41 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: <6D74FD4B-F2CC-11D8-945F-000A95686CD8@redivi.com> References: <41228A0C.9000504@nomadlogic.org> <200408181617.16135.sunny-ml@opencurve.org> <2ca9ba9104082007543ac516d6@mail.gmail.com> <2ca9ba9104082009347f5d6a40@mail.gmail.com> <6D74FD4B-F2CC-11D8-945F-000A95686CD8@redivi.com> Message-ID: <2ca9ba9104082010394ef3a91f@mail.gmail.com> On Fri, 20 Aug 2004 13:14:43 -0400, Bob Ippolito wrote: > but it's no Flash killer at this point. Yes, that seems to be Macromedia's job... -- Jeff Knight Jeff.Knight at gmail.com From lists Fri Aug 20 14:14:35 2004 From: lists (michael) Date: Fri, 20 Aug 2004 14:14:35 -0400 Subject: [nycbug-talk] g4u In-Reply-To: References: Message-ID: <20040820141435.71db17ec@delinux.abwatley.com> I am now a *big* fan of g4u. http://rfhs8012.fh-regensburg.de/~feyrer/g4u/ g4u ("ghost for unix") is a NetBSD-based bootfloppy/CD-ROM that allows easy cloning of PC harddisks to deploy a common setup on a number of PCs using FTP. I recently finished setting up a not-so-simple mail gateway that is going to act as MX1 for our domain. Rather than go thru the whole install process again for the MX2 box, I `ghosted` the original to a local ftp box. Then booted the next machine to the CD and brought down the ghost from the machine. I changed the hostname and IP; and BANG! I'm finished. This could have sssoooo many uses, Michael -- --- From alex Fri Aug 20 13:31:49 2004 From: alex (alex at pilosoft.com) Date: Fri, 20 Aug 2004 13:31:49 -0400 (EDT) Subject: [nycbug-talk] g4u In-Reply-To: <20040820141435.71db17ec@delinux.abwatley.com> Message-ID: > g4u ("ghost for unix") is a NetBSD-based bootfloppy/CD-ROM that > allows easy cloning of PC harddisks to deploy a common setup on a number > of PCs using FTP. Eh, how's that different from good old-fashioned dd? -alx From bob Fri Aug 20 14:55:27 2004 From: bob (Bob Ippolito) Date: Fri, 20 Aug 2004 14:55:27 -0400 Subject: [nycbug-talk] Flash petition 479 and counting. . . In-Reply-To: <2ca9ba9104082010394ef3a91f@mail.gmail.com> References: <41228A0C.9000504@nomadlogic.org> <200408181617.16135.sunny-ml@opencurve.org> <2ca9ba9104082007543ac516d6@mail.gmail.com> <2ca9ba9104082009347f5d6a40@mail.gmail.com> <6D74FD4B-F2CC-11D8-945F-000A95686CD8@redivi.com> <2ca9ba9104082010394ef3a91f@mail.gmail.com> Message-ID: <803F5FD9-F2DA-11D8-8FA7-000A95686CD8@redivi.com> On Aug 20, 2004, at 1:39 PM, Jeff Knight wrote: > On Fri, 20 Aug 2004 13:14:43 -0400, Bob Ippolito > wrote: >> but it's no Flash killer at this point. > > Yes, that seems to be Macromedia's job... They certainly are MUCH better at that than software development :) -bob From lists Fri Aug 20 15:44:36 2004 From: lists (michael) Date: Fri, 20 Aug 2004 15:44:36 -0400 Subject: [nycbug-talk] g4u In-Reply-To: References: <20040820141435.71db17ec@delinux.abwatley.com> Message-ID: <20040820154436.40c504cd@delinux.abwatley.com> On Fri, 20 Aug 2004 13:31:49 -0400 (EDT) alex at pilosoft.com wrote: > Eh, how's that different from good old-fashioned dd? > > -alx It is "good old-fashioned dd" . That is exactly what the author uses! He just wraps it up with other utilities to make a neat little tool. The reasons I like it are: 1. self contained boot disk 2. quick boot time 3. very small - fits on a floppy 4. any hardware - any OS 5. based on NetBSD 6. easy to use 7. does one thing and does it well 8. fun Michael -- --- From freebsd Fri Aug 20 17:14:26 2004 From: freebsd (freebsd) Date: Fri, 20 Aug 2004 17:14:26 -0400 Subject: [nycbug-talk] Version rollback Message-ID: <200408201714.AA16711764@slikstik.com> I just found out that some software I need to use requires freeBSD 4.1 and the manufacturer will not support 5.x until it is a realeased version. So I need to install 4.1, is there a way to rollback to 4.1? I see in the sysinstall menu that you can install additional distribution sets, does that have anything to do with rolling back to a lesser version? Thanks, Jerry ________________________________________________________________ Sent via the WebMail system at slikstik.com From freebsd Fri Aug 20 17:05:20 2004 From: freebsd (freebsd) Date: Fri, 20 Aug 2004 17:05:20 -0400 Subject: [nycbug-talk] Version rollback Message-ID: <200408201705.AA12779828@slikstik.com> I just found out that some software I need to use requires freeBSD 4.1 and the manufacturer will not support 5.x until it is a realeased version. So I need to install 4.1, is there a way to rollback to 4.1? I see in the sysinstall menu that you can install additional distribution sets, does that have anything to do with rolling back to a lesser version? Thanks, Jerry ________________________________________________________________ Sent via the WebMail system at slikstik.com From freebsd Fri Aug 20 14:21:22 2004 From: freebsd (freebsd) Date: Fri, 20 Aug 2004 14:21:22 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie Message-ID: <200408201421.AA9306350@slikstik.com> >On Thu, 19 Aug 2004, freebsd wrote: > >> I got it connected. It seems that when I hit reply the email address is >> the address of whoever replied to me from the talk at lists.nycbug.org >> list. Is it the preferred method on this list to just reply to the >> people that reply to you directly, or is it preferred to reply to the >> address talk at lists.nycbug.org so that everyone can follow the thread? I >> know no one needs extra email in thier inbox, but sometimes everyone can >> benefit from the thread. If there is a moderator here maybe they could >> answer as I don't want to flood everyone with every response. > >Use, reply-to-all. That'll work. > >> Anyway, I got the nic working, I can ping everything by IP or domain >> name, I can telnet into the machine, but I can't log in as root, is that >> a security feature of freebsd? Is there a graphic interface to look at >> all user accounts on the machine and adjust permissions? > >Telnet in. Then su to become root. > >> Also in the docs I see commands such as route(8), does that mean you >> have to have a security level of 8 to use the command? Thanks, > >The 8 means section 8 of the manual. Issue this command: man man > >-- >Dan Langille - http://www.langille.org/ I tryed typing su and I just got su: Sorry, SU gives me SU: not found. Was it a joke? Jerry ________________________________________________________________ Sent via the WebMail system at slikstik.com From scottro Fri Aug 20 19:36:23 2004 From: scottro (Scott Robbins) Date: Fri, 20 Aug 2004 19:36:23 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <200408201421.AA9306350@slikstik.com> References: <200408201421.AA9306350@slikstik.com> Message-ID: <20040820233623.GB63831@scottro11.homeunix.net> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Fri, Aug 20, 2004 at 02:21:22PM -0400, freebsd wrote: > > > > > >On Thu, 19 Aug 2004, freebsd wrote: > > > >> I got it connected. It seems that when I hit reply the email address is > >> a security feature of freebsd? Is there a graphic interface to look at > >> all user accounts on the machine and adjust permissions? > > > >Telnet in. Then su to become root. > > > >> Also in the docs I see commands such as route(8), does that mean you > >> have to have a security level of 8 to use the command? Thanks, > > > > I tryed typing su and I just got su: Sorry, SU gives me SU: not found. > > Was it a joke? No, while we like jokes, we don't make fun of people who haven't yet learned. Something sounds very strnge however. You did type it in lower case, correct? That is, as user jerry (or whatever) you typed, at a command prompt, su I could see getting something like sorry if you aren't a member of the wheel group. However, it shouldn't have said command not found. - -- Scott PGP keyID EB3467D6 ( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 ) gpg --keyserver pgp.mit.edu --recv-keys EB3467D6 Spike: It's a big rock. Can't wait to tell my friends. They don't have a rock this big. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBJor3+lTVdes0Z9YRAsy3AKCz9YxEOe+eqS+UPswW7McKAiBZxwCeNgGY ymqt2ayWG9FP8sohmkjOAXU= =88qL -----END PGP SIGNATURE----- From jesse Fri Aug 20 19:43:39 2004 From: jesse (Jesse Callaway) Date: Fri, 20 Aug 2004 19:43:39 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <200408201421.AA9306350@slikstik.com> References: <200408201421.AA9306350@slikstik.com> Message-ID: On Aug 20, 2004, at 2:21 PM, freebsd wrote: > >> On Thu, 19 Aug 2004, freebsd wrote: >> >>> I got it connected. It seems that when I hit reply the email address >>> is >>> the address of whoever replied to me from the talk at lists.nycbug.org >>> list. Is it the preferred method on this list to just reply to the >>> people that reply to you directly, or is it preferred to reply to the >>> address talk at lists.nycbug.org so that everyone can follow the >>> thread? I >>> know no one needs extra email in thier inbox, but sometimes everyone >>> can >>> benefit from the thread. If there is a moderator here maybe they >>> could >>> answer as I don't want to flood everyone with every response. >> >> Use, reply-to-all. That'll work. >> >>> Anyway, I got the nic working, I can ping everything by IP or domain >>> name, I can telnet into the machine, but I can't log in as root, is >>> that >>> a security feature of freebsd? Is there a graphic interface to look >>> at >>> all user accounts on the machine and adjust permissions? >> >> Telnet in. Then su to become root. >> >>> Also in the docs I see commands such as route(8), does that mean you >>> have to have a security level of 8 to use the command? Thanks, >> >> The 8 means section 8 of the manual. Issue this command: man man >> >> -- >> Dan Langille - http://www.langille.org/ > > I tryed typing su and I just got su: Sorry, SU gives me SU: not found. > > Was it a joke? > > Jerry Check your path. The su program is actually in a folder, like /usr/bin/su. Just like DOS you can either type /usr/bin/su to run the program or change your environment variables so that the PATH variable looks into a bunch of different places where your binaries usually are. you can check all of your env variables with (like DOS again) > set set can also assign a value to a variable or glean the value of just one of them > echo $PATH the dollar sign lets the shell know that this is a special word and to interpret its value. it's like the percent sign in DOS While it's no trivial matter to roll back versions, it is trivial to turn on compatibility with the older FreeBSD. Since you are purchasing a product it would be best to just do whatever the hell they say in their install manual. 4.1 seems a little drastic, though. Sure it's wasn't 4.10? jesse From bob Fri Aug 20 21:46:43 2004 From: bob (Bob Ippolito) Date: Fri, 20 Aug 2004 21:46:43 -0400 Subject: [nycbug-talk] Re:FreeBSD Newbie In-Reply-To: <20040820233623.GB63831@scottro11.homeunix.net> References: <200408201421.AA9306350@slikstik.com> <20040820233623.GB63831@scottro11.homeunix.net> Message-ID: On Aug 20, 2004, at 7:36 PM, Scott Robbins wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Fri, Aug 20, 2004 at 02:21:22PM -0400, freebsd wrote: >> >> >> >> >>> On Thu, 19 Aug 2004, freebsd wrote: >>> >>>> I got it connected. It seems that when I hit reply the email >>>> address is > > >>>> a security feature of freebsd? Is there a graphic interface to look >>>> at >>>> all user accounts on the machine and adjust permissions? >>> >>> Telnet in. Then su to become root. >>> >>>> Also in the docs I see commands such as route(8), does that mean you >>>> have to have a security level of 8 to use the command? Thanks, >>> >> >> I tryed typing su and I just got su: Sorry, SU gives me SU: not found. >> >> Was it a joke? > > No, while we like jokes, we don't make fun of people who haven't yet > learned. > > Something sounds very strnge however. You did type it in lower case, > correct? > > That is, as user jerry (or whatever) you typed, at a command prompt, > > su > > I could see getting something like sorry if you aren't a member of the > wheel group. However, it shouldn't have said command not found. It might be in /sbin or /usr/sbin, which may not be in his path. -bob From tux Sat Aug 21 01:38:28 2004 From: tux (Kevin Reiter) Date: Sat, 21 Aug 2004 01:38:28 -0400 Subject: [nycbug-talk] g4u References: <20040820141435.71db17ec@delinux.abwatley.com> <20040820154436.40c504cd@delinux.abwatley.com> Message-ID: <001001c48741$16f18ed0$0600a8c0@geekiskahn.net> Here's another slick util that also comes with a server (like Ghost Ent.): http://www.partimage.org/index.en.html There's a lot of options that g4u doesn't have (yet) not counting the ability to run a dedicated server for the images. I just downloaded it, and I'll be testing it in a little bit. -Kevin From trish Sat Aug 21 11:41:01 2004 From: trish (Trish Lynch) Date: Sat, 21 Aug 2004 11:41:01 -0400 (EDT) Subject: [nycbug-talk] g4u In-Reply-To: <001001c48741$16f18ed0$0600a8c0@geekiskahn.net> References: <20040820141435.71db17ec@delinux.abwatley.com> <20040820154436.40c504cd@delinux.abwatley.com> <001001c48741$16f18ed0$0600a8c0@geekiskahn.net> Message-ID: <20040821113937.L84663@ultra.bsdunix.net> On Sat, 21 Aug 2004, Kevin Reiter wrote: > Here's another slick util that also comes with a server (like Ghost Ent.): > > http://www.partimage.org/index.en.html > > There's a lot of options that g4u doesn't have (yet) not counting the > ability to run a dedicated server for the images. I just downloaded it, and > I'll be testing it in a little bit. > > -Kevin > > and for us people who want to mass-produce BSD-type servers.... PFU (Pretty F-ing Useless) I think I'll stay with PXE booting installs. -Trish -- Trish Lynch trish at bsdunix.net Ecartis Core Team trish at listmistress.org EFNet IRC Operator/SysAdmin @ irc.dkom.at AilleCat at EFNet Key fingerprint = 781D 2B47 AA4B FC88 B919 0CD6 26B2 1D62 6FC1 FF16 From tux Sat Aug 21 13:47:35 2004 From: tux (Kevin Reiter) Date: Sat, 21 Aug 2004 13:47:35 -0400 Subject: [nycbug-talk] g4u References: <20040820141435.71db17ec@delinux.abwatley.com> <20040820154436.40c504cd@delinux.abwatley.com> <001001c48741$16f18ed0$0600a8c0@geekiskahn.net> <20040821113937.L84663@ultra.bsdunix.net> Message-ID: <002f01c487a6$f2045e70$0600a8c0@geekiskahn.net> : and for us people who want to mass-produce BSD-type servers.... : : PFU (Pretty F-ing Useless) Why is that? It has the ability to use a secured connection to the server, plus it reads UFS, so why wouldn't it be useful for imaging BSD boxen? I tested it on my mail server and my web server, and it did both fairly quickly. I burned the images onto a bootable CD with the client binary and a small script, and now all I have to do is boot to the CD and it automatically loads the image after booting. AFAIK it couldn't get any simpler... -Kevin From trish Sat Aug 21 14:26:29 2004 From: trish (Trish Lynch) Date: Sat, 21 Aug 2004 14:26:29 -0400 (EDT) Subject: [nycbug-talk] g4u In-Reply-To: <002f01c487a6$f2045e70$0600a8c0@geekiskahn.net> References: <20040820141435.71db17ec@delinux.abwatley.com> <20040820154436.40c504cd@delinux.abwatley.com> <001001c48741$16f18ed0$0600a8c0@geekiskahn.net> <20040821113937.L84663@ultra.bsdunix.net> <002f01c487a6$f2045e70$0600a8c0@geekiskahn.net> Message-ID: <20040821142504.Y84663@ultra.bsdunix.net> On Sat, 21 Aug 2004, Kevin Reiter wrote: > : and for us people who want to mass-produce BSD-type servers.... > : > : PFU (Pretty F-ing Useless) > > Why is that? It has the ability to use a secured connection to the server, > plus it reads UFS, so why wouldn't it be useful for imaging BSD boxen? I > tested it on my mail server and my web server, and it did both fairly > quickly. unless linux now reads FFS2 with Softdep, its pretty useless at least for FreeBSD. > I burned the images onto a bootable CD with the client binary and > a small script, and now all I have to do is boot to the CD and it > automatically loads the image after booting. AFAIK it couldn't get any > simpler... > You still have to put a CD in... how about just turning a machine on and it installs FreeBSD just The Way You Like It(tm) > -Kevin > > -Trish -- Trish Lynch trish at bsdunix.net Ecartis Core Team trish at listmistress.org EFNet IRC Operator/SysAdmin @ irc.dkom.at AilleCat at EFNet Key fingerprint = 781D 2B47 AA4B FC88 B919 0CD6 26B2 1D62 6FC1 FF16 From tux Sat Aug 21 15:21:10 2004 From: tux (Kevin Reiter) Date: Sat, 21 Aug 2004 15:21:10 -0400 Subject: [nycbug-talk] g4u References: <20040820141435.71db17ec@delinux.abwatley.com> <20040820154436.40c504cd@delinux.abwatley.com> <001001c48741$16f18ed0$0600a8c0@geekiskahn.net> <20040821113937.L84663@ultra.bsdunix.net> <002f01c487a6$f2045e70$0600a8c0@geekiskahn.net> <20040821142504.Y84663@ultra.bsdunix.net> Message-ID: <000701c487b4$2b8499f0$0600a8c0@geekiskahn.net> : unless linux now reads FFS2 with Softdep, its pretty useless at least for : FreeBSD. Ahh.. didn't see that... : You still have to put a CD in... how about just turning a machine on and : it installs FreeBSD just The Way You Like It(tm) Would that include all the backups of config files from a working system, user accounts, etc., or is that more like a fresh install? I've never tried PXE so I don't know how it works (yet.) One of the reasons I mentioned partimage is because when I used g4u, the image size was *huge* and I was looking for a different way to clone a box in case of a major failure (for a quick restore) without having to have a spare 19GB free in a directory somewhere. Since partimage basically ignores unused space on the drive, the image tends to be a lot smaller, and in my case, able to fit on a CD. For me, booting to a CD and having the image restored is a lot simpler and a huge time saver. If PXE can do that, I'll give it a try.. (I'm not arguing over which one is better, merely offering another method to do basically the same thing. g4u, partimage, or whatever you choose is whatever works best for you :) -Kevin From george Sat Aug 21 17:32:43 2004 From: george (George Georgalis) Date: Sat, 21 Aug 2004 17:32:43 -0400 Subject: PXE boot Re: [nycbug-talk] install fest In-Reply-To: <004801c4807e$5d892480$1d0110ac@focus> References: <20040807232153.GI13690@trot.local> <20040808052742.GA84834@yinaska.pair.com> <20040812000452.GE5627@trot.local> <20040812133626.GP5627@trot.local> <004801c4807e$5d892480$1d0110ac@focus> Message-ID: <20040821213243.GC17644@trot.local> On Thu, Aug 12, 2004 at 11:09:29AM -0400, Kurt Miller wrote: >From: "George Georgalis" >> Looks like there is a OpenBSD/3.5/i386/pxeboot too... now to modify the >> bsd.rd to program my custom install. How is that file made? >> > >If your going to customize the install, you may as well build >a stable system so that you install -stable with the latest >patches. I use a separate VMWare install just for building >-stable on. A dual booted laptop or extra machine works >just as well too. > >See release(8), bsd.rd is built during that process. Modify >/usr/src/distrib/miniroot install.sh and upgrade.sh as needed >before doing the release(8) process. Thanks, that gives me enough to keep me busy for a while! // George -- George Georgalis, Architect and administrator, Linux services. IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org Key fingerprint = 5415 2738 61CF 6AE1 E9A7 9EF0 0186 503B 9831 1631 From george Sat Aug 21 21:47:32 2004 From: george (george at galis.org) Date: Sat, 21 Aug 2004 21:47:32 -0400 Subject: [nycbug-talk] vpn hardware Message-ID: <20040822014732.GO17644@trot.local> Can anyone recommend a vpn hardware product? The type where a Soekris like box is placed on the inside of the firewall at two different locations and they do the magic in an idiot proof fashion? If there is something that has hardware/BSD on one end and XP software on the other end, that could be a solution too. // George -- George Georgalis, Systems Architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From mspitze1 Sun Aug 22 01:13:53 2004 From: mspitze1 (Marc Spitzer) Date: Sun, 22 Aug 2004 01:13:53 -0400 Subject: [nycbug-talk] vpn hardware In-Reply-To: <20040822014732.GO17644@trot.local> References: <20040822014732.GO17644@trot.local> Message-ID: <20040822011353.0a9a8994@bogomips.optonline.net> On Sat, 21 Aug 2004 21:47:32 -0400 george at galis.org wrote: > Can anyone recommend a vpn hardware product? The type where a Soekris > like box is placed on the inside of the firewall at two different > locations and they do the magic in an idiot proof fashion? If there is > something that has hardware/BSD on one end and XP software on the > other end, that could be a solution too. 100 ipsec vpn tunnels for about $250/box new http://www.netgear.com/products/details/FVL328.php I have just read the specks on this one though. And there are some mighty stupid idiots out there, marc From lists Sun Aug 22 07:24:05 2004 From: lists (michael) Date: Sun, 22 Aug 2004 07:24:05 -0400 Subject: [nycbug-talk] vpn hardware In-Reply-To: <20040822011353.0a9a8994@bogomips.optonline.net> References: <20040822014732.GO17644@trot.local> <20040822011353.0a9a8994@bogomips.optonline.net> Message-ID: <41288255.6010400@genoverly.net> on 20040822 1:13 AM Marc Spitzer had written... > 100 ipsec vpn tunnels for about $250/box new > > http://www.netgear.com/products/details/FVL328.php > > I have just read the specks on this one though. > And there are some mighty stupid idiots out there, > I am one of them.. what did you mean? Michael From pete Sun Aug 22 21:45:02 2004 From: pete (pete wright) Date: Sun, 22 Aug 2004 21:45:02 -0400 Subject: [nycbug-talk] g4u In-Reply-To: <000701c487b4$2b8499f0$0600a8c0@geekiskahn.net> References: <20040820141435.71db17ec@delinux.abwatley.com> <20040820154436.40c504cd@delinux.abwatley.com> <001001c48741$16f18ed0$0600a8c0@geekiskahn.net> <20040821113937.L84663@ultra.bsdunix.net> <002f01c487a6$f2045e70$0600a8c0@geekiskahn.net> <20040821142504.Y84663@ultra.bsdunix.net> <000701c487b4$2b8499f0$0600a8c0@geekiskahn.net> Message-ID: <0CFC1D02-F4A6-11D8-8A1C-000393BC62B8@nomadlogic.org> On Aug 21, 2004, at 3:21 PM, Kevin Reiter wrote: > > Would that include all the backups of config files from a working > system, > user accounts, etc., or is that more like a fresh install? I've never > tried > PXE so I don't know how it works (yet.) > one thing to think about would be using the cfengine (http://www.cfengine.org/) or something similar. You can include the cfengine with your base RamDisk image that would be loaded via PXE. > One of the reasons I mentioned partimage is because when I used g4u, > the > image size was *huge* and I was looking for a different way to clone a > box > in case of a major failure (for a quick restore) without having to > have a > spare 19GB free in a directory somewhere. Since partimage basically > ignores > unused space on the drive, the image tends to be a lot smaller, and in > my > case, able to fit on a CD. For me, booting to a CD and having the > image > restored is a lot simpler and a huge time saver. If PXE can do that, > I'll > give it a try.. not sure you want to use PXE to load that much data. it can dole out a bootable system image. to restore from there i'm not sure what you would do, i guess it depends on what your system layout is. I like to use bacula or (even XFS dumps on linux/irix) for system restores because each provide fairly quick searchable restore procedures. anyway thought i'd throw my 2bits in. -p From mspitze1 Sun Aug 22 23:00:09 2004 From: mspitze1 (Marc Spitzer) Date: Sun, 22 Aug 2004 23:00:09 -0400 Subject: [nycbug-talk] vpn hardware In-Reply-To: <41288255.6010400@genoverly.net> References: <20040822014732.GO17644@trot.local> <20040822011353.0a9a8994@bogomips.optonline.net> <41288255.6010400@genoverly.net> Message-ID: <20040822230009.7778d313@bogomips.optonline.net> On Sun, 22 Aug 2004 07:24:05 -0400 michael wrote: > on 20040822 1:13 AM Marc Spitzer had written... > > > 100 ipsec vpn tunnels for about $250/box new > > > > http://www.netgear.com/products/details/FVL328.php > > > > I have just read the specks on this one though. > > And there are some mighty stupid idiots out there, > > > > I am one of them.. what did you mean? > Michael Sorry for not getting back to you sooner about this. What happened was I was short on sleep and thought there was a part of the original message that said/implied that the was a requirement for a bit of user protection/simplicity of use for this project and was just commenting on the fact that nature always beats engineers in this regard, it comes out better when I am well rested. So no you are not an idiot but in this case I appear to have been one, see I was right after all, and no insult/dig intended to anyone. Sorry about the misunderstanding, marc From george Mon Aug 23 08:42:00 2004 From: george (george at galis.org) Date: Mon, 23 Aug 2004 08:42:00 -0400 Subject: [nycbug-talk] vpn hardware In-Reply-To: <20040822230009.7778d313@bogomips.optonline.net> References: <20040822014732.GO17644@trot.local> <20040822011353.0a9a8994@bogomips.optonline.net> <41288255.6010400@genoverly.net> <20040822230009.7778d313@bogomips.optonline.net> Message-ID: <20040823124200.GD1623@trot.local> On Sun, Aug 22, 2004 at 11:00:09PM -0400, Marc Spitzer wrote: >On Sun, 22 Aug 2004 07:24:05 -0400 >michael wrote: > >> on 20040822 1:13 AM Marc Spitzer had written... >> >> > 100 ipsec vpn tunnels for about $250/box new >> > >> > http://www.netgear.com/products/details/FVL328.php >> > >> > I have just read the specks on this one though. >> > And there are some mighty stupid idiots out there, >> > >> >> I am one of them.. what did you mean? >> Michael > >Sorry for not getting back to you sooner about this. > >What happened was I was short on sleep and thought there was a part of >the original message that said/implied that the was a requirement for a >bit of user protection/simplicity of use for this project and was just >commenting on the fact that nature always beats engineers in this >regard, it comes out better when I am well rested. So no you are not an >idiot but in this case I appear to have been one, see I was right after >all, and no insult/dig intended to anyone. I can't make a lot of sense from that paragraph. But I appreciate the hardware config is as simple as password and network entry, and the software client is almost as simple. In addition to the Netgear FVL328 (and FR328S, FVS318), I'm looking at the Linksys BEFVP41 and RV042. In several shops, I've seen 'black box' (Soekris like) dedicated hardware; thought I'd be going with one of them and didn't realize the big names packaged VPN in their soho cases. ...this one is not an option for me... http://www.itsecurity.com/products/prod185.htm Fortress VPN-100 4.0 $45,995 70Mbps // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From tux Mon Aug 23 10:26:35 2004 From: tux (Kevin Reiter) Date: Mon, 23 Aug 2004 10:26:35 -0400 Subject: [nycbug-talk] g4u References: <20040820141435.71db17ec@delinux.abwatley.com> <20040820154436.40c504cd@delinux.abwatley.com> <001001c48741$16f18ed0$0600a8c0@geekiskahn.net> <20040821113937.L84663@ultra.bsdunix.net> <002f01c487a6$f2045e70$0600a8c0@geekiskahn.net> <20040821142504.Y84663@ultra.bsdunix.net> <000701c487b4$2b8499f0$0600a8c0@geekiskahn.net> <0CFC1D02-F4A6-11D8-8A1C-000393BC62B8@nomadlogic.org> Message-ID: <000c01c4891d$32c8bdd0$0600a8c0@apollo> > not sure you want to use PXE to load that much data. it can dole out a > bootable system image. to restore from there i'm not sure what you > would do, i guess it depends on what your system layout is. I like to > use bacula or (even XFS dumps on linux/irix) for system restores > because each provide fairly quick searchable restore procedures. That's what I thought, which is why I didn't consider it when looking for alternative imaging apps. It's probably great for getting a bootable system up and running, but as far as the disaster recovery scenario, it's pretty useless. I'll play with bacula more when I have some free time to RTFM :) -Kevin From pete Mon Aug 23 11:33:35 2004 From: pete (Pete Wright) Date: Mon, 23 Aug 2004 10:33:35 -0500 Subject: [nycbug-talk] g4u In-Reply-To: <000c01c4891d$32c8bdd0$0600a8c0@apollo> References: <20040820141435.71db17ec@delinux.abwatley.com> <20040820154436.40c504cd@delinux.abwatley.com> <001001c48741$16f18ed0$0600a8c0@geekiskahn.net> <20040821113937.L84663@ultra.bsdunix.net> <002f01c487a6$f2045e70$0600a8c0@geekiskahn.net> <20040821142504.Y84663@ultra.bsdunix.net> <000701c487b4$2b8499f0$0600a8c0@geekiskahn.net> <0CFC1D02-F4A6-11D8-8A1C-000393BC62B8@nomadlogic.org> <000c01c4891d$32c8bdd0$0600a8c0@apollo> Message-ID: <412A0E4F.8010009@nomadlogic.org> > > >That's what I thought, which is why I didn't consider it when looking for >alternative imaging apps. It's probably great for getting a bootable system >up and running, but as far as the disaster recovery scenario, it's pretty >useless. I'll play with bacula more when I have some free time to RTFM :) > > > cool, a bit OT but...Kern has started work on getting a bootable bacula recovery ISO working. It will take a snapshot of your running Kernel/libs/etc and compile a bootable recover CD. Should be fun...check the mailing list to follow progress. I'm working on the Debian side of things and seeing how that goes i'll see if it makes sense to port it to BSd. -p -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From lists Mon Aug 23 15:23:41 2004 From: lists (michael) Date: Mon, 23 Aug 2004 15:23:41 -0400 Subject: [nycbug-talk] Fw: Newsletter from O'Reilly Message-ID: <20040823152341.667aa944@delinux.abwatley.com> Begin forwarded message: ================================================================ O'Reilly News for User Group Members August 23, 2004 ================================================================ ---------------------------------------------------------------- Book News ---------------------------------------------------------------- -Understanding Open Source and Free Software Licensing -PDF Hacks -iMovie 4 & iDVD: The Missing Manual, 4th Edition -The Linux Cookbook, 2nd Edition -CSS Cookbook -The Official Blender 2.3 Guide -Mono: A Developer's Notebook -SpamAssassin -Managing Security with Snort & IDS Tools ---------------------------------------------------------------- Upcoming Events ---------------------------------------------------------------- -Peter Morville ("Information Architecture for the World Wide Web"), Information Architecture & Findability, Boston, MA--September 17 -O'Reilly at the Macintosh Computer Expo, Santa Rosa, CA--September 18 -David Pogue (Missing Manual series), Digital Lifestyle Expo, New York, NY--September 25-26 ---------------------------------------------------------------- Conference News ---------------------------------------------------------------- -Registration Is Open for O'Reilly's Mac OS X Conference, Santa Clara, CA--October 25-28, 2004 ---------------------------------------------------------------- News ---------------------------------------------------------------- -Securing Key Chain Flash Drives -Technology and Tools of Change -Syngress Authors Scheduled to Appear on "60 Minutes" in September -Oracle Magazine's Editors' Choice Awards -Alleviate RSI the Hacker Way -A Day in the Life of #Apache -PHP Debugging Basics -What's on Your Macdar? -The Inside Scoop on the O'Reilly Mac OS X Conference -Further Your CS Development with Mac OS X -Performing Web Queries in Excel 2003 -Personalization in ASP.NET -Windows Server Hacks: Using Preconfigured User Profiles -Develop Your Own Plugins for Eclipse, Part 1 -An Introduction to IKVM ================================================ Book News ================================================ Did you know you can request a free book to review for your group? Ask your group leader for more information. For book review writing tips and suggestions, go to: http://ug.oreilly.com/bookreviews.html Don't forget, you can receive 20% off any O'Reilly, No Starch, Paraglyph, Pragmatic Bookshelf, or Syngress book you purchase directly from O'Reilly. Just use code DSUG when ordering online or by phone 800-998-9938. http://www.oreilly.com/ ***Free ground shipping is available for online orders of at least $29.95 that go to a single U.S. address. This offer applies to U.S. delivery addresses in the 50 states and Puerto Rico. For more details, go to: http://www.oreilly.com/news/freeshipping_0703.html ---------------------------------------------------------------- New Releases ---------------------------------------------------------------- ***Understanding Open Source and Free Software Licensing Publisher: O'Reilly ISBN: 0596005814 Licensing is a major part of what open source and free software are all about, and it's one of the most complicated areas of law. This concise guide focuses on annotated licenses, offering an in-depth explanation of your licensing options, how they compare and interoperate, and how license choices affect project possibilities. If you're an open source/free software developer, this book is an absolute necessity, bridging the gap between the open source vision and the practical implications of its legal underpinnings. http://www.oreilly.com/catalog/osfreesoft/ Chapter 2, "The MIT, BSD, Apache, and Academic Free Licenses," is available online: http://www.oreilly.com/catalog/osfreesoft/chapter/index.html ***PDF Hacks IISBN: 0596006551 "PDF Hacks" is ideal for anyone who works with PDF on a regular basis. The hacks presented here cover the full range of PDF functionality, from generating and manipulating to annotating and consuming PDF information. Far more than another guide to Adobe Acrobat, the book covers a variety of readily available tools for generating, deploying, and editing PDF. You'll be creating documents that are far more powerful than simple representations of paper pages. http://www.oreilly.com/catalog/pdfhks/ Ten sample hacks are available online: http://www.oreilly.com/catalog/pdfhks/chapter/index.html ***iMovie 4 & iDVD: The Missing Manual, 4th Edition Publisher: O'Reilly ISBN: 0596006934 Many annoyances have been eliminated and polished touches added to the new incarnations of iMovie and iDVD. This witty and entertaining guide from celebrated author David Pogue has been updated to reflect all of the changes, in detail and with scrupulous objectivity. The book covers every step of iMovie video production, from choosing and using a digital camcorder to burning the finished work onto DVDs. The book also provides a firm grounding in basic film technique. Make your movies look like Hollywood hits with "iMovie 4 & iDVD: The Missing Manual, 4th Edition." http://www.oreilly.com/catalog/imoviemm4/ ***The Linux Cookbook, 2nd Edition Publisher: No Starch Press ISBN: 1593270313 "The Linux Cookbook, 2nd Edition" is your guide to getting the most out of Linux. Organized by general task (such as working with text, managing files, and manipulating graphics), each section contains a series of step-by-step recipes that help you get your work done quickly and efficiently, most often from the command line. Perfect as an introduction to Linux and the command line, or as a desktop reference for the seasoned user. Covers the major Linux distributions. http://www.oreilly.com/catalog/1593270313/ ***CSS Cookbook Publisher: O'Reilly ISBN: 0596005768 "CSS Cookbook" offers hundreds of examples and CSS code recipes you can use immediately to format your web pages. An explanation accompanies each recipe, enabling you to customize the formatting for your specific purposes, and showing why the solution works so the techniques can be adapted to other situations. Reflecting CSS2 and including topics that range from basic web typography and page layout to techniques for formatting lists, forms, and tables, "CSS Cookbook" is a must-have resource for any web author considering CSS. http://www.oreilly.com/catalog/cssckbk/ Chapter 2, "Page Elements," is available online: http://www.oreilly.com/catalog/cssckbk/chapter/index.html ***The Official Blender 2.3 Guide Publisher: No Starch Press ISBN: 1593270410 Blender is a powerful, open source, cross-platform, free 3D graphics creation suite. Written by the developers who created and currently maintain Blender, "The Official Blender 2.3 Guide" covers methods of designing models, defining materials, and simulating light; rendering 3D scenes; creating 3D animations; as well as advanced topics such as using Blender as a video editor. Includes a 4-color insert and CD-ROM. http://www.oreilly.com/catalog/1593270410/index.html ***Mono: A Developer's Notebook Publisher: O'Reilly ISBN: 0596007922 This no-fluff, lab-style guide jumps right into Mono 1.0 as you work through nearly 50 mini-projects that introduce you to the most important and compelling aspects of the 1.0 release. You'll learn how to acquire, install, and run Mono on Linux, Windows, or Mac OS X. You'll work with the various Mono components: Gtk#; the CLR; the class libraries (.NET and Mono); and much more. This book lets you roll up your sleeves and see what Mono can do. http://www.oreilly.com/catalog/monoadn/ Chapter 3, "Core .NET," is available online: http://www.oreilly.com/catalog/monoadn/chapter/index.html ***SpamAssassin Publisher: O'Reilly ISBN: 0596007078 SpamAssassin is the leading open source spam-fighting tool. The drawback? Until now, it was SpamAssassin's lack of published documentation. This clear, concise new guide shows system administrators how to integrate this tool effectively into their networks. The book clarifies installation, configuration, and use of SpamAssassin versions 2.63 and 3.0 for Unix sysadmins using Postfix, sendmail, Exim, or qmail mail servers. SpamAssassin, together with this essential book, provides the tools you need to take back your organization's inboxes. http://www.oreilly.com/catalog/spamassassin/ Chapter 2, "SpamAssassin Basics," is available free online: http://www.oreilly.com/catalog/spamassassin/chapter/index.html ***Managing Security with Snort & IDS Tools Publisher: O'Reilly ISBN: 0596006616 This practical guide to managing network security covers reliable methods for detecting network intruders, from using simple packet sniffers to more sophisticated IDS (Intrusion Detection Systems) applications and the GUI interfaces for managing them. The book provides step-by-step instructions on getting up and running with Snort 2.1, and it covers how to shut down and secure workstations, servers, firewalls, routers, sensors, and other network devices. This is your comprehensive resource for monitoring illegal entry attempts. http://www.oreilly.com/catalog/snortids/ Chapter 6, "Deploying Snort," is available free online: http://www.oreilly.com/catalog/snortids/chapter/index.html ================================================ Upcoming Events ================================================ ***For more events, please see: http://events.oreilly.com/ ***Peter Morville ("Information Architecture for the World Wide Web"), Information Architecture & Findability, Boston, MA--September 17 Peter leads a new full-day seminar on information architecture from top to bottom, explaining how search and navigation systems can be designed to support and shape user behavior. http://semanticstudios.com/presentations/iaf/ ***Come Join O'Reilly at the Macintosh Computer Expo, Santa Rosa, CA--September 18 MCE is the North Coast Mac Users Group annual fundraising event. Speakers include O'Reilly authors Tom Negrino and Dori Smith ("Mac OS X Unwired"), Jason Snell (Macworld Magazine), Mike Descher (Adobe), author Jim Heid (Peachpit Press and Avondale Media), and Ronnie Roche (Apple Certified Help Desk Specialist). O'Reilly will be selling books onsite as one of the vendors. http://www.ncmug.org/mce.html MCE Flier: http://www.ncmug.org/mce/MCE_ad.pdf MCE Poster: http://www.ncmug.org/mce/MCE_poster.pdf Mac Computer Expo Saturday, September 18 9:30am to 3:30pm Student Lounge/Cafeteria Santa Rosa Junior College 1501 Mendocino Ave Santa Rosa, CA 95401 Admission is free to event, but parking fee is $3.00. ***David Pogue (Missing Manual series), Digital Lifestyle Expo, New York, NY--September 25-26 Author and Mac guru David Pogue is a keynote speaker at this event at the Marriott Marquis Hotel, New York, NY. http://www.dlexpo.com/ ================================================ Conference News ================================================ ***Registration Is Open for O'Reilly's Mac OS X Conference Join us for the third annual Mac OS X Conference, October 25-28, 2004, in Santa Clara, California. You'll hear from Stewart Copeland, the former drummer for The Police who now creates award-winning film and television scores using Mac OS X technology; "New York Times" columnist David Pogue; Andy Ihnatko of the "Chicago Sun-Times"; Karelia Sofware's Dan Wood; Brent Simmons of Ranchero Software; Michael Bartosh of 4AM Media; Mac authors Dori Smith, Gordon Meyer, and Ted Landau; and many more. User Group members who register before September 10, 2004 get a double discount. Use code DSUG when you register, and receive 20% off the "Early Bird" price. To register, go to: http://conferences.oreillynet.com/cs/macosx2004/create/ord_mac04 O'Reilly Mac OS X Conference October 25-28, 2004 Westin Santa Clara, Santa Clara, CA http://conferences.oreilly.com/macosxcon/ ================================================ News From O'Reilly & Beyond ================================================ --------------------- General News --------------------- ***Securing Key Chain Flash Drives The current crop of key chain Flash drives have incredible storage capacity. They are perfect for keeping personal data with you at all times. But what if you lose your keys? Here are a couple of easy ways to protect yourself, and your data. http://www.macdevcenter.com/pub/a/mac/2004/08/20/secure_flash.html ***Technology and Tools of Change Building the next generation of technology won't be easy, and will require developers, entrepreneurs, and the customers they serve to learn new skills. O'Reilly has a collection of tools for building the future, including a new book series, a new conference, and a new print-on-demand, custom books service. http://www.oreillynet.com/pub/a/oreilly/tim/opensource/toolsofchange_0804.html ***Syngress Authors Scheduled to Appear on "60 Minutes" in September Dr. Herbert Thompson and Spyros Nomikos, authors of "The Mezonic Agenda: Hacking the Presidency" (due out in October), will appear on the show on either September 22 or September 26. Make sure you tune in. For more information on this upcoming book go to: http://www.oreilly.com/catalog/1931836833/ ***Oracle Magazine's Editors' Choice Awards O'Reilly authors Cary Millsap and Jeff Holt have been named by Oracle Magazine's editors as Authors of the Year in recognition of their work on the "definitive tuning text," Optimizing Oracle Performance. http://www.hotsos.com/e-library/oop.html --------------------- Open Source --------------------- ***Alleviate RSI the Hacker Way Chances are, if you use a keyboard for several hours a day you'll eventually experience repetitive strain injury. Thankfully, it's possible to avoid or alleviate the symptoms with exercises, breaks, posture, and software. Software? Jono Bacon explores free software to help save your tender wrists. http://www.onlamp.com/pub/a/onlamp/2004/08/19/rsi_prevention.html ***A Day in the Life of #Apache Rich Bowen is back this month after a brief summer hiatus with his latest column based on his conversations on the IRC channel #apache. Want to know how to make your web site faster? Rich has some tips to enhance your server's performance. Rich is a coauthor of O'Reilly's "Apache Cookbook." http://www.onlamp.com/pub/a/apache/2004/08/19/apacheckbk.html ***PHP Debugging Basics Whether you're a PHP newbie or a wizard, your programs are going to have bugs in them. Nobody's perfect. David Sklar, author of "Learning PHP 5," provides some basic techniques for finding and fixing the problems in your programs. In particular, he covers how to set up error reporting as you like it, how to find parse errors, and how to inspect program data. http://www.onlamp.com/pub/a/php/2004/08/12/DebuggingPHP.html --------------------- Mac --------------------- ***What's on Your Macdar? O'Reilly Editor Chuck Toporek asks in his latest weblog "What would you like to see us publish a book on? Is there something we might have missed in one of the Panther editions that you'd like to see us work into an update?" http://www.oreillynet.com/pub/wlg/5453 ***The Inside Scoop on the O'Reilly Mac OS X Conference Sometimes, looking at a conference program grid is like looking at Edinburgh Castle. It's impressive, but you really don't know where all the bodies are buried unless you have a tour guide. http://www.macdevcenter.com/pub/a/mac/2004/08/12/osxcon.html ***Further Your CS Development with Mac OS X As the new school year approaches, Julie Starr has some ideas about what type of computer CS students should be considering. We'll give you a hint: It isn't a Windows box. http://www.macdevcenter.com/pub/a/mac/2004/08/13/dev_osx.html --------------------- Windows --------------------- ***Performing Web Queries in Excel 2003 "Excel 2003 Programming: A Developer's Notebook" shows programmers how to best use Excel 2003's new features, through a series of hands-on projects. In this sample lab from the book, learn how to perform a web query to import data from a web page into a worksheet using Excel's QueryTable object. http://www.windowsdevcenter.com/pub/a/windows/excerpt/excel2003prog_chap1/index.html ***Personalization in ASP.NET Personalizing your web site can enhance the experiences of users visiting your site. Personalization allows information about visitors to be persisted so that the information can be useful to the visitor when he visits your site again. Wei-Meng Lee shows you how it all works in ASP.NET 2.0. http://www.ondotnet.com/pub/a/dotnet/2004/08/16/whidbey_personalization.html ***Windows Server Hacks: Using Preconfigured User Profiles Roaming profiles make life easier for both users and system administrators. Mitch Tulloch, author of "Windows Server Hacks," shows you how to preconfigure roaming profiles to make them even more effective. http://www.windowsdevcenter.com/pub/a/windows/2004/08/17/roaming_profiles.html --------------------- Java --------------------- **Develop Your Own Plugins for Eclipse, Part 1 Part of the appeal of the Eclipse platform is its extensibility--in Eclipse, almost everything is a plugin, and it's easy to get plugins from third parties or write your own. Jerome Moliere shows how to get started with deploying Eclipse plugins. http://www.onjava.com/pub/a/onjava/2004/08/18/eclipseplugins.html ***An Introduction to IKVM Java and .NET are two different worlds, but they can live within one process with IKVM. This "JVM for .NET" allows .NET (or Mono) to leverage Java code, and vice versa. Avik Sengupta provides an introduction to this important new environment. http://www.onjava.com/pub/a/onjava/2004/08/18/ikvm.html Don't forget to check out the O'Reilly UG wiki to see what user groups across the globe are up to: http://wiki.oreillynet.com/usergroups/lpt?HomePage Until next time-- Marsee -- --- From freebsd Mon Aug 23 15:30:07 2004 From: freebsd (freebsd) Date: Mon, 23 Aug 2004 15:30:07 -0400 Subject: [nycbug-talk] FreeBSD ISO's Message-ID: <200408231530.AA17367368@slikstik.com> Hello All, I have downloaded 4.1 from 2 different FTP servers at freebsd.org and the each fail on install at different locations. Is this common to get bad downloads or do you think it may be my media? Thanks, Jerry ________________________________________________________________ Sent via the WebMail system at slikstik.com From pete Mon Aug 23 16:44:44 2004 From: pete (Pete Wright) Date: Mon, 23 Aug 2004 15:44:44 -0500 Subject: [nycbug-talk] FreeBSD ISO's In-Reply-To: <200408231530.AA17367368@slikstik.com> References: <200408231530.AA17367368@slikstik.com> Message-ID: <412A573C.70407@nomadlogic.org> freebsd wrote: >Hello All, > >I have downloaded 4.1 from 2 different FTP servers at freebsd.org and the each >fail on install at different locations. Is this common to get bad downloads >or do you think it may be my media? > > > If you post where the install is failing we may be able to help you better. Is it during loading process of the kernel? Also, is there a specific reason you are using 4.1...the latest stable release is 4.10 which i would suggest you use. That is unless there is some app. that requires 4.1 cheers, pete wright -- ~~~oO00Oo~~~ Pete Wright email: pete at nomadlogic.org mobile: 917.415.9866 web: www.nomadlogic.org/~pete member: NYCBUG www.nycbug.org New York City's BSD User Group From freebsd Mon Aug 23 15:43:15 2004 From: freebsd (freebsd) Date: Mon, 23 Aug 2004 15:43:15 -0400 Subject: [nycbug-talk] FreeBSD ISO's Message-ID: <200408231543.AA112722134@slikstik.com> ---------- Original Message ---------------------------------- From: Pete Wright Date: Mon, 23 Aug 2004 15:44:44 -0500 >freebsd wrote: > >>Hello All, >> >>I have downloaded 4.1 from 2 different FTP servers at freebsd.org and the each >>fail on install at different locations. Is this common to get bad downloads >>or do you think it may be my media? >> >> >> > >If you post where the install is failing we may be able to help you >better. Is it during loading process of the kernel? Also, is there a >specific reason you are using 4.1...the latest stable release is 4.10 >which i would suggest you use. That is unless there is some app. that >requires 4.1 > >cheers, > pete wright > >-- >~~~oO00Oo~~~ >Pete Wright >email: pete at nomadlogic.org >mobile: 917.415.9866 >web: www.nomadlogic.org/~pete >member: NYCBUG www.nycbug.org >New York City's BSD User Group > >_______________________________________________ >talk mailing list >talk at lists.nycbug.org >http://lists.nycbug.org/mailman/listinfo/talk >% Be sure to check out our Jobs and NYCBUG-announce lists >% We meet the first Wednesday of the month Yes, 4.10 is what I am using, I just dropped the trailing zero. Basicly this is my first forray into any nix OS, so I told the install to do a standard installation (recomended) and told it to install everything, I partitioned a 80gb drive as follows: 10gb Partition labeled as / with 5gb as a file system and 5 gb as a swap system 22gb labeled as /usr 22gb labeled as /var 22gb labeled as /hsphere When I install from CD I get errors like "Unable to transfer the sinclude distribution from acd0c" Am I supposed to be swapping in the 2cnd CD when I get those errors? Jerry Mascari ________________________________________________________________ Sent via the WebMail system at slikstik.com From freebsd Mon Aug 23 18:12:12 2004 From: freebsd (freebsd) Date: Mon, 23 Aug 2004 18:12:12 -0400 Subject: [nycbug-talk] FreeBSD ISO's Message-ID: <200408231812.AA22020334@slikstik.com> Whats a "Signal 11" ? ---------- Original Message ---------------------------------- From: "freebsd" Reply-To: freebsd at slikstik.com Date: Mon, 23 Aug 2004 15:43:15 -0400 > > > >---------- Original Message ---------------------------------- >From: Pete Wright >Date: Mon, 23 Aug 2004 15:44:44 -0500 > >>freebsd wrote: >> >>>Hello All, >>> >>>I have downloaded 4.1 from 2 different FTP servers at freebsd.org and the each >>>fail on install at different locations. Is this common to get bad downloads >>>or do you think it may be my media? >>> >>> >>> >> >>If you post where the install is failing we may be able to help you >>better. Is it during loading process of the kernel? Also, is there a >>specific reason you are using 4.1...the latest stable release is 4.10 >>which i would suggest you use. That is unless there is some app. that >>requires 4.1 >> >>cheers, >> pete wright >> >>-- >>~~~oO00Oo~~~ >>Pete Wright >>email: pete at nomadlogic.org >>mobile: 917.415.9866 >>web: www.nomadlogic.org/~pete >>member: NYCBUG www.nycbug.org >>New York City's BSD User Group >> >>_______________________________________________ >>talk mailing list >>talk at lists.nycbug.org >>http://lists.nycbug.org/mailman/listinfo/talk >>% Be sure to check out our Jobs and NYCBUG-announce lists >>% We meet the first Wednesday of the month > >Yes, 4.10 is what I am using, I just dropped the trailing zero. > >Basicly this is my first forray into any nix OS, so I told the install to do a standard installation (recomended) and told it to install everything, I partitioned a 80gb drive as follows: > >10gb Partition labeled as / with 5gb as a file system and 5 gb as a swap system > >22gb labeled as /usr >22gb labeled as /var >22gb labeled as /hsphere > >When I install from CD I get errors like "Unable to transfer the sinclude distribution from acd0c" > >Am I supposed to be swapping in the 2cnd CD when I get those errors? > >Jerry Mascari > > > > >________________________________________________________________ >Sent via the WebMail system at slikstik.com > > > > >_______________________________________________ >talk mailing list >talk at lists.nycbug.org >http://lists.nycbug.org/mailman/listinfo/talk >% Be sure to check out our Jobs and NYCBUG-announce lists >% We meet the first Wednesday of the month > ________________________________________________________________ Sent via the WebMail system at slikstik.com From sunny-ml Mon Aug 23 18:31:06 2004 From: sunny-ml (Sunny Dubey) Date: Mon, 23 Aug 2004 18:31:06 -0400 Subject: [nycbug-talk] FreeBSD ISO's In-Reply-To: <200408231812.AA22020334@slikstik.com> References: <200408231812.AA22020334@slikstik.com> Message-ID: <200408231831.06863.sunny-ml@opencurve.org> On Monday 23 August 2004 18:12, freebsd wrote: > Whats a "Signal 11" ? > Something usually caused by hardware problems. ?Maybe you have faulty RAM ? ? Try running memtest86 Sunny Dubey From george Tue Aug 24 07:29:48 2004 From: george (george at galis.org) Date: Tue, 24 Aug 2004 07:29:48 -0400 Subject: [nycbug-talk] FreeBSD ISO's In-Reply-To: <200408231831.06863.sunny-ml@opencurve.org> References: <200408231812.AA22020334@slikstik.com> <200408231831.06863.sunny-ml@opencurve.org> Message-ID: <20040824112948.GF26864@trot.local> On Mon, Aug 23, 2004 at 06:31:06PM -0400, Sunny Dubey wrote: >On Monday 23 August 2004 18:12, freebsd wrote: >> Whats a "Signal 11" ? >> > >Something usually caused by hardware problems. ?Maybe you have faulty RAM ? ? >Try running memtest86 > or clean your cdrom! // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From freebsd Tue Aug 24 10:47:18 2004 From: freebsd (freebsd) Date: Tue, 24 Aug 2004 10:47:18 -0400 Subject: [nycbug-talk] FreeBSD ISO's Message-ID: <200408241047.AA117899576@slikstik.com> ---------- Original Message ---------------------------------- From: george at galis.org Date: Tue, 24 Aug 2004 07:29:48 -0400 >On Mon, Aug 23, 2004 at 06:31:06PM -0400, Sunny Dubey wrote: >>On Monday 23 August 2004 18:12, freebsd wrote: >>> Whats a "Signal 11" ? >>> >> >>Something usually caused by hardware problems. ?Maybe you have faulty RAM ? ? >>Try running memtest86 >> > >or clean your cdrom! > >// George > > >-- >George Georgalis, systems architect, administrator Linux BSD IXOYE >http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org >_______________________________________________ >talk mailing list >talk at lists.nycbug.org >http://lists.nycbug.org/mailman/listinfo/talk >% Be sure to check out our Jobs and NYCBUG-announce lists >% We meet the first Wednesday of the month I was thinking, I am getting "Write failures" not "read failures" so does that mean anything? I would think its more a hard drive problem. Another symptom is that when it is copying from the cd it slows down to like 3kbps from like 1700kbps, then it fails. This also only happens when I try to do a full install with all the options. If I do a minimal install its ok, but I do get that "signal 11" message, but then the machine boots ok and I can log in and get on the net and eveything. I bought this machine from rackmount.com with freebsd installed but it was 5.1, since I need 4.1 I deleted all the partitions and then installed 4.1 and thats when I started seeing these issue. I contacted rackmount.com and told them about the errors, they said they would have a tech get back to me but also that their equipment was not certified for 4.1, that seemed strange to me that they would say that its not certified with the most current release version, but that was customer service so maybe they don't know what they are talking about. Jerry Mascari ________________________________________________________________ Sent via the WebMail system at slikstik.com From pete Tue Aug 24 12:06:04 2004 From: pete (Pete Wright) Date: Tue, 24 Aug 2004 11:06:04 -0500 Subject: [nycbug-talk] FreeBSD ISO's In-Reply-To: <200408241047.AA117899576@slikstik.com> References: <200408241047.AA117899576@slikstik.com> Message-ID: <412B676C.5060906@nomadlogic.org> freebsd wrote: > > >I was thinking, I am getting "Write failures" not "read failures" so does that mean anything? I would think its more a hard drive problem. Another symptom is that when it is copying from the cd it slows down to like 3kbps from like 1700kbps, then it fails. This also only happens when I try to do a full install with all the options. If I do a minimal install its ok, but I do get that "signal 11" message, but then the machine boots ok and I can log in and get on the net and eveything. > > > one thing to try, assuming that you have a fast internet connection, is installing the system via FTP from one of FreeBSD's mirror sites. You will still need the cd to boot, but after that it will grab the packages from the net. are you getting any errors in your "dmesg" relating to disk drive errors. In a shell, I think you can type ctl+alt+f2 to get a shell open during install ctl+alt+f1 will get you back to the install screen, you can type dmesg when you see the problems arise. >I bought this machine from rackmount.com with freebsd installed but it was 5.1, since I need 4.1 I deleted all the partitions and then installed 4.1 and thats when I started seeing these issue. I contacted rackmount.com and told them about the errors, they said they would have a tech get back to me but also that their equipment was not certified for 4.1, that seemed strange to me that they would say that its not certified with the most current release version, but that was customer service so maybe they don't know what they are talking about. > > that's really wierd that not only are they supporting a development release of FreeBSD but an old release at that. I'm supprised that they didn't ship it with at least 5.2. -p -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From george Tue Aug 24 11:26:43 2004 From: george (george at galis.org) Date: Tue, 24 Aug 2004 11:26:43 -0400 Subject: [nycbug-talk] FreeBSD ISO's In-Reply-To: <200408241047.AA117899576@slikstik.com> References: <200408241047.AA117899576@slikstik.com> Message-ID: <20040824152643.GA15963@trot.local> On Tue, Aug 24, 2004 at 10:47:18AM -0400, freebsd wrote: > >I was thinking, I am getting "Write failures" not "read failures" >so does that mean anything? I would think its more a hard drive >problem. Another symptom is that when it is copying from the cd it >slows down to like 3kbps from like 1700kbps, then it fails. This also >only happens when I try to do a full install with all the options. If >I do a minimal install its ok, but I do get that "signal 11" message, >but then the machine boots ok and I can log in and get on the net and >eveything. not sure about freeBSD, but you might can use ctrl-f2 (or 3,4,5,6...) durring the install to see a logging console and determine exactly what device the error is coming from. a remote guess: if "Write failures" only happen when you do 'full install' that would suggest HD faliure (when getting to that part of the drive), as would the slowdown if it is resetting/retrying the disk when it errors. :-\ Try the 'badblocks -w -v -v' program from some OS on a cdrom distro... // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From tux Tue Aug 24 12:48:01 2004 From: tux (Kevin Reiter) Date: Tue, 24 Aug 2004 12:48:01 -0400 Subject: [nycbug-talk] ProFTPd 1.2.9 on 4.10-RELEASE Message-ID: <001001c489fa$bb991e60$0600a8c0@apollo> A non-text attachment was scrubbed... Name: smime.p7m Type: application/x-pkcs7-mime Size: 4396 bytes Desc: not available Url : http://lists.nycbug.org/pipermail/talk/attachments/20040824/0b7a4db0/attachment.bin From tux Tue Aug 24 13:16:14 2004 From: tux (Kevin Reiter) Date: Tue, 24 Aug 2004 13:16:14 -0400 Subject: [nycbug-talk] Re: ProFTPd 1.2.9 on 4.10-RELEASE Message-ID: <001f01c489fe$0f6dd050$0600a8c0@apollo> ...don't know what happened with that one, so here it is again: Has anyone ever encountered an error when first running ProFTPd stating "...error opening scoreboard: no such file or directory." I've RTFM and manually created both /var/run/proftpd.scoreboard and /var/run/run/proftpd.scoreboard, chmod to proftpd and still no worky. I've even changed the scoreboard files to directories in the hopes that maybe that would work, but still no good. This is the first time I've ever had trouble with ProFTPd, so I'm kinda stumped. Any ideas? Thanks! -Kevin From sunny-ml Tue Aug 24 13:12:16 2004 From: sunny-ml (Sunny Dubey) Date: Tue, 24 Aug 2004 13:12:16 -0400 Subject: [nycbug-talk] Re: ProFTPd 1.2.9 on 4.10-RELEASE In-Reply-To: <001f01c489fe$0f6dd050$0600a8c0@apollo> References: <001f01c489fe$0f6dd050$0600a8c0@apollo> Message-ID: <200408241312.17568.sunny-ml@opencurve.org> On Tuesday 24 August 2004 13:16, Kevin Reiter wrote: [...] > Any ideas? strace it ! Nothing beats running it with strace and looking for any errors around when the error message was printed. Sunny Dubey From freebsd Tue Aug 24 12:45:25 2004 From: freebsd (freebsd) Date: Tue, 24 Aug 2004 12:45:25 -0400 Subject: [nycbug-talk] FreeBSD ISO's Message-ID: <200408241245.AA93126930@slikstik.com> ---------- Original Message ---------------------------------- From: george at galis.org Date: Tue, 24 Aug 2004 11:26:43 -0400 >On Tue, Aug 24, 2004 at 10:47:18AM -0400, freebsd wrote: >> >>I was thinking, I am getting "Write failures" not "read failures" >>so does that mean anything? I would think its more a hard drive >>problem. Another symptom is that when it is copying from the cd it >>slows down to like 3kbps from like 1700kbps, then it fails. This also >>only happens when I try to do a full install with all the options. If >>I do a minimal install its ok, but I do get that "signal 11" message, >>but then the machine boots ok and I can log in and get on the net and >>eveything. > >not sure about freeBSD, but you might can use ctrl-f2 (or 3,4,5,6...) >durring the install to see a logging console and determine exactly what >device the error is coming from. a remote guess: if "Write failures" >only happen when you do 'full install' that would suggest HD faliure >(when getting to that part of the drive), as would the slowdown if it is >resetting/retrying the disk when it errors. :-\ Try the 'badblocks -w -v >-v' program from some OS on a cdrom distro... > >// George > > >-- >George Georgalis, systems architect, administrator Linux BSD IXOYE >http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org >_______________________________________________ >talk mailing list >talk at lists.nycbug.org >http://lists.nycbug.org/mailman/listinfo/talk >% Be sure to check out our Jobs and NYCBUG-announce lists >% We meet the first Wednesday of the month > I just got email from rackmount.com and they said they tested the install of 4.1 and it was flawless. They said a signal 11 was most likely a bad piece of hardware and that they are shipping me a new unit with 4.1 installed and that I have 14 days to send back the first unit to avoid being charged for a second machine. So whoever said signal 11 was a hardware issue was right on (as I assumed they were). Rackmount.com has been a pleasure to deal with from initial sale all the way through this issue, I can't say enough about how fast their customer service responds. Also having this list to bounce these newbie questions off of has been a great help and I want to send a big thanks out for all the answers and tips I have gotten so far. THANKS ALL! I am going to try the tips above anyway so I can get a feel for the debug process on install, I had no idea that you could hit ctrl alt whatever to see these messages, and as I am sure they are documented I just don't have time to read the entire text to find these tricks and am not a real text book type of person, everything I know about computers has been learned from hacking around for 15 years and this type of list makes it alot easier to hack around. Jerry ________________________________________________________________ Sent via the WebMail system at slikstik.com From pete Tue Aug 24 14:36:47 2004 From: pete (Pete Wright) Date: Tue, 24 Aug 2004 13:36:47 -0500 Subject: [nycbug-talk] FreeBSD ISO's In-Reply-To: <200408241245.AA93126930@slikstik.com> References: <200408241245.AA93126930@slikstik.com> Message-ID: <412B8ABF.70409@nomadlogic.org> freebsd wrote: >I just got email from rackmount.com and they said they tested the install of 4.1 and it was flawless. They said a signal 11 was most likely a bad piece of hardware and that they are shipping me a new unit with 4.1 installed and that I have 14 days to send back the first unit to avoid being charged for a second machine. So whoever said signal 11 was a hardware issue was right on (as I assumed they were). > >Rackmount.com has been a pleasure to deal with from initial sale all the way through this issue, I can't say enough about how fast their customer service responds. > >Also having this list to bounce these newbie questions off of has been a great help and I want to send a big thanks out for all the answers and tips I have gotten so far. THANKS ALL! > > > hey no problem...i'm glad we could help you out! not to be anal but....the release of FreeBSD that you are refering to is 4.10 correct? Just so you know, the latest release from that branch is 4.11 FreeBSD 4.1 is a very old release and may confuse some people, especially if you are refering to 4.10. For example, those who run into similar problems in the future may search our archives and may miss this thread. It doesn't really matter, but i guess it's one of those 'netiquete things that helps everyone out in the long run. or maybe i'm just being crazy. -p -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From tux Tue Aug 24 13:55:04 2004 From: tux (Kevin Reiter) Date: Tue, 24 Aug 2004 13:55:04 -0400 Subject: [nycbug-talk] Re: ProFTPd 1.2.9 on 4.10-RELEASE References: <001f01c489fe$0f6dd050$0600a8c0@apollo> <200408241312.17568.sunny-ml@opencurve.org> Message-ID: <004101c48a03$7c2ff830$0600a8c0@apollo> > strace it ! > > Nothing beats running it with strace and looking for any errors around when > the error message was printed. Good suggestion, although strace and truss produced nothing valuable. I did find a blurb on Dan's site that mentions creating the file manually, and adding "ScoreboardFile=/var/run/proftpd.scoreboard" to /usr/local/etc/rc.d/proftpd.sh, but that didn't do the trick, either. This is starting to frustrate the hell outta me :P From george Tue Aug 24 13:56:12 2004 From: george (george at galis.org) Date: Tue, 24 Aug 2004 13:56:12 -0400 Subject: [nycbug-talk] FreeBSD ISO's In-Reply-To: <200408241245.AA93126930@slikstik.com> References: <200408241245.AA93126930@slikstik.com> Message-ID: <20040824175612.GE15963@trot.local> On Tue, Aug 24, 2004 at 12:45:25PM -0400, freebsd wrote: >I just got email from rackmount.com and they said they tested the >install of 4.1 and it was flawless. They said a signal 11 was most >likely a bad piece of hardware and that they are shipping me a new unit >with 4.1 installed and that I have 14 days to send back the first unit >to avoid being charged for a second machine. So whoever said signal 11 >was a hardware issue was right on (as I assumed they were). I'm always really happy to hear about good vendors. :-) glad they are addressing the problem too! // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From tux Tue Aug 24 14:33:21 2004 From: tux (Kevin Reiter) Date: Tue, 24 Aug 2004 14:33:21 -0400 Subject: [nycbug-talk] Re: ProFTPd 1.2.9 on 4.10-RELEASE References: <001f01c489fe$0f6dd050$0600a8c0@apollo> Message-ID: <005701c48a08$d582d830$0600a8c0@apollo> Creating the directory /var/run/proftpd seemed to do the trick after uninstalling it, reinstalling it, and undoing all the changes I originally did trying to get it to work. For anyone searching this archive trying to figure out how to get it working, I did: cd /usr/ports/ftp/proftpd make install clean ~ watch the text scroll down ~ cp /usr/local/etc/proftpd.conf /usr/local/etc/proftpd.conf.original edit /usr/local/etc/proftpd.conf mkdir /var/run/proftpd edit /usr/local/etc/rc/d/proftpd.sh to add: ScoreboardFile=/var/run/proftpd.scoreboard Then run the startup script: /usr/local/etc/rc.d/proftpd.sh start Bingo! -Kevin From freebsd Tue Aug 24 15:46:24 2004 From: freebsd (freebsd) Date: Tue, 24 Aug 2004 15:46:24 -0400 Subject: [nycbug-talk] FreeBSD ISO's Message-ID: <200408241546.AA51577166@slikstik.com> ---------- Original Message ---------------------------------- From: Pete Wright Date: Tue, 24 Aug 2004 13:36:47 -0500 >freebsd wrote: > >>I just got email from rackmount.com and they said they tested the install of 4.1 and it was flawless. They said a signal 11 was most likely a bad piece of hardware and that they are shipping me a new unit with 4.1 installed and that I have 14 days to send back the first unit to avoid being charged for a second machine. So whoever said signal 11 was a hardware issue was right on (as I assumed they were). >> >>Rackmount.com has been a pleasure to deal with from initial sale all the way through this issue, I can't say enough about how fast their customer service responds. >> >>Also having this list to bounce these newbie questions off of has been a great help and I want to send a big thanks out for all the answers and tips I have gotten so far. THANKS ALL! >> >> >> >hey no problem...i'm glad we could help you out! not to be anal >but....the release of FreeBSD that you are refering to is 4.10 correct? >Just so you know, the latest release from that branch is 4.11 FreeBSD >4.1 is a very old release and may confuse some people, especially if you >are refering to 4.10. For example, those who run into similar problems >in the future may search our archives and may miss this thread. It >doesn't really matter, but i guess it's one of those 'netiquete things >that helps everyone out in the long run. or maybe i'm just being crazy. > >-p > >-- >~~~oO00Oo~~~ >Pete Wright >pete at nomadlogic.org >www.nomadlogic.org/~pete > > Yeah 4.10, I just assume that 4.10 and 4.1 are the same thing, are they not? In decimals don't you always drop the trailing zero? The next release from 4.10 or 4.1 is 4.11 right? Are you thinking of 4.01? What do you mean when you refer to a branch? Jerry ________________________________________________________________ Sent via the WebMail system at slikstik.com From pete Tue Aug 24 17:06:15 2004 From: pete (Pete Wright) Date: Tue, 24 Aug 2004 16:06:15 -0500 Subject: [nycbug-talk] FreeBSD ISO's In-Reply-To: <200408241546.AA51577166@slikstik.com> References: <200408241546.AA51577166@slikstik.com> Message-ID: <412BADC7.4070201@nomadlogic.org> freebsd wrote: > > >Yeah 4.10, I just assume that 4.10 and 4.1 are the same thing, are they not? In decimals don't you always drop the trailing zero? The next release from 4.10 or 4.1 is 4.11 right? Are you thinking of 4.01? What do you mean when you refer to a branch? > >Jerry > > > > > Here is a good link that should explain the naming conventions with FreeBSD: http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/introduction.html#LATEST-VERSION Quickly, the naming convention is that the code base is version 4 and the revision number is 11, meaning that there have been 11 updates to the 4 code base. So there has been 4.1 4.2...4.9 4.10 4.11 This is similar to the linux kernel (2.4.0, 2.4.1...2.4.24 etc.). So the numbers after the "dot" are infact not decimals when refering to releases. So no I'm not thinking of 4.01 ;) -p -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From pete Tue Aug 24 17:08:24 2004 From: pete (Pete Wright) Date: Tue, 24 Aug 2004 16:08:24 -0500 Subject: [nycbug-talk] FreeBSD ISO's In-Reply-To: <412BADC7.4070201@nomadlogic.org> References: <200408241546.AA51577166@slikstik.com> <412BADC7.4070201@nomadlogic.org> Message-ID: <412BAE48.6050001@nomadlogic.org> Pete Wright wrote: > freebsd wrote: > >> >> >> Yeah 4.10, I just assume that 4.10 and 4.1 are the same thing, are >> they not? In decimals don't you always drop the trailing zero? The >> next release from 4.10 or 4.1 is 4.11 right? Are you thinking of >> 4.01? What do you mean when you refer to a branch? >> >> Jerry >> >> >> >> > Here is a good link that should explain the naming conventions with > FreeBSD: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/introduction.html#LATEST-VERSION > > > Quickly, the naming convention is that the code base is version 4 and > the revision number is 11, meaning that there have been 11 updates to > the 4 code base. So there has been 4.1 4.2...4.9 4.10 4.11 This is > similar to the linux kernel (2.4.0, 2.4.1...2.4.24 etc.). So the > numbers after the "dot" are infact not decimals when refering to > releases. > oop sorry...4.11 has not been released yet ;) That is actually slated to be the last 4.x release... -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From tux Tue Aug 24 16:39:11 2004 From: tux (Kevin Reiter) Date: Tue, 24 Aug 2004 16:39:11 -0400 Subject: [nycbug-talk] Gmail Message-ID: <001601c48a1a$699fa730$0600a8c0@apollo> I have six (6) invites left. If you want a Gmail account, please let me know ASAP, before they're all gone :) -Kevin From tux Tue Aug 24 16:46:57 2004 From: tux (Kevin Reiter) Date: Tue, 24 Aug 2004 16:46:57 -0400 Subject: [nycbug-talk] Gmail References: <001601c48a1a$699fa730$0600a8c0@apollo> Message-ID: <002401c48a1b$7f929740$0600a8c0@apollo> > I have six (6) invites left. Five (5) left ... From pete Tue Aug 24 17:49:54 2004 From: pete (Pete Wright) Date: Tue, 24 Aug 2004 16:49:54 -0500 Subject: [nycbug-talk] Gmail In-Reply-To: <002401c48a1b$7f929740$0600a8c0@apollo> References: <001601c48a1a$699fa730$0600a8c0@apollo> <002401c48a1b$7f929740$0600a8c0@apollo> Message-ID: <412BB802.4070001@nomadlogic.org> Kevin Reiter wrote: >>I have six (6) invites left. >> >> > >Five (5) left ... > > > hey just curious, do they still have that clause in the license stating that they can search and index your inbox for use by advertisters etc? from what i've heard it's a pretty great service aside from that. -p -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From tux Tue Aug 24 16:55:41 2004 From: tux (Kevin Reiter) Date: Tue, 24 Aug 2004 16:55:41 -0400 Subject: [nycbug-talk] Gmail References: <001601c48a1a$699fa730$0600a8c0@apollo> <002401c48a1b$7f929740$0600a8c0@apollo> Message-ID: <003601c48a1c$b79f3c00$0600a8c0@apollo> > > I have six (6) invites left. > > Five (5) left ... 4 ... From tux Tue Aug 24 16:58:37 2004 From: tux (Kevin Reiter) Date: Tue, 24 Aug 2004 16:58:37 -0400 Subject: [nycbug-talk] Gmail References: <001601c48a1a$699fa730$0600a8c0@apollo> <002401c48a1b$7f929740$0600a8c0@apollo> <412BB802.4070001@nomadlogic.org> Message-ID: <003c01c48a1d$20d08e40$0600a8c0@apollo> > hey just curious, do they still have that clause in the license stating > that they can search and index your inbox for use by advertisters etc? > from what i've heard it's a pretty great service aside from that. Here's the whole policy, copied directly from their Policy page: Gmail Program Policies Updated as of June 28, 2004 To uphold the quality and reputation of Google Gmail, your use of Gmail is subject to these program policies. If you are found to be in violation of our policies at any time, as determined by Google in its sole discretion, we may warn you or suspend or terminate your account. Please note that we may change our policies at any time, and pursuant to our Terms of Use, it is your responsibility to keep up-to-date with and adhere to the policies posted here. Prohibited Actions In addition to (and/or as some examples of) the violations described in Section 3 of the Terms of Use, users may not: * Generate or facilitate unsolicited commercial email ("spam"). Such activity includes, but is not limited to o sending email in violation of the CAN-SPAM Act or any other applicable anti-spam law o imitating or impersonating another person or his, her or its email address, or creating false accounts for the purpose of sending spam o data mining any web property (including Google) to find email addresses o sending unauthorized mail via open, third-party servers o sending emails to users who have requested to be removed from a mailing list o selling, exchanging or distributing to a third party the email addresses of any person without such person's knowing and continued consent to such disclosure o sending unsolicited emails to significant numbers of email addresses belonging to individuals and/or entities with whom you have no preexisting relationship * Send, upload, distribute or disseminate or offer to do the same with respect to any unlawful, defamatory, harassing, abusive, fraudulent, infringing, obscene, or otherwise objectionable content * Intentionally distribute viruses, worms, defects, Trojan horses, corrupted files, hoaxes, or any other items of a destructive or deceptive nature * Conduct or forward pyramid schemes and the like * Transmit content that may be harmful to minors * Impersonate another person (via the use of an email address or otherwise) or otherwise misrepresent yourself or the source of any email * Illegally transmit another's intellectual property or other proprietary information without such owner's or licensor's permission * Use Gmail to violate the legal rights (such as rights of privacy and publicity) of others * Promote or encourage illegal activity * Interfere with other Gmail users' enjoyment of the Service * Create multiple user accounts in connection with any violation of the Agreement or create user accounts by automated means or under false or fraudulent pretenses * Sell, trade, resell or otherwise exploit for any unauthorized commercial purpose or transfer any Gmail account * Modify, adapt, translate, or reverse engineer any portion of the Gmail Service * Remove any copyright, trademark or other proprietary rights notices contained in or on the Gmail Service * Reformat or frame any portion of the web pages that are part of the Gmail Service * Use the Gmail Service in connection with illegal peer-to-peer file sharing Security You must promptly notify Google of any breach of security related to the Services, including but not limited to unauthorized use of your password or account. To help ensure the security of your password or account, please sign out from your account at the end of each session. Account Inactivity Google will terminate your account in accordance with Section 9 of the Terms of Use if you fail to login to your account for a period of nine months. From pete Tue Aug 24 17:54:02 2004 From: pete (Pete Wright) Date: Tue, 24 Aug 2004 16:54:02 -0500 Subject: [nycbug-talk] Gmail In-Reply-To: <003c01c48a1d$20d08e40$0600a8c0@apollo> References: <001601c48a1a$699fa730$0600a8c0@apollo> <002401c48a1b$7f929740$0600a8c0@apollo> <412BB802.4070001@nomadlogic.org> <003c01c48a1d$20d08e40$0600a8c0@apollo> Message-ID: <412BB8FA.70003@nomadlogic.org> Kevin Reiter wrote: >>hey just curious, do they still have that clause in the license stating >>that they can search and index your inbox for use by advertisters etc? >>from what i've heard it's a pretty great service aside from that. >> >> > >Here's the whole policy, copied directly from their Policy page: > > > i guess this is what sketched me out... http://gmail.google.com/gmail/help/privacy.html -p -- ~~~oO00Oo~~~ Pete Wright pete at nomadlogic.org www.nomadlogic.org/~pete From tux Tue Aug 24 17:01:04 2004 From: tux (Kevin Reiter) Date: Tue, 24 Aug 2004 17:01:04 -0400 Subject: [nycbug-talk] Gmail References: <001601c48a1a$699fa730$0600a8c0@apollo> <002401c48a1b$7f929740$0600a8c0@apollo> <412BB802.4070001@nomadlogic.org> <003c01c48a1d$20d08e40$0600a8c0@apollo> Message-ID: <004401c48a1d$782bfd50$0600a8c0@apollo> > hey just curious, do they still have that clause in the license stating > that they can search and index your inbox for use by advertisters etc? > from what i've heard it's a pretty great service aside from that. Actually, that was the wrong info. Here's a link to their URL which describes their terms of use: https://gmail.google.com/gmail/help/terms_of_use.html From tux Tue Aug 24 17:06:16 2004 From: tux (Kevin Reiter) Date: Tue, 24 Aug 2004 17:06:16 -0400 Subject: [nycbug-talk] Gmail References: <001601c48a1a$699fa730$0600a8c0@apollo> <002401c48a1b$7f929740$0600a8c0@apollo> <003601c48a1c$b79f3c00$0600a8c0@apollo> Message-ID: <005401c48a1e$31db63d0$0600a8c0@apollo> > > > I have six (6) invites left. > > > > Five (5) left ... > > 4 ... only 1 (one) left. Whoever sends me a picture of their sister wearing only a bridle and riding a unicorn will get it. :P Seriously though, only 1 (one) left. I imagine I'll get more invites in another week or so. I only got 2 invites initially last week, and since I signed up for a few mailing lists that get a lot of traffic, I might get a bunch more in the coming weeks, so don't get miffed if I can't get you one, 'aight? -Kevin From bob Tue Aug 24 20:51:27 2004 From: bob (Bob Ippolito) Date: Tue, 24 Aug 2004 20:51:27 -0400 Subject: [nycbug-talk] Gmail In-Reply-To: <005401c48a1e$31db63d0$0600a8c0@apollo> References: <001601c48a1a$699fa730$0600a8c0@apollo> <002401c48a1b$7f929740$0600a8c0@apollo> <003601c48a1c$b79f3c00$0600a8c0@apollo> <005401c48a1e$31db63d0$0600a8c0@apollo> Message-ID: On Aug 24, 2004, at 5:06 PM, Kevin Reiter wrote: >>>> I have six (6) invites left. >>> >>> Five (5) left ... >> >> 4 ... > > only 1 (one) left. Whoever sends me a picture of their sister wearing > only > a bridle and riding a unicorn will get it. > > :P > > Seriously though, only 1 (one) left. I imagine I'll get more invites > in > another week or so. I only got 2 invites initially last week, and > since I > signed up for a few mailing lists that get a lot of traffic, I might > get a > bunch more in the coming weeks, so don't get miffed if I can't get you > one, > 'aight? I have 7 invites if anyone wants any and Kevin runs out.. I forward an account that gets 99.95% spam to gmail to see how much they can filter; it's usually pretty good. I don't use it for anything else, but I guess I have a bunch of invites due to the sheer volume of mail that goes through that address. -bob From klimenta Tue Aug 24 21:04:51 2004 From: klimenta (Kliment Andreev) Date: Tue, 24 Aug 2004 21:04:51 -0400 Subject: [nycbug-talk] OpenBSD - Serial Port Configuration Message-ID: <412BE5B3.1040101@futurebit.com> Hi, I have an old laptop with OpenBSD installed. Recently, I hooked an external modem USR56K but I am having a problem to configure it. Here is my output: thinkpad# dmesg | grep ast0 ast0 at isa0 port 0x1a0/32 irq 5 pccom3 at ast0 slave 0: ns8250, no fifo pccom4 at ast0 slave 1: ns16550a, 16 byte fifo com at ast0 slave 2 not configured com at ast0 slave 3 not configured I assume that pccom4 is the internal modem. There is no way to disable it thru BIOS. It seems that my external one is not recognized. If I do # cu -l /dev/cua0X (x=01,2,) I got Device not configured, link down message. But if I # cu -l /dev/cua03 then I got Connected message. There is no echo, and no response if I type ATDT2012012212 so I assume that this is the internal WinModem. My question is what's the difference between "com" and "pccom" and how can I configure those slave2 and 3 that are not configured. Thanx... From mikel.king Tue Aug 24 21:09:22 2004 From: mikel.king (Mikel King) Date: Tue, 24 Aug 2004 21:09:22 -0400 Subject: [nycbug-talk] svista Message-ID: <412BE6C2.9020109@ocsny.com> Ran across this is looks promising...has anyone perchance had any experience with it? New versions of SVISTA released, including FreeBSD Host! / 23 August, 2004 by BobStJohn / // This week Serenity Systems International (SSI) is releasing updated versions of the beta product for all host platforms, including FreeBSD. This is the first version of the FreeBSD hosted application to be publicly available. SSI has amended the terms of the beta program, entitling all beta testers to receive the SVISTA host platform version of their choice as the Generally Available GA) product is released at no additional cost to the user. (SRP $99US). Users wishing to acquire the multi-host version of SVISTA will have an opportunity to purchase the product for *only $100US* (SRP $199US). More info can be found at http://www.serenityvirtual.com/beta/ Release of the product is scheduled for early 4Q04. From alex Tue Aug 24 20:23:49 2004 From: alex (alex at pilosoft.com) Date: Tue, 24 Aug 2004 20:23:49 -0400 (EDT) Subject: [nycbug-talk] svista In-Reply-To: <412BE6C2.9020109@ocsny.com> Message-ID: > Ran across this is looks promising...has anyone perchance had any > experience with it? I haven't, but its written by the russians (www.parallels.ru), so it must be good! Alex Pilosov | DSL, Colocation, Hosting Services President | alex at pilosoft.com (800) 710-7031 Pilosoft, Inc. | http://www.pilosoft.com From lists Tue Aug 24 21:37:52 2004 From: lists (michael) Date: Tue, 24 Aug 2004 21:37:52 -0400 Subject: [nycbug-talk] postfix Message-ID: <412BED70.4080306@genoverly.net> According to O'Reilly OnLAMP - http://www.onlamp.com/pub/a/bsd/2003/08/21/postfix.html " BSD users should keep in mind that 'make world' will reinstall Sendmail binaries, over-writing the Postfix installation. Remember to keep a current copy of your Postfix binaries and config files in the event you plan to 'make world'." Has anyone witnessed this? If so, please tell me it is preventable. Michael From spork Tue Aug 24 21:49:01 2004 From: spork (Charles Sprickman) Date: Tue, 24 Aug 2004 21:49:01 -0400 (EDT) Subject: [nycbug-talk] postfix In-Reply-To: <412BED70.4080306@genoverly.net> References: <412BED70.4080306@genoverly.net> Message-ID: On Tue, 24 Aug 2004, michael wrote: > " BSD users should keep in mind that 'make world' will reinstall Sendmail > binaries, over-writing the Postfix installation. Remember to keep a current > copy of your Postfix binaries and config files in the event you plan to 'make > world'." > Has anyone witnessed this? If so, please tell me it is preventable. Sure, just make sure you have a line like this in /etc/make.conf: NO_SENDMAIL= true # do not build sendmail and related programs Charles > Michael > > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month > From mlists Tue Aug 24 22:01:53 2004 From: mlists (mlists at bizintegrators.com) Date: Tue, 24 Aug 2004 22:01:53 -0400 Subject: [nycbug-talk] OpenBSD - Serial Port Configuration In-Reply-To: <412BE5B3.1040101@futurebit.com> References: <412BE5B3.1040101@futurebit.com> Message-ID: <20040825020153.GV10310@bizintegrators.com> On Tue, Aug 24, 2004 at 09:04:51PM -0400, Kliment Andreev wrote: > Hi, > > I have an old laptop with OpenBSD installed. Recently, I hooked an > external modem USR56K but I am having a problem to configure it. > Here is my output: > > thinkpad# dmesg | grep ast0 > ast0 at isa0 port 0x1a0/32 irq 5 > pccom3 at ast0 slave 0: ns8250, no fifo > pccom4 at ast0 slave 1: ns16550a, 16 byte fifo > com at ast0 slave 2 not configured > com at ast0 slave 3 not configured Can you provide entire dmesg? > > I assume that pccom4 is the internal modem. There is no way to disable > it thru BIOS. It seems that my external one is not recognized. > If I do # cu -l /dev/cua0X (x=01,2,) I got Device not configured, link > down message. > But if I # cu -l /dev/cua03 then I got Connected message. There is no > echo, and no response if I type ATDT2012012212 so I assume that this is > the internal WinModem. My question is what's the difference between > "com" and "pccom" and how can I configure those slave2 and 3 that are > not configured. On some architectures it is pccom, on some com, otherwise they are the same thing. You are actually not suppose to see both..although ast is a multiplexor, so who knows.. From lists Tue Aug 24 22:12:44 2004 From: lists (michael) Date: Tue, 24 Aug 2004 22:12:44 -0400 Subject: [nycbug-talk] postfix In-Reply-To: References: <412BED70.4080306@genoverly.net> Message-ID: <412BF59C.4010009@genoverly.net> on 20040824 9:49 PM Charles Sprickman had written... > Sure, just make sure you have a line like this in /etc/make.conf: > > NO_SENDMAIL= true # do not build sendmail and related programs > > Charles > Looks like I should read up more on /etc/make.conf. Thanks for the quick reply, Charles. Michael From klimenta Tue Aug 24 22:30:06 2004 From: klimenta (Kliment Andreev) Date: Tue, 24 Aug 2004 22:30:06 -0400 Subject: [nycbug-talk] OpenBSD - Serial Port Configuration In-Reply-To: <20040825020153.GV10310@bizintegrators.com> References: <412BE5B3.1040101@futurebit.com> <20040825020153.GV10310@bizintegrators.com> Message-ID: <412BF9AE.8090806@futurebit.com> mlists at bizintegrators.com wrote: > >Can you provide entire dmesg? > > > Attached. I've found at IBM support site, that by default these laptops come with IR enabled using COM1. There is no way to disable the IR from the BIOS, so I'll install Win3.11, load drivers for IR, disable IR and then enable COM1 as external serial port and again reinstall OpenBSD. I hope that when I disable the IR, after reboot, it will stay disabled. If not, I'll put the laptop where I've found it. In a garbage. 760ED,64MB RAM,P1-133MHz. http://www-1.ibm.com/support/docview.wss?rs=0&q1=disable+infrared+760ed&uid=psg1DSHY-3P5QW4&loc=en_US&cs=utf-8&cc=us&lang=en Thanks.... -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: dmesg.txt Url: http://lists.nycbug.org/pipermail/talk/attachments/20040824/0288b8ed/attachment.txt From mspitze1 Wed Aug 25 00:19:24 2004 From: mspitze1 (Marc Spitzer) Date: Wed, 25 Aug 2004 00:19:24 -0400 Subject: [nycbug-talk] plug for www.freshports.org Message-ID: <20040825001924.6d863089@bogomips.optonline.net> Dan, On page 221 of "The TAO of network security monitoring" by Richard Bejtlich fresh ports is mentioned by name and so are you at the author of said website. marc From george Thu Aug 26 18:00:37 2004 From: george (George Georgalis) Date: Thu, 26 Aug 2004 18:00:37 -0400 Subject: [nycbug-talk] null modem vendor... Message-ID: <20040826220037.GA9132@trot.local> I've not done much with serial connections (other than scripting persistent 56k modem dialog). Now I'd like to try accessing BSD via serial cable, I understand I need a null modem cable but my favorite vendor shentech.com doesn't have them, only the big/little male/female type. what's a good vendor for these things? mail is fine but I don't mind walking in the city to get it... // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From alex Thu Aug 26 17:14:48 2004 From: alex (alex at pilosoft.com) Date: Thu, 26 Aug 2004 17:14:48 -0400 (EDT) Subject: [nycbug-talk] null modem vendor... In-Reply-To: <20040826220037.GA9132@trot.local> Message-ID: On Thu, 26 Aug 2004, George Georgalis wrote: > I've not done much with serial connections (other than scripting > persistent 56k modem dialog). > > Now I'd like to try accessing BSD via serial cable, I understand I need > a null modem cable but my favorite vendor shentech.com doesn't have > them, only the big/little male/female type. You can take one of those and use a straight cable. > what's a good vendor for these things? mail is fine but I don't mind > walking in the city to get it... CompUSA has them. -alex From george Thu Aug 26 21:45:15 2004 From: george (George Georgalis) Date: Thu, 26 Aug 2004 21:45:15 -0400 Subject: [nycbug-talk] null modem vendor... In-Reply-To: References: <20040826220037.GA9132@trot.local> Message-ID: <20040827014515.GE14268@trot.local> On Thu, Aug 26, 2004 at 05:14:48PM -0400, alex at pilosoft.com wrote: >On Thu, 26 Aug 2004, George Georgalis wrote: > >> I've not done much with serial connections (other than scripting >> persistent 56k modem dialog). >> >> Now I'd like to try accessing BSD via serial cable, I understand I need >> a null modem cable but my favorite vendor shentech.com doesn't have >> them, only the big/little male/female type. >You can take one of those and use a straight cable. Huh? first I thought "null-modem" meant the same thing as cat-5 crossover. ...talk to talk and listen to listen no worky... (There's the jack size difference too... parallel size to regular serial.) >> what's a good vendor for these things? mail is fine but I don't mind >> walking in the city to get it... >CompUSA has them. I checked a few office supply shops, they had big little, but no little little (sorry guys I don't know the name of those jacks) so I'm starting to wonder how specialized this thing is. // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From alex Thu Aug 26 20:58:25 2004 From: alex (alex at pilosoft.com) Date: Thu, 26 Aug 2004 20:58:25 -0400 (EDT) Subject: [nycbug-talk] null modem vendor... In-Reply-To: <20040827014515.GE14268@trot.local> Message-ID: On Thu, 26 Aug 2004, George Georgalis wrote: > >> Now I'd like to try accessing BSD via serial cable, I understand I > >> need a null modem cable but my favorite vendor shentech.com doesn't > >> have them, only the big/little male/female type. > >You can take one of those and use a straight cable. > > Huh? first I thought "null-modem" meant the same thing as cat-5 > crossover. ...talk to talk and listen to listen no worky... Nullmodem can be built into a cable. Or it can be built into adapter. Nullmodem cable = nullmodem adapter + straight cable > (There's the jack size difference too... parallel size to regular > serial.) There's DB-9 to DB-25 adapter to get around it. > > >> what's a good vendor for these things? mail is fine but I don't mind > >> walking in the city to get it... > >CompUSA has them. > > I checked a few office supply shops, they had big little, but no little > little (sorry guys I don't know the name of those jacks) so I'm starting > to wonder how specialized this thing is. DB-25 (big) to DB-9 (little) is not a null modem, it is just an adapter. You want null modem, DB-9 to DB-9. It is commonplace enough that even staples/compusa has it. -alex From george Thu Aug 26 21:49:51 2004 From: george (George Georgalis) Date: Thu, 26 Aug 2004 21:49:51 -0400 Subject: [nycbug-talk] cat 5e or cat 6 Message-ID: <20040827014951.GF14268@trot.local> I've seen a bunch of tech specs for cat-5e and cat-6 but I haven't seen an end of the day summary. My guess is cat-6 is required for 10Gb ethernet, but cat-5e is fine for 1Gb ethernet? Is there more to it than that? Also what is the max recommended lengths for 1Gb ethernet? 10/100? (yes we have fluorescent lights...) // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From alex Thu Aug 26 21:03:44 2004 From: alex (alex at pilosoft.com) Date: Thu, 26 Aug 2004 21:03:44 -0400 (EDT) Subject: [nycbug-talk] cat 5e or cat 6 In-Reply-To: <20040827014951.GF14268@trot.local> Message-ID: On Thu, 26 Aug 2004, George Georgalis wrote: > I've seen a bunch of tech specs for cat-5e and cat-6 but I haven't seen > an end of the day summary. > > My guess is cat-6 is required for 10Gb ethernet, but cat-5e is fine for > 1Gb ethernet? Is there more to it than that? Common misconceptions. Cat5 is enough for 1000baseT. There is no cat6 as of yet. You don't need cat5e for 1000baseT. 10GE does not run over twisted pair as of yet. Bottom line: At the moment, cat5 is enough for anything that is currently available. > > Also what is the max recommended lengths for 1Gb ethernet? 10/100? (yes > we have fluorescent lights...) 330ft in either case. -alex From george Thu Aug 26 22:47:31 2004 From: george (George Georgalis) Date: Thu, 26 Aug 2004 22:47:31 -0400 Subject: [nycbug-talk] cat 5e or cat 6 In-Reply-To: References: <20040827014951.GF14268@trot.local> Message-ID: <20040827024731.GG14268@trot.local> On Thu, Aug 26, 2004 at 09:03:44PM -0400, alex at pilosoft.com wrote: >On Thu, 26 Aug 2004, George Georgalis wrote: > >> I've seen a bunch of tech specs for cat-5e and cat-6 but I haven't seen >> an end of the day summary. >> >> My guess is cat-6 is required for 10Gb ethernet, but cat-5e is fine for >> 1Gb ethernet? Is there more to it than that? >Common misconceptions. Cat5 is enough for 1000baseT. There is no cat6 as >of yet. You don't need cat5e for 1000baseT. 10GE does not run over twisted >pair as of yet. > >Bottom line: At the moment, cat5 is enough for anything that is currently >available. Heh, I thought I hadn't seen cat-6 in a store... ;) // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From bschonhorst Thu Aug 26 22:51:18 2004 From: bschonhorst (Brad Schonhorst) Date: Thu, 26 Aug 2004 22:51:18 -0400 Subject: [nycbug-talk] cat 5e or cat 6 In-Reply-To: References: Message-ID: On Aug 26, 2004, at 9:03 PM, alex at pilosoft.com wrote: > On Thu, 26 Aug 2004, George Georgalis wrote: > >> I've seen a bunch of tech specs for cat-5e and cat-6 but I haven't >> seen >> an end of the day summary. >> >> My guess is cat-6 is required for 10Gb ethernet, but cat-5e is fine >> for >> 1Gb ethernet? Is there more to it than that? > Common misconceptions. Cat5 is enough for 1000baseT. There is no cat6 > as > of yet. You don't need cat5e for 1000baseT. 10GE does not run over > twisted > pair as of yet. > Are you sure? I swear I have a box labeled cat 6 in my closet. From tux Thu Aug 26 23:21:04 2004 From: tux (Kevin Reiter) Date: Thu, 26 Aug 2004 23:21:04 -0400 Subject: [nycbug-talk] cat 5e or cat 6 References: Message-ID: <000901c48be4$f540de50$6400a8c0@olympus> : Are you sure? I swear I have a box labeled cat 6 in my closet. Check out Home Depot. CAT6 in either 500' or 1k'. Usually right next to the old CAT5e stuff us old timers used to use :) -Kevin From dave-dated-1094221711.986982 Fri Aug 27 10:28:51 2004 From: dave-dated-1094221711.986982 (Dave Steinberg) Date: Fri, 27 Aug 2004 10:28:51 -0400 Subject: [nycbug-talk] null modem vendor... In-Reply-To: References: Message-ID: <6A80D37A-F835-11D8-9845-0030656E7E7A@redterror.net> > DB-25 (big) to DB-9 (little) is not a null modem, it is just an > adapter. > You want null modem, DB-9 to DB-9. It is commonplace enough that even > staples/compusa has it. On this topic, I was wondering if anyone knew where to get a set of RJ45-DB9 adapters. Most that I've seen are designed to work with rollover (flat) cables, but it makes a lot more sense to me to use a standard cat5 cable and do the magic stuff in the adapter. Anyone? :-) Regards, -- Dave Steinberg http://www.geekisp.com/ From alex Fri Aug 27 09:42:05 2004 From: alex (alex at pilosoft.com) Date: Fri, 27 Aug 2004 09:42:05 -0400 (EDT) Subject: [nycbug-talk] null modem vendor... In-Reply-To: <6A80D37A-F835-11D8-9845-0030656E7E7A@redterror.net> Message-ID: On Fri, 27 Aug 2004, Dave Steinberg wrote: > > DB-25 (big) to DB-9 (little) is not a null modem, it is just an > > adapter. You want null modem, DB-9 to DB-9. It is commonplace enough > > that even staples/compusa has it. > > On this topic, I was wondering if anyone knew where to get a set of > RJ45-DB9 adapters. Most that I've seen are designed to work with > rollover (flat) cables, but it makes a lot more sense to me to use a > standard cat5 cable and do the magic stuff in the adapter. Anyone? > :-) ebay is your friend for "db-9 modular adapters". I think I bought lot of 50 for 25$ or so, last time. -alex From dave-dated-1094232490.65cc91 Fri Aug 27 13:28:31 2004 From: dave-dated-1094232490.65cc91 (Dave Steinberg) Date: Fri, 27 Aug 2004 13:28:31 -0400 Subject: [nycbug-talk] null modem vendor... In-Reply-To: References: Message-ID: <84163CCC-F84E-11D8-9845-0030656E7E7A@redterror.net> >> On this topic, I was wondering if anyone knew where to get a set of >> RJ45-DB9 adapters. Most that I've seen are designed to work with >> rollover (flat) cables, but it makes a lot more sense to me to use a >> standard cat5 cable and do the magic stuff in the adapter. Anyone? >> :-) > ebay is your friend for "db-9 modular adapters". I think I bought lot > of > 50 for 25$ or so, last time. I'm always scared that I'll get the wrong kind, since they seem really sensitive to serial layouts and cable types. I've never actually known anyone who can buy them with confidence, except from an approved vendor. Plus I don't want to sit there rewiring those tiny little things for hours if I do get it wrong. If there is an elegant way to do such a thing, I will buy several beers for the person who shows me! :-) Regards, -- Dave Steinberg http://www.geekisp.com/ From alex Fri Aug 27 12:40:46 2004 From: alex (alex at pilosoft.com) Date: Fri, 27 Aug 2004 12:40:46 -0400 (EDT) Subject: [nycbug-talk] null modem vendor... In-Reply-To: <84163CCC-F84E-11D8-9845-0030656E7E7A@redterror.net> Message-ID: On Fri, 27 Aug 2004, Dave Steinberg wrote: > I'm always scared that I'll get the wrong kind, since they seem really > sensitive to serial layouts and cable types. I've never actually known > anyone who can buy them with confidence, except from an approved vendor. There isn't a standard. That's why modular are great, configure to whatever vendor you have. > Plus I don't want to sit there rewiring those tiny little things for > hours if I do get it wrong. If there is an elegant way to do such a > thing, I will buy several beers for the person who shows me! :-) If you have large quantity, doing it manually sucks indeed. But on other hand, its much easier than crimping cat5 in correct colour order ;) -alex From spork Fri Aug 27 13:37:10 2004 From: spork (Charles Sprickman) Date: Fri, 27 Aug 2004 13:37:10 -0400 (EDT) Subject: [nycbug-talk] null modem vendor... In-Reply-To: <6A80D37A-F835-11D8-9845-0030656E7E7A@redterror.net> References: <6A80D37A-F835-11D8-9845-0030656E7E7A@redterror.net> Message-ID: On Fri, 27 Aug 2004, Dave Steinberg wrote: > On this topic, I was wondering if anyone knew where to get a set of RJ45-DB9 > adapters. Most that I've seen are designed to work with rollover (flat) > cables, but it makes a lot more sense to me to use a standard cat5 cable and > do the magic stuff in the adapter. Anyone? :-) You can make whatever you need quite cheaply with this stuff: http://www.national-tech.com/catalog/modularadaptors.htm Great source if you're building a console server. :) Charles > Regards, > -- > Dave Steinberg > http://www.geekisp.com/ > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month > From dave-dated-1094233803.ddb74f Fri Aug 27 13:50:24 2004 From: dave-dated-1094233803.ddb74f (Dave Steinberg) Date: Fri, 27 Aug 2004 13:50:24 -0400 Subject: [nycbug-talk] null modem vendor... In-Reply-To: References: <6A80D37A-F835-11D8-9845-0030656E7E7A@redterror.net> Message-ID: <92F6BEDA-F851-11D8-9845-0030656E7E7A@redterror.net> > You can make whatever you need quite cheaply with this stuff: > > http://www.national-tech.com/catalog/modularadaptors.htm > > Great source if you're building a console server. :) Cheap, sure... but its so hard! Assuming I've done my homework and I know the pinouts on both sides, how do I map the cable colors to pin locations? I certainly can't see inside that little hood that encloses the rj-45 adapter. :-/ Any way I might be able to build a cable tester for this sort of thing? If the tester was $200, I'd still think it a bargain in the long run. Thanks for the resources so far! -- Dave Steinberg http://www.geekisp.com/ From alex Fri Aug 27 13:04:17 2004 From: alex (alex at pilosoft.com) Date: Fri, 27 Aug 2004 13:04:17 -0400 (EDT) Subject: [nycbug-talk] null modem vendor... In-Reply-To: <92F6BEDA-F851-11D8-9845-0030656E7E7A@redterror.net> Message-ID: On Fri, 27 Aug 2004, Dave Steinberg wrote: > > You can make whatever you need quite cheaply with this stuff: > > > > http://www.national-tech.com/catalog/modularadaptors.htm > > > > Great source if you're building a console server. :) > > Cheap, sure... but its so hard! Assuming I've done my homework and I > know the pinouts on both sides, how do I map the cable colors to pin > locations? I certainly can't see inside that little hood that encloses > the rj-45 adapter. :-/ Just do it once to determine color-rj45 pin mapping. Or sometimes there's a piece of paper that lists it. > > Any way I might be able to build a cable tester for this sort of thing? > If the tester was $200, I'd still think it a bargain in the long run. > > Thanks for the resources so far! > From spork Fri Aug 27 14:05:19 2004 From: spork (Charles Sprickman) Date: Fri, 27 Aug 2004 14:05:19 -0400 (EDT) Subject: [nycbug-talk] null modem vendor... In-Reply-To: <92F6BEDA-F851-11D8-9845-0030656E7E7A@redterror.net> References: <6A80D37A-F835-11D8-9845-0030656E7E7A@redterror.net> <92F6BEDA-F851-11D8-9845-0030656E7E7A@redterror.net> Message-ID: On Fri, 27 Aug 2004, Dave Steinberg wrote: >> You can make whatever you need quite cheaply with this stuff: >> >> http://www.national-tech.com/catalog/modularadaptors.htm >> >> Great source if you're building a console server. :) > > Cheap, sure... but its so hard! Assuming I've done my homework and I know > the pinouts on both sides, how do I map the cable colors to pin locations? I > certainly can't see inside that little hood that encloses the rj-45 adapter. > :-/ Sure you can! The DB9 end comes out and you can look down into the hood and see what's what. Write it down once and you're all set. Once you have your pinouts set, these can be put together very quickly - there's no soldering, just jam the pins into the db9 end and snap it back together. The DB9 end does have numbers that correspond to the pins... Charles > Any way I might be able to build a cable tester for this sort of thing? If > the tester was $200, I'd still think it a bargain in the long run. > > Thanks for the resources so far! > -- > Dave Steinberg > http://www.geekisp.com/ > _______________________________________________ > talk mailing list > talk at lists.nycbug.org > http://lists.nycbug.org/mailman/listinfo/talk > % Be sure to check out our Jobs and NYCBUG-announce lists > % We meet the first Wednesday of the month > From dave-dated-1094235031.b6b575 Fri Aug 27 14:10:51 2004 From: dave-dated-1094235031.b6b575 (Dave Steinberg) Date: Fri, 27 Aug 2004 14:10:51 -0400 Subject: [nycbug-talk] null modem vendor... In-Reply-To: References: <6A80D37A-F835-11D8-9845-0030656E7E7A@redterror.net> <92F6BEDA-F851-11D8-9845-0030656E7E7A@redterror.net> Message-ID: <6E0EF908-F854-11D8-9845-0030656E7E7A@redterror.net> > Sure you can! The DB9 end comes out and you can look down into the > hood and see what's what. Write it down once and you're all set. > Once you have your pinouts set, these can be put together very quickly > - there's no soldering, just jam the pins into the db9 end and snap it > back together. The DB9 end does have numbers that correspond to the > pins... Ok, ok - you and Alex have convinced me. I'll get a couple of these and invest some time. :-) -- Dave From dave-dated-1094242613.d47143 Fri Aug 27 16:17:13 2004 From: dave-dated-1094242613.d47143 (Dave Steinberg) Date: Fri, 27 Aug 2004 16:17:13 -0400 Subject: [nycbug-talk] OT: Chuck Yerkes has died Message-ID: <1535B568-F866-11D8-9845-0030656E7E7A@redterror.net> For any of you who read the various other BSD and Soekris lists, you may have come across a gem of an individual, Chuck Yerkes, who has passed away: http://www.contracostatimes.com/mld/cctimes/news/9511974.htm http://marc.theaimsgroup.com/?l=openbsd-misc&m=109362605529952&w=2 The latter is forwarded from the soekris tech lists, it is Eric Allman's confirmation of the news. -- Dave Steinberg http://www.geekisp.com/ From trish Fri Aug 27 23:50:19 2004 From: trish (Trish Lynch) Date: Fri, 27 Aug 2004 23:50:19 -0400 (EDT) Subject: [nycbug-talk] OT: Chuck Yerkes has died In-Reply-To: <1535B568-F866-11D8-9845-0030656E7E7A@redterror.net> References: <1535B568-F866-11D8-9845-0030656E7E7A@redterror.net> Message-ID: <20040827234643.O14819@ultra.bsdunix.net> On Fri, 27 Aug 2004, Dave Steinberg wrote: > For any of you who read the various other BSD and Soekris lists, you > may have come across a gem of an individual, Chuck Yerkes, who has > passed away: > I do not find this off topic at all as Chuck was a valuable member of the BSD, USENIX/SAGE, and other computing communties. He will be missed. -Trish -- Trish Lynch trish at bsdunix.net Ecartis Core Team trish at listmistress.org EFNet IRC Operator/SysAdmin @ irc.dkom.at AilleCat at EFNet Key fingerprint = 781D 2B47 AA4B FC88 B919 0CD6 26B2 1D62 6FC1 FF16 From kit Sat Aug 28 00:05:24 2004 From: kit (Kit Halsted) Date: Sat, 28 Aug 2004 00:05:24 -0400 Subject: [nycbug-talk] OT: Chuck Yerkes has died In-Reply-To: <1535B568-F866-11D8-9845-0030656E7E7A@redterror.net> References: <1535B568-F866-11D8-9845-0030656E7E7A@redterror.net> Message-ID: R.I.P., Chuck! Wow, that hit me hard, as someone who had a lot of respect for Chuck and as a motorcyclist. Sucks. -Kit At 4:17 PM -0400 8/27/04, Dave Steinberg wrote: >For any of you who read the various other BSD and Soekris lists, you >may have come across a gem of an individual, Chuck Yerkes, who has >passed away: > >http://www.contracostatimes.com/mld/cctimes/news/9511974.htm > >http://marc.theaimsgroup.com/?l=openbsd-misc&m=109362605529952&w=2 > >The latter is forwarded from the soekris tech lists, it is Eric >Allman's confirmation of the news. -- "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin "...qui desiderat pacem, praeparet bellum" (...if you would have peace, be prepared for war) -Flavius Vegetius Renatus From joshmccormack Sat Aug 28 15:41:27 2004 From: joshmccormack (Josh McCormack) Date: Sat, 28 Aug 2004 15:41:27 -0400 Subject: [nycbug-talk] OpenBSD 3.5 on Thinkpad 360x - can't revive after powersave sleep Message-ID: <4130DFE7.5030102@travelersdiary.com> When running fvwm on OpenBSD 3.5 on a Thinkpad 360x, if the computer goes into powersave sleep mode, it cannot be revived. When not in X it comes back. Can't do anything in the BIOS to help. Any ideas? Josh From george Sat Aug 28 17:13:21 2004 From: george (George Georgalis) Date: Sat, 28 Aug 2004 17:13:21 -0400 Subject: [nycbug-talk] using tcsh Message-ID: <20040828211321.GA9773@trot.local> /* Regards to the friends and family of Chuck Yerkes, RIP. */ I've been over the tcsh man and other sources numerous times but have been unable to save and restore tcsh command line history through exit and next login. 'set savehist' in ~/.tcshrc is all I'd expect be required, but I've been doing various things with 'histfile' too; the functionality I'm looking for is 'savehist 1000 merge' -- how do I know when to use 'set' vs 'setenv'? // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From mspitze1 Sat Aug 28 19:01:28 2004 From: mspitze1 (Marc Spitzer) Date: Sat, 28 Aug 2004 19:01:28 -0400 Subject: [nycbug-talk] using tcsh In-Reply-To: <20040828211321.GA9773@trot.local> References: <20040828211321.GA9773@trot.local> Message-ID: <20040828190128.31df95e8@bogomips.optonline.net> On Sat, 28 Aug 2004 17:13:21 -0400 George Georgalis wrote: > /* Regards to the friends and family of Chuck Yerkes, RIP. */ > > I've been over the tcsh man and other sources numerous times but have > been unable to save and restore tcsh command line history through exit > and next login. > > 'set savehist' in ~/.tcshrc is all I'd expect be required, but I've > been doing various things with 'histfile' too; the functionality I'm > looking for is 'savehist 1000 merge' -- how do I know when to use > 'set' vs 'setenv'? > Being that I have a severe dislike of csh and its derivatives this may not be 100% accurate, but: set == when you want it available in this shell and only in this shell setenv == when you want it available in this shell and any child processes of this shell see here for reasons why csh is bad: http://frmb.org/csh_whynot.html tcsh is better then csh but that is just not saying much. If you want to learn a portable shell look at korn or posix sh. marc From george Sat Aug 28 19:37:54 2004 From: george (George Georgalis) Date: Sat, 28 Aug 2004 19:37:54 -0400 Subject: [nycbug-talk] using tcsh In-Reply-To: <20040828190128.31df95e8@bogomips.optonline.net> References: <20040828211321.GA9773@trot.local> <20040828190128.31df95e8@bogomips.optonline.net> Message-ID: <20040828233754.GA10555@trot.local> On Sat, Aug 28, 2004 at 07:01:28PM -0400, Marc Spitzer wrote: >On Sat, 28 Aug 2004 17:13:21 -0400 >George Georgalis wrote: > >> /* Regards to the friends and family of Chuck Yerkes, RIP. */ >> >> I've been over the tcsh man and other sources numerous times but have >> been unable to save and restore tcsh command line history through exit >> and next login. >> >> 'set savehist' in ~/.tcshrc is all I'd expect be required, but I've >> been doing various things with 'histfile' too; the functionality I'm >> looking for is 'savehist 1000 merge' -- how do I know when to use >> 'set' vs 'setenv'? >> > >Being that I have a severe dislike of csh and its derivatives this may >not be 100% accurate, but: > >set == when you want it available in this shell and only in this shell > >setenv == when you want it available in this shell and any child >processes of this shell > >see here for reasons why csh is bad: http://frmb.org/csh_whynot.html > >tcsh is better then csh but that is just not saying much. > >If you want to learn a portable shell look at korn or posix sh. Well, before I share my opinion, I'm learning tcsh because that is the default shell on systems I may or may not have control of... That said, I'm pleasantly surprised at the tcsh options available even if they aren't enabled by default; compared to my bash experience. But things like directing stderr and stdout to separate places I guess will always be problematic, I guess sh will be easiest for me to use in scripts. In any event, figuring out how to use ~/.history is a RPITA, and why on earth would a ~/.history file ever be executed?!?! per man: A login shell begins by executing commands from the system files /etc/csh.cshrc and /etc/csh.login. It then executes commands from files in the user's home directory: first ~/.tcshrc (+) or, if ~/.tcshrc is not found, ~/.cshrc, then ~/.history (or the value of the histfile shell variable), then ~/.login, and finally ~/.cshdirs (or the value of the dirsfile shell variable) (+). Uuugh. // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org From mspitze1 Sat Aug 28 22:34:13 2004 From: mspitze1 (Marc Spitzer) Date: Sat, 28 Aug 2004 22:34:13 -0400 Subject: [nycbug-talk] using tcsh In-Reply-To: <20040828233754.GA10555@trot.local> References: <20040828211321.GA9773@trot.local> <20040828190128.31df95e8@bogomips.optonline.net> <20040828233754.GA10555@trot.local> Message-ID: <20040828223413.15827363@bogomips.optonline.net> On Sat, 28 Aug 2004 19:37:54 -0400 George Georgalis wrote: > Well, before I share my opinion, I'm learning tcsh because that is the > default shell on systems I may or may not have control of... > > That said, I'm pleasantly surprised at the tcsh options available even > if they aren't enabled by default; compared to my bash experience. But > things like directing stderr and stdout to separate places I guess > will always be problematic, I guess sh will be easiest for me to use > in scripts. > > In any event, figuring out how to use ~/.history is a RPITA, and why > on earth would a ~/.history file ever be executed?!?! per man: Its a *feature*. Flippen stupid one, but a feature none the less. marc From mspitze1 Sun Aug 29 11:20:33 2004 From: mspitze1 (Marc Spitzer) Date: Sun, 29 Aug 2004 11:20:33 -0400 Subject: [nycbug-talk] for the consultants Message-ID: <20040829112033.1725693c@bogomips.optonline.net> I just noticed the gigs section on craigslist, computer stuff here: http://newyork.craigslist.org/cpg/ From george Tue Aug 31 00:31:31 2004 From: george (George Georgalis) Date: Tue, 31 Aug 2004 00:31:31 -0400 Subject: [nycbug-talk] Fwd: Re: Reverse SSH tunelling Message-ID: <20040831043131.GA22791@trot.local> Saw this on the focus linux list today.... http://chownat.lucidx.com/ chownat, pronounced "chone nat", allows two peers behind two separate NATs with NO port forwarding and NO DMZ setup on their routers to directly communicate with each other. comes with perl source and windows binaries.... haven't tried it but I'm guessing it works like it says it does... // George -- George Georgalis, systems architect, administrator Linux BSD IXOYE http://galis.org/george/ cell:646-331-2027 mailto:george at galis.org