Re: Dumb perl upgrade question

2004-07-21 Thread Tim Aslat
In the immortal words of Brent Wiese [EMAIL PROTECTED]...
 Am I missing some environment variable somewhere or what?

Did you run 
use.perl port
after you upgraded the port?


-- 
Tim Aslat [EMAIL PROTECTED]
Spyderweb Consulting
http://www.spyderweb.com.au
Phone: +61 0401088479
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Growisofs and etc/crontab

2004-07-21 Thread gradeAstudent.com
Thanks for the suggestion will check the paths at the beginning. The crontab
I was using is the system one (/etc/crontab) and I did try specifying the
whole path to the program as well. The exact error message was growisofs:
not found. The command was “1 2 * * * root growisofs –dvd-compat –Z
/dev/cd0a -R -J /home/bkup” Should I just use roots crontab rather then the
system one?

Andrew Firestone
Area Manager
gradeAstudent.com
 


This email, and any attachments, may be confidential and also privileged. If
you are not the intended recipient: Please notify the sender and delete all
copies of this transmission along with any attachments immediately. You
should not copy or use it for any purpose, nor disclose its contents to any
other person.




---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.721 / Virus Database: 477 - Release Date: 16/07/2004
 


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: how to update freebsd? newbie

2004-07-21 Thread Wojciech Puchar
 i am sorry if this is a stupid question i ask but i am willing to see if
 someone helps me to understand the freebsd update process, i just came
 from redhat so forgive me

why do you need update while you are newbie. first learn what you have.
Unix is not windows (and in last years - not Redhat) - you don't need to
have new version ust because it was released.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: How to send attached files on sendmail with mail tool?

2004-07-21 Thread Wojciech Puchar
 
  cat file | uuencode tgt_filname | mail -s subject [EMAIL PROTECTED]

uuencode tgt_filname | mail -s subject [EMAIL PROTECTED]

instead of cat. less one unneeded piping.

 
  subject can be derived from shell script variables if necessary.

 Do you have to do a uudecode on the receiving end to recover the file?

 I tried this - sending a pdf file from this FreeBSD system to a Windoze user
 that gets mail via POP - it didn't work. The filename came through, and it
 was listed as an attachment, but there was nothing useful in the file.


i think windoze just can't decode uuencoded attachments right.

it only supports base64 right.

metamail will be useful, possibly

/usr/local/bin/encode-base64 was installed by package p5-MIME-Base64-2.21

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Compilation

2004-07-21 Thread Wojciech Puchar
 I'm sorry, but I just can't do anything in this operating

i'm sorry too.

 system.  I mean, finally I've found a library that makes
 it simple to simply plot a pixel in a window without
 spending hours looking for a GTK tutorial that will tell

so why wasting your time and FreeBSD user's time?

come back and write new cool windows app.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RELENG question

2004-07-21 Thread Nikos Vassiliadis
Hi to all,

I need a confirmation/correction about this. Is RELENG-4 and RELENG-4-10 the same 
thing,
since the latest stable is 4.10? if i got this right, RELENG-4-10 will be used to stay 
explicitly
with 4.10-? and RELENG-4 will be used to update to the latest 4.X-STABLE. All security 
fixes
and critical updates are in RELENG-4 too. Are these correct?

Thanks, NikV

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


freebsd pxeboot problem

2004-07-21 Thread Liam Hudson
Hi all,

  Am having trouble with pxeboot on freebsd 5.1. Am following procedure
at http://www.tnpi.biz/computing/freebsd/pxe-netboot.shtml (relevant bit
pasted at bottom). This procedure states to create an empty 25Mb file using
dd, make a fs out of it (disklabel/newfs/mdconfig), then rsync the contents
of mfsroot to this fs. This is then used as the rootfs on the pxeboot
client (set vfs.root.mountfrom=ufs:/dev/md0c). When I try this, the client
hangs forever on boot in loader.rc.

However, if I simply create a fs using mdconfig and use this on the client,
it boots to sysinstall ok (ie gunzip mfsroot.gz; mdconfig -a -t vnode -f
mfsroot -u0). I can even mount this fs before I pxeboot and put an
install.cfg file there. However, when the client reads it, it hangs when
trying to mount server:/usr/local/export/freebsd to install the
distribution (Mounting x.x.x.x:/usr/local/export/freebsd over NFS on
/dist).

I tried exporting the /usr without -ro but no difference. Suspect there is
no room on the mfsroot fs more mounting nfs (since I haven't got a 25Mb
file). Has anybody set this up before. I have seen somebody else had this
problem on freebsd list, but no response.

Any help would be appreciated. (Do I summarise back to this list?). Thanks


===


   cd /usr/local/export/pxe 
   dd if=/dev/zero of=mfsroot bs=1k count=25000 
   mdconfig -a -t vnode -f mfsroot -u0  
   disklabel -r -w md0 auto 
   newfs /dev/md0c  
   mkdir -p /mnt/mfs
   mount /dev/md0 /mnt/mfs  


 There, now we've got 25 megs of space mounted on /mnt to play with. The
 basic rule of thumb here to keep in mind is that you are building a root   
 file system for FreeBSD. Everything the kernel, sysinstall, and your   
 install programs needs from the root file system is what you need to have  
 in your /mnt directory. To get started we'll copy the contents of the  
 distribution mfsroot.flp to our new mfsroot:   


   mkdir /mnt/floppy
   mdconfig -a -t vnode -u 1 -f 
   /usr/local/export/freebsd5.1/floppies/mfsroot.flp
   mount /dev/md1 /mnt/floppy   
   cp /mnt/floppy/mfsroot.gz /tmp   
   umount /mnt/floppy   
   mdconfig -d -u 1 
   gunzip /tmp/mfsroot.gz   
   mdconfig -a -t vnode -u 1 -f /tmp/mfsroot
   mount /dev/md1 /mnt/floppy   
   rsync -avzH /mnt/floppy/ /mnt/mfs
   umount /mnt/floppy   
   mdconfig -d -u 1 









  

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: RELENG question

2004-07-21 Thread Matthew Seaman
On Wed, Jul 21, 2004 at 10:37:42AM +0300, Nikos Vassiliadis wrote:

 I need a confirmation/correction about this. Is RELENG-4 and RELENG-4-10 the same 
 thing,
 since the latest stable is 4.10? if i got this right, RELENG-4-10 will be used to 
 stay explicitly
 with 4.10-? and RELENG-4 will be used to update to the latest 4.X-STABLE. All 
 security fixes
 and critical updates are in RELENG-4 too. Are these correct?

No -- RELENG_4 and RELENG_4_10 are quite different things.  And note
that it's RELENG_4 not RELENG-4.

RELENG_4_10 is the cvs branch corresponding to 4.10-RELEASE-pN.
That's a code branch which is relatively static, receiving only
security patches and serious errata (which is different to 4.9-RELEASE
and earlier, which only got security fixes).  A RELEASE version is
intended for production use where downtime is complete anathema.

RELENG_4 is the cvs branch corresponding to 4.10-STABLE.  That's a
*development* branch, where new code and support for new devices will
be introduced.  Note that we call it '4.10-STABLE' simply because 4.10
was the last RELEASE branch created.  Generally as you track 4-STABLE
over time, that version number will be incremented about every four
months.  However, 4.10 might well be the last release from the 4.x
series, withthe creation of the RELENG_5 branch that's planned to
occur simultaneously with the release of 5.3.

A 4.10-STABLE release is called 'STABLE' because that's how it's meant
to run: stably.  FreeBSD STABLE versions have an enviable track record
at achieving just that.  It has been achieved only by careful testing
of all code in the 'CURRENT' or HEAD branch of CVS before MFC (Merge
From Current) into the STABLE branch.  RELENG_4 gets all of the
security fixes and errata that are applied to RELENG_4_10, although
they might occur in a slightly different form: eg. an upgrade of a
component software system to a new version rather than a minimal set
of patches to do no more than fix a particular flaw.

Cheers,

Matthew


-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgplRld6sWFsj.pgp
Description: PGP signature


Re: Compilation

2004-07-21 Thread Michal Pasternak
Carlos Torchia [Wed, Jul 21, 2004 at 06:02:43AM +0100]:
 Hi.  I can't compile a program using the G2 graphics
 library.  When I tried compiling the program the first
 time, cc said it didn't know that g2.h was in
 /usr/local/include, which I think is pretty stupid.
 Anyway, I put /usr/local/include and /usr/local/lib in
 the -I and -L parameters respectively.

Yes, that's correct. You need to pass -I and -L each time you compile a
program, that has its libs / includes not in /usr/{lib,include} .

There are 3 options: use Linux (which has almost everything in /usr/include
and /usr/lib, but you still have to pass -I and -L sometimes, for postgresql
for example); symlink all files in /usr/X11R6/{lib,include} and
/usr/local/{lib,include} in your /usr/{lib,include} - which will clobber up
your filesystem a bit; learn to write / use Makefiles or pkg-config stuff.

For example, you could write Makefile like:

myprogram: myprogram.c
$(CC) -o myprogram `gtk-config --libs --cflags` myprogram.c

 Then it saw
 the header and library files, but there were constant
 errors saying that there were undefined references to
 X11 functions within libg2.a.

Aye! That's why you specify -L/usr/X11R6/lib -lX11 and some more stuff on
gcc command line.

Too hard, too complicated, takes too much time? Well. Either write a good
makefile, or try to learn some IDE for GCC (anjuta, kdevelop), which can
propably take care of this automatically. I think, that learning
automake/autoconf (the scripts, that generate configure script, that
autodetects library locations) can be hard/unneeded for you at the moment.

 and how to redirect error output from
 programs to files (or pipe them), because everything I
 need to now about Unix or FreeBSD comes from 72 hours of
 trying to figure out how to make a directory or something.

Google is your friend:
http://www.bo.infn.it/alice/alice-doc/mll-doc/usrgde/node18.html

 I'm sorry, but I just can't do anything in this operating
 system.  I mean, finally I've found a library that makes
 it simple to simply plot a pixel in a window without
 spending hours looking for a GTK tutorial that will tell
 me about this stupid graphics context stuff that I don't
 even know.  And now I gotta figure out about this stupid
 g2 thing.  Ok.  Well anyway, thanks for any help you can
 give me.

If you just want to get the job done, I'd suggest Python. You don't care
about compilation, libraries, other stuff - and it is extremely simple to
draw stuff using PyGTK -
http://www.moeraki.com/pygtktutorial/pygtk2tutorial/ch-DrawingArea.html

If graphics context stuff bothers you, well, that's somehow standard way
to draw stuff, well, X has it and win32 also has it :) If you want to use
something like a framebuffer, I am sure you can find something, no matter if
in GTK or X11 (I'd suggest XSHM extension for framebuffer-like stuff, but
well, I've written my last pure-X11 application about 5 years ago, and I'm
sure, that things have changed).

Hope this helps. Don't get frustrated - spend another 72 hours actually
reading the docs, unix is simple, but sometimes not as simple, as you may
suppose :)
-- 
m
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: RELENG question

2004-07-21 Thread Giorgos Keramidas
On 2004-07-21 10:37, Nikos Vassiliadis [EMAIL PROTECTED] wrote:
 I need a confirmation/correction about this. Is RELENG-4 and
 RELENG-4-10 the same thing, since the latest stable is 4.10?

Please note that the tags do not use hyphens as in `1-2' but underscore
characters as in `4_10'.

The answer to your first question is: Yes.  At least these days they're
equivalent.

You might want to keep in mind that it's very important to make the
distinction between a branch of development and a specific tag.

RELENG_4 is a branch, a continuous path of development that was spawned
of the main FreeBSD trunk when RELENG_4 was created as a branch.  As all
branches this can grow or spawn new sub-branches.

RELENG_4_10 is one of those sub-branches.  It's a special sub-branch of
RELENG_4 that contains a version of the sources as they were on the
day 4.10-RELEASE was set in stone plus any critical security fixes that
the Security Officer Team decides that should be added.

 if i got this right, RELENG-4-10 will be used to stay explicitly with
 4.10-?

Yes, it's a nice idea.  You'll be getting everything 4.10-RELEASE
included the day it was released *AND* all the fixes that are made to
the initial source tree.

 and RELENG-4 will be used to update to the latest 4.X-STABLE.

True.

 All security fixes and critical updates are in RELENG-4 too.

Yes.



Giorgos Keramidas  FreeBSD: The Power to Serve
keramida at ceid dot upatras dot grhttp://www.FreeBSD.org/

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Audio CD burning shouldnt be this difficult!

2004-07-21 Thread Edd

Audio CD burning shouldnt be this difficult! I think I have fundamentally
gone wrong here!

I have eight raw tracks that I wish to burn to ATAPI cd. I am using
burncd.

First I did:

burncd -s max audio * fixate

However I got gaps inbetween tracks so i tried:

burncd -s max -d -n audio * fixate

There are now no gaps, but track markers are in the wrong place (perhaps
4 or 5 seconds out in some cases)

What am i doing wrong? I dont want to have to use a windows box to do
this.

Thanks
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: RELENG question

2004-07-21 Thread Nikos Vassiliadis
I see. So, RELENG_4 will be the more actively developed one(
new drivers, etc) - if something like that can be said for the 4.X.

Thanks a lot, Giorgo and Matthew

Nikos

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Removing FreeBSD from my machine

2004-07-21 Thread Mark Jayson Alvarez
--- mark [EMAIL PROTECTED] wrote:
 How do remove freebsd from my machine?  I want to
 format the drive to
 install windows xp.
 
 Thanks,
 Mark Estes


I'm afraid you can no longer remove freebsd from your
system. Specially if it will be replaced by a Windows
operating system. It was intelegently made to be that
way. You will have to purchase yourself another
harddisk to completely get rid of it.(lol)

Anyway, just use your XP installer to delete the
freebsd partition and create your new windows
partition.

Goodluck with windows then!!









__
Do you Yahoo!?
Vote for the stars of Yahoo!'s next ad campaign!
http://advision.webevents.yahoo.com/yahoo/votelifeengine/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Removing FreeBSD from my machine

2004-07-21 Thread Dee Gaans
Or you can use a tool like fdisk or partition magic or
gdisk..

Dee

--- Mark Jayson Alvarez [EMAIL PROTECTED] wrote:
 --- mark [EMAIL PROTECTED] wrote:
  How do remove freebsd from my machine?  I want to
  format the drive to
  install windows xp.
  
  Thanks,
  Mark Estes
 
 
 I'm afraid you can no longer remove freebsd from
 your
 system. Specially if it will be replaced by a
 Windows
 operating system. It was intelegently made to be
 that
 way. You will have to purchase yourself another
 harddisk to completely get rid of it.(lol)
 
 Anyway, just use your XP installer to delete the
 freebsd partition and create your new windows
 partition.
 
 Goodluck with windows then!!
 
 
 
 
 
 
 
   
   
 __
 Do you Yahoo!?
 Vote for the stars of Yahoo!'s next ad campaign!

http://advision.webevents.yahoo.com/yahoo/votelifeengine/
 ___
 [EMAIL PROTECTED] mailing list

http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 




__
Do you Yahoo!?
New and Improved Yahoo! Mail - 100MB free storage!
http://promotions.yahoo.com/new_mail 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Review of what I need to install

2004-07-21 Thread Peter Ryan
Hi,

In my first install of freeBSD 4.10, i selected X-developer
and installed all the sources - not really knowing what I
might need.  I have 6 Gigs, and I keep running out of
disk space when installing ports.

I think I need to start again and select a smaller install.

Eventually, I want to use freeBSD for 2 separate 
things - a server and a client.  I am trying to get
the client going first, and have selected KDE and
am in the process of getting OpenOffice sorted out.

I hope to convert an existing Excel application
into a server component (written in java) and
a client component (probably OO Calc with basic
macros talking via some sort of SOAP implementation)

Can I get some recommendations as to which
install option I should choose for the client.
(and the server too I guess)

Specifically, which sets of source code would
be best, if any. I hope to keep everything as 
vanilla as possible.

Thanks to everyone who has been helping.
Peter


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Removing FreeBSD

2004-07-21 Thread Wojciech Puchar
 How do remove freebsd from my machine?  I want to format the drive to
 install windows xp.

1) don't post without subject
2) boot any usix from floppy or CD, get to shell and use dd to wipe out
beginning of disk

with FreeBSD

dd if=/dev/zero of=/dev/ad0 bs=64k count=1

with linux replace ad0 with hda, with NetBSD use rwd0d.

3) install windoze or any OS as with empty drive.


PS. i assumed your hard drive is on first IDE channel master.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Your 3rd and last chance to help me with vmware

2004-07-21 Thread Dick Davies
* Ben Paley [EMAIL PROTECTED] [0729 22:29]:
 Hello everybody,
 
 If no-one responds this time I'll get the hint, please excuse me for 
 reposting, I'm just going out of my mind!
 
 I'm getting a total crash every time I try to run vmware. This is my system:
 
 bash-2.05b$ uname -a
 FreeBSD potato.hogsedge.net 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Tue Jun 22 
 07:07:08 BST 2004 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/POTATO  
 i386
 bash-2.05b$ pkg_info | grep vmware
 vmware3-3.2.1.2242_7,1 A virtual machine emulator - a full PC in a window

I've had it working under NetBSD before now, a treat. But CURRENT might actually
be relevant, since it uses a few kernel modules - I'd guess 5.x has some API
changes from 4.X
 
 For a while I was getting some sort of network error: vmware would start as 
 long as all the network stuff was disabled, but if I tried to have a 
 host-only connection (I haven't even bothered trying a bridged connection) it 
 wouldn't run (that is, vmware itself would run fine, but the virtual machine 
 wouldn't boot, and I'd get an error message about networking - sorry I didn't 
 make a note of it).

Try bridged? and if you don't make a note of the error, people aren't going
to waste their time helping you as a rule, so do that too.
 
 portupgrade -fR vmware3
 
 and after a lot of waiting around I tried again: now I get a complete crash 
 (can't even change to another terminal and kill x) whenever I try to start 
 vmware.

sod portupgrade - manually pkg_delete all the vmware crap, then pkg_add it.
 
 On boot, I get this message:
 
 kldload: can't load /usr/local/lib/vmware/modules/vmnet.ko: No such file or 
 directory

 -bash-2.05b# locate vmnet.ko
 /usr/local/lib/vmware/modules/vmnet.ko

Is the file actually there - what does ls say?

-- 
Would you tell me, please, which way I ought to go from here?
That depends a good deal on where you want to get to, said the Cat.
Rasputin :: Jack of All Trades - Master of Nuns
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: how to update freebsd? newbie

2004-07-21 Thread Dick Davies
* Wojciech Puchar [EMAIL PROTECTED] [0711 08:11]:
  i am sorry if this is a stupid question i ask but i am willing to see if
  someone helps me to understand the freebsd update process, i just came
  from redhat so forgive me
 
 why do you need update while you are newbie.

So he doesn't get rooted?

not keeping ports up to date will bite you in the ass, newbie or not.
not checking regularly for security updates will do the same..

-- 
Nasrudin walked into a teahouse and declaimed, The moon is more useful
than the sun.  Why?, he was asked.  Because at night we need the
light more.
Rasputin :: Jack of All Trades - Master of Nuns
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Growisofs and etc/crontab

2004-07-21 Thread Jim Hatfield
On Wed, 21 Jul 2004 07:48:31 +0100, in local.freebsd.questions you
wrote:

Thanks for the suggestion will check the paths at the beginning. The
crontab
I was using is the system one (/etc/crontab) and I did try specifying
the
whole path to the program as well.

Not in this example you didn't.

 The exact error message was
growisofs:
not found. The command was 1 2 * * * root growisofs -dvd-compat -Z

The path should be /usr/local/bin/growisofs.

jim
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: AW: need a good 32-bit ata/100 raid

2004-07-21 Thread Brad Tarver
Haven't installed it yet. 3ware support says it's natively supported under Freebsd 
5.2.1. I don't know about 4.10 (didn't ask...)
 
I got my card at www.directron.com for $115
 
 

-Original Message- 
From: Mike [mailto:[EMAIL PROTECTED] 
Sent: Tue 7/20/2004 11:42 PM 
To: Brad Tarver 
Cc: [EMAIL PROTECTED] 
Subject: Re: AW: need a good 32-bit ata/100 raid



Brad Tarver wrote:
 thanks! I went with the 3ware 7006-2!

Brad,

I'm also in the market for a good (supported) IDE RAID controller.  I
noticed that you went with the 3ware 7006-2.  I found that card at:

avadirect.com for $125.00
siliconmechanics.com for $120.00

Where did you get for controller at?  Is this about what you paid for yours?

Have you installed you card yet?

Did the install go smoothly with 4.10?

Thanks,
Michael



 Alexander Liebau wrote on 7/8/2004 5:58 PM:

 www.3ware.com :)

 64 bit cards but they run fine in 32 bit slots.. but they might be too
 expensive since they are for professional solutions :)



 -Ursprungliche Nachricht-
 Von: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Auftrag von Brad Tarver
 Gesendet: Freitag, 9. Juli 2004 00:08
 An: [EMAIL PROTECTED]
 Betreff: need a good 32-bit ata/100 raid


 are there any good 32-bit ata/100 raid cards for Freebsd 5.2.1? that are
 natively supported? I only need raid1 capability.



 --
 Brad Tarver, CCNA
 Network Administrator
 Forman Perry Watkins Krutz  Tardy
 188 East Capitol Street
 Suite 200
 Jackson, MS 39201
 United States
 Ph: 601-960-8600
 Fax: 601-960-8613

 A bad day on UNIX is better than a good day on Windows
 Brad Tarver
 LUGOJ.org mailing list, 6/17/2004



 Important Confidentiality And Limited Liability Notice

 This email and any attachments may be confidential and protected by
 law. If
 you are not the intended recipient, be aware that any disclosure,
 copying,
 distribution or use of the email or any attachment is prohibited. If you
 have received this email in error, please notify us immediately by
 replying
 to the sender and deleting this copy and the reply from your system.
 Please
 note that any views or opinions expressed in this email are solely
 those of
 the author and do not necessarily represent those of Forman Perry Watkins
 Krutz  Tardy LLP. (FPWKT). The recipient should check this email and
 any
 attachments for the presence of viruses. FPWKT accepts no liability
 for any
 damage caused by any virus transmitted by this email. Thank you for your
 cooperation.





 

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]





Important Confidentiality And Limited Liability Notice

This email and any attachments may be confidential and protected by law. If you are 
not the intended recipient, be aware that any disclosure, copying, distribution or use 
of the email or any attachment is prohibited. If you have received this email in 
error, please notify us immediately by replying to the sender and deleting this copy 
and the reply from your system. Please note that any views or opinions expressed in 
this email are solely those of the author and do not necessarily represent those of 
Forman Perry Watkins Krutz  Tardy LLP. (FPWKT). The recipient should check this 
email and any attachments for the presence of viruses. FPWKT accepts no liability for 
any damage caused by any virus transmitted by this email. Thank you for your 
cooperation.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Applications starting problem (from /usr/local/etc/rc.d/) after upgrade

2004-07-21 Thread Mistery X
Definition of the problem:
Installed applications daemons which have their startup scripts in
/usr/local/etc/rc.d/ are 
not starting during system boot as they should.

Description of the problem:
I had very good working server at FBSD 5.2.1 with several
applications (such as apache2, 
mysql, pureftpd, postfix, saslauth) and I have upgraded it one day,
due to security advisories
of FBSD developers, and application advisories due to portaudit
advisories.
Buildworld and whole process of upgrading system from cvsup goes
well, portupgrade of applications
also. And after that I discovered, that upgraded applications does
not start during system boot.
I chcecked my srcipts permissions (fine), same scripts (fine too -
if I run any script from 
commandline after the system start, it boots the proper daemon
nicely) and config files of
applications (fine too).
After that I started to read forums, and google, then find out  that
daemons now needs declarations
in /etc/rc.conf so I added them. Still nothing. I finished with that
I added the scripts at the end
of the only starting script which is apache2 script, but this is
*NOT* proper solution, even
if daemons are working.
Can *anybody* give me *any* hint/tip or tell me what I did wrong? Im
fightng with that for almost 
two weeks right now, and that affects all 3 of my machines.

System details:

rc.conf:
apache2_enable=YES
oidentd_enable=YES
mysqld_enable=YES
pureftpd_enable=YES
local_startup=/usr/local/etc/rc.d 

installed versions:
apache-2.0.50
mysql-client-4.0.20
mysql-server-4.0.20
pure-ftpd-1.0.19 
postfix-2.1.3,1
cyrus-sasl-saslauthd-2.1.18_2

sample startup script from .../rc.d/:
pure-ftpd.sh:
#!/bin/sh

# PROVIDE: pureftpd
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON
# KEYWORD: FreeBSD shutdown

#
# Add the following lines to /etc/rc.conf to enable pure-ftpd:
#
# pureftpd_enable=YES
#

. /etc/rc.subr

name=pureftpd
rcvar=`set_rcvar`

command=/usr/local/sbin/pure-config.pl
pureftpd_config=${pureftpd_config:-/usr/local/etc/pure-ftpd.conf}
required_files=${pureftpd_config}
pidfile=/var/run/pure-ftpd.pid
procname=pure-ftpd

pureftpd_enable=YES
command_args=${pureftpd_config}

load_rc_config $name
run_rc_command $1 

system:
FreeBSD 5.2.1-RELEASE-p8

Please, give me any help, if you know what is going on here.
Thanks a lot, mumija.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Review of what I need to install

2004-07-21 Thread Andrew L. Gould
On Wednesday 21 July 2004 04:43 am, Peter Ryan wrote:
 Hi,

 In my first install of freeBSD 4.10, i selected X-developer
 and installed all the sources - not really knowing what I
 might need.  I have 6 Gigs, and I keep running out of
 disk space when installing ports.

 I think I need to start again and select a smaller install.

 Eventually, I want to use freeBSD for 2 separate
 things - a server and a client.  I am trying to get
 the client going first, and have selected KDE and
 am in the process of getting OpenOffice sorted out.

 I hope to convert an existing Excel application
 into a server component (written in java) and
 a client component (probably OO Calc with basic
 macros talking via some sort of SOAP implementation)

 Can I get some recommendations as to which
 install option I should choose for the client.
 (and the server too I guess)

 Specifically, which sets of source code would
 be best, if any. I hope to keep everything as
 vanilla as possible.

 Thanks to everyone who has been helping.
 Peter

How did you partition the hard drive?

Andrew Gould
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Review of what I need to install

2004-07-21 Thread Steve Bertrand
 On Wednesday 21 July 2004 04:43 am, Peter Ryan wrote:
 Hi,

 In my first install of freeBSD 4.10, i selected X-developer
 and installed all the sources - not really knowing what I
 might need.  I have 6 Gigs, and I keep running out of
 disk space when installing ports.

 I think I need to start again and select a smaller install.

 Eventually, I want to use freeBSD for 2 separate
 things - a server and a client.  I am trying to get
 the client going first, and have selected KDE and
 am in the process of getting OpenOffice sorted out.

 I hope to convert an existing Excel application
 into a server component (written in java) and
 a client component (probably OO Calc with basic
 macros talking via some sort of SOAP implementation)

 Can I get some recommendations as to which
 install option I should choose for the client.
 (and the server too I guess)

 Specifically, which sets of source code would
 be best, if any. I hope to keep everything as
 vanilla as possible.

 Thanks to everyone who has been helping.
 Peter

 How did you partition the hard drive?

ie...perform:

# df -h

and send the output back to the list.

Steve


 Andrew Gould
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: request help

2004-07-21 Thread Bill Moran
Dazie [EMAIL PROTECTED] wrote:

 Hi my name is Diana Lenko I am from BNLUG LINUX USERS GROUP AND SUNCOAST
 LINUX USERS GROUP

Hi, my name is Bill Moran and I am AN UNOFFICIAL VOLUNTEER FOR THE FREEBSD
PROJECT

 What I do is contact companys like yours and ask for freebies such as Boxed
 distros teeshirts stuffed animals 
 Hats, books, stickers. and this is too promote your items and let people
 know you are out there in the linux world long with many other companys and
 to let them know why they should try your Distros out  and see where it
 fits in our world. Teeshirts should be xxLarge and XLarge . If you would
 like to check out our site go to.WWW.SunCoastLug.org
 and check us out.Can you please help us out with some freebies we load
 your distros on our laptops and show them off also we do raffles with some
 of the items.

FreeBSD is not a Linux distro.  It is also not a company that presses CDs
or makes novelty items.

However, there are several companies that make/sell everything from boxed
sets to very cool t-shirts.  BSDMall is one I can think of off the top
of my head.  See http://www.bsdmall.com

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Windows X

2004-07-21 Thread Joshua Tinnin
On Tuesday 20 July 2004 10:00 pm, Vulpes Velox [EMAIL PROTECTED] wrote:
 On Tue, 20 Jul 2004 11:13:03 -0700 (PDT)

 Joshua Lewis [EMAIL PROTECTED] wrote:
  DESKTOP:
  If you are planning on this being a desktop replacement then I can
  fully understand wanting to have a cool desktop. KDE is very popular
  as well as GNOME. You can see screenshots on their respective
  websites.
 
  KDE has a cool feature that if set up allows you to pick your window
  manager on login (mind you this causes KDE and X windows to be
  running at all times). This would require reading chapter 5 in the
  FreeBSD Handbook. This is arguably you greatest source of FreeBSD
  information. It is a short chapter to read but does explain quite a
  lot. I myself had to read the chapter more then once before I fully
  understood it. Now I feel very comfortable using X. No expert but I
  feel very comfortable.

 I suggest something lighter, but easily configurable. Try XFCE,
 Fluxbox, Windowmaker, or the like. There are many window managers
 avialable. To find the list just go to
 http://www.freebsd.org/ports/x11-wm.html
 and start browsing. :)

I just installed the newest XFce today, and wow, it's nice. Very fast. I don't 
want to give up KMail, but like a lot of other KDE apps, it runs other KDE 
processes that tend to bog it down in any wm. But it's very quick on XFce, 
faster even than on IceWM, at least on my machine. It wouldn't matter so much 
to me, but KMail is by far my favorite GUI email client. If I were a better 
programmer I'd backwards engineer it without all the hooks into KDE stuff, 
but maybe later ... Mozilla starts in less than two seconds without being 
preloaded. Amazing. Who said Mozilla is slow starting? Not me anymore.

I'm glad you posted this, because it reminded me to give XFce a test. IceWM 
doesn't seem to perform nearly as quickly for me (which is odd), but maybe I 
don't have it configured correctly. I think I like XFce better anyway ;)

- jt
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Review of what I need to install

2004-07-21 Thread Steve Bertrand
 I am using outlook to get to the list. I havent figured
 out how to do email on the freeBSD machine yet,
 let alone copy the output from those sort of commands.
 (only been using it for a week or so)

Here's a quick and dirty method of producing your output that we need, and
quickly mailing it to us. Note that because your machine will send the
email out with an unreachable address, send it to yourself first, then
send it out after (from Outlook) to the list:

# df -h  /tmp/diskpart.tmp
# mail -s Disk Partitioning [EMAIL PROTECTED]  /tmp/diskpart.tmp
# rm /tmp/diskpart.tmp

Now hop back into Outlook, download your mail, cut/paste into a fresh
message to the list.

Regards,

Steve


 I guess I should put that up the priority list a bit :)

 Thanks
 Peter

 ie...perform:

 # df -h

 and send the output back to the list.

 Steve





___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


ORiNOCO Wireless - troubles

2004-07-21 Thread Maksym Marchenko
Hi!
I have a Siemens 510 laptop with 128 MB RAM and 4GB HDD.
It has no Network card onboard. So I have only wireless pccard
ORiNOCO Silver.
I had before Intel Wireless/PRO 2011B. This one was bad (for FreeBSD)
Now I have ORiNOCO, but I can't make it working.
It works in Linux, but I want FreeBSD.
I have compile new kernel, but it says:
CIS is too long - truncating!
pccard0: Card has no functions!
cbb0: PC Card card activation failed
Can anybody say, what must I doing?
Thanks in advance.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Random Freeze

2004-07-21 Thread Cedric GROSS
Hello,

I'm running an AMD Duron 700 Box with freeBSD 5.2.1 - RELEASE, and
sometimes the system freeze so I must reboot. I haven't anything in log.
So, What could be the problem ? 
How could I obtain some clue of the problem (debug flag, something like
that..) ?

Thanks for help.

Cedric
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Apache/2.0.50, broken connection

2004-07-21 Thread Alex
Hi!

FreeBSD 4.9

Apache 2.0.50
PHP 4.3.8

Apache pPeriodically throws connection...
Especially whith post-Nuke tasks...

How can I fix it ? :)

--
Alex
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Random Freeze

2004-07-21 Thread Mistery X

 Wiadomo Oryginalna 
Od: Cedric GROSS [EMAIL PROTECTED]
Do: [EMAIL PROTECTED]
Data: Wed, 21 Jul 2004 15:41:56 +0200
Temat: Random Freeze

Hello,

I'm running an AMD Duron 700 Box with freeBSD 5.2.1 - RELEASE, and
sometimes the system freeze so I must reboot. I haven't anything in
log.
So, What could be the problem ? 
How could I obtain some clue of the problem (debug flag, something like
that..) ?

Thanks for help.

Cedric
Check your memory slots, memory chips, and perform some memory test
- you can find some apps in ports. I had similiar problem once, and
it was memory caused.

m.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


AW: AW: need a good 32-bit ata/100 raid

2004-07-21 Thread Alexander Liebau
i havent seen a 3ware-card that isnt supported by freebsd yet :)

-Ursprngliche Nachricht-
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Auftrag von Brad Tarver
Gesendet: Mittwoch, 21. Juli 2004 14:04
An: [EMAIL PROTECTED]
Betreff: RE: AW: need a good 32-bit ata/100 raid


Haven't installed it yet. 3ware support says it's natively supported under Freebsd 
5.2.1. I don't know about 4.10 (didn't ask...)
 
I got my card at www.directron.com for $115
 
 

-Original Message- 
From: Mike [mailto:[EMAIL PROTECTED] 
Sent: Tue 7/20/2004 11:42 PM 
To: Brad Tarver 
Cc: [EMAIL PROTECTED] 
Subject: Re: AW: need a good 32-bit ata/100 raid



Brad Tarver wrote:
 thanks! I went with the 3ware 7006-2!

Brad,

I'm also in the market for a good (supported) IDE RAID controller.  I
noticed that you went with the 3ware 7006-2.  I found that card at:

avadirect.com for $125.00
siliconmechanics.com for $120.00

Where did you get for controller at?  Is this about what you paid for yours?

Have you installed you card yet?

Did the install go smoothly with 4.10?

Thanks,
Michael



 Alexander Liebau wrote on 7/8/2004 5:58 PM:

 www.3ware.com :)

 64 bit cards but they run fine in 32 bit slots.. but they might be too
 expensive since they are for professional solutions :)



 -Ursprungliche Nachricht-
 Von: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Auftrag von Brad Tarver
 Gesendet: Freitag, 9. Juli 2004 00:08
 An: [EMAIL PROTECTED]
 Betreff: need a good 32-bit ata/100 raid


 are there any good 32-bit ata/100 raid cards for Freebsd 5.2.1? that are
 natively supported? I only need raid1 capability.



 --
 Brad Tarver, CCNA
 Network Administrator
 Forman Perry Watkins Krutz  Tardy
 188 East Capitol Street
 Suite 200
 Jackson, MS 39201
 United States
 Ph: 601-960-8600
 Fax: 601-960-8613

 A bad day on UNIX is better than a good day on Windows
 Brad Tarver
 LUGOJ.org mailing list, 6/17/2004



 Important Confidentiality And Limited Liability Notice

 This email and any attachments may be confidential and protected by
 law. If
 you are not the intended recipient, be aware that any disclosure,
 copying,
 distribution or use of the email or any attachment is prohibited. If you
 have received this email in error, please notify us immediately by
 replying
 to the sender and deleting this copy and the reply from your system.
 Please
 note that any views or opinions expressed in this email are solely
 those of
 the author and do not necessarily represent those of Forman Perry Watkins
 Krutz  Tardy LLP. (FPWKT). The recipient should check this email and
 any
 attachments for the presence of viruses. FPWKT accepts no liability
 for any
 damage caused by any virus transmitted by this email. Thank you for your
 cooperation.





 

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]





Important Confidentiality And Limited Liability Notice

This email and any attachments may be confidential and protected by law. If you are 
not the intended recipient, be aware that any disclosure, copying, distribution or use 
of the email or any attachment is prohibited. If you have received this email in 
error, please notify us immediately by replying to the sender and deleting this copy 
and the reply from your system. Please note that any views or opinions expressed in 
this email are solely those of the author and do not necessarily represent those of 
Forman Perry Watkins Krutz  Tardy LLP. (FPWKT). The recipient should check this 
email and any attachments for the presence of viruses. FPWKT accepts no liability for 
any damage caused by any virus transmitted by this email. Thank you for your 
cooperation.



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Random Freeze

2004-07-21 Thread Nelis Lamprecht
On Wed, 2004-07-21 at 15:41, Cedric GROSS wrote:
 Hello,
 
 I'm running an AMD Duron 700 Box with freeBSD 5.2.1 - RELEASE, and
 sometimes the system freeze so I must reboot. I haven't anything in log.
 So, What could be the problem ? 
 How could I obtain some clue of the problem (debug flag, something like
 that..) ?
 
Hi,

Are you using any sort of traffic shaping( dummynet ) with ipfw ? Had a
similar problem and solved it by setting the timer granularity ( options
HZ=1000 ) in the kernel which is strongly recommended. The machine also
gave me no clue as to why it froze. Checking your memory as already
suggested is also a good idea. You can use the memory test located in 
/usr/ports/sysutils/memtest86 which is a great tool. You might also want
to upgrade to the latest source for that particular RELEASE as bugs are
constantly found and corrected.

 
Regards,
-- 
Nelis Lamprecht
PGP: http://www.8ball.co.za/pgpkey/nelis.asc
Unix IS user friendly.. It's just selective about who its friends are.


signature.asc
Description: This is a digitally signed message part


Re: Windows X

2004-07-21 Thread Wojciech Puchar
  and start browsing. :)

 I just installed the newest XFce today, and wow, it's nice. Very fast. I don't

compared to KDE - for sure fast.

 want to give up KMail, but like a lot of other KDE apps, it runs other KDE

no problem to run KMail without KDE except it will take lot of CPU too.

 processes that tend to bog it down in any wm. But it's very quick on XFce,
 faster even than on IceWM, at least on my machine. It wouldn't matter so much
 to me, but KMail is by far my favorite GUI email client. If I were a better
 programmer I'd backwards engineer it without all the hooks into KDE stuff,

nice idea. hopefully text-mode pine is fine for me, quick and can be
configured to run right programs to view attachment (like xv to view .jpg,
gif etc.)

 but maybe later ... Mozilla starts in less than two seconds without being
 preloaded. Amazing. Who said Mozilla is slow starting? Not me anymore.

slow and fast is relative. to machine and to other programs. it takes 10
seconds on my celeron/300 to load mozilla, while links -g starts in 1
second.


 I'm glad you posted this, because it reminded me to give XFce a test. IceWM
 doesn't seem to perform nearly as quickly for me (which is odd), but maybe I
 don't have it configured correctly. I think I like XFce better anyway ;)

strange, or XFce is really so fast. must try.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Review of what I need to install

2004-07-21 Thread Peter Ryan
 Hi Steve,

I used an alternate email address which did not have
any anti-virus filters and it got through.
For some reason it came from Charlie Root.
Anyway, here is the output of the df -h command

Thanks
Peter

-Original Message-
From: Charlie Root [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 21, 2004 22:05

FilesystemSize   Used  Avail Capacity  Mounted on
/dev/ad0s1a   126M44M72M38%/
/dev/ad0s1f   252M   254K   232M 0%/tmp
/dev/ad0s1g   5.2G   2.8G   2.0G59%/usr
/dev/ad0s1e   252M20M   212M 9%/var
procfs4.0K   4.0K 0B   100%/proc



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Review of what I need to install

2004-07-21 Thread Steve Bertrand
 Anyway, here is the output of the df -h command

 FilesystemSize   Used  Avail Capacity  Mounted on
 /dev/ad0s1a   126M44M72M38%/
 /dev/ad0s1f   252M   254K   232M 0%/tmp
 /dev/ad0s1g   5.2G   2.8G   2.0G59%/usr
 /dev/ad0s1e   252M20M   212M 9%/var
 procfs4.0K   4.0K 0B   100%/proc

First off, KDE and openoffice can require up to 3Gig space to install from
ports. This is an unfortunate situation. Someone has mentioned that
openoffice can be installed via packages. Do a quick search through the
archives and you should find out how to do that.

If you have another hard disk laying around, you could put that in the
system and symlink (or reinstall) to it.

Sorry I don't have a better solution. Installing your software (the large
ones) as packages may get around this problem, or someone else may have a
decent solution for this problem.

Steve


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Removing FreeBSD

2004-07-21 Thread Joey Mingrone
On July 21, 2004 07:35, Wojciech Puchar wrote:
  How do remove freebsd from my machine?  I want to format the drive to
  install windows xp.

 1) don't post without subject
 2) boot any usix from floppy or CD, get to shell and use dd to wipe out
 beginning of disk

 with FreeBSD

 dd if=/dev/zero of=/dev/ad0 bs=64k count=1

 with linux replace ad0 with hda, with NetBSD use rwd0d.

 3) install windoze or any OS as with empty drive.


 PS. i assumed your hard drive is on first IDE channel master.

or just start the xp install.  The installer has will ask you if you want 
to wipe the drive.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Streaming Audio

2004-07-21 Thread Justin W. Pauler
Hello Everyone,

I've got quite a collection of Ogg Vorbis (.ogg) files on my FreeBSD machine
that I would like to be able to stream for personal use (really I'd like to
be able to listen to them at work! :)) I've done quite a bit of research and
can't find any software to do exactly what I need.

IceCast and Shoutcast look like they'll both work just fine for the server,
no problems there. However, as for the source client, that's another story.
This machine was built as a mini-server, I use it for IRC/DNS/WWW and so
forth, therefore, has no X server and no soundcard (for the record it has a
soundcard built onto the motherboard AC97, but FreeBSD 4.10 sees it as
chip0, so I don't think it's useable), and all of the source clients I have
found either require a soundcard or the X system to be installed.

Is there any help for me? I remember the days of Windows streaming with
Shoutcast, in that case, Winamp connected with a socket to shoutcast and
completely bypassed the soundcard... Anything like that for FreeBSD?

Thanks All


--
Justin W. Pauler
Network Administrator
AirRover Wi-Fi Corporation
E-Mail: [EMAIL PROTECTED]
Phone: (225) 923-1034 x87
Toll Free: (888) 720-7301 x87
WWW: http://www.airroverwifi.com
 


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Streaming Audio

2004-07-21 Thread Michael Clark
I have used Xmms to get into shoutcast broadcast before.

Michael Clark
Nemschoff Chairs Inc
mclark at nemschoff dot com
CompTIA A+, Network+, Server+, MCP
Voice: (920) 457 7726 x294
Fax:  (920) 453 6594


 -Original Message-
 From: Justin W. Pauler [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 21, 2004 9:29 AM
 To: [EMAIL PROTECTED]
 Subject: Streaming Audio
 
 
 Hello Everyone,
 
 I've got quite a collection of Ogg Vorbis (.ogg) files on my 
 FreeBSD machine
 that I would like to be able to stream for personal use 
 (really I'd like to
 be able to listen to them at work! :)) I've done quite a bit 
 of research and
 can't find any software to do exactly what I need.
 
 IceCast and Shoutcast look like they'll both work just fine 
 for the server,
 no problems there. However, as for the source client, that's 
 another story.
 This machine was built as a mini-server, I use it for 
 IRC/DNS/WWW and so
 forth, therefore, has no X server and no soundcard (for the 
 record it has a
 soundcard built onto the motherboard AC97, but FreeBSD 4.10 sees it as
 chip0, so I don't think it's useable), and all of the source 
 clients I have
 found either require a soundcard or the X system to be installed.
 
 Is there any help for me? I remember the days of Windows 
 streaming with
 Shoutcast, in that case, Winamp connected with a socket to 
 shoutcast and
 completely bypassed the soundcard... Anything like that for FreeBSD?
 
 Thanks All
 
 
 --
 Justin W. Pauler
 Network Administrator
 AirRover Wi-Fi Corporation
 E-Mail: [EMAIL PROTECTED]
 Phone: (225) 923-1034 x87
 Toll Free: (888) 720-7301 x87
 WWW: http://www.airroverwifi.com
  
 
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 [EMAIL PROTECTED]
 


CONFIDENTIALITY NOTE: This electronic transmission, including all
attachments, is directed in confidence solely to the person(s) to whom it is
addressed, or an authorized recipient, and may not otherwise be distributed,
copied or disclosed. The contents of the transmission may also be subject to
intellectual property rights and all such rights are expressly claimed and
are not waived. If you have received this transmission in error, please
notify the sender immediately by return electronic transmission and then
immediately delete this transmission, including all attachments, without
copying, distributing or disclosing same. 


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ORiNOCO Wireless - troubles

2004-07-21 Thread Andrew L. Gould
On Wednesday 21 July 2004 08:39 am, Maksym Marchenko wrote:
 Hi!


 I have a Siemens 510 laptop with 128 MB RAM and 4GB HDD.
 It has no Network card onboard. So I have only wireless pccard
 ORiNOCO Silver.
 I had before Intel Wireless/PRO 2011B. This one was bad (for FreeBSD)
 Now I have ORiNOCO, but I can't make it working.
 It works in Linux, but I want FreeBSD.
 I have compile new kernel, but it says:
 CIS is too long - truncating!
 pccard0: Card has no functions!
 cbb0: PC Card card activation failed

 Can anybody say, what must I doing?

 Thanks in advance.

Look for information regarding your laptop brand/model, or similar 
models, at:

http://gerda.univie.ac.at/freebsd-laptops/

What version of FreeBSD are you running?  I'm not familiar with the 
laptop; but FreeBSD 5.* has problems with many of the older pcmcia 
slots.  If you're running FreeBSD 5.*, consider:

1. recompiling the kernel using the OLDCARD kernel configuration file.
2. If ACPI is enabled, try booting with it disabled. (If it's disabled, 
try booting with it enabled.)
3. You might also consider changing to FreeBSD 4.10, the production 
version of FreeBSD.

Best of luck,

Andrew Gould
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Windows X

2004-07-21 Thread Joshua Tinnin
On Wednesday 21 July 2004 07:07 am, Wojciech Puchar 
[EMAIL PROTECTED] wrote:
   and start browsing. :)
 
  I just installed the newest XFce today, and wow, it's nice. Very fast. I
  don't

 compared to KDE - for sure fast.

I know that. Obviously something like XFce is going to be faster than KDE. 
What I meant, as I explained later, is that it's even faster on my box than 
IceWM.

  If I were a better
  programmer I'd backwards engineer it without all the hooks into KDE stuff,
 
 nice idea. hopefully text-mode pine is fine for me, quick and can be
 configured to run right programs to view attachment (like xv to view .jpg,
 gif etc.)

I've used Pine a great deal in the past. Right now I receive far too much 
email, which I need to be able to access quickly in ways that Pine can't do 
as well for me. I need a complex folder tree and HTML view (though HTML is 
often not necessary in email, but I can't educate everyone else why), quick 
access to many accounts and mail protocols within the same client, and many 
other tools, or at least it makes email much more efficient for me to have it 
all in one place. I've tried duplicating what I need in Pine and other text 
clients with other tools, but it never works as efficiently as a GUI client 
with the right tools built in. One day I'll write my own, though, without as 
much overhead as KMail or just clean that one up.

- jt
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Streaming Audio

2004-07-21 Thread Justin W. Pauler
Michael,

I have heard that XMMS will allow me to stream to a Shoutcast or IceCast
server, however, I wasn't able to find a way to compile XMMS WITHOUT the
GUI; it seemed you had to build the whole thing!

--
Justin W. Pauler

-Original Message-
From: Michael Clark [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 21, 2004 9:38 AM
To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED]
Subject: RE: Streaming Audio

I have used Xmms to get into shoutcast broadcast before.

Michael Clark
Nemschoff Chairs Inc
mclark at nemschoff dot com
CompTIA A+, Network+, Server+, MCP
Voice: (920) 457 7726 x294
Fax:  (920) 453 6594


 -Original Message-
 From: Justin W. Pauler [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 21, 2004 9:29 AM
 To: [EMAIL PROTECTED]
 Subject: Streaming Audio
 
 
 Hello Everyone,
 
 I've got quite a collection of Ogg Vorbis (.ogg) files on my FreeBSD 
 machine that I would like to be able to stream for personal use 
 (really I'd like to be able to listen to them at work! :)) I've done 
 quite a bit of research and can't find any software to do exactly what 
 I need.
 
 IceCast and Shoutcast look like they'll both work just fine for the 
 server, no problems there. However, as for the source client, that's 
 another story.
 This machine was built as a mini-server, I use it for IRC/DNS/WWW and 
 so forth, therefore, has no X server and no soundcard (for the record 
 it has a soundcard built onto the motherboard AC97, but FreeBSD 4.10 
 sees it as chip0, so I don't think it's useable), and all of the 
 source clients I have found either require a soundcard or the X system 
 to be installed.
 
 Is there any help for me? I remember the days of Windows streaming 
 with Shoutcast, in that case, Winamp connected with a socket to 
 shoutcast and completely bypassed the soundcard... Anything like that 
 for FreeBSD?
 
 Thanks All
 
 
 --
 Justin W. Pauler
 Network Administrator
 AirRover Wi-Fi Corporation
 E-Mail: [EMAIL PROTECTED]
 Phone: (225) 923-1034 x87
 Toll Free: (888) 720-7301 x87
 WWW: http://www.airroverwifi.com
  
 
 
 ___
 [EMAIL PROTECTED] mailing list 
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 


CONFIDENTIALITY NOTE: This electronic transmission, including all
attachments, is directed in confidence solely to the person(s) to whom it is
addressed, or an authorized recipient, and may not otherwise be distributed,
copied or disclosed. The contents of the transmission may also be subject to
intellectual property rights and all such rights are expressly claimed and
are not waived. If you have received this transmission in error, please
notify the sender immediately by return electronic transmission and then
immediately delete this transmission, including all attachments, without
copying, distributing or disclosing same. 




___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


AW: Streaming Audio

2004-07-21 Thread Alexander Liebau
so you want to hear music on a box which doesnt even have a gui or a
soundcard? thats not gonna work i think :( without guy perhaps but without
soundcard...

-Ursprungliche Nachricht-
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Auftrag von Justin W.
Pauler
Gesendet: Mittwoch, 21. Juli 2004 16:58
An: 'Michael Clark'; [EMAIL PROTECTED]
Betreff: RE: Streaming Audio


Michael,

I have heard that XMMS will allow me to stream to a Shoutcast or IceCast
server, however, I wasn't able to find a way to compile XMMS WITHOUT the
GUI; it seemed you had to build the whole thing!

--
Justin W. Pauler

-Original Message-
From: Michael Clark [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 21, 2004 9:38 AM
To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED]
Subject: RE: Streaming Audio

I have used Xmms to get into shoutcast broadcast before.

Michael Clark
Nemschoff Chairs Inc
mclark at nemschoff dot com
CompTIA A+, Network+, Server+, MCP
Voice: (920) 457 7726 x294
Fax:  (920) 453 6594


 -Original Message-
 From: Justin W. Pauler [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 21, 2004 9:29 AM
 To: [EMAIL PROTECTED]
 Subject: Streaming Audio


 Hello Everyone,

 I've got quite a collection of Ogg Vorbis (.ogg) files on my FreeBSD
 machine that I would like to be able to stream for personal use
 (really I'd like to be able to listen to them at work! :)) I've done
 quite a bit of research and can't find any software to do exactly what
 I need.

 IceCast and Shoutcast look like they'll both work just fine for the
 server, no problems there. However, as for the source client, that's
 another story.
 This machine was built as a mini-server, I use it for IRC/DNS/WWW and
 so forth, therefore, has no X server and no soundcard (for the record
 it has a soundcard built onto the motherboard AC97, but FreeBSD 4.10
 sees it as chip0, so I don't think it's useable), and all of the
 source clients I have found either require a soundcard or the X system
 to be installed.

 Is there any help for me? I remember the days of Windows streaming
 with Shoutcast, in that case, Winamp connected with a socket to
 shoutcast and completely bypassed the soundcard... Anything like that
 for FreeBSD?

 Thanks All


 --
 Justin W. Pauler
 Network Administrator
 AirRover Wi-Fi Corporation
 E-Mail: [EMAIL PROTECTED]
 Phone: (225) 923-1034 x87
 Toll Free: (888) 720-7301 x87
 WWW: http://www.airroverwifi.com



 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]



CONFIDENTIALITY NOTE: This electronic transmission, including all
attachments, is directed in confidence solely to the person(s) to whom it is
addressed, or an authorized recipient, and may not otherwise be distributed,
copied or disclosed. The contents of the transmission may also be subject to
intellectual property rights and all such rights are expressly claimed and
are not waived. If you have received this transmission in error, please
notify the sender immediately by return electronic transmission and then
immediately delete this transmission, including all attachments, without
copying, distributing or disclosing same.




___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Streaming Audio

2004-07-21 Thread cpghost
Justin W. Pauler wrote:
(for the record it has a
soundcard built onto the motherboard AC97, but FreeBSD 4.10 sees it as
chip0, so I don't think it's useable),
I've seen this too, but compiling pcm into the kernel
solves that issue. For some strange reason, kldload-ed
pcm doesn't want to grab the AC97 chip.
-cpghost.
--
Cordula's Web. http://www.cordula.ws/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


gpilotd headaches!?!?!

2004-07-21 Thread DAVID THOMPSON
Hello all...

I have been 'round n circles with this error message when I try to
connect my palm with gnome palm pilot conduits..

The Application gpilotd has quit unexpectedly.

then in the console...

(gpilotd-control-applet:922): gpilotd-WARNING **:
gnome-pilot-client.gob:819: Caught exception:
IDL:omg.org/CORBA/COMM_FAILURE:1.0

I have installed everything on this 5.2.1 box from ports after a cvs-up.
I even tried 4.10 with no luck.

I am using:
evolution-1.4.6_1 
gnomepilot2-2.0.10_2 
libIDL-0.8.3_2
pilot-link-0.11.8_3
ORBit2-2.10.3
ORBit-0.5.17_2 
gob2-2.0.8 

I have seen other people with this error, but I haven't seen anyone who
fixed it.

I can get pilot-link to work with 5.2.1, but gpilotd still crashes.
Maybe there is a way to sync evo directly with pilot-link?? Any
suggestions would be helpful because I have been working on this for a
week. 

David 





This e-mail is intended only for the use of the individual or entity
to which it is addressed and may contain information which is
privileged, confidential, and exempt from disclosure under applicable
law. If you are not the intended recipient, or an employee or agent
of the intended recipient, you are hereby notified that any
dissemination, distribution, or copying of this communication is
strictly prohibited.  If you have received this communication in error
please notify us immediately by replying to [EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


AW: Streaming Audio

2004-07-21 Thread Alexander Liebau
well then you misunderstood the other posting.. i think he was talking about
xmms on the client side.. not as server :)

http://www.shoutcast.com/download/files.phtml -- here you can find the
shoutcast server precompiled for freebsd 4.9 with gcc 2.9.5.. i think it
should run on 4.10 as well



-Ursprungliche Nachricht-
Von: Justin W. Pauler [mailto:[EMAIL PROTECTED]
Gesendet: Mittwoch, 21. Juli 2004 17:04
An: 'Alexander Liebau'; [EMAIL PROTECTED]; 'Michael Clark';
[EMAIL PROTECTED]
Betreff: RE: Streaming Audio


Alexander,

Not nessecarily LISTEN on that machine, but stream out to the Internet so I
can listen on ANOTHER machine.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Alexander Liebau
Sent: Wednesday, July 21, 2004 10:00 AM
To: [EMAIL PROTECTED]; 'Michael Clark'; [EMAIL PROTECTED]
Subject: AW: Streaming Audio

so you want to hear music on a box which doesnt even have a gui or a
soundcard? thats not gonna work i think :( without guy perhaps but without
soundcard...




___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


AW: Streaming Audio

2004-07-21 Thread Alexander Liebau
oh in addition i found some interesting tools in the ports collection:

bash-2.05b# make search key=shoutcast
Port:   darkice-0.14
Path:   /usr/ports/audio/darkice
Info:   An IceCast, IceCast2 and ShoutCast live audio streamer
Maint:  [EMAIL PROTECTED]
B-deps: lame-3.96 libogg-1.1,3 libvorbis-1.0.1,3
R-deps: lame-3.96 libogg-1.1,3 libvorbis-1.0.1,3

Port:   holyshout-0.2_2
Path:   /usr/ports/audio/holyshout
Info:   Streaming audio to Icecast/shoutcast supports multiple bitrate
stream
Maint:  [EMAIL PROTECTED]
B-deps: expat-1.95.7 gettext-0.13.1_1 gmake-3.80_2 libiconv-1.9.1_3
libshout-1.0.7
R-deps: libshout-1.0.7

Port:   shout-0.8.0_1
Path:   /usr/ports/audio/shout
Info:   Program that sends mp3 streams to an icecast/shoutcast server
Maint:  [EMAIL PROTECTED]
B-deps:
R-deps:

Port:   streamripper-1.0.5
Path:   /usr/ports/audio/streamripper
Info:   Splits SHOUTcast stream into tracks
Maint:  [EMAIL PROTECTED]
B-deps:
R-deps:

maybe those are interesting for you as well :)

-Ursprungliche Nachricht-
Von: Justin W. Pauler [mailto:[EMAIL PROTECTED]
Gesendet: Mittwoch, 21. Juli 2004 17:04
An: 'Alexander Liebau'; [EMAIL PROTECTED]; 'Michael Clark';
[EMAIL PROTECTED]
Betreff: RE: Streaming Audio


Alexander,

Not nessecarily LISTEN on that machine, but stream out to the Internet so I
can listen on ANOTHER machine.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Alexander Liebau
Sent: Wednesday, July 21, 2004 10:00 AM
To: [EMAIL PROTECTED]; 'Michael Clark'; [EMAIL PROTECTED]
Subject: AW: Streaming Audio

so you want to hear music on a box which doesnt even have a gui or a
soundcard? thats not gonna work i think :( without guy perhaps but without
soundcard...




___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: q???

2004-07-21 Thread Andrew L. Gould
On Wednesday 21 July 2004 09:47 am, you wrote:
 OK, I appreciate your time. let's say if i sync my source code once a
 week, but do i have to the build world once a week too? or it is only
 where there is a big process. what about there is only one new patch?
 also is there any package or command that i can run to see if there
 are new version of my installed packages on ftp site, as i said like
 2.x and then 2.y, in red hat there is a new tool adopted from debian,
 you run apt-get update, it does scan ftp repositories, then you run
 apt-get dist-upgrade and it shows you that there are a,b,c new
 packages and asks you if you want to upate to new one and if you say
 yes, it does download and install auto, this is what i actually was
 asking
 thank you as i ask too much

I cvsup changes on a weekly or monthly basis; or when I hear of a 
security patch that affects my system.  I do not recompile the system 
or any applications unless I have a reason to do so.  Sometimes, I can 
go months without recompiling or upgrading anything.

The fact that a newer version of an application is released, doesn't 
mean that the older version is obsolete or unsecure.  If the changes do 
not affect how YOU use your computer, you can spend lots of time 
upgrading for NO benefit!  You also assume risks associated with 
upgrades for no benefit!  As the saying goes:  If it isn't broken, 
don't fix it.

After you cvsup the ports system, you can use portupgrade to:

1. Run a report showing which installed applications have newer 
versions.
2. Upgrade an application, all of its dependencies, and all of the ports 
that depend upon it.  Therefore, if application X depends on 
application Y, which, in turn, depends on application Z; 'portupgrade 
-rR Y' will upgrade applications X, Y and Z.  'portupgrade -arR' will 
upgrade all installed ports to newer versions, where applicable.

For more information on ports and portupgrade (and FreeBSD in general), 
see related articles at:

http://www.onlamp.com/pub/ct/15
http://www.onlamp.com/pub/ct/13

After you've installed portupgrade, see:

man portupgrade


Best of luck,

Andrew Gould
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ORiNOCO Wireless - troubles

2004-07-21 Thread Maksym Marchenko
Andrew L. Gould wrote:
On Wednesday 21 July 2004 08:39 am, Maksym Marchenko wrote:
Hi!
I have a Siemens 510 laptop with 128 MB RAM and 4GB HDD.
It has no Network card onboard. So I have only wireless pccard
ORiNOCO Silver.
I had before Intel Wireless/PRO 2011B. This one was bad (for FreeBSD)
Now I have ORiNOCO, but I can't make it working.
It works in Linux, but I want FreeBSD.
I have compile new kernel, but it says:
CIS is too long - truncating!
pccard0: Card has no functions!
cbb0: PC Card card activation failed
Can anybody say, what must I doing?
Thanks in advance.

Look for information regarding your laptop brand/model, or similar 
models, at:

http://gerda.univie.ac.at/freebsd-laptops/
What version of FreeBSD are you running?  I'm not familiar with the 
laptop; but FreeBSD 5.* has problems with many of the older pcmcia 
slots.  If you're running FreeBSD 5.*, consider:

1. recompiling the kernel using the OLDCARD kernel configuration file.
2. If ACPI is enabled, try booting with it disabled. (If it's disabled, 
try booting with it enabled.)
3. You might also consider changing to FreeBSD 4.10, the production 
version of FreeBSD.
I was already at http://gerda.univie.ac.at/freebsd-laptops/
I'm running 5.2 , I had 4.9, bat it was the same trouble.
May be 4.10 is better that way ...
I've not found a reference about including OLDCARD during kernel
compiling. How can I do that?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


downloadable location of old FreeBSD packages

2004-07-21 Thread Paul Hamilton
Hi,

I am hunting around for mpd package for FreeBSD 4.6  I have tried version
mpd-3.14 for FreeBSD 4.7, but get this error when trying to run it:

/usr/libexec/ld-elf.so.1: Undefined symbol _shadow_DES_check_key
referenced from COPY relocation in /usr/local/sbin/mpd

I have also tried version mpd-3.15 as well, but get the same results.

This is a remote server, running on a busy modem, so I don't really want to
try and upgrade to the latest ports tree.  Also the latest apparently
requires OpenSSL, and hence OpenSSH, and buy, I don't want to stuff that
upgrade up.  I can't afford the drive.

So, does any one have mpd-3.13 (I presume it came with FreeBSD 4.6) or a URL
where I can download.

Oh, yes, I tried the FreeBSD 4.6 CD 1, but it's not on there.

Thanks,

Paul Hamilton

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ORiNOCO Wireless - troubles

2004-07-21 Thread Andrew L. Gould
On Wednesday 21 July 2004 10:27 am, Maksym Marchenko wrote:
 Andrew L. Gould wrote:
  On Wednesday 21 July 2004 08:39 am, Maksym Marchenko wrote:
 Hi!
 
 
 I have a Siemens 510 laptop with 128 MB RAM and 4GB HDD.
 It has no Network card onboard. So I have only wireless pccard
 ORiNOCO Silver.
 I had before Intel Wireless/PRO 2011B. This one was bad (for
  FreeBSD) Now I have ORiNOCO, but I can't make it working.
 It works in Linux, but I want FreeBSD.
 I have compile new kernel, but it says:
 CIS is too long - truncating!
 pccard0: Card has no functions!
 cbb0: PC Card card activation failed
 
 Can anybody say, what must I doing?
 
 Thanks in advance.
 
  Look for information regarding your laptop brand/model, or similar
  models, at:
 
  http://gerda.univie.ac.at/freebsd-laptops/
 
  What version of FreeBSD are you running?  I'm not familiar with the
  laptop; but FreeBSD 5.* has problems with many of the older pcmcia
  slots.  If you're running FreeBSD 5.*, consider:
 
  1. recompiling the kernel using the OLDCARD kernel configuration
  file. 2. If ACPI is enabled, try booting with it disabled. (If it's
  disabled, try booting with it enabled.)
  3. You might also consider changing to FreeBSD 4.10, the production
  version of FreeBSD.

 I was already at http://gerda.univie.ac.at/freebsd-laptops/

 I'm running 5.2 , I had 4.9, bat it was the same trouble.
 May be 4.10 is better that way ...

 I've not found a reference about including OLDCARD during kernel
 compiling. How can I do that?

If I'm reading OLDCARD correctly, it references GENERIC; so if you're 
still using a GENERIC kernel, you can:

#unless you're the only user on a standalone pc, boot into single user
#login as root
cd /usr/src
make clean
make buildkernel KERNCONF=OLDCARD
make installkernel KERNCONF=OLDCARD
shutdown -r now

Best of luck,

Andrew Gould
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Audio CD burning shouldnt be this difficult!

2004-07-21 Thread Aaron Dalton
If you use KDE, K3B is a superb cd burning tool.  Sorry I can't give you any 
command-line help.

Cheers!
-- 
Aaron Dalton
http://aaron.daltons.ca
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Random Freeze

2004-07-21 Thread Joseph Peterson
I have the same problem, except I'm running -CURRENT on a Toshiba
Satelite A25-S279 laptop. (Intel P4 NOT MOBILE or CELERON 2.8Ghz)
From time to time, somtimes once a day, sometimes twice in 10 minutes,
doing nothing specific, the machine will lock completely, no caps lock
change, not able to ping it, etc... The screen is still on, but I have
to power-cycle it.

-joe

On Wed, 21 Jul 2004 15:41:56 +0200, Cedric GROSS [EMAIL PROTECTED] wrote:
 Hello,
 
 I'm running an AMD Duron 700 Box with freeBSD 5.2.1 - RELEASE, and
 sometimes the system freeze so I must reboot. I haven't anything in log.
 So, What could be the problem ?
 How could I obtain some clue of the problem (debug flag, something like
 that..) ?
 
 Thanks for help.
 
 Cedric
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Compaq Prolian CL380 Array Controller CR3500 Problems: Any Suggestions Please

2004-07-21 Thread Dew Ediho
Dear List members,

I run freebsd 4.10 on a proliant cl380 server. I split the nodes and
do not use them as a clustered server.

I created a /Data dir for the primary node using the accompnying SCSI
array (RAID 5) with controller CR3500.

I configured the controller and created the array using Compaq Array
Utility software .

The machine ran perfectly for more than 60 days until a power outage
resulted into the box not booting up properly.

I was able to get the server to boot but accessing the SCSI array is impossible.

The following are logs from the system

The machine runs and but I can not use the /Data directory.

The screen shot of the CR3500 configuration has been convinently located at

http://www.morgan.edu/newtemp/ErrorReport.pdf

mailed# df
Filesystem1K-blocksUsedAvail Capacity  Mounted on
/dev/idad0s1a387006   35912   32013410%/
/dev/da0s1e70012386 134 64411262 0%/Data
/dev/idad0s1f   2064302  20  1899138 0%/tmp
/dev/idad0s1g   2675182 1026494  143467442%/usr
/dev/idad0s1e   2064302   23986  1875172 1%/var
procfs4   40   100%/proc

/Data directory is on the SCSI array. Others are on the node hard drive.

mailed# dmesg
Copyright (c) 1992-2004 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
   The Regents of the University of California. All rights reserved.
FreeBSD 4.10-RELEASE #0: Tue May 25 22:47:12 GMT 2004
   [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
Timecounter i8254  frequency 1193182 Hz
CPU: Intel Pentium III (797.48-MHz 686-class CPU)
 Origin = GenuineIntel  Id = 0x683  Stepping = 3
 
Features=0x383fbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE
real memory  = 671072256 (655344K bytes)
avail memory = 646737920 (631580K bytes)
Preloaded elf kernel kernel at 0xc0551000.
Pentium Pro MTRR support enabled
md0: Malloc disk
npx0: math processor on motherboard
npx0: INT 16 interface
pcib0: ServerWorks NB6635 3.0LE host to PCI bridge on motherboard
pci0: PCI bus on pcib0
ida0: Compaq Integrated Array controller port 0x2000-0x20ff mem
0xc400-0xc4ff,0xc500-0xc5ff irq 15 at device 1.0 on
pci0
ida0: drives=1 firm_rev=1.42
idad0: Compaq Logical Drive on ida0
idad0: 8670MB (17756160 sectors), blocksize=512
fxp0: Intel 82559 Pro/100 Ethernet port 0x2400-0x243f mem
0xc3e0-0xc3ef,0xc3fff000-0xc3ff irq 5 at device 2.0 on
pci0
fxp0: Disabling dynamic standby mode in EEPROM
fxp0: New EEPROM ID: 0x40a0
fxp0: EEPROM checksum @ 0xff: 0x6bc5 - 0x6bc5
fxp0: Ethernet address 00:02:a5:09:31:ed
inphy0: i82555 10/100 media interface on miibus0
inphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
pci0: ATI Mach64-GV graphics accelerator at 3.0
pci0: unknown card (vendor=0x0e11, dev=0xa0f0) at 4.0
fxp1: Intel 82559 Pro/100 Ethernet port 0x2c00-0x2c3f mem
0xc3c0-0xc3cf,0xc3dfd000-0xc3dfdfff irq 5 at device 5.0 on
pci0
fxp1: Ethernet address 00:50:8b:b8:2f:33
inphy1: i82555 10/100 media interface on miibus1
inphy1:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
isab0: ServerWorks IB6566 PCI to ISA bridge at device 15.0 on pci0
isa0: ISA bus on isab0
atapci0: ServerWorks ROSB4 ATA33 controller port 0x2c40-0x2c4f at
device 15.1 on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata1: at 0x170 irq 15 on atapci0
pcib3: ServerWorks NB6635 3.0LE host to PCI bridge on motherboard
pci3: PCI bus on pcib3
sym0: 896 port 0x3000-0x30ff mem
0xc6ffc000-0xc6ffdfff,0xc6fffc00-0xc6ff irq 10 at device 4.0 on
pci3
sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking
sym1: 896 port 0x3400-0x34ff mem
0xc6ff8000-0xc6ff9fff,0xc6ffbc00-0xc6ffbfff irq 11 at device 4.1 on
pci3
sym1: No NVRAM, ID 7, Fast-40, LVD, parity checking
eisa0: EISA bus on motherboard
mainboard0: CPQ0681 (System Board) on eisa0 slot 0
orm0: Option ROMs at iomem
0xc-0xc7fff,0xc8000-0xcbfff,0xcc000-0xcd7ff,0xe8000-0xedfff,0xee000-0xe
on isa0
pmtimer0 on isa0
fdc0: NEC 72065B or clone at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
fdc0: FIFO enabled, 8 bytes threshold
fd0: 1440-KB 3.5 drive on fdc0 drive 0
atkbdc0: Keyboard controller (i8042) at port 0x60,0x64 on isa0
atkbd0: AT Keyboard flags 0x1 irq 1 on atkbdc0
kbd0 at atkbd0
psm0: PS/2 Mouse irq 12 on atkbdc0
psm0: model IntelliMouse, device ID 3
vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
sc0: System console at flags 0x100 on isa0
sc0: VGA 16 virtual consoles, flags=0x300
sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
sio0: type 16550A
sio1 at port 0x2f8-0x2ff irq 3 on isa0
sio1: type 16550A
ppc0: Parallel port at port 0x378-0x37f irq 7 on isa0
ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode
plip0: PLIP network interface on ppbus0
lpt0: Printer on ppbus0
lpt0: Interrupt-driven port
ppi0: Parallel I/O on ppbus0
ata0-slave: ATAPI identify retries exceeded
acd0: CDROM CD-224E at ata0-master PIO4
Waiting 15 seconds for SCSI devices to settle

Re: Removing FreeBSD

2004-07-21 Thread Wojciech Puchar
 
  with FreeBSD
 
  dd if=/dev/zero of=/dev/ad0 bs=64k count=1
 
  with linux replace ad0 with hda, with NetBSD use rwd0d.
 
  3) install windoze or any OS as with empty drive.
 
 
  PS. i assumed your hard drive is on first IDE channel master.

 or just start the xp install.  The installer has will ask you if you want
 to wipe the drive.

possibly - i never installed XP. i just answered question how to wipe out
FreeBSD (or anything)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: ORiNOCO Wireless - troubles

2004-07-21 Thread Hauan, David


 -Original Message-
 From: Andrew L. Gould [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 21, 2004 8:54 AM
 To: [EMAIL PROTECTED]
 Cc: Maksym Marchenko
 Subject: Re: ORiNOCO Wireless - troubles
 
 
 On Wednesday 21 July 2004 10:27 am, Maksym Marchenko wrote:
  Andrew L. Gould wrote:
   On Wednesday 21 July 2004 08:39 am, Maksym Marchenko wrote:
  Hi!
  
  
  I have a Siemens 510 laptop with 128 MB RAM and 4GB HDD.
  It has no Network card onboard. So I have only wireless pccard
  ORiNOCO Silver.
  I had before Intel Wireless/PRO 2011B. This one was bad (for
   FreeBSD) Now I have ORiNOCO, but I can't make it working.
  It works in Linux, but I want FreeBSD.
  I have compile new kernel, but it says:
  CIS is too long - truncating!
  pccard0: Card has no functions!
  cbb0: PC Card card activation failed
  
  Can anybody say, what must I doing?
  
  Thanks in advance.
  
   Look for information regarding your laptop brand/model, or similar
   models, at:
  
   http://gerda.univie.ac.at/freebsd-laptops/
  
   What version of FreeBSD are you running?  I'm not 
 familiar with the
   laptop; but FreeBSD 5.* has problems with many of the older pcmcia
   slots.  If you're running FreeBSD 5.*, consider:
  
   1. recompiling the kernel using the OLDCARD kernel configuration
   file. 2. If ACPI is enabled, try booting with it 
 disabled. (If it's
   disabled, try booting with it enabled.)
   3. You might also consider changing to FreeBSD 4.10, the 
 production
   version of FreeBSD.
 
  I was already at http://gerda.univie.ac.at/freebsd-laptops/
 
  I'm running 5.2 , I had 4.9, bat it was the same trouble.
  May be 4.10 is better that way ...
 
  I've not found a reference about including OLDCARD during kernel
  compiling. How can I do that?
 
 If I'm reading OLDCARD correctly, it references GENERIC; so if you're 
 still using a GENERIC kernel, you can:
 
   #unless you're the only user on a standalone pc, boot 
 into single user
   #login as root
   cd /usr/src
   make clean
   make buildkernel KERNCONF=OLDCARD
   make installkernel KERNCONF=OLDCARD
   shutdown -r now
 


I am running an orinoco silver on a hp omnibook 800ct
Durning install, when pccard is enabled choose the 
default address range, then select irq 3 and the card
should be recognized.  Mind you this is on 4.9-Release.

Works very nicely for me.

btw I had to give ssid to ifconfig extras.

dave
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


CD behavior on a Toshiba A25-S279

2004-07-21 Thread Joseph Peterson
I've got a Toshiba laptop and want to burn CDs from X11, I have
installed xcdroast, but it can't find any devices.  camcontrol shows
the following:
 # camcontrol devlist
TOSHIBA DVD-ROM SD-R2412 1330at scbus1 target 0 lun 0 (cd0)
and /boot/loader.conf has the following entries:
hw.ata.atapi=1
agp_load=YES

I did have hw.ata.atapi_dma=1 in loader.conf, but when I did, the
machine would take forever to boot when it got to discovering acd0 and
kept giving me READ errors.

Any thoughts?

Thank you!


-joe
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: AW: AW: need a good 32-bit ata/100 raid

2004-07-21 Thread Brad Tarver
that's good to know. i'll have to remember that...
Alexander Liebau wrote on 7/21/2004 8:48 AM:
i havent seen a 3ware-card that isnt supported by freebsd yet :)
-Ursprngliche Nachricht-
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Auftrag von Brad Tarver
Gesendet: Mittwoch, 21. Juli 2004 14:04
An: [EMAIL PROTECTED]
Betreff: RE: AW: need a good 32-bit ata/100 raid
Haven't installed it yet. 3ware support says it's natively supported under Freebsd 5.2.1. I don't know about 4.10 (didn't ask...)
 
I got my card at www.directron.com for $115
 
 

	-Original Message- 
	From: Mike [mailto:[EMAIL PROTECTED] 
	Sent: Tue 7/20/2004 11:42 PM 
	To: Brad Tarver 
	Cc: [EMAIL PROTECTED] 
	Subject: Re: AW: need a good 32-bit ata/100 raid
	
	

Brad Tarver wrote:
 thanks! I went with the 3ware 7006-2!

Brad,

I'm also in the market for a good (supported) IDE RAID controller.  I
noticed that you went with the 3ware 7006-2.  I found that card at:

avadirect.com for $125.00
siliconmechanics.com for $120.00

Where did you get for controller at?  Is this about what you paid for yours?

Have you installed you card yet?

Did the install go smoothly with 4.10?

Thanks,
Michael



 Alexander Liebau wrote on 7/8/2004 5:58 PM:

 www.3ware.com :)

 64 bit cards but they run fine in 32 bit slots.. but they might be too
 expensive since they are for professional solutions :)



 -Ursprungliche Nachricht-
 Von: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Auftrag von Brad Tarver
 Gesendet: Freitag, 9. Juli 2004 00:08
 An: [EMAIL PROTECTED]
 Betreff: need a good 32-bit ata/100 raid


 are there any good 32-bit ata/100 raid cards for Freebsd 5.2.1? that are
 natively supported? I only need raid1 capability.



 --
 Brad Tarver, CCNA
 Network Administrator
 Forman Perry Watkins Krutz  Tardy
 188 East Capitol Street
 Suite 200
 Jackson, MS 39201
 United States
 Ph: 601-960-8600
 Fax: 601-960-8613

 A bad day on UNIX is better than a good day on Windows
 Brad Tarver
 LUGOJ.org mailing list, 6/17/2004



 Important Confidentiality And Limited Liability Notice

 This email and any attachments may be confidential and protected by
 law. If
 you are not the intended recipient, be aware that any disclosure,
 copying,
 distribution or use of the email or any attachment is prohibited. If you
 have received this email in error, please notify us immediately by
 replying
 to the sender and deleting this copy and the reply from your system.
 Please
 note that any views or opinions expressed in this email are solely
 those of
 the author and do not necessarily represent those of Forman Perry Watkins
 Krutz  Tardy LLP. (FPWKT). The recipient should check this email and
 any
 attachments for the presence of viruses. FPWKT accepts no liability
 for any
 damage caused by any virus transmitted by this email. Thank you for your
 cooperation.





 

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]



Important Confidentiality And Limited Liability Notice
This email and any attachments may be confidential and protected by law. If you are not the 
intended recipient, be aware that any disclosure, copying, distribution or use of the email or any 
attachment is prohibited. If you have received this email in error, please notify us immediately 
by replying to the sender and deleting this copy and the reply from your system. Please note that 
any views or opinions expressed in this email are solely those of the author and do not 
necessarily represent those of Forman Perry Watkins Krutz  Tardy LLP. (FPWKT). The 
recipient should check this email and any attachments for the presence of viruses. FPWKT 
accepts no liability for any damage caused by any virus transmitted by this email. Thank you for 
your cooperation.

--
Brad Tarver, CCNA
Network Administrator
Forman Perry Watkins Krutz  Tardy
188 East Capitol Street
Suite 200
Jackson, MS 39201
United States
Ph: 601-960-8600
Fax: 601-960-8613
Important Confidentiality And Limited Liability Notice
This email and any attachments 

Re: downloadable location of old FreeBSD packages

2004-07-21 Thread Kris Kennaway
On Wed, Jul 21, 2004 at 11:53:51PM +0800, Paul Hamilton wrote:
 Hi,
 
 I am hunting around for mpd package for FreeBSD 4.6  I have tried version
 mpd-3.14 for FreeBSD 4.7, but get this error when trying to run it:
 
 /usr/libexec/ld-elf.so.1: Undefined symbol _shadow_DES_check_key
 referenced from COPY relocation in /usr/local/sbin/mpd
 
 I have also tried version mpd-3.15 as well, but get the same results.
 
 This is a remote server, running on a busy modem, so I don't really want to
 try and upgrade to the latest ports tree.  Also the latest apparently
 requires OpenSSL, and hence OpenSSH, and buy, I don't want to stuff that
 upgrade up.  I can't afford the drive.

See http://mirrorlist.freebsd.org/FBSDsites.php

Note that old versions of openssl have multiple security
vulnerabilities, so it's not advisable to use them.

Kris


pgp8GkxPpCILO.pgp
Description: PGP signature


Re: Your 3rd and last chance to help me with vmware

2004-07-21 Thread Ben Paley
On Wednesday 21 July 2004 12:06, Dick Davies wrote:


etc, etc...


 sod portupgrade - manually pkg_delete all the vmware crap, then pkg_add it.

  On boot, I get this message:
 
  kldload: can't load /usr/local/lib/vmware/modules/vmnet.ko: No such file
  or directory
 
  -bash-2.05b# locate vmnet.ko
  /usr/local/lib/vmware/modules/vmnet.ko

 Is the file actually there - what does ls say?


Thanks a lot for your help - on the advice of various people I actually moved 
this over to current@; the 'current' (geddit?) state of play is that vmware 
runs ok,  but the vm doesn't boot, and I did make a note of all the relevant 
error messages (at least I think they were relevant, and I think it was all 
of them...)

Thanks a lot for your help (and everyone else's, even if I seemed to spurn 
their good advice), I really appreciate it!

Cheers,
Ben
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Firewall, OpenVPN and Squid question

2004-07-21 Thread Paul Hillen
Hi everyone,

 

I am relatively new to the Unix world, have setup a couple TINYDNS server
and a postfix relay server, so that is the extent of my FreeBSD knowledge.

 

I have 2 Microsoft ISA servers in a BACK to BACK configuration providing a
DMZ in-between that I would like to get rid of, way more trouble than what
they are worth. They work well for about a month and then the performance
goes south.

 

There are 3 remote sites connecting to our network using GATEWAY to GATEWAY
VPN and around 25 remote VPN users that must be dealt with also. Last item,
there is a chance that I will have to connect 3 more remote sites into the
picture within the next 6 months, so this needs to be scalable to handle the
load..

 

My question is, what is the best way to set this up. Here are my thoughts,
but not sure what is the best way.

*   Setup one FreeBSD box that contains FIREWALL, SQUID and OPENVPN or
*   Setup 3 separate boxes to break up the work load.

 

Many thanks in advance for being patient with what I am sure is stupid
beginner questions to most of you.

 

When giving your choice of which setup, please point me in the direction of
the best resource to put it all together and the hardware requirement you
would recommend. I have a truck load of PII 300 - 450's due to upgrades, so
if I can use them great, if not, time to go on a spending spree.

 

Thanks again

Paul

 

 

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Your 3rd and last chance to help me with vmware

2004-07-21 Thread Drew Tomlinson
On 7/20/2004 3:45 PM Thompson, Jimi wrote:
FreeBSD has 3 types of distros - CURRENT, STABLE, and
RELEASE. In order of increasing stability, they are:  

CURRENT = currently in development (Alpha) and by far the least stable
of the 3
RELEASE = released to the populous at large (Beta) and fairly stable
but may have some issues 

STABLE = well, just that, stable and the production release of the OS 
 

You've got STABLE and RELEASE mixed-up.  STABLE is the beta and RELEASE 
is production.  A RELEASE is a snapshot in the STABLE branch that has 
been tested and deemed ready for production.  STABLE is usually stable 
but is still a development branch and thus, beta.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/current-stable.html
HTH,
Drew
--
Visit The Alchemist's Warehouse
Magic Tricks, DVDs, Videos, Books,  More!
http://www.alchemistswarehouse.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


cam/passthrough device question

2004-07-21 Thread Wojciech Puchar
i'm now running generic 5.2.1 kernel (to narrow list of possible sources).

i have:
atapci0: Intel PIIX4 UDMA33 controller port 0xf000-0xf00f at device 7.1
on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata0: [MPSAFE]
ata1: at 0x170 irq 15 on atapci0
ata1: [MPSAFE]

and

GEOM: create disk ad0 dp=0xc273f560
ad0: 12419MB ST313032A [25232/16/63] at ata0-master UDMA33
acd0: CDRW RICOH CD-R/RW MP7083A at ata1-master PIO4


devfs mounted /dev/ contains /dev/xpt0

so it does have xpt interface.


camcontrol devlist -v shows:
-su-2.05b# camcontrol devlist -v
scbus-1 on xpt0 bus 0:
 at scbus-1 target -1 lun -1 (xpt0)


CD-RW drive isn't shown and of cource cdrecord doesn't see anything too.

what i'm doing wrong?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ORiNOCO Wireless - troubles

2004-07-21 Thread Maksym Marchenko
On Wed, 21 Jul 2004 10:53:45 -0500, Andrew L. Gould [EMAIL PROTECTED] 
wrote:

On Wednesday 21 July 2004 10:27 am, Maksym Marchenko wrote:
Andrew L. Gould wrote:
 On Wednesday 21 July 2004 08:39 am, Maksym Marchenko wrote:
Hi!


I have a Siemens 510 laptop with 128 MB RAM and 4GB HDD.
It has no Network card onboard. So I have only wireless pccard
ORiNOCO Silver.
I had before Intel Wireless/PRO 2011B. This one was bad (for
 FreeBSD) Now I have ORiNOCO, but I can't make it working.
It works in Linux, but I want FreeBSD.
I have compile new kernel, but it says:
CIS is too long - truncating!
pccard0: Card has no functions!
cbb0: PC Card card activation failed

Can anybody say, what must I doing?

Thanks in advance.

 Look for information regarding your laptop brand/model, or similar
 models, at:

 http://gerda.univie.ac.at/freebsd-laptops/

 What version of FreeBSD are you running?  I'm not familiar with the
 laptop; but FreeBSD 5.* has problems with many of the older pcmcia
 slots.  If you're running FreeBSD 5.*, consider:

 1. recompiling the kernel using the OLDCARD kernel configuration
 file. 2. If ACPI is enabled, try booting with it disabled. (If it's
 disabled, try booting with it enabled.)
 3. You might also consider changing to FreeBSD 4.10, the production
 version of FreeBSD.
I was already at http://gerda.univie.ac.at/freebsd-laptops/
I'm running 5.2 , I had 4.9, bat it was the same trouble.
May be 4.10 is better that way ...
I've not found a reference about including OLDCARD during kernel
compiling. How can I do that?
If I'm reading OLDCARD correctly, it references GENERIC; so if you're
still using a GENERIC kernel, you can:
#unless you're the only user on a standalone pc, boot into single user
#login as root
cd /usr/src
make clean
make buildkernel KERNCONF=OLDCARD
make installkernel KERNCONF=OLDCARD
shutdown -r now
That is wrote in FreeBSD Handbook:
Procedure 2. Building a Kernel the ``New'' Way
Change to the /usr/src directory.
# cd /usr/src
Compile the kernel.
# make buildkernel KERNCONF=MYKERNEL
Install the new kernel.
# make installkernel KERNCONF=MYKERNEL
But I don't know, because elder OLDCARD was bigger, actually that
was like GENERIC. But in 5.2 he isn't so big, only 17 lines
http://fxr.watson.org/fxr/source/i386/conf/OLDCARD?v=RELENG52
So I don't know, can I really do this with that new OLDCARD???

--
 M2,Opera: 
http://www.opera.com/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Streaming Audio

2004-07-21 Thread Foster, ThomasX
Check out Darwin Streaming Server.. its in the ports tree

Thomas Foster


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Justin W.
Pauler
Sent: Wednesday, July 21, 2004 7:29 AM
To: [EMAIL PROTECTED]
Subject: Streaming Audio

Hello Everyone,

I've got quite a collection of Ogg Vorbis (.ogg) files on my FreeBSD
machine
that I would like to be able to stream for personal use (really I'd like
to
be able to listen to them at work! :)) I've done quite a bit of research
and
can't find any software to do exactly what I need.

IceCast and Shoutcast look like they'll both work just fine for the
server,
no problems there. However, as for the source client, that's another
story.
This machine was built as a mini-server, I use it for IRC/DNS/WWW and so
forth, therefore, has no X server and no soundcard (for the record it
has a
soundcard built onto the motherboard AC97, but FreeBSD 4.10 sees it as
chip0, so I don't think it's useable), and all of the source clients I
have
found either require a soundcard or the X system to be installed.

Is there any help for me? I remember the days of Windows streaming with
Shoutcast, in that case, Winamp connected with a socket to shoutcast and
completely bypassed the soundcard... Anything like that for FreeBSD?

Thanks All


--
Justin W. Pauler
Network Administrator
AirRover Wi-Fi Corporation
E-Mail: [EMAIL PROTECTED]
Phone: (225) 923-1034 x87
Toll Free: (888) 720-7301 x87
WWW: http://www.airroverwifi.com
 


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cam/passthrough device question

2004-07-21 Thread Peter Risdon
Wojciech Puchar wrote:
i'm now running generic 5.2.1 kernel (to narrow list of possible sources).
i have:
atapci0: Intel PIIX4 UDMA33 controller port 0xf000-0xf00f at device 7.1
on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata0: [MPSAFE]
ata1: at 0x170 irq 15 on atapci0
ata1: [MPSAFE]
and
GEOM: create disk ad0 dp=0xc273f560
ad0: 12419MB ST313032A [25232/16/63] at ata0-master UDMA33
acd0: CDRW RICOH CD-R/RW MP7083A at ata1-master PIO4
devfs mounted /dev/ contains /dev/xpt0
so it does have xpt interface.
camcontrol devlist -v shows:
-su-2.05b# camcontrol devlist -v
scbus-1 on xpt0 bus 0:
 at scbus-1 target -1 lun -1 (xpt0)
CD-RW drive isn't shown and of cource cdrecord doesn't see anything too.
what i'm doing wrong?
I think you need:
device  atapicam
in the kernel, and it isn't in GENERIC
Peter.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


HP DeskJet

2004-07-21 Thread Paulo Fonseca Jr.
how to print easly with HP deskjet on freebsd5.1+kde3.1.2 ? Can anybody help 
me?  

Zumba.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FlashPlugin+Konqueror (nspluginscan)

2004-07-21 Thread Paulo Fonseca Jr.
How to enable plugins on konqueror ? I tried to: (on freebsd 5.1 and KDE 
3.1.2)

1) update libmap.conf

# Flash6 with Konqueror (temporary setting)
[/usr/local/lib/linux-flashplugin6/libflashplayer.so]
libpthread.so.0 pluginwrapper/flash6.so
libdl.so.2  pluginwrapper/flash6.so
libz.so.1   libz.so.2
libstdc++-libc6.2-2.so.3libstdc++.so.4
libm.so.6   libm.so.2
libc.so.6   pluginwrapper/flash6.so

2) Setting -- Configure konqueror - Plugins - Search for new plugins and 
it returns a message: The nspluginscan executable cannot be found. Netscape 
plugins will not be scanned.

Where can I search for nspluginscan ? (I installed netscape7 looking for 
nspluginscan uselessly!

Epilogue: I hope that it's a question for this list!

Zumba.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Firewall, OpenVPN and Squid question

2004-07-21 Thread Steve Bertrand
 There are 3 remote sites connecting to our network using GATEWAY to
 GATEWAY
 VPN and around 25 remote VPN users that must be dealt with also. Last
 item,
 there is a chance that I will have to connect 3 more remote sites into the
 picture within the next 6 months, so this needs to be scalable to handle
 the
 load..

 My question is, what is the best way to set this up. Here are my thoughts,
 but not sure what is the best way.

 * Setup one FreeBSD box that contains FIREWALL, SQUID and OPENVPN or
 * Setup 3 separate boxes to break up the work load.


What will the load requirements be? (How many users will require the use
of squid).

I have a FBSD PIII 800 w/256M RAM as a firewall for one of our clients,
with 3 OpenVPN instances running simultaneously (Two are site-site, and
one is an XP-client-site). The box is also performing NAT (ipfw/natd) for
the internal users, which when all are accounted for equal ~120, and I
find it works great. There are about 30 users through the VPN's, though
usually never on all at the same time.

Depending on caching requirements though, you might be better off
splitting that off onto it's own box, especially if you have the hardware
readily available as you suggest.

YMMV.

Steve



 Many thanks in advance for being patient with what I am sure is stupid
 beginner questions to most of you.



 When giving your choice of which setup, please point me in the direction
 of
 the best resource to put it all together and the hardware requirement you
 would recommend. I have a truck load of PII 300 - 450's due to upgrades,
 so
 if I can use them great, if not, time to go on a spending spree.



 Thanks again

 Paul





 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: NAT trouble

2004-07-21 Thread Cleyton Agapito
Hi friends,

I using nat in my home dial connection. The route is fine but my machine is
responding that the network is unrecheable for names, and if I put the DNS
adresses in resolv.conf it works. I did some like that a time ago in a linux
suite (that is getting the same problem after a upgrade), what I missing?

Thanks

Björn Lindström wrote:

 I'm having some trouble to get NAT working on the Internet gateway of my
 home LAN.

 Here's my setup:

 I have compiled a kernel with the following options added:

 options IPFIREWALL
 options IPFIREWALL_VERBOSE
 options IPFIREWALL_VERBOSE_LIMIT=10
 options IPDIVERT

 I have these relevant settings in my rc.conf:

 gateway_enable=YES
 firewall_enable=YES
 firewall_type=OPEN
 natd_enable=YES
 natd_interface=tun0
 natd_flags=-f /etc/natd.conf

 (Where tun0 is the interface of my ADSL connection.)

 My natd.conf only contains this line:

 redirect_port tcp 192.168.0.2:15000 15000

 Now, when I reboot, ipfw show shows this:

 00050   0  0 divert 8668 ip from any to any via tun0
 00100   182   15680 allow ip from any to any via lo0
 00200 0   0 deny ip from any to 127.0.0.0/8
 00300 0   0 deny ip from 127.0.0.0/8 to any
 65000 11015 3073646 allow ip from any to any
 65535 4 236 deny ip from any to any

 Here are the problems:

 * ps ax|grep natd shows that natd is not running.

 * While I still cat get to the gateway from the inside, connections to
   the Net doesn't work, until I 'ipfw delete 00050'.

 I hope someone here has a clue as to what may be wrong with my setup.

 Thanks in advance,

 Björn

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Firewall, OpenVPN and Squid question

2004-07-21 Thread Paul Hillen
I have around 100 users at our site that would require the use of squid, we
house are own webserver, mail server, public DNS servers in the DMZ and 2
private DNS servers on the internal network, used by both Internal and VPN
users.

Sites connecting Gateway to Gateway, there are apprx as follows;
Site 1 - 25 users
Site 2 - 5 users
Site 3 - 12 users
Our site VPN users are Apprx 25, and about 50% of them are connected at any
given time.

My first thought is to put up a Firewall box that can the load of publishing
many internal boxes and publish a box with OpenVPN and another for SQUID
and just keep them all separate.

Will this setup put to much strain on the FIREWALL box or will it have no
problem handling the NAT/ROUTING in this configuration.

Thanks in advance
Paul



-Original Message-
From: Steve Bertrand [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 21, 2004 2:10 PM
To: Paul Hillen
Cc: [EMAIL PROTECTED]
Subject: Re: Firewall, OpenVPN and Squid question

 There are 3 remote sites connecting to our network using GATEWAY to
 GATEWAY
 VPN and around 25 remote VPN users that must be dealt with also. Last
 item,
 there is a chance that I will have to connect 3 more remote sites into the
 picture within the next 6 months, so this needs to be scalable to handle
 the
 load..

 My question is, what is the best way to set this up. Here are my thoughts,
 but not sure what is the best way.

 * Setup one FreeBSD box that contains FIREWALL, SQUID and OPENVPN or
 * Setup 3 separate boxes to break up the work load.


What will the load requirements be? (How many users will require the use
of squid).

I have a FBSD PIII 800 w/256M RAM as a firewall for one of our clients,
with 3 OpenVPN instances running simultaneously (Two are site-site, and
one is an XP-client-site). The box is also performing NAT (ipfw/natd) for
the internal users, which when all are accounted for equal ~120, and I
find it works great. There are about 30 users through the VPN's, though
usually never on all at the same time.

Depending on caching requirements though, you might be better off
splitting that off onto it's own box, especially if you have the hardware
readily available as you suggest.

YMMV.

Steve



 Many thanks in advance for being patient with what I am sure is stupid
 beginner questions to most of you.



 When giving your choice of which setup, please point me in the direction
 of
 the best resource to put it all together and the hardware requirement you
 would recommend. I have a truck load of PII 300 - 450's due to upgrades,
 so
 if I can use them great, if not, time to go on a spending spree.



 Thanks again

 Paul





 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ORiNOCO Wireless - troubles

2004-07-21 Thread Andrew L. Gould
On Thursday 22 July 2004 12:49 pm, Maksym Marchenko wrote:
 On Wed, 21 Jul 2004 10:53:45 -0500, Andrew L. Gould
 [EMAIL PROTECTED]

 wrote:
  On Wednesday 21 July 2004 10:27 am, Maksym Marchenko wrote:
  Andrew L. Gould wrote:
   On Wednesday 21 July 2004 08:39 am, Maksym Marchenko wrote:
  Hi!
  
  
  I have a Siemens 510 laptop with 128 MB RAM and 4GB HDD.
  It has no Network card onboard. So I have only wireless pccard
  ORiNOCO Silver.
  I had before Intel Wireless/PRO 2011B. This one was bad (for
   FreeBSD) Now I have ORiNOCO, but I can't make it working.
  It works in Linux, but I want FreeBSD.
  I have compile new kernel, but it says:
  CIS is too long - truncating!
  pccard0: Card has no functions!
  cbb0: PC Card card activation failed
  
  Can anybody say, what must I doing?
  
  Thanks in advance.
  
   Look for information regarding your laptop brand/model, or
   similar models, at:
  
   http://gerda.univie.ac.at/freebsd-laptops/
  
   What version of FreeBSD are you running?  I'm not familiar with
   the laptop; but FreeBSD 5.* has problems with many of the older
   pcmcia slots.  If you're running FreeBSD 5.*, consider:
  
   1. recompiling the kernel using the OLDCARD kernel configuration
   file. 2. If ACPI is enabled, try booting with it disabled. (If
   it's disabled, try booting with it enabled.)
   3. You might also consider changing to FreeBSD 4.10, the
   production version of FreeBSD.
 
  I was already at http://gerda.univie.ac.at/freebsd-laptops/
 
  I'm running 5.2 , I had 4.9, bat it was the same trouble.
  May be 4.10 is better that way ...
 
  I've not found a reference about including OLDCARD during kernel
  compiling. How can I do that?
 
  If I'm reading OLDCARD correctly, it references GENERIC; so if
  you're still using a GENERIC kernel, you can:
 
  #unless you're the only user on a standalone pc, boot into single
  user #login as root
  cd /usr/src
  make clean
  make buildkernel KERNCONF=OLDCARD
  make installkernel KERNCONF=OLDCARD
  shutdown -r now

 That is wrote in FreeBSD Handbook:
 Procedure 2. Building a Kernel the ``New'' Way

 Change to the /usr/src directory.
 # cd /usr/src
 Compile the kernel.
 # make buildkernel KERNCONF=MYKERNEL
 Install the new kernel.
 # make installkernel KERNCONF=MYKERNEL

 But I don't know, because elder OLDCARD was bigger, actually that
 was like GENERIC. But in 5.2 he isn't so big, only 17 lines

 http://fxr.watson.org/fxr/source/i386/conf/OLDCARD?v=RELENG52

 So I don't know, can I really do this with that new OLDCARD???

I think so.  Look for a line in OLDCARD that says:

include GENERIC

If you 'make buildkernel' and it finishes successfully, you probably 
have a good kernel.  If it errors out, don't install it -- do a 'make 
clean' instead.

Andrew Gould
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: HP DeskJet

2004-07-21 Thread Andrew L. Gould
On Tuesday 20 July 2004 09:22 pm, Paulo Fonseca Jr. wrote:
 how to print easly with HP deskjet on freebsd5.1+kde3.1.2 ? Can
 anybody help me?

 Zumba.

I use apsfilter.

Better writers than myself have already contributed to the cause:

http://www.onlamp.com/pub/a/bsd/2004/07/08/FreeBSD_Basics.html
http://www.onlamp.com/pub/a/bsd/2003/11/06/Big_Scary_Daemons.html
http://www.onlamp.com/pub/a/bsd/2004/02/05/Big_Scary_Daemons.html

Best of luck,

Andrew Gould
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Firewall, OpenVPN and Squid question

2004-07-21 Thread Steve Bertrand
 I have around 100 users at our site that would require the use of squid,
 we
 house are own webserver, mail server, public DNS servers in the DMZ and 2
 private DNS servers on the internal network, used by both Internal and VPN
 users.

 Sites connecting Gateway to Gateway, there are apprx as follows;
 Site 1 - 25 users
 Site 2 - 5 users
 Site 3 - 12 users
 Our site VPN users are Apprx 25, and about 50% of them are connected at
 any
 given time.

 My first thought is to put up a Firewall box that can the load of
 publishing
 many internal boxes and publish a box with OpenVPN and another for SQUID
 and just keep them all separate.

 Will this setup put to much strain on the FIREWALL box or will it have no
 problem handling the NAT/ROUTING in this configuration.

I'll go as far as to say that it should have no problem. At the ISP I am
currently working full time for, we recently deployed an ipfw bridge
configured firewall (internally) to protect our core servers from improper
access. There's 8 servers in all (mail, web, mysql, ftp, radius, ssh and
dns).

We have about 6000 users, and the FBSD firewall never ever hiccup'ed. I
could even run tcpdump for hours, and it would rarely ever drop even a
single packet.

Sounds like a good setup you are planning. I would set it up, implement it
(with the old setup on standby), and if you find performance problems,
pull the drive out of the P3 and do as you say, go on a 'spending spree',
and put the drive directly into a p4 with a gig of memory, and drop it
back in place.

Please note that natd is NOT running on the ISP firewall, but on the other
such setup it is, and Ive never seen any performance problems at all.

Steve


 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]





___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Windows X

2004-07-21 Thread Vulpes Velox
On Wed, 21 Jul 2004 07:57:26 -0700
Joshua Tinnin [EMAIL PROTECTED] wrote:

 I've used Pine a great deal in the past. Right now I receive far too
 much email, which I need to be able to access quickly in ways that
 Pine can't do as well for me. I need a complex folder tree and HTML
 view (though HTML is often not necessary in email, but I can't
 educate everyone else why), quick access to many accounts and mail
 protocols within the same client, and many other tools, or at least
 it makes email much more efficient for me to have it all in one
 place. I've tried duplicating what I need in Pine and other text
 clients with other tools, but it never works as efficiently as a GUI
 client with the right tools built in. One day I'll write my own,
 though, without as much overhead as KMail or just clean that one up.


If you want to use kmail under XFce, just find which menu you want to
put it under, click add and set it to run kmail :)


For mail, I am fond of sylpheed-claws myself :)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Windows X

2004-07-21 Thread Joshua Tinnin
On Wednesday 21 July 2004 11:41 am, Vulpes Velox [EMAIL PROTECTED] wrote:

 If you want to use kmail under XFce, just find which menu you want to
 put it under, click add and set it to run kmail :)

Yeah, already done, but thanks. Next, I'm planning on checking out the 
goodies ... most are probably not necessary for me, though I'd like to have 
network/system load indicators on the panel.

 For mail, I am fond of sylpheed-claws myself :)

Ah, I've heard good things about it but haven't installed it. I like the fact 
that it's GTK+ based, but IIRC when considering it in the past, there were a 
couple things it didn't have that KMail did, and I needed them, though that 
may have changed since then. Will have to give it a whirl soon ...

- jt
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Apache/mod_php4/mysql issue

2004-07-21 Thread Robert Munn
I recently upgraded apache2 and mod_php4 using portupgrade.  Now all my scripts that
reference mysql fail with the error message:

PHP Fatal error:  Call to undefined function:  mysql_connect() in 
/usr/users/munn/public_html/Testing/MySQL.php

I re-built Apache and mod_php4

with the following commands

cd /usr/ports/www/apache2
make install
cd ../mod_php4
make install WITH_APACHE2=1

and the script ?php phpinfo(); ?
runs correctly.  Scripts referencing mysql access fail with undefined function 
messages.

When I built the files before I vaguely remember being presented with a dialog box 
that offered various
options one of which involved mysql. I no longer get any options choice.

Here is the information returned by mysql -V and httpd -v.

Any help would be appreciated.


mysql  Ver 12.22 Distrib 4.0.20, for portbld-freebsd4.9 (i386)

Server version: Apache/2.0.50
Server built:   Jul 21 2004 10:26:41
Server's Module Magic Number: 20020903:8
Architecture:   32-bit
Server compiled with
-D APACHE_MPM_DIR=server/mpm/prefork
-D APR_HAS_SENDFILE
-D APR_HAS_MMAP
-D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
-D APR_USE_FLOCK_SERIALIZE
-D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
-D APR_HAS_OTHER_CHILD
-D AP_HAVE_RELIABLE_PIPED_LOGS
-D HTTPD_ROOT=/usr/local
-D SUEXEC_BIN=/usr/local/bin/suexec
-D DEFAULT_PIDLOG=/var/run/httpd.pid
-D DEFAULT_SCOREBOARD=/var/run/apache_runtime_status
-D DEFAULT_LOCKFILE=/var/run/accept.lock
-D DEFAULT_ERRORLOG=/var/log/httpd-error.log
-D AP_TYPES_CONFIG_FILE=etc/apache2/mime.types
-D SERVER_CONFIG_FILE=etc/apache2/httpd.conf


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: NAT trouble

2004-07-21 Thread JJB
Add this statement to your ppp.conf  file

enable dns


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Cleyton
Agapito
Sent: Wednesday, July 21, 2004 2:09 PM
Cc: [EMAIL PROTECTED]
Subject: Re: NAT trouble

Hi friends,

I using nat in my home dial connection. The route is fine but my
machine is
responding that the network is unrecheable for names, and if I put
the DNS
adresses in resolv.conf it works. I did some like that a time ago in
a linux
suite (that is getting the same problem after a upgrade), what I
missing?

Thanks

Björn Lindström wrote:

 I'm having some trouble to get NAT working on the Internet gateway
of my
 home LAN.

 Here's my setup:

 I have compiled a kernel with the following options added:

 options IPFIREWALL
 options IPFIREWALL_VERBOSE
 options IPFIREWALL_VERBOSE_LIMIT=10
 options IPDIVERT

 I have these relevant settings in my rc.conf:

 gateway_enable=YES
 firewall_enable=YES
 firewall_type=OPEN
 natd_enable=YES
 natd_interface=tun0
 natd_flags=-f /etc/natd.conf

 (Where tun0 is the interface of my ADSL connection.)

 My natd.conf only contains this line:

 redirect_port tcp 192.168.0.2:15000 15000

 Now, when I reboot, ipfw show shows this:

 00050   0  0 divert 8668 ip from any to any via tun0
 00100   182   15680 allow ip from any to any via lo0
 00200 0   0 deny ip from any to 127.0.0.0/8
 00300 0   0 deny ip from 127.0.0.0/8 to any
 65000 11015 3073646 allow ip from any to any
 65535 4 236 deny ip from any to any

 Here are the problems:

 * ps ax|grep natd shows that natd is not running.

 * While I still cat get to the gateway from the inside,
connections to
   the Net doesn't work, until I 'ipfw delete 00050'.

 I hope someone here has a clue as to what may be wrong with my
setup.

 Thanks in advance,

 Björn

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
[EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


ports-collection borked?

2004-07-21 Thread Svein Halvor Halvorsen

When rebuilding the index after cvsup-ing the ports collection I get lots
and lots of these lines:

/usr/ports/INDEX-5:11379:Port info line must consist of 10 fields.


This from a 15 min old port collection. The same happened earlier today
(which is why I retried just now). Is this a local problem, or is the
collection borken. Is there anything I could do locally?


SVein HAlvor
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Your 3rd and last chance to help me with vmware

2004-07-21 Thread Joshua Tinnin
On Wednesday 21 July 2004 10:20 am, Drew Tomlinson [EMAIL PROTECTED] 
wrote:
 On 7/20/2004 3:45 PM Thompson, Jimi wrote:
 FreeBSD has 3 types of distros - CURRENT, STABLE, and
 RELEASE. In order of increasing stability, they are:
 
 CURRENT = currently in development (Alpha) and by far the least stable
 of the 3
 
 RELEASE = released to the populous at large (Beta) and fairly stable
 but may have some issues
 
 STABLE = well, just that, stable and the production release of the OS

 You've got STABLE and RELEASE mixed-up.  STABLE is the beta and RELEASE
 is production.  A RELEASE is a snapshot in the STABLE branch that has
 been tested and deemed ready for production.  STABLE is usually stable
 but is still a development branch and thus, beta.

 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/current-stable.ht
ml

Then why do I hear that 5.2.1-RELEASE is not ready to be called STABLE? Why 
would it be downgraded? Why have there been no STABLE 5.x branches? Or am I 
just confused?

- jt
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache/mod_php4/mysql issue

2004-07-21 Thread Kevin D. Kinsey, DaleCo, S.P.
Robert Munn wrote:
I recently upgraded apache2 and mod_php4 using portupgrade.  Now all my scripts that
reference mysql fail with the error message:
PHP Fatal error:  Call to undefined function:  mysql_connect() in 
/usr/users/munn/public_html/Testing/MySQL.php
I re-built Apache and mod_php4
with the following commands
cd /usr/ports/www/apache2
make install
cd ../mod_php4
make install WITH_APACHE2=1
and the script ?php phpinfo(); ?
runs correctly.  

 

What does it say about SQL?  see below
Scripts referencing mysql access fail with undefined function messages.
 

You mentioned that already ;-)
When I built the files before I vaguely remember being presented with a dialog box 
that offered various
options one of which involved mysql. I no longer get any options choice.
 

Possibly your config was cached and used again; OTOH,
as you were using portupgrade, and the dialog box would
require TTY input, it seems more probably that you simply
got a default PHP install.
IIRC, there was/is an issue floating around with changes
in the MySQL libraries ... or else in PHP's interface with
them.  One fix was to recompile PHP --with-mysql=/path/to/mysql
instead of relying on native PHP support, IIRC.  Please
triple check this if this is a mission critical box.
Here is the information returned by mysql -V and httpd -v.
 

What I think we might need is the PHP config string
instead.
Good luck and good hunting...
Kevin Kinsey
DaleCo, S.P.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache/mod_php4/mysql issue

2004-07-21 Thread Dan Rue
On Wed, Jul 21, 2004 at 02:53:55PM -0400, Robert Munn wrote:
 I recently upgraded apache2 and mod_php4 using portupgrade.  Now all my scripts that
 reference mysql fail with the error message:
 
 PHP Fatal error:  Call to undefined function:  mysql_connect() in 
 /usr/users/munn/public_html/Testing/MySQL.php
 

From /usr/ports/UPDATING:
20040719:
  AFFECTS: users of PHP
  AUTHOR: [EMAIL PROTECTED]
 
  The old lang/php4 and lang/php5 ports have been splitted into 'base' PHP,
  PEAR, and shared extensions to allow more flexibility and add new features.
  Upgrading your current PHP installation will result in a 'base' PHP
  installation (no PEAR and no extensions).
  PEAR can be found in the new devel/php4-pear and devel/php5-pear ports, while
  the set of PHP extensions to install can be choosen via the meta-ports
  lang/php4-extensions and lang/php5-extensions, or installing singular
  extensions individually.

You need to install /usr/ports/databases/php4-mysql, and you'll probably need
to change your extension_dir in your php.ini to point to
/usr/local/lib/php/20020429 (or whichever dir you have in there).  

Dan
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Firewall, OpenVPN and Squid question

2004-07-21 Thread Micheal Patterson


- Original Message - 
From: Paul Hillen [EMAIL PROTECTED]
To: Steve Bertrand [EMAIL PROTECTED]; Paul Hillen [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, July 21, 2004 1:33 PM
Subject: RE: Firewall, OpenVPN and Squid question


 I have around 100 users at our site that would require the use of squid,
we
 house are own webserver, mail server, public DNS servers in the DMZ and 2
 private DNS servers on the internal network, used by both Internal and VPN
 users.

 Sites connecting Gateway to Gateway, there are apprx as follows;
 Site 1 - 25 users
 Site 2 - 5 users
 Site 3 - 12 users
 Our site VPN users are Apprx 25, and about 50% of them are connected at
any
 given time.

 My first thought is to put up a Firewall box that can the load of
publishing
 many internal boxes and publish a box with OpenVPN and another for SQUID
 and just keep them all separate.

 Will this setup put to much strain on the FIREWALL box or will it have no
 problem handling the NAT/ROUTING in this configuration.

 Thanks in advance
 Paul


Considering that many of the current hardware firewall solutions aren't much
more than either a BSD or Linux kernel in a ROM chip, with a 486 or 586
based cpu, memory, and a nice gui (Windows or Internal Web interface), I
can't see why a similar system on a PC would be any different.

--

Micheal Patterson
TSG Network Administration
405-917-0600

Confidentiality Notice:  This e-mail message, including any attachments, is
for the sole use of the intended recipient(s) and may contain confidential
and privileged information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the intended recipient, please
contact the sender by reply e-mail and destroy all copies of the original
message.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Firewall, OpenVPN and Squid question

2004-07-21 Thread Steve Bertrand
 We have about 6000 users, and the FBSD firewall never ever hiccup'ed. I
 could even run tcpdump for hours, and it would rarely ever drop even a
 single packet.

 What size hardware is your firewall running on to handle the potential of
 6000 users accessing your internal servers for mail, etc... The best I can
 come up with is a P4 1.8Ghz with 768MB memory, other than that I have
 PII's
 with around 384MB memory. I would have to assume the Squid server would be
 the best place for the P4?

This one is a P4 2.0 Ghz with 1024M memory. I'd try the P3 as the firewall
and the P4 as the squid server initially (all things considered so far).

 Sounds like a good setup you are planning. I would set it up, implement
 it
 (with the old setup on standby), and if you find performance problems,
 pull the drive out of the P3 and do as you say, go on a 'spending
 spree',
 and put the drive directly into a p4 with a gig of memory, and drop it
 back in place.

 Okay, the tough question, due you know of any good resources that I can
 use
 to put this together. Any pitfalls that I might want to think about in
 this
 design?

Well, searching ipfw+natd+howto in google is a great place to start. I
did not use one single definitive guide, I used a variety of sources, man
pages, sample rules, and finally conjured up what works for us.

In planning rules, I placed each openvpn connections rules in it's own
ruleset, as to allow a reload of each connections rules individually if
they needed to be changed.

I also would set up a 'fwd' rule, to forward all packets destined to ``any
80'' from the Internal net to be passed directly to the squid box, as then
you would have a transparent proxy. This will prevent you from having to
change browser settings.

 Please note that natd is NOT running on the ISP firewall, but on the
 other
 such setup it is, and Ive never seen any performance problems at all.

 I am assuming that I will have to use NATD on the firewall in this
 scenario,
 am I thinking right here?

It appears so, yes. natd(8) is quite flexible, and will allow you to many
things, including port forward etc. By the sounds of it, you are planning
on ridding yourself of a DMZ, which means your mail(etc) servers will be
behind the NAT router. natd will take care of this, however, another
option is to put in a third NIC into the box, connect it to a switch, plug
in the servers into the switch. Give each server it's own IP, and route
packets as nessicary to the servers.

Effectively, this will still allow you to keep your DMZ, but eliminating
one entire firewall server, and thus, one license of MS ISA server (and
the headaches that comes with it :o)

Sounds like you'll want to do some testing in a lab first. Hopefully all
your P3's you have available are still loaded with Windows so you can test
effectively and ensure everything works properly.

Steve


 Thanks again
 Paul




___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Firewall, OpenVPN and Squid question

2004-07-21 Thread Steve Bertrand
 I have around 100 users at our site that would require the use of squid,
 we
 house are own webserver, mail server, public DNS servers in the DMZ and
 2
 private DNS servers on the internal network, used by both Internal and
 VPN
 users.

 Sites connecting Gateway to Gateway, there are apprx as follows;
 Site 1 - 25 users
 Site 2 - 5 users
 Site 3 - 12 users
 Our site VPN users are Apprx 25, and about 50% of them are connected at
 any
 given time.

 My first thought is to put up a Firewall box that can the load of
 publishing
 many internal boxes and publish a box with OpenVPN and another for
 SQUID
 and just keep them all separate.

 Will this setup put to much strain on the FIREWALL box or will it have
 no
 problem handling the NAT/ROUTING in this configuration.

 Thanks in advance
 Paul


 Considering that many of the current hardware firewall solutions aren't
 much
 more than either a BSD or Linux kernel in a ROM chip, with a 486 or 586
 based cpu, memory, and a nice gui (Windows or Internal Web interface), I
 can't see why a similar system on a PC would be any different.


Yes, but take into consideration disk reads/writes. It is possible to
eliminate these tasks, and I have even done setups where everything was
flashed onto a CF card (ro) (obviously w/o logging capabilities). I did a
custom build, frequently referring to:

http://neon1.net/misc/minibsd.html

and put the system on an IDE-CF card converter.

Steve
 --

 Micheal Patterson
 TSG Network Administration
 405-917-0600

 Confidentiality Notice:  This e-mail message, including any attachments,
 is
 for the sole use of the intended recipient(s) and may contain confidential
 and privileged information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the intended recipient, please
 contact the sender by reply e-mail and destroy all copies of the original
 message.

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Your 3rd and last chance to help me with vmware

2004-07-21 Thread Charles Swiger
On Jul 21, 2004, at 2:34 PM, Joshua Tinnin wrote:
Then why do I hear that 5.2.1-RELEASE is not ready to be called STABLE?
FreeBSD's -CURRENT tree has generally been reasonably stable, but there 
have been periods (including quite recently with threading/#define 
PREEMPTION) where -CURRENT has not been reliable enough to qualify as 
-STABLE.

Why would it be downgraded? Why have there been no STABLE 5.x 
branches? Or am I
just confused?
There have been no 5.x branches which qualify as -STABLE, correct.
You may be confused, but it is the result of the extent of changes to 
5.x taking longer to settle down than the developers would want.  The 
hope was that 5.1 or 5.2 would be stable enough to promote 5.x to 
-STABLE perhaps six months ago.  This hasn't happened, and is the 
reason why there is a big push to get 5.3 stabilized and solid.

Again, there is some leeway for a .0 release, such as 5.0, to not be as 
stable as the earlier 4.x releases, but the extended period where 5.1 
and 5.2 were put out as RELEASES while 4.x remains -STABLE has not been 
helpful to users trying to determine what the best release for them to 
run should be.

Almost exactly one year ago, I wrote:
--
Matthew N. Dodd wrote:
[ ... ]
I'm still not sure we should be encouraging new features in -STABLE;
additional hardware support and bugfixes are one thing...
Doesn't the term MFC refer to a change or new feature that has 
already been added to -CURRENT, and is under consideration for being 
backported to -STABLE because the change is important, of general 
interest and utility, etc?

If the question is when should new features not be merged back into 
4.x, my response would be that should happen after 5.x is tagged as 
-STABLE and 5.x is being actively recommended for to all users 
including newbies, not just early adopters.  If the concern is is it 
better to spend time trying to get 5.x -STABLE then it is to spend time 
on 4.x, well, that makes perfect sense to me.

--
-Chuck
PS: What does not make much sense is 'releasing' a 'new version' of 
software which is not intended for the end userbase to actually use.

Attempting to reduce the scope of problems with a .0 release is a noble 
goal, but good intentions can be taken too far.  If a user asks what 
version should I run and the answer isn't the latest release, well, 
that indicates a problem.  If a release candidate isn't expected to be 
better than the prior numerical version for the end users, then the 
release candidate isn't ready.

Perhaps I'm drifting off-topic a bit, but I remember administering Sun 
machines during the transition from SunOS 4.1.x to what marketting 
called Solaris 2.x. Sun didn't do itself or anyone else a favor with 
SunOS 5.0 through about 5.5; it wasn't until Solaris 2.5.1/SunOS 5.5.1 
that Sun's customers got something significantly better than a .0 
release, or (perhaps arguably) better than the prior major version.  
That really sucked, people, so please excuse my vehemence.

[ Or don't.  If the comparison between SunOS 5.x and FreeBSD 5.x earns 
me flames, rabid criticism, and the undying emnity of whomever, so be 
it. :-) ]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ports-collection borked?

2004-07-21 Thread Kent Stewart
On Wednesday 21 July 2004 11:57 am, Svein Halvor Halvorsen wrote:
 When rebuilding the index after cvsup-ing the ports collection I get
 lots and lots of these lines:

 /usr/ports/INDEX-5:11379:Port info line must consist of 10 fields.


 This from a 15 min old port collection. The same happened earlier
 today (which is why I retried just now). Is this a local problem, or
 is the collection borken. Is there anything I could do locally?



Your make.conf and installed ports can affect the INDEX build. The USE_ 
or WITH_ adds features. My make.conf files don't have anything of that 
nature.

FWIW, I grabbed the cvsup16 1900 UTC update and had no problems building 
an INDEX on 4-stable or 5-current. Right now, I use portindex to build 
INDEX[-5]. The messages like you were seeing were occuring yesterday I 
tried a make index on 4-stable around 0700 UTC and didn't have any 
problem with it.

KEnt

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


freebsd on netapp veritas netbackup

2004-07-21 Thread Brent Bailey
we currently have a data center thats using a NetApp Veritas Cluster of
all Sun equipment. We also would like to add one of our freebsd servers to
this cluster. Has anyone done this ? or is it even possible.

Thanx in advance for any help


-- 
Brent Bailey



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


VNC on different port

2004-07-21 Thread Thomas_Knight
My configuration is as follows:

--- --- - --
| VNC | --- --- | FreeBSD | --- --- | Work Firewall | --- --- | ME |
--- --- - --

I am trying to redirect ports so I can get out through my works firewall
into my VNC Server. I can get it to work on port 8080 but not on 80 or 20 or
21. My work only allows 20, 21, 22, 80 through the firewall. Please see the
example below. 

This does work:
redirect_port tcp 10.0.3.21:5900 166.70.126.172:8080
This does not work:
redirect_port tcp 10.0.3.21:5900 166.70.126.172:80

Any one have any idea's?

Thanks,

Thomas


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Dumb perl upgrade question

2004-07-21 Thread Brent Wiese
 -Original Message-
 In the immortal words of Brent Wiese [EMAIL PROTECTED]...
  Am I missing some environment variable somewhere or what?
 
 Did you run 
 use.perl port
 after you upgraded the port?

D'oh!

See, I knew it was dumb. For some reason, I didn't think that needed to be
done after an upgrade since I'd done it after installing perl 5.8.2 from
ports originally.

But, its now looking at 5.8.4.

Thanks!
Brent 


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ports-collection borked?

2004-07-21 Thread 3BSD
On Wed, 21 Jul 2004 20:57:25 +0200 (CEST), Svein Halvor Halvorsen
[EMAIL PROTECTED] wrote:
 
 When rebuilding the index after cvsup-ing the ports collection I get lots
 and lots of these lines:
 
 /usr/ports/INDEX-5:11379:Port info line must consist of 10 fields.
 
 This from a 15 min old port collection. The same happened earlier today
 (which is why I retried just now). Is this a local problem, or is the
 collection borken. Is there anything I could do locally?

I did a cvsup after I read your e-mail just now and it finished
updating successfully, so its a problem on your end, unfortunately, I
can't help you with the problem since I've never had to encounter one
like it before. Sorry, hope I was of more help.

-Assad
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Your 3rd and last chance to help me with vmware

2004-07-21 Thread Joshua Tinnin
On Wednesday 21 July 2004 12:31 pm, Charles Swiger [EMAIL PROTECTED] wrote:
 On Jul 21, 2004, at 2:34 PM, Joshua Tinnin wrote:
  Then why do I hear that 5.2.1-RELEASE is not ready to be called STABLE?

 FreeBSD's -CURRENT tree has generally been reasonably stable, but there
 have been periods (including quite recently with threading/#define
 PREEMPTION) where -CURRENT has not been reliable enough to qualify as
 -STABLE.

  Why would it be downgraded? Why have there been no STABLE 5.x
  branches? Or am I
  just confused?

 There have been no 5.x branches which qualify as -STABLE, correct.

 You may be confused, but it is the result of the extent of changes to
 5.x taking longer to settle down than the developers would want.  The
 hope was that 5.1 or 5.2 would be stable enough to promote 5.x to
 -STABLE perhaps six months ago.  This hasn't happened, and is the
 reason why there is a big push to get 5.3 stabilized and solid.

 Again, there is some leeway for a .0 release, such as 5.0, to not be as
 stable as the earlier 4.x releases, but the extended period where 5.1
 and 5.2 were put out as RELEASES while 4.x remains -STABLE has not been
 helpful to users trying to determine what the best release for them to
 run should be.

OK, as I understand, the branches are -CURRENT and -STABLE. But I often see 
4.10-STABLE recommended for production use. This is probably due to what you 
describe above. What does RELEASE mean, as specifically as you can?

I'm using 5.2.1-RELEASE and am not planning on going 4.10-STABLE, as I can't 
due to hardware, and it's not a big deal as this isn't for production. But 
I'm curious ... is RELEASE supposed to be the *most* preferable candidate for 
someone considering a production OS, but just at this time, 5.x hasn't 
settled down? If it had settled down, would would the most preferable 
production snapshot in 5.x-STABLE be called RELEASE? And is this not the case 
now because 5.x is taking longer than it should, so RELEASE is there, even if 
perhaps it shouldn't be?

Ack!

Now I'm confusing myself ...

- jt
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ports-collection borked?

2004-07-21 Thread Dan Rue
On Wed, Jul 21, 2004 at 12:47:29PM -0700, 3BSD wrote:
 On Wed, 21 Jul 2004 20:57:25 +0200 (CEST), Svein Halvor Halvorsen
 [EMAIL PROTECTED] wrote:
  
  When rebuilding the index after cvsup-ing the ports collection I get lots
  and lots of these lines:
  
  /usr/ports/INDEX-5:11379:Port info line must consist of 10 fields.
  
  This from a 15 min old port collection. The same happened earlier today
  (which is why I retried just now). Is this a local problem, or is the
  collection borken. Is there anything I could do locally?
 
 I did a cvsup after I read your e-mail just now and it finished
 updating successfully, so its a problem on your end, unfortunately, I
 can't help you with the problem since I've never had to encounter one
 like it before. Sorry, hope I was of more help.

I can confirm the problem cvsup'd this morning and can't portsdb -Uu
without getting all those 10 fields lines..

5.2.1-RELEASE-p3, fwiw

dan
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: VNC on different port

2004-07-21 Thread Bill Moran
[EMAIL PROTECTED] wrote:

 My configuration is as follows:
 
 --- --- - --
 | VNC | --- --- | FreeBSD | --- --- | Work Firewall | --- --- | ME |
 --- --- - --
 
 I am trying to redirect ports so I can get out through my works firewall
 into my VNC Server. I can get it to work on port 8080 but not on 80 or 20 or
 21. My work only allows 20, 21, 22, 80 through the firewall. Please see the
 example below. 
 
 This does work:
 redirect_port tcp 10.0.3.21:5900 166.70.126.172:8080
 This does not work:
 redirect_port tcp 10.0.3.21:5900 166.70.126.172:80
 
 Any one have any idea's?

If your work uses a transparent proxy for port 80, it's going to see the
VNC traffic as invalid HTTP data and probably mangle it or drop it.

You'd actually be better off using ssh to do encrypted port tunnelling,
since your firewall allows it already.  Running VNC unencrypted across the
Internet is dangerous.

Either way, try one of the other available ports.  Port 22 unlikely to be
proxied in any case.

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ports-collection borked?

2004-07-21 Thread Soo-Hyun Choi
On my side, the cvsup server is running without any problem. I think it
could be figured out if you use another cvs server. If it still generates
the same messages, it may be no longer a server problem.

Soo-Hyun


- Original Message - 
From: Dan Rue [EMAIL PROTECTED]
To: 3BSD [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, July 21, 2004 9:00 PM
Subject: Re: ports-collection borked?


 On Wed, Jul 21, 2004 at 12:47:29PM -0700, 3BSD wrote:
  On Wed, 21 Jul 2004 20:57:25 +0200 (CEST), Svein Halvor Halvorsen
  [EMAIL PROTECTED] wrote:
  
   When rebuilding the index after cvsup-ing the ports collection I get
lots
   and lots of these lines:
  
   /usr/ports/INDEX-5:11379:Port info line must consist of 10 fields.
  
   This from a 15 min old port collection. The same happened earlier
today
   (which is why I retried just now). Is this a local problem, or is the
   collection borken. Is there anything I could do locally?
 
  I did a cvsup after I read your e-mail just now and it finished
  updating successfully, so its a problem on your end, unfortunately, I
  can't help you with the problem since I've never had to encounter one
  like it before. Sorry, hope I was of more help.

 I can confirm the problem cvsup'd this morning and can't portsdb -Uu
 without getting all those 10 fields lines..

 5.2.1-RELEASE-p3, fwiw

 dan
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
[EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Your 3rd and last chance to help me with vmware

2004-07-21 Thread Charles Swiger
On Jul 21, 2004, at 3:51 PM, Joshua Tinnin wrote:
[ ... ]
OK, as I understand, the branches are -CURRENT and -STABLE. But I 
often see
4.10-STABLE recommended for production use. This is probably due to 
what you
describe above.
That's right, 4.10 is the latest -STABLE release.
What does RELEASE mean, as specifically as you can?
RELEASE refers to a specific version of the system which has gone 
through the release engineering process described at:

http://www.freebsd.org/doc/en_US.ISO8859-1/articles/releng/index.html
I'm using 5.2.1-RELEASE and am not planning on going 4.10-STABLE, as I 
can't
due to hardware, and it's not a big deal as this isn't for production. 
But
I'm curious ... is RELEASE supposed to be the *most* preferable 
candidate for
someone considering a production OS, but just at this time, 5.x hasn't
settled down?
End users are expected to install releases rather than daily snapshots 
from -STABLE or -CURRENT, yes.  Releases are published as .iso images 
and resold by FreeBSD distributors on CDs.

If it had settled down, would would the most preferable
production snapshot in 5.x-STABLE be called RELEASE?
If 5.x had settled down, 5.x would now be -STABLE, and the latest 
RELEASE of 5.x (currently 5.2.1) would be the most preferable version 
for end-users to run.

And is this not the case now because 5.x is taking longer than it 
should, so RELEASE is there, even if perhaps it shouldn't be?
Thats about what I feel, yes.  My opinion is that the current level of 
effort to stabilize 5.x should have happened around the 5.0 to 5.1 
transition, rather than now at the 5.2 to 5.3 transition.

--
-Chuck
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Audio CD burning shouldnt be this difficult!

2004-07-21 Thread Lowell Gilbert
Edd [EMAIL PROTECTED] writes:

 Audio CD burning shouldnt be this difficult! I think I have fundamentally
 gone wrong here!
 
 I have eight raw tracks that I wish to burn to ATAPI cd. I am using
 burncd.
 
 First I did:
 
 burncd -s max audio * fixate
 
 However I got gaps inbetween tracks so i tried:
 
 burncd -s max -d -n audio * fixate
 
 There are now no gaps, but track markers are in the wrong place (perhaps
 4 or 5 seconds out in some cases)
 
 What am i doing wrong? I dont want to have to use a windows box to do
 this.

Have you got a relatively up-to-date version of FreeBSD?
[You didn't mention the version.]

I used to have problems with track markers being too far into the
track, but eventually those problems were fixed.  In the meantime, I
used cdrecord (with ATAPICAM), which didn't exhibit the same issue.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Firewall, OpenVPN and Squid question

2004-07-21 Thread Paul Hillen
From: Steve Bertrand [mailto:[EMAIL PROTECTED] 

 I have around 100 users at our site that would require the use of squid,

 we house are own webserver, mail server, public DNS servers in the DMZ 
 and 2 private DNS servers on the internal network, used by both Internal

 and VPN users.

 Sites connecting Gateway to Gateway, there are apprx as follows;
 Site 1 - 25 users
 Site 2 - 5 users
 Site 3 - 12 users
 Our site VPN users are Apprx 25, and about 50% of them are connected at
 any given time.

 My first thought is to put up a Firewall box that can the load of
 publishing many internal boxes and publish a box with OpenVPN and 
 another for SQUID and just keep them all separate.

 Will this setup put to much strain on the FIREWALL box or will it have
 no problem handling the NAT/ROUTING in this configuration.

 Thanks in advance
 Paul


 Considering that many of the current hardware firewall solutions aren't
 much more than either a BSD or Linux kernel in a ROM chip, with a 486 or 
 586 based cpu, memory, and a nice gui (Windows or Internal Web nterface),

 I can't see why a similar system on a PC would be any different.

I would have to guess if a hardware firewall like Watchguard that offers VPN
also, that it would have to be beefer than that. Steve going back to your
initial response about the PIII 800MHz network, are you using a proxy for
the internal users or are they connecting directly to the firewall as their
only means of getting out? It seems most hardware firewalls do not include a
proxy server, just NAT/VPN, which in this case the proxy would be on a
separate internal machine anyway.

Comment about the ISA Server setup, which I actually like and not sure if I
can pull off the same type of setup with FreeBSD. The setup is like this:

External ISA Server (not actual ips)ISP / 10.10.10.6
|
|- Postfix Relay Server10.10.10.5
|- TinyDNS for internet publishing 10.10.10.4
|- TinyDNS for internet publishing 10.10.10.3
|- Webserver   10.10.10.2
|
|- Internal ISA Server 10.10.10.1 /
10.0.0.1
|
|- Exchange Server 10.0.0.2
|- TinyDNS internal publishing 10.0.0.3
|- TinyDNS internal publishing 10.0.0.4
|- Rest of internal servers and network etc...


External sites are actually creating a VPN tunnel with a VPN tunnel and it
works good, but the ISA Server gets to flaky after about a month of use. I
have rebuilt them more than ever thought I would.

At this point I will be happy to just get the firewall and VPN to work, but
I like the additional layer someone would have to break through in the above
scenario.

 Yes, but take into consideration disk reads/writes. It is possible to
 eliminate these tasks, and I have even done setups where everything was
 flashed onto a CF card (ro) (obviously w/o logging capabilities). I did a
 custom build, frequently referring to:

 http://neon1.net/misc/minibsd.html and put the system on an IDE-CF card 
 converter.

 Steve
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Applications starting problem (from /usr/local/etc/rc.d/) after upgrade

2004-07-21 Thread root of all evil
Definition of the problem:
Installed applications daemons which have their startup scripts in
/usr/local/etc/rc.d/ are
not starting during system boot as they should.

Description of the problem:
I had very good working server at FBSD 5.2.1 with several applications (such
as apache2,
mysql, pureftpd, postfix, saslauth) and I have upgraded it one day, due to
security advisories
of FBSD developers, and application advisories due to portaudit advisories.
Buildworld and whole process of upgrading system from cvsup goes well,
portupgrade of applications
also. And after that I discovered, that upgraded applications does not start
during system boot.
I chcecked my srcipts permissions (fine), same scripts (fine too - if I run
any script from
commandline after the system start, it boots the proper daemon nicely) and
config files of
applications (fine too).
After that I started to read forums, and google, then find out  that daemons
now needs declarations
in /etc/rc.conf so I added them. Still nothing. I finished with that I added
the scripts at the end
of the only starting script which is apache2 script, but this is *NOT*
proper solution, even
if daemons are working.
Can *anybody* give me *any* hint/tip or tell me what I did wrong? Im fightng
with that for almost
two weeks right now, and that affects all 3 of my machines.

System details:

rc.conf:
apache2_enable=YES
oidentd_enable=YES
mysqld_enable=YES
pureftpd_enable=YES
local_startup=/usr/local/etc/rc.d

installed versions:
apache-2.0.50
mysql-client-4.0.20
mysql-server-4.0.20
pure-ftpd-1.0.19
postfix-2.1.3,1
cyrus-sasl-saslauthd-2.1.18_2

sample startup script from .../rc.d/:
pure-ftpd.sh:
#!/bin/sh

# PROVIDE: pureftpd
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON
# KEYWORD: FreeBSD shutdown

#
# Add the following lines to /etc/rc.conf to enable pure-ftpd:
#
# pureftpd_enable=YES
#

. /etc/rc.subr

name=pureftpd
rcvar=`set_rcvar`

command=/usr/local/sbin/pure-config.pl
pureftpd_config=${pureftpd_config:-/usr/local/etc/pure-ftpd.conf}
required_files=${pureftpd_config}
pidfile=/var/run/pure-ftpd.pid
procname=pure-ftpd

pureftpd_enable=YES
command_args=${pureftpd_config}

load_rc_config $name
run_rc_command $1

system:
FreeBSD 5.2.1-RELEASE-p8

Please, give me any help, if you know what is going on here.
Thanks a lot, r.


Message sent using UebiMiau 2.7.2

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Applications starting problem (from /usr/local/etc/rc.d/) afterupgrade

2004-07-21 Thread /root/of/all/evil
The only daemon (called application somwhere in my mail) that starts normally during
system boot is apache2. Rest of them does not boot normally, but if I add them (I mean
'them' == the full path to their starting scripts in /usr/local/etc/rc.d/) to the end 
of
apache`s script, then they are starting..

r.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Firewall, OpenVPN and Squid question

2004-07-21 Thread Steve Bertrand

 I would have to guess if a hardware firewall like Watchguard that offers
VPN
 also, that it would have to be beefer than that. Steve going back to
your
 initial response about the PIII 800MHz network, are you using a proxy
for
 the internal users or are they connecting directly to the firewall as their
 only means of getting out?

[At the main site]
(Selected) users go to a content filter (squid+dansguardian) and it goes
out to the net (through the fw). The content filter has a private IP, and
in itself, it is protected with it's own localized ipfw rules for
protection.

The rest of the clients go directly through the pipe unrestricted through
the firewall to the net. (I know I shouldn't do this with our own proxy,
but that's how it is for now).

 It seems most hardware firewalls do not include
 a
 proxy server, just NAT/VPN, which in this case the proxy would be on a
separate internal machine anyway.

Depends. I once used a Nortel dial-up NAT router box that had it's own
built in web cache. Very small cache mind you, but it worked ok,
especially on a 26.4Kb link.


 Comment about the ISA Server setup, which I actually like and not sure
if
 I
 can pull off the same type of setup with FreeBSD. The setup is like
this:


Yes, you can. Either with 2 BSD boxes replacing the ISA boxen, or with one
BSD box configured with 3 NIC's -- 1 for Internet connection, 1 for
Internal LAN, and the other from the DMZ. The DMZ NIC can have all sorts
of good rules applied to it, and the internal net can be absolutely cut
off for inbound traffic except for the VPN's.

 External ISA Server (not actual ips)  ISP / 10.10.10.6
   |
   |- Postfix Relay Server10.10.10.5
   |- TinyDNS for internet publishing 10.10.10.4
   |- TinyDNS for internet publishing 10.10.10.3
   |- Webserver   10.10.10.2
   |
   |- Internal ISA Server 10.10.10.1 /
 10.0.0.1
   |
   |- Exchange Server 10.0.0.2
   |- TinyDNS internal publishing 10.0.0.3
   |- TinyDNS internal publishing 10.0.0.4
   |- Rest of internal servers and network etc...


 External sites are actually creating a VPN tunnel with a VPN tunnel and
it
 works good, but the ISA Server gets to flaky after about a month of use.
I
 have rebuilt them more than ever thought I would.

 At this point I will be happy to just get the firewall and VPN to work, but
 I like the additional layer someone would have to break through in the
above
 scenario.

Like I said above, 2 boxes, or one box with 3 NIC's.

Steve


 Yes, but take into consideration disk reads/writes. It is possible to
eliminate these tasks, and I have even done setups where everything was
flashed onto a CF card (ro) (obviously w/o logging capabilities). I did
a
 custom build, frequently referring to:
 http://neon1.net/misc/minibsd.html and put the system on an IDE-CF
card
 converter.

 Steve
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]





___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


  1   2   >