setting up a printer - best method?

2004-02-27 Thread Aaron Peterson
I've read the handbook on setting up bsd style printers, and i've used
cups some before i started using freebsd.  the bsd style printing
mechanism looks complicated to me, i didn't have consistent success with
cups.  i'm interested in what method is generally the easiest and what
method is the best. the two printers i will deal with most are a parallel
port panasonic laser printer i have at home that i would like to set up as
a shared network printer (shared through my bsd box with other bsd boxes
and a windows XP laptop) so all my home computers can use it, and a big
lexmark laser printer at work that is networked (has an ethernet card in
the printer).  would somebody with experience setting up printing for bsd
machines give me some direction, suggestions, or pointers? (links to
useful articles-howtos are always welcome)  and perhaps, what is outlined
in the handbook is the best way to go.  i just wanted to ask.

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


Re: scheduling priority not working?

2004-02-27 Thread Erik Trulsson
On Sat, Feb 28, 2004 at 01:06:35PM +0800, Zhang Weiwu wrote:
> Erik Trulsson wrote:
> 
> >On Sat, Feb 28, 2004 at 11:37:51AM +0800, Zhang Weiwu wrote:
> > 
> >
> >>Hello. I thought scheduling priority is the kind of absolute priority, 
> >>that is only when the higher priority process don't ask for resource, can 
> >>the lower priority process gets resource. If the higher priority process 
> >>sucks, the lower priority process starvs.
> >>
> >>Now I have a old Pentium-mmx 166 box, running mpg321 fine. I wish to 
> >>listen to music when recompile the kernel, so turn on the music, do:
> >>#nice make;
> >>I thought "nice make" use the resouce mpg321 left to it, but actually the 
> >>music process is seriously disturbed, it begins to sound like  
> >>terrible.
> >>
> >>So I don't realy understand the scheduling priority mechnism in FreeBSD?
> >>   
> >>
> >
> >No, you dont quite understand the scheduling.
> >There are actually two different priorities that influence scheduling.
> >If you look at the output from top(1) you can see them in the columns
> >labeled 'PRI' and 'NICE'.  The first one ('PRI') is the one that is
> >actually used to determine when a process gets to run. This is
> >dynamically adjusted by the system to make sure that all processes get
> >at least *some* CPU-time (so no process can be completely starved.) The
> >second ('NICE') is what is changed by the nice/renice commands and
> >affects how the actual priority is changed by the system. (Processes
> >with a high nice-value essentially gets their priority raised slowly
> >and lowered quickly .)
> > 
> >
> I don't understand. I watched top(1) for some time, it seems the mpg321 
> process, having NICE=-20, keep constant PRI of 108~110, but other 
> processes like 'yacc', 'cc', although running at NICE=4, comes out even 
> at PRI=120, and almost keep that high until it finish its work in 
> several seconds and quit, meanwhile the speaker keep producing broken 
> music. If NICE=-20 processes cannot have more PRI than NICE=4, what's 
> the use of NICE?

Try comparing two CPU-hungry processes that both run for a long time
and you will see the difference.
Processes which do a lot of I/O and don't use much CPU tends to get
fairly high priority. Processes also tend to start with relatively high
priority so a short-lived process will not have had time to get its
priority adjusted much regardless of its nice-level.

> 
> >I run at a very similar box, but use mpg123 rather than mpg321, and I
> >can play music without significant disturbance.
> >You might wish to try mpg123 instead, in my experience it needs less
> >CPU-power than mpg321.
> > 
> >
> My mpg123 hangs after copyright notice. It's another story though.
> 
> >You could also try using a higher nice value for the make process. (i.e
> >run it with 'nice -19 make' or something like that.)
> > 
> >
> I tried 'nice -n 19 make' which gives 'badly formed number' error. 'nice 
> -19 make' made 'make' even greedy.

Let me guess: You are using [t]csh as your shell, right?
That has 'nice' as a built-in command with a slightly different syntax
than /usr/bin/nice  (which is what is documented in the nice(1)
manpage)



-- 

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


Re: scheduling priority not working?

2004-02-27 Thread Zhang Weiwu
Erik Trulsson wrote:

On Sat, Feb 28, 2004 at 11:37:51AM +0800, Zhang Weiwu wrote:
 

Hello. I thought scheduling priority is the kind of absolute priority, that 
is only when the higher priority process don't ask for resource, can the 
lower priority process gets resource. If the higher priority process sucks, 
the lower priority process starvs.

Now I have a old Pentium-mmx 166 box, running mpg321 fine. I wish to listen 
to music when recompile the kernel, so turn on the music, do:
#nice make;
I thought "nice make" use the resouce mpg321 left to it, but actually the 
music process is seriously disturbed, it begins to sound like  
terrible.

So I don't realy understand the scheduling priority mechnism in FreeBSD?
   

No, you dont quite understand the scheduling.
There are actually two different priorities that influence scheduling.
If you look at the output from top(1) you can see them in the columns
labeled 'PRI' and 'NICE'.  The first one ('PRI') is the one that is
actually used to determine when a process gets to run. This is
dynamically adjusted by the system to make sure that all processes get
at least *some* CPU-time (so no process can be completely starved.) The
second ('NICE') is what is changed by the nice/renice commands and
affects how the actual priority is changed by the system. (Processes
with a high nice-value essentially gets their priority raised slowly
and lowered quickly .)
 

I don't understand. I watched top(1) for some time, it seems the mpg321 
process, having NICE=-20, keep constant PRI of 108~110, but other 
processes like 'yacc', 'cc', although running at NICE=4, comes out even 
at PRI=120, and almost keep that high until it finish its work in 
several seconds and quit, meanwhile the speaker keep producing broken 
music. If NICE=-20 processes cannot have more PRI than NICE=4, what's 
the use of NICE?

I run at a very similar box, but use mpg123 rather than mpg321, and I
can play music without significant disturbance.
You might wish to try mpg123 instead, in my experience it needs less
CPU-power than mpg321.
 

My mpg123 hangs after copyright notice. It's another story though.

You could also try using a higher nice value for the make process. (i.e
run it with 'nice -19 make' or something like that.)
 

I tried 'nice -n 19 make' which gives 'badly formed number' error. 'nice 
-19 make' made 'make' even greedy.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ReiserFS Support in FreeBSD?

2004-02-27 Thread Aaron Peterson
-snip-
>> Im assuming is supports ext3.
>
> Via ext2fs backwards-compatibility, yes.

The ext2 support that can be custom compiled into the freebsd kernel is
definitely sufficient to mount and read data from ext2 formatted
partitions.  i have heard though, and perhaps someone on this list might
confirm or discredit this notion, that attempting to use ext2 support (not
journal aware) for writing on an ext3 (with journal) partition can ruin
the journals on the filesystem.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: a good solution share the speaker?

2004-02-27 Thread Dan Nelson
In the last episode (Feb 28), Zhang Weiwu said:
> Dan Nelson wrote:
> 
> >In the last episode (Feb 28), Zhang Weiwu said:
> > 
> >
> >>Several people are using notebooks in the office, the big desktop
> >>computer stores music. A good speaker is pluged into the desktop
> >>computer (FreeBSD).
> >>
> >>What do you think is the best solution to share the speaker? 
> >>
> >>These are what I can think of:
> >>* Marc Lehmann wrote a perl module for playing music with mpg123. Write a 
> >>cgi script and let people select playlist/control play on the webpage. 
> >>* Find a existing good mpg123 frontend, modify it, let it control the
> >>mpg123 on another computer through ssh or even let inetd bring up the
> >>mpg123 player and let the fontend talk to a socket.
> >>   
> >>
> >
> >http://www-scf.usc.edu/~bozhang/notes/esd.html describes how to use
> >esound (which the mpg123 port is built with) to send audio to a remote
> >machine.  You could also use xmms, since it has esd support too.  I
> 
> That's a good idea. I am worrying that uncompressed sound takes lots of 
> bandwidth, some people in the office are using (average) 500Kbps 
> bluetooth link, uncompressed CD audio is 16*2*44100=1400Kbps, can esound 
> manipulate it?

At that rate, Bluetooth is probably too slow for raw CD audio.  Either
of your two solutions would work.  Option 2 is probably easier to
implement and lets people keep their music files on their own machines. 
On the other hand, if your link goes down or the person goes out of
range, you're in trouble.  Option 1 keeps all the music files on the
server.  A little searching came up with http://www.jinzora.org/ ,
which is a PHP script that seems to implement Option 1 and then some.

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


Re: ReiserFS Support in FreeBSD?

2004-02-27 Thread Kris Kennaway
On Fri, Feb 27, 2004 at 08:55:58PM -0800, Benjamin P. Keating wrote:
> Im planning on building a media storage server here at home this 
> weekend. I already have several drives with data and they're ReiserFS... 
> I skimmed the handbook but didn't find my answer; Does FreeBSD support 
> ReiserFS?

Nope.
 
> Im assuming is supports ext3.

Via ext2fs backwards-compatibility, yes.

Kris


pgp0.pgp
Description: PGP signature


ReiserFS Support in FreeBSD?

2004-02-27 Thread Benjamin P. Keating
Im planning on building a media storage server here at home this 
weekend. I already have several drives with data and they're ReiserFS... 
I skimmed the handbook but didn't find my answer; Does FreeBSD support 
ReiserFS? Im assuming is supports ext3.

-Ben

--
This message has been scanned for viruses and
dangerous content, and is believed to be clean.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Open Office start up problem

2004-02-27 Thread Eamon Daly
Hi,

This is probably a simple problem, but can someone please tell me what's 
happening here?

$ ./soffice
.: Can't open 
/usr/home/eamon/OpenOffice.org1.1.0/program/freebsd-local.sh: No such 
file or directory
$

I'm running FBSD 4.8 on a Compaq Evo N410c.

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


Re: a good solution share the speaker?

2004-02-27 Thread Zhang Weiwu
Dan Nelson wrote:

In the last episode (Feb 28), Zhang Weiwu said:
 

Several people are using notebooks in the office, the big desktop
computer stores music. A good speaker is pluged into the desktop
computer (FreeBSD).
What do you think is the best solution to share the speaker? 

These are what I can think of:
* Marc Lehmann wrote a perl module for playing music with mpg123. Write a 
cgi script and let people select playlist/control play on the webpage. 
* Find a existing good mpg123 frontend, modify it, let it control the
mpg123 on another computer through ssh or even let inetd bring up the
mpg123 player and let the fontend talk to a socket.
   

http://www-scf.usc.edu/~bozhang/notes/esd.html describes how to use
esound (which the mpg123 port is built with) to send audio to a remote
machine.  You could also use xmms, since it has esd support too.  I
 

That's a good idea. I am worrying that uncompressed sound takes lots of 
bandwidth, some people in the office are using (average) 500Kbps 
bluetooth link, uncompressed CD audio is 16*2*44100=1400Kbps, can esound 
manipulate it?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Anti-Virus?

2004-02-27 Thread Andrew Boothman
Mark Weisman wrote:

Anyone know of a good Anti-virus software that works on FBSD?
If you're looking for something to scan email I constantly hear good 
things about Vexira MailArmor 
, thet also do a 
normal file scanner too.

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


Re: Has anyone succeeded in compiling crm114 & Mailfilter

2004-02-27 Thread Lowell Gilbert
Lowell Gilbert <[EMAIL PROTECTED]> writes:

> I won't submit a port until I have it doing something useful for me...

In case anyone else is interested, though, I have made a start on it.
It needs more work, and it's still mostly untested, but maybe somebody
else will push it forward if I don't get to it over the weekend.



crm114-port.shar
Description: crm-114 port skeleton, rough cut
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: scheduling priority not working?

2004-02-27 Thread Erik Trulsson
On Sat, Feb 28, 2004 at 11:37:51AM +0800, Zhang Weiwu wrote:
> Hello. I thought scheduling priority is the kind of absolute priority, that 
> is only when the higher priority process don't ask for resource, can the 
> lower priority process gets resource. If the higher priority process sucks, 
> the lower priority process starvs.
> 
> Now I have a old Pentium-mmx 166 box, running mpg321 fine. I wish to listen 
> to music when recompile the kernel, so turn on the music, do:
> #nice make;
> I thought "nice make" use the resouce mpg321 left to it, but actually the 
> music process is seriously disturbed, it begins to sound like  
> terrible.
> 
> So I don't realy understand the scheduling priority mechnism in FreeBSD?

No, you dont quite understand the scheduling.
There are actually two different priorities that influence scheduling.
If you look at the output from top(1) you can see them in the columns
labeled 'PRI' and 'NICE'.  The first one ('PRI') is the one that is
actually used to determine when a process gets to run. This is
dynamically adjusted by the system to make sure that all processes get
at least *some* CPU-time (so no process can be completely starved.) The
second ('NICE') is what is changed by the nice/renice commands and
affects how the actual priority is changed by the system. (Processes
with a high nice-value essentially gets their priority raised slowly
and lowered quickly .)


I run at a very similar box, but use mpg123 rather than mpg321, and I
can play music without significant disturbance.
You might wish to try mpg123 instead, in my experience it needs less
CPU-power than mpg321.

You could also try using a higher nice value for the make process. (i.e
run it with 'nice -19 make' or something like that.)

-- 

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


Re: a good solution share the speaker?

2004-02-27 Thread Dan Nelson
In the last episode (Feb 28), Zhang Weiwu said:
> Several people are using notebooks in the office, the big desktop
> computer stores music. A good speaker is pluged into the desktop
> computer (FreeBSD).
> 
> What do you think is the best solution to share the speaker? 
> 
> These are what I can think of:
> * Marc Lehmann wrote a perl module for playing music with mpg123. Write a 
> cgi script and let people select playlist/control play on the webpage. 
> * Find a existing good mpg123 frontend, modify it, let it control the
> mpg123 on another computer through ssh or even let inetd bring up the
> mpg123 player and let the fontend talk to a socket.

http://www-scf.usc.edu/~bozhang/notes/esd.html describes how to use
esound (which the mpg123 port is built with) to send audio to a remote
machine.  You could also use xmms, since it has esd support too.  I

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


Re: ports Makefiles all deleted?

2004-02-27 Thread Kris Kennaway
On Fri, Feb 27, 2004 at 08:42:36PM -0700, Elliot Finley wrote:
> the particular port I'm interesting in is mrtg.  I see that it's moved to
> net-mgmt/mrtg.
> 
> what is the best process to upgrade?
> 
> pkg_deinstall -f mrtg
> portinstall net-mgmt/mrtg
> pkgdb -F

portupgrade mrtg

Kris


pgp0.pgp
Description: PGP signature


Re: ports Makefiles all deleted?

2004-02-27 Thread Elliot Finley
the particular port I'm interesting in is mrtg.  I see that it's moved to
net-mgmt/mrtg.

what is the best process to upgrade?

pkg_deinstall -f mrtg
portinstall net-mgmt/mrtg
pkgdb -F

???

Elliot

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


Re: ar, nm not reading library files (libz, etc.)

2004-02-27 Thread clayton rollins


On Feb. 27, 2004 Kris Kennaway <[EMAIL PROTECTED]> wrote:
On Sat, Feb 28, 2004 at 03:29:34AM +, clayton rollins wrote:
> Hi List,
>
> I've been having problems with ar and nm not being able
> to use the library files installed on my system, though
> executables created with them seem to work fine.
> libz is not the only library this happens with, just using
> it as an example.
>
> The output:
> >ar -t /usr/lib/libz.so.2
> /usr/libexec/elf/ar: /usr/lib/libz.so.2: File format not recognized
> >nm /usr/lib/libz.so.2
> /usr/libexec/elf/nm: /usr/lib/libz.so.2: no symbols
>
> The problem was first noticed after a massive round
> of portupgrading (due to the threading change).
> Rebuilding the system with RELENG_4_9 as of today
> did not fix the issue.
>
> Any ideas?
ar and nm work with static libraries, not shared.  Perhaps you're
looking for objdump.
Kris
Thanks Kris; I thought ignorance was partially to blame.

I think the problem is actually a naughty makefile, an
old version uses nm fine (for whatever it uses it for).
Thanks for your time,
Clayton
_
Take off on a romantic weekend or a family adventure to these great U.S. 
locations. http://special.msn.com/local/hotdestinations.armx

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


scheduling priority not working?

2004-02-27 Thread Zhang Weiwu
Hello. I thought scheduling priority is the kind of absolute priority, that 
is only when the higher priority process don't ask for resource, can the 
lower priority process gets resource. If the higher priority process sucks, 
the lower priority process starvs.

Now I have a old Pentium-mmx 166 box, running mpg321 fine. I wish to listen 
to music when recompile the kernel, so turn on the music, do:
#nice make;
I thought "nice make" use the resouce mpg321 left to it, but actually the 
music process is seriously disturbed, it begins to sound like  
terrible.

So I don't realy understand the scheduling priority mechnism in FreeBSD?

_
与联机的朋友进行交流,请使用 MSN Messenger:  http://messenger.msn.com/cn  

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


Re: ar, nm not reading library files (libz, etc.)

2004-02-27 Thread Kris Kennaway
On Sat, Feb 28, 2004 at 03:29:34AM +, clayton rollins wrote:
> Hi List,
> 
> I've been having problems with ar and nm not being able
> to use the library files installed on my system, though
> executables created with them seem to work fine.
> libz is not the only library this happens with, just using
> it as an example.
> 
> The output:
> >ar -t /usr/lib/libz.so.2
> /usr/libexec/elf/ar: /usr/lib/libz.so.2: File format not recognized
> >nm /usr/lib/libz.so.2
> /usr/libexec/elf/nm: /usr/lib/libz.so.2: no symbols
> 
> The problem was first noticed after a massive round
> of portupgrading (due to the threading change).
> Rebuilding the system with RELENG_4_9 as of today
> did not fix the issue.
> 
> Any ideas?

ar and nm work with static libraries, not shared.  Perhaps you're
looking for objdump.

Kris


pgp0.pgp
Description: PGP signature


Re: ports Makefiles all deleted?

2004-02-27 Thread Kris Kennaway
On Fri, Feb 27, 2004 at 08:10:42PM -0700, Elliot Finley wrote:
> I just did a cvsup of ports:
> 
> It's a little hard to build the port without a Makefile.  Why are they being
> deleted?

Cast your eye slightly further down the cvsup output where you would
have seen them being recreated in a new location (or read the MOVED
file).

Kris


pgp0.pgp
Description: PGP signature


ar, nm not reading library files (libz, etc.)

2004-02-27 Thread clayton rollins
Hi List,

I've been having problems with ar and nm not being able
to use the library files installed on my system, though
executables created with them seem to work fine.
libz is not the only library this happens with, just using
it as an example.
The output:
ar -t /usr/lib/libz.so.2
/usr/libexec/elf/ar: /usr/lib/libz.so.2: File format not recognized
nm /usr/lib/libz.so.2
/usr/libexec/elf/nm: /usr/lib/libz.so.2: no symbols

The problem was first noticed after a massive round
of portupgrading (due to the threading change).
Rebuilding the system with RELENG_4_9 as of today
did not fix the issue.
Any ideas?

Regards,
Clayton Rollins
PS. please be sure to CC me, as I only receive the
list in digest form.
_
Say “good-bye” to spam, viruses and pop-ups with MSN Premium -- free trial 
offer! http://click.atdmt.com/AVE/go/onm00200359ave/direct/01/

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


Re: Hostname in shell (bash)?

2004-02-27 Thread Robert Storey
I personally like the following one (because no matter where you are, it
will show you the working directory as well as who is logged in). Put
this into .bashrc...

  PS1="[EMAIL PROTECTED]:\w> "
  export PS1

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


Well...

2004-02-27 Thread freebsd-bugs

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


a good solution share the speaker?

2004-02-27 Thread Zhang Weiwu
Several people are using notebooks in the office, the big desktop computer 
stores music. A good speaker is pluged into the desktop computer (FreeBSD).

What do you think is the best solution to share the speaker? 

These are what I can think of:
* Marc Lehmann wrote a perl module for playing music with mpg123. Write a 
cgi script and let people select playlist/control play on the webpage. 
* Find a existing good mpg123 frontend, modify it, let it control the 
mpg123 on another computer through ssh or even let inetd bring up the 
mpg123 player and let the fontend talk to a socket.

What do you think is the best approach? Thank you.

_
免费下载 MSN Explorer:   http://explorer.msn.com/lccn/  

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


ports Makefiles all deleted?

2004-02-27 Thread Elliot Finley
I just did a cvsup of ports:

It's a little hard to build the port without a Makefile.  Why are they being
deleted?

 Delete ports/net/gps/Makefile
 Delete ports/net/icmpmonitor/Makefile
 Delete ports/net/icmpquery/Makefile
 Delete ports/net/ifgraph/Makefile
 Delete ports/net/iftop/Makefile
 Delete ports/net/iog/Makefile
 Delete ports/net/ipacctd/Makefile
 Delete ports/net/ipaudit/Makefile
 Delete ports/net/ipcad/Makefile
 Delete ports/net/ipcalc/Makefile
 Delete ports/net/ipfm/Makefile
 Delete ports/net/ipv6calc/Makefile
 Delete ports/net/irrtoolset/Makefile
 Delete ports/net/isic/Makefile
 Delete ports/net/junipoll/Makefile
 Delete ports/net/knowlan/Makefile
 Delete ports/net/libsmi/Makefile
 Delete ports/net/mbrowse/Makefile
 Delete ports/net/mrtg/Makefile
 Delete ports/net/nagios/Makefile
 Delete ports/net/nagios-plugins/Makefile
 Delete ports/net/nat/Makefile
 Delete ports/net/nbtscan/Makefile
 Delete ports/net/nefu/Makefile
 Delete ports/net/net-snmp/Makefile
 Delete ports/net/net-snmp-tkmib/Makefile
 Delete ports/net/net-snmp4/Makefile
 Delete ports/net/netams/Makefile
 Delete ports/net/netmask/Makefile
 Delete ports/net/netqc/Makefile
 Delete ports/net/netsaint/Makefile
 Delete ports/net/netsaint-plugins/Makefile
 Delete ports/net/netspoc/Makefile
 Edit ports/net/nicotine/Makefile
 Edit ports/net/nicotine/distinfo
 Edit ports/net/nicotine/pkg-plist
 Delete ports/net/nitpicker/Makefile
 Delete ports/net/nocol/Makefile
 Delete ports/net/nrpe/Makefile
 Delete ports/net/nrpep/Makefile
 Delete ports/net/nsc/Makefile
 Delete ports/net/nsca/Makefile
 Delete ports/net/nstreams/Makefile
 Edit ports/net/openldap21-server/Makefile
 Edit ports/net/openldap21-server/distinfo
 Delete ports/net/openldap21-server/files/patch-servers::slapd::repl.c
 Edit ports/net/openldap22-server/Makefile
 Edit ports/net/openldap22-server/distinfo
 Delete ports/net/openvmps/Makefile
 Delete ports/net/oproute/Makefile
 Delete ports/net/p0f/Makefile
 Delete ports/net/p5-Altoids/Makefile
 Delete ports/net/p5-Cflow/Makefile
 Delete ports/net/p5-JUNOScript/Makefile
 Delete ports/net/p5-Mon/Makefile
 Delete ports/net/p5-Net-CIDR/Makefile
 Delete ports/net/p5-Net-IP/Makefile
 Delete ports/net/p5-Net-IPv4Addr/Makefile
 Delete ports/net/p5-Net-IPv6Addr/Makefile
 Delete ports/net/p5-Net-Netmask/Makefile
 Delete ports/net/p5-Net-SNMP/Makefile
 Delete ports/net/p5-Net-SNMP3/Makefile
 Delete ports/net/p5-NetAddr-IP/Makefile
 Delete ports/net/p5-SNMP/Makefile
 Delete ports/net/p5-SNMP-MIB-Compiler/Makefile
 Delete ports/net/p5-SNMP-Util/Makefile
 Delete ports/net/p5-Telnet-Cisco/Makefile
 Delete ports/net/p5-Tie-NetAddr-IP/Makefile
 Delete ports/net/packit/Makefile
 Delete ports/net/pancho/Makefile
 Delete ports/net/pixilate/Makefile
 Delete ports/net/pmacct/Makefile
 Delete ports/net/portmon/Makefile
 Delete ports/net/py-ipy/Makefile
 Delete ports/net/py-snmp/Makefile
 Delete ports/net/rancid/Makefile
 Delete ports/net/rate/Makefile
 Delete ports/net/remarp/Makefile

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


Re: Anti-Virus?

2004-02-27 Thread Micheal Patterson


- Original Message - 
From: "Mark Weisman" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, February 27, 2004 8:38 PM
Subject: Anti-Virus?


> Anyone know of a good Anti-virus software that works on FBSD?
>
> Res Ipsa Loquitor,
> Mark-Nathaniel Weisman
> Site Master
> Mystic1.net

http://freshmeat.net/projects/clamav/

There's a port for it under ./ports/security/clamav

There's even an update script that you can cron to keep up to date on defs.
It's updated fairly often. Not too shabby for something that costs null.

--

Micheal Patterson
Network Administration
TSG Incorporated
405-917-0600

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


Re: Anti-Virus?

2004-02-27 Thread X-Istence
Mark Weisman wrote:
Anyone know of a good Anti-virus software that works on FBSD?

Res Ipsa Loquitor,
Mark-Nathaniel Weisman
Site Master
Mystic1.net
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

clamscan.

It has a sourceforge.net page some where.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Anti-Virus?

2004-02-27 Thread Mark Weisman
Anyone know of a good Anti-virus software that works on FBSD?

Res Ipsa Loquitor,
Mark-Nathaniel Weisman
Site Master
Mystic1.net
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: CVSUP and the refuse file

2004-02-27 Thread parv
in message <[EMAIL PROTECTED]>,
wrote Jason Williams thusly...
>
> ...a simple question regarding cvsup and using the refuse file.
> Basically, just as the handbook states, I dont want to download
> certain parts of the ports tree. I followed the directions in the
> handbook, but I seem to be downloading the specified ports still.
> 
> Here is my ports-supfile:
...
> *default base=/usr
...
> I then put the refuse file in /usr/sup with the ports I don't want
> downloaded. Yet, they continue to be downloaded.

Once upon a time, one year short of two hand and tongue days ago,
wrote i ...

  http://groups.google.com/groups?selm=20020311043929.GA12768%40moo.holy.cow


...According to which, you should not be having any problems, unless
your refuse file is not quite right.  What /exactly/ are you refusing?


  - Parv

-- 

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


Re: Looking for FreeBSD 1.0

2004-02-27 Thread Greg 'groggy' Lehey
On Friday, 27 February 2004 at 12:25:30 -0600, Chris wrote:
> Does anyone know where I can find (ISO perhaps) of FreeBSD 1.0?

I have a couple of CDs here.  I won't part with the originals, but I
suppose I could burn a CD-R.  You may find somebody closer, though.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
Note: I discard all HTML mail unseen.
Finger [EMAIL PROTECTED] for PGP public key.
See complete headers for address and phone numbers.


pgp0.pgp
Description: PGP signature


updating system issue w/ 5.2/Sparc64

2004-02-27 Thread sameer
first of all here's the uname -a output:
 
FreeBSD europa.sol.home 5.2-RELEASE FreeBSD 5.2-RELEASE #0: Sun Jan 11
06:09:12
GMT 2004 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
sparc64
 
i've updated to the latest sources as of last night.
 
intially, i had an issue with the 'make installworld' command after i
dropped down to single user mode.
 
i followed the handbook instructions to try again, in the event there were
old files that were causing the problem.
 
after i cleaned out what i was told to clean out, i tried 'install
buildworld' again from single user mode.
 
this is the error i came across:
 
---
 
cc -O -pipe  -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../include
-I/us
r/src/lib/libc/sparc64 -I/usr/src/lib/libc/sparc64/sys
-D__DBINTERFACE_PRIVATE -
I/usr/src/lib/libc/../../contrib/gdtoa -DINET6 -I/usr/obj/usr/src/lib/libc
-DPOS
IX_MISTAKE -I/usr/src/lib/libc/locale -I/usr/src/lib/libc/sparc64/fpu
-DBROKEN_D
IX_MISTAKE -I/usr/src/lib/libc/locale -I/usr/src/lib/libc/sparc64/fpu
-DBROKEN_D
s -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c nslexer.c
/dev/stdout: In function `_nsyylex':
/dev/stdout:711: warning: label `find_rule' defined but not used
/usr/src/lib/libc/net/nslexer.l: At top level:
/dev/stdout:1678: warning: `yy_flex_realloc' defined but not used
*** Error code 1
 
Stop in /usr/src/lib/libc.
*** Error code 1
 
Stop in /usr/src/lib.
*** Error code 1
 
Stop in /usr/src.
*** Error code 1
 
Stop in /usr/src.
*** Error code 1
 
Stop in /usr/src.
*** Error code 1
 
Stop in /usr/src.
 
---
 
any ideas how to fix the problem?  
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Hang on boot with 4.9 and 5.2

2004-02-27 Thread chemica
Hello all,

I am reinstalling FreeBSD after having destroyed my partition like 
a moron. I encounter the following error after the probe of my agp0:

panic: pmap_mapdev: couldn't alloc kernel virtual memory

Any help would be greatly appreciated.

Thank You,

Justin Hall 

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


CVSUP and the refuse file

2004-02-27 Thread Jason Williams
Hello everyone.

I have a simple question regarding cvsup and using the refuse file. 
Basically, just as the handbook states, I dont want to download certain 
parts of the ports tree. I followed the directions in the handbook, but I 
seem to be downloading the specified ports still.

Here is my ports-supfile:

*default host=192.168.1.93
*default base=/usr
*default prefix=/usr
*default release=cvs tag=.
*default delete use-rel-suffix
I then put the refuse file in /usr/sup with the ports I don't want 
downloaded. Yet, they continue to be downloaded.

Also, when I was reading the ports-supfile and the standard-supfile, it 
appears that you can also specify certain parts that you do not want to 
download as well. However, I have not been able to figure that part out yet.

Can anyone tell me what im missing and how to fix this?

I appreciate it.

Jason

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


5.2.1 & Maestro-2E

2004-02-27 Thread Steven S.

anyone have this sound chipset working under 5.2.1?

seems that sound support has broken between 5.1 and 5.2 (CURRENT and .1)

bug submitted already but no followup yet.


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


Re: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Chris Pressey
On Fri, 27 Feb 2004 14:33:50 -0500
Philippe Vachon <[EMAIL PROTECTED]> wrote:

> Still, nobody has any clues as to what the problem could be? I've
> loaded just snd_sbc and just snd_oss and even the "compressed" sound
> thing doesn't occur.

Sorry.  The only thing I can think to suggest is to try to reproduce it
on 5.2.1 (or 4.9) if possible.

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


"The Complete FreeBSD": errata and addenda

2004-02-27 Thread Greg Lehey
The trouble with books is that you can't update them the way you can a web page
or any other online documentation.  The result is that most leading edge
computer books are out of date almost before they are printed.  Unfortunately,
The Complete FreeBSD, published by O'Reilly, is no exception.  Inevitably, a
number of bugs and changes have surfaced.

"The Complete FreeBSD" has been through a total of five editions, including its
predecessor "Installing and Running FreeBSD".  Two of these have been reprinted
with corrections.  I maintain a series of errata pages.  Start at
http://www.lemis.com/errata-4.html to find out how to get the errata
information.

Have you found a problem with the book, or maybe something confusing?  Please
let me know: I'm constantly updating it.

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


How to get best results from FreeBSD-questions

2004-02-27 Thread Greg Lehey
How to get the best results from FreeBSD questions.
===

Last update $Date: 2003/03/09 22:09:31 $

This is a regular posting to the FreeBSD questions mailing list.  If
you got it in answer to a message you sent, it means that the sender
thinks that at least one of the following things was wrong with your
message:

- You left out a subject line, or the subject line was not appropriate.
- You formatted it in such a way that it was difficult to read.
- You asked more than one unrelated question in one message.
- You sent out a message with an incorrect date, time or time zone.
- You sent out the same message more than once.
- You sent an 'unsubscribe' message to FreeBSD-questions.

If you have done any of these things, there is a good chance that you
will get more than one copy of this message from different people.
Read on, and your next message will be more successful.

This document is also available on the web at
http://www.lemis.com/questions.html.

=

Contents:

I:Introduction
II:   How to unsubscribe from FreeBSD-questions
III:  Should I ask -questions, -newbies or -hackers?
IV:   How to submit a question to FreeBSD-questions
V:How to answer a question to FreeBSD-questions

I: Introduction
===

This is a regular posting aimed to help both those seeking advice from
FreeBSD-questions (the "newcomers"), and also those who answer the
questions (the "hackers").

   Note that the term "hacker" has nothing to do with breaking
   into other people's computers.  The correct term for the latter
   activity is "cracker", but the popular press hasn't found out
   yet.  The FreeBSD hackers disapprove strongly of cracking
   security, and have nothing to do with it.

In the past, there has been some friction which stems from the
different viewpoints of the two groups.  The newcomers accused the
hackers of being arrogant, stuck-up, and unhelpful, while the hackers
accused the newcomers of being stupid, unable to read plain English,
and expecting everything to be handed to them on a silver platter.  Of
course, there's an element of truth in both these claims, but for the
most part these viewpoints come from a sense of frustration.

In this document, I'd like to do something to relieve this frustration
and help everybody get better results from FreeBSD-questions.  In the
following section, I recommend how to submit a question; after that,
we'll look at how to answer one.

II:  How to unsubscribe from FreeBSD-questions
==

When you subscribed to FreeBSD-questions, you got a welcome message
from [EMAIL PROTECTED]  In this message, amongst other things, it
told you how to unsubscribe.  Here's a typical message:

  Welcome to the freebsd-questions mailing list!

  If you ever want to remove yourself from this mailing list,
  you can send mail to "[EMAIL PROTECTED]" with the following command
  in the body of your email message:

  unsubscribe freebsd-questions Greg Lehey <[EMAIL PROTECTED]>

  Here's the general information for the list you've
  subscribed to, in case you don't already have it:

  FREEBSD-QUESTIONS   User questions
  This is the mailing list for questions about FreeBSD.  You should not
  send "how to" questions to the technical lists unless you consider the
  question to be pretty technical.

Normally, unsubscribing is even simpler than the message suggests: you
don't need to specify your mail ID unless it is different from the one
which you specified when you subscribed.

If Majordomo replies and tells you (incorrectly) that you're not on
the list, this may mean one of two things:

  1.  You have changed your mail ID since you subscribed.  That's where
  keeping the original message from majordomo comes in handy.  For
  example, the sample message above shows my mail ID as
  [EMAIL PROTECTED]  Since then, I have changed it to
  [EMAIL PROTECTED]  If I were to try to remove [EMAIL PROTECTED] from
  the list, it would fail: I would have to specify the name with
  which I joined.

  2.  You're subscribed to a mailing list which is subscribed to
  FreeBSD-questions.  If that's the case, you'll have to figure out
  which one it is and get your name taken off that one.  If you're
  not sure which one it might be, check the headers of the
  messages you receive from freebsd-questions: maybe there's a
  clue there.

If you've done all this, and you still can't figure out what's going
on, send a message to [EMAIL PROTECTED], and he will sort things
out for you.  Don't send a message to FreeBSD-questions: they can't
help you.

III: Should I ask -questions, -newbies or -hackers?
===

Two mailing lists handle general questions about FreeBSD,
FreeBSD-questions and FreeBSD-hackers.  In addition, the
FreeBSD-newbies l

Re: can't ssh back into 10.242; host seen as Down

2004-02-27 Thread Gary Kline
On Fri, Feb 27, 2004 at 02:52:07PM -0800, Ryan Merrick wrote:
> Gary Kline wrote:
> > 5.2-RELEASE is coming around.  From the KVM connection
> > to 10.242 I can telnet and ssh *out* to other places.
> > (I can fetch ports and upgrade things... .)  But I can't
> > figure out why I can't ssh or telnet *in*.  ping sees my
> > new system as down::
> >

[[ ... ]]
> >
> >
> Hi,
> 
> Are you using ipfw or ipf ?
> 
> if not Compair/send the output of ifconfig -a and sockstat on both boxes.
> 

ipfw was the first thing I disabled; finally did a ifconfig -a
and realized that dhcp was handing out a different IP.

Live 'n' learn, eh??

gary
> 

-- 
   Gary Kline [EMAIL PROTECTED]   www.thought.org Public service Unix

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


Re: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Philippe Vachon
Kevin D. Kinsey, DaleCo, S.P. wrote:

Chris Pressey wrote:

On Fri, 27 Feb 2004 13:25:20 -0500
Philippe Vachon <[EMAIL PROTECTED]> wrote:
 

As I said before, the sound is compressed -- not in the data sense,
but rather in the analogue sense where the wavelength of a waveform 
decreases, as does the period. I appologize if I had confused you, but
I'm not a Software Engineer -- merely a lowly Electrical Engineering 
Student. :)
  


Off topic, but in hopes of clearing up the terminology at least, this is
what "compressed" means for audio engineers:
 http://www.flashbacksales.co.uk/articles/compression.htm

I doubt you're experiencing this... I think you mean your audio is
simply sped up?
 

At the risk of going far enough OT
to be banned, there are two types
of audio compression.  One is amplitude
adjustment, as it were, and another
is "time compression" (yes, check out
some multitracking software), so it's
possible to use the term in the sense
he's using it, but it's a tad, what, {arcane}
unless you're producing hip-hop records
Maybe we should recommend getting
a slower processor? :D :D
KDK
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
"[EMAIL PROTECTED]"

Haha...the CPU is already slow enough for my tastes.

Still, nobody has any clues as to what the problem could be? I've loaded 
just snd_sbc and just snd_oss and even the "compressed" sound thing 
doesn't occur.

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


Geometry Incorrect on FreeBSD-5.2.1 installation

2004-02-27 Thread Forrest Aldrich
I've a SOYO Dragon Platinum Edition motherboard, with SATA drives.   
According to FreeBSD's installation process, my geometry is incorrectly 
set.  So, I did as it asked, rebooted into the BIOS and retrieved the 
figures:

Cylinders:   38309
Head:  16
Pre:   0
LandZone:  38308
Sectors:255
I  selected the "G" command from sysinstall's menu to set the geometry 
manually:  38309/16/255 (cyl/hd/sector) and it still insists the figures 
are wrong.  It's defaulting back to what it believes is correct: 

9729 cylinders
255 heads
63 sectors
These are 80gb SATA drives.  The BIOS is set to run in IDE Enhanced mode 
(I believe).

I did a test installation and it worked, except the dreaded GRUB loader 
(from a linux test install) keeps coming up (fdisk /mbr does NOT get rid 
of it)... I don't know if that's the cause of this problem (doubtful).

Any clues as to what might be wrong?   The BIOS is AMI/Phoenix, and is 
up-to-date.

Thanks.

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


RE: procmail

2004-02-27 Thread Gary
Hi Brian,

--On Friday, February 27, 2004 03:55:47 PM -0600 "Henning, Brian" 
<[EMAIL PROTECTED]> wrote:

cat .qmail
| preline /usr/bin/procmail -t ~/.procmailrc || exit 111
Just noticed this..  try

|preline procmail brian

that's it.

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


Problem with dhclient

2004-02-27 Thread Gerard Seibert
I am running FreeBSD version 5.2.1

I seem to have developed a problem with running DHCP on my computer. The dhclient is 
no longer working correctly. It was running fine until today.

Upon bootup it no longer makes a connection. I have tried "sysinstall" and things get 
even weirder. I clickand then my network card 
device. No to IPv6 and yes to DHCP. At that point an error message is printed across 
the screen saying: dhcp client: end_packet: no route to host interface on device 
/dev/cuaa0. Eventually this message times out and I get to the configuration screen. 
However, entering the correct information does not seem to help. I have tried removing 
the /dev/cuaa0 device and rebooting, but nothing good happpens.

How do I go about getting it working again. 

I should mention that I have two other computers on this net, all connected via a 
network hub to a router and then to a cable modem. The other two machines are running 
XP without any problems. This machine was working correctly until today, Therefore I 
assume that something got corrupted.

Thanks in advance.

Gerard Seibert


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


Re: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Kevin D. Kinsey, DaleCo, S.P.
Chris Pressey wrote:

On Fri, 27 Feb 2004 13:25:20 -0500
Philippe Vachon <[EMAIL PROTECTED]> wrote:
 

As I said before, the sound is compressed -- not in the data sense,
but rather in the analogue sense where the wavelength of a waveform 
decreases, as does the period. I appologize if I had confused you, but
I'm not a Software Engineer -- merely a lowly Electrical Engineering 
Student. :)
   

Off topic, but in hopes of clearing up the terminology at least, this is
what "compressed" means for audio engineers:
 http://www.flashbacksales.co.uk/articles/compression.htm

I doubt you're experiencing this... I think you mean your audio is
simply sped up?
 

At the risk of going far enough OT
to be banned, there are two types
of audio compression.  One is amplitude
adjustment, as it were, and another
is "time compression" (yes, check out
some multitracking software), so it's
possible to use the term in the sense
he's using it, but it's a tad, what, {arcane}
unless you're producing hip-hop records
Maybe we should recommend getting
a slower processor? :D :D
KDK
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Chris Pressey
On Fri, 27 Feb 2004 13:25:20 -0500
Philippe Vachon <[EMAIL PROTECTED]> wrote:

> As I said before, the sound is compressed -- not in the data sense,
> but rather in the analogue sense where the wavelength of a waveform 
> decreases, as does the period. I appologize if I had confused you, but
> I'm not a Software Engineer -- merely a lowly Electrical Engineering 
> Student. :)

Off topic, but in hopes of clearing up the terminology at least, this is
what "compressed" means for audio engineers:

  http://www.flashbacksales.co.uk/articles/compression.htm

I doubt you're experiencing this... I think you mean your audio is
simply sped up?

> I'm not quite sure what you mean by outdated - does FreeBSD go with
> the Linux Kernel release numbers - odd for development, even for
> stable - or am I missing something, because uname-a tells me I'm
> running 5.1-RELEASE.

5.x are technology preview releases.  The latest in the 5.x branch is
5.2.1.  Odd/even means nothing to FreeBSD release engineering.  See

  http://www.freebsd.org/releases/index.html

for more information.

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


Re: Vinum configuration question.

2004-02-27 Thread Greg 'groggy' Lehey
On Friday, 27 February 2004 at 14:06:48 -0500, Jason Schadel wrote:
> Here's my situation.  I have two machines.  One running OpenBSD on a
> 60gig drive and one running FreeBSD on a 10gig drive with a second 60gig
> for storage.  I want to take the 60 gig drive from the OpenBSD box and
> use it as a mirror to the 60 gig in the FreeBSD box.  The catch is I
> want to create the mirror on FreeBSD before I move the drive so I can
> copy the data on the OpenBSD box to the FreeBSD box.
>
> Is there a way I can configure the drive on FreeBSD with vinum so I can
> copy the data from the OpenBSD drive then insert the 60 gig drive in the
> OpenBSD box into the array on the FreeBSD box?

There are several ways to achieve what you want to do.  The most
obvious would be to create the Vinum volume with only one plex and
copy the data across via the network.  You could then move the disk on
the OpenBSD box and create another subdisk/plex on it, then start it.
There's no way to keep the original data on the OpenBSD disk, since
Vinum requires a different format from native disks, and OpenBSD has a
(slightly) different on-disk format from FreeBSD.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
Note: I discard all HTML mail unseen.
Finger [EMAIL PROTECTED] for PGP public key.
See complete headers for address and phone numbers.


pgp0.pgp
Description: PGP signature


Re: procmail

2004-02-27 Thread albi
On Fri, 27 Feb 2004 17:01:03 -0600
"Henning, Brian" <[EMAIL PROTECTED]> wrote:

> When I run:
> gotmail --use-procmail --procmail-bin `which procmail` -u b1henning -p
> 
> 
> It delivers in the mbox instead of the Maildir.
> I tried you recipie changes you sugested and the .procmailrc changes.

gotmail is software to fetch email from hotmail, and afaik it completely
bypasses any MTA you're running, so you clearly have a procmail-problem
here

in my .procmailrc there's Maildir defined, do you have that ?
the logging can also be handy to see what's going on

$ less .procmailrc
VERBOSE=off
SHELL=/bin/sh
DEFAULT=$HOME/Maildir/
ORGMAIL=$HOME/Maildir/
MAILDIR=$HOME/Maildir/
PMDIR=$HOME/.procmail
LOGFILE=$PMDIR/log

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


Re: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Kevin D. Kinsey, DaleCo, S.P.
Philippe Vachon wrote:

Lowell Gilbert wrote:

Philippe Vachon <[EMAIL PROTECTED]> writes:

 

I just subscribed to the list, but I've been using FreeBSD on and off
for a few months now. There has, however, been one thing lacking from
my FreeBSD setup and that is the ability to play sound!
  


Do bear in mind that you are running an outdated version of an "early
adopter's" release of the OS. 
 

I followed the directions in the handbook (namely adding the line to
load the snd_ab16.ko kernel module to loader.conf) and adjusted the
  


Nowhere in the handbook is the snd_sb16.ko module even mentioned.  
Did you try just loading the snd_pcm.ko module?

 

volume. The sound, when it does play, is compressed -- i.e. runs at 10
times the speed it should. I can't even play any audio with XMMS.
  


That's not what "compressed" normally means in relation to audio.
What did you use to play audio besides xmms?  Did something different 
happen when you used xmms, or was that just
awkward phrasing?

 

Anybody have any ideas? It's a Creative SoundBlaster 16 PnP ISA card
(model CT4180), and it's in a PIII450 box with an ASUS P2BF
motherboard. Any help will be appreciated.
  


I have such a card (probably not *quite* the same model) in my -STABLE
box...
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
"[EMAIL PROTECTED]"

 

I did try loading just the snd_pcm module, which did nothing. 
SoundBlaster cards need a bridge, as far as I can tell, to the PCM 
driver. That's where the snd_sbc and snd_sb16 kernel modules come in.

I had used more than just XMMS -- I used cdcontrol (making sure the 
volume was turned up on the analogue CD input), which didn't play 
audio at all, as was the case with XMMS. When I tried using 
applications that use sound (i.e. Gaim), the sound was compressed 
(sped up if you will).

As I said before, the sound is compressed -- not in the data sense, 
but rather in the analogue sense where the wavelength of a waveform 
decreases, as does the period. I appologize if I had confused you, but 
I'm not a Software Engineer -- merely a lowly Electrical Engineering 
Student. :)

I'm not quite sure what you mean by outdated - does FreeBSD go with 
the Linux Kernel release numbers - odd for development, even for 
stable - or am I missing something, because uname-a tells me I'm 
running 5.1-RELEASE.

Thanks.
Phil V.


Nothing to do with the Linux crowd ;-),
it's just that 5.1-RELEASE was what,
October?  And it's an "experimental" or
at least "New Technology" (~'beta'?)
release ... so you really should try and
stay up to date as much as possible
to see if the issues you are having
have been resolved.
Kevin Kinsey

PS> See the "Early Adopter's
Guide" perhaps
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Philippe Vachon
Lowell Gilbert wrote:

Philippe Vachon <[EMAIL PROTECTED]> writes:

 

I just subscribed to the list, but I've been using FreeBSD on and off
for a few months now. There has, however, been one thing lacking from
my FreeBSD setup and that is the ability to play sound!
   

Do bear in mind that you are running an outdated version of an "early
adopter's" release of the OS.  

 

I followed the directions in the handbook (namely adding the line to
load the snd_ab16.ko kernel module to loader.conf) and adjusted the
   

Nowhere in the handbook is the snd_sb16.ko module even mentioned.  
Did you try just loading the snd_pcm.ko module?

 

volume. The sound, when it does play, is compressed -- i.e. runs at 10
times the speed it should. I can't even play any audio with XMMS.
   

That's not what "compressed" normally means in relation to audio.
What did you use to play audio besides xmms?  
Did something different happen when you used xmms, or was that just
awkward phrasing?

 

Anybody have any ideas? It's a Creative SoundBlaster 16 PnP ISA card
(model CT4180), and it's in a PIII450 box with an ASUS P2BF
motherboard. Any help will be appreciated.
   

I have such a card (probably not *quite* the same model) in my -STABLE
box...
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
 

I did try loading just the snd_pcm module, which did nothing. 
SoundBlaster cards need a bridge, as far as I can tell, to the PCM 
driver. That's where the snd_sbc and snd_sb16 kernel modules come in.

I had used more than just XMMS -- I used cdcontrol (making sure the 
volume was turned up on the analogue CD input), which didn't play audio 
at all, as was the case with XMMS. When I tried using applications that 
use sound (i.e. Gaim), the sound was compressed (sped up if you will).

As I said before, the sound is compressed -- not in the data sense, but 
rather in the analogue sense where the wavelength of a waveform 
decreases, as does the period. I appologize if I had confused you, but 
I'm not a Software Engineer -- merely a lowly Electrical Engineering 
Student. :)

I'm not quite sure what you mean by outdated - does FreeBSD go with the 
Linux Kernel release numbers - odd for development, even for stable - or 
am I missing something, because uname-a tells me I'm running 5.1-RELEASE.

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


Re: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread dave
Hello,
In my /boot/loader.conf file i have:
snd_sb16_load="YES"
and that was all i needed to do. Aside from that you might need a volume
control prog.
HTH
Dave.

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


RE: procmail

2004-02-27 Thread Gary
Hi Brian,

--On Friday, February 27, 2004 05:01:03 PM -0600 "Henning, Brian" 
<[EMAIL PROTECTED]> wrote:

I gave that a try.
echo ./Maildir/ >> /var/qmail/control/defaultdelivery
perfect..

When I run:
gotmail --use-procmail --procmail-bin `which procmail` -u b1henning -p

It delivers in the mbox instead of the Maildir.
I tried you recipie changes you sugested and the .procmailrc changes.
I am not familiar with gotmail, but maybe it is calling the default global 
.procmailrc file instead of your local .procmailrc file. Also check your 
procmail logs (if you have it turned on), and your logs from gotmail, if it 
has logging capabilities..  also, the newer procmail versions do support 
Maildir delivery, whereas the older versions do not.. and the older 
versions should be used with a program called Safecat, but not needed for 
newer procmail versions.

This not having a defaultdelivery file in your system also worries me, as 
it should have been installed by default.

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


Re: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Lowell Gilbert
Philippe Vachon <[EMAIL PROTECTED]> writes:

> I just subscribed to the list, but I've been using FreeBSD on and off
> for a few months now. There has, however, been one thing lacking from
> my FreeBSD setup and that is the ability to play sound!

Do bear in mind that you are running an outdated version of an "early
adopter's" release of the OS.  

> I followed the directions in the handbook (namely adding the line to
> load the snd_ab16.ko kernel module to loader.conf) and adjusted the

Nowhere in the handbook is the snd_sb16.ko module even mentioned.  
Did you try just loading the snd_pcm.ko module?

> volume. The sound, when it does play, is compressed -- i.e. runs at 10
> times the speed it should. I can't even play any audio with XMMS.

That's not what "compressed" normally means in relation to audio.
What did you use to play audio besides xmms?  
Did something different happen when you used xmms, or was that just
awkward phrasing?

> Anybody have any ideas? It's a Creative SoundBlaster 16 PnP ISA card
> (model CT4180), and it's in a PIII450 box with an ASUS P2BF
> motherboard. Any help will be appreciated.

I have such a card (probably not *quite* the same model) in my -STABLE
box...
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Is it feisable to do a Firewall'ed DHCP server?

2004-02-27 Thread Ryan Merrick
Dragoncrest wrote:
I'm looking to take an old P120 with 128m of ram and turn it into a lan
DHCP server.  The thing is, the guys who will be pulling DHCP addresses
are cream of the crop computer users who really know their way around. 
So I plan to have all network services (minus DHCP of course) turned off
and I will have IPFW running as well to protect the box from most hack
attempts.

The network itself with be a 300+ person gaming lan broken down into 24
person Vlan's for added security.  The box in question will only be
console accessible to the average user.  AKA, you ain't at the console,
you don't get in as I plan to turn off sendmail, ssh, everything except
DHCP and IPFW.  So, how feisable is it to actually run a system like
this?  I realize I gotta open up certain ports in the firewall rules to
allow DHCP.  I'll figure those out later.  I'm more curious if these
steps to protect the security of the box are doable and if so, would
they be practical?  I'm just thinking ahead like this because I don't
want the box to get hacked and used to bring down the network.
I'm also looking to set the firewall to log ALL packets so that if we
have a problem user, we can use the firewall logs to identify said user.
 I'd be looking for things like port scanning and other hacking/virus
like activity.  We had our network brought down once by same said virus
and hacking activity but never found who did it.  So this is our new
plan to prevent that from happening and detect and remove said
individuals who are causing said issues.
It's hard enough running a 300 person gaming lan.  We want to be sure
that we don't have it brought to its knees like last time.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Hi,

Take a look at netreg for the user and dhcp management.
http://www.netreg.org/
--
-Ryan Merrick
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: procmail

2004-02-27 Thread Henning, Brian
Hey Gary,

I gave that a try. 
echo ./Maildir/ >> /var/qmail/control/defaultdelivery
When I run:
gotmail --use-procmail --procmail-bin `which procmail` -u b1henning -p


It delivers in the mbox instead of the Maildir.
I tried you recipie changes you sugested and the .procmailrc changes.

Any other thoughts,

Thanks for the help,

Brian


-Original Message-
From: Gary [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 27, 2004 4:54 PM
To: FreeBSD
Subject: RE: procmail


Hi Brian,

--On Friday, February 27, 2004 04:36:51 PM -0600 "Henning, Brian" 
<[EMAIL PROTECTED]> wrote:

>  cat /var/qmail/control/defaultdelivery
> cat: /var/qmail/control/defaultdelivery: No such file or directory
>
> Do I need to put maildir in here or something?

Yes, you need to tell qmail what type of mailbox system you have. It
will 
not deliver to Maildir if you do not have it..

I am assuming you have a stock setup of qmail with a /var/qmail/control
dir 
in place..

just make a defaultdelivery file in the control dir, and put in
./Maildir/ 
into it, to have a Maildir format..


-- 
Gary
___
[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: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Philippe Vachon
Kevin D. Kinsey, DaleCo, S.P. wrote:

Philippe Vachon wrote:

Hey.
I guess I was trying my best to avoid having to recompile the Kernel, 
and stick with the stock kernel in 5.1. Are there any alternatives to 
recompiling?

Thanks.

Phil V.

Jorn Argelo wrote:

Do you have the following kernel options compiled in your kernel?

device  pcm
device  sbc
I believe you don't need a soundblaster kernel module then, but I am 
not sure.

Cheers,

Jorn

On Friday 27 February 2004 17:41, Philippe Vachon wrote:
 

Hey Folks.
I just subscribed to the list, but I've been using FreeBSD on and off
for a few months now. There has, however, been one thing lacking 
from my
FreeBSD setup and that is the ability to play sound!

I followed the directions in the handbook (namely adding the line to
load the snd_ab16.ko kernel module to loader.conf) and adjusted the
volume. The sound, when it does play, is compressed -- i.e. runs at 10
times the speed it should. I can't even play any audio with XMMS.
Anybody have any ideas? It's a Creative SoundBlaster 16 PnP ISA card
(model CT4180), and it's in a PIII450 box with an ASUS P2BF 
motherboard.
Any help will be appreciated.




There is a *long* list of loadable modules in
/boot/kernel/ ... check out the ones that have
snd* in the title.
Then, $man kldload.

HTH,

Kevin Kinsey
DaleCo, S.P.
Thanks for the advice -- I've already checked there, as per the 
instructions in the handbook. That's why I have the line
snd_sb16_load="YES"
in my loader.conf, as per the directions in the handbook, and told to me 
by many on the #freebsd channel on freenode.

I do get sound playing, however, the problem is, wherenever I do get 
sound playing, the time is compressed -- it plays 10 times (or even 
more) faster than it should be.

It's annoying, I guess, because I easily enough was able to get OSS to 
work with Linux kernel 2.4.x and ALSA in the 2.6.x kernel on this 
computer, but I still cannot for the life of me get the FreeBSD kernel 
to play audio on this computer. :(

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


RE: procmail

2004-02-27 Thread Gary
Hi Brian,

--On Friday, February 27, 2004 04:36:51 PM -0600 "Henning, Brian" 
<[EMAIL PROTECTED]> wrote:

 cat /var/qmail/control/defaultdelivery
cat: /var/qmail/control/defaultdelivery: No such file or directory
Do I need to put maildir in here or something?
Yes, you need to tell qmail what type of mailbox system you have. It will 
not deliver to Maildir if you do not have it..

I am assuming you have a stock setup of qmail with a /var/qmail/control dir 
in place..

just make a defaultdelivery file in the control dir, and put in ./Maildir/ 
into it, to have a Maildir format..

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


Re: can't ssh back into 10.242; host seen as Down

2004-02-27 Thread Ryan Merrick
Gary Kline wrote:
5.2-RELEASE is coming around.  From the KVM connection
to 10.242 I can telnet and ssh *out* to other places.
(I can fetch ports and upgrade things... .)  But I can't
figure out why I can't ssh or telnet *in*.  ping sees my
new system as down::
pu 19:55  [5212] ping 10.242
PING 10.242 (10.0.0.242): 56 data bytes
ping: sendto: Host is down
ping: sendto: Host is down
ping: sendto: Host is down
^Csendto: Host is down
--- 10.242 ping statistics ---
10 packets transmitted, 0 packets received, 100% packet loss
pu 19:55  [5213]
	To show what's going on, I switched over to 10.242, ssh'd 
	into 10.1 and did ping and ssh -vvv .  Below is a typescript
	out these cmds:

Script started on Thu Feb 26 20:05:27 2004
p4 20:05  [5001]
PING 10.242 (10.0.0.242): 56 data bytes
ping: sendto: Host is down
ping: sendto: Host is down
ping: sendto: Host is down
ping: sendto: Host is down
ping: sendto: Host is down
^C
--- 10.242 ping statistics ---
12 packets transmitted, 0 packets received, 100% packet loss
p4 20:05  [5002]
OpenSSH_3.5p1 FreeBSD-20030201, SSH protocols 1.5/2.0, OpenSSL 0x0090701f
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Rhosts Authentication disabled, originating port will not be
trusted.
debug1: ssh_connect: needpriv 0
debug1: Connecting to 10.242 [10.0.0.242] port 22.
debug1: connect to address 10.0.0.242 port 22: Operation timed out
ssh: connect to host 10.242 port 22: Operation timed out
p4 20:08  [5003]
Script done on Thu Feb 26 20:08:08 2004

ssh worked with 4.9 a couple days ago.  Does anybody know
where I'm messing up?
	thanks,

	gary



Hi,

Are you using ipfw or ipf ?

if not Compair/send the output of ifconfig -a and sockstat on both boxes.

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


Re: directories to exclude for backups

2004-02-27 Thread Andrew Hall
Ben,

I personally believe the only data necessary to archive is your
configuration files, and user data.  The OS is easy to replace, real
easy in FreeBSD.  I consider the entire OS to be expendable because it
is so easy to replace.  Another option for software is amanda.  Its in
ports. 

Drew

On Fri, 2004-02-27 at 17:39, Ryan Merrick wrote:
> Benjamin P. Keating wrote:
> > My Plan is to make a gzipped tarball of the entire machine, excluding 
> > directories that are not necessary. If however, there is a more sound 
> > solution then tarballing a machine for a backup, Im all ears. I know 
> > rsync is a possibility, but i'd like to have just a solid, non-active 
> > archive copy of machines.
> > 
> > EXCLUDE DIRECTORIES
> > --
> > /proc
> > /dev
> > /tmp
> > /usr/ports/
> > /var/tmp/
> > 
> > What else would be safe to exclude?
> > 
> > Thanks,
> > -Ben
> > 
> Hello,
> 
> I use bacula to disk and tape.
> http://www.bacula.org/
> /usr/ports/sysutils/bacula

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


Re: BSD 4.4 Configuration

2004-02-27 Thread Kevin D. Kinsey, DaleCo, S.P.
Mateusz Rajca wrote:

Hi,

I have Intel 810 Video Card and BSD 4.4. In the configuration in BSD 4.4 Under Video Cards Intel 810 isn't on the list. What should I do?

Thanks

Matt

 

You mean you have *FreeBSD* 4.4 ??

Which "configuration" are we talking about?

Lastly, IIRC, there's a chapter in the handbook
dealing with the 810 chipset.
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: procmail

2004-02-27 Thread Henning, Brian
 cat /var/qmail/control/defaultdelivery
cat: /var/qmail/control/defaultdelivery: No such file or directory

Do I need to put maildir in here or something?

-Original Message-
From: Gary [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 27, 2004 4:32 PM
To: [EMAIL PROTECTED]
Subject: RE: procmail


Hi Brian,

--On Friday, February 27, 2004 03:55:47 PM -0600 "Henning, Brian" 
<[EMAIL PROTECTED]> wrote:

> I tried removing everything in my recipes file, but that didn't work. 
> Any more thoughts?

What is the contents of your /var/qmail/control/defaultdelivery file?

Is it ./Maildiror ./Maildir/  ?

Also regarding Andrew Gould's post, in part below,

> 1. In recipe examples that I've seen, there is a space between the 
> zero and  second colon in ":0 :".  I don't know if this matters.

With the Maildir format, the second ":" is not needed in recipes, as no 
locking is needed, just one of the benefits of Maildir format over mbox.

Mail is not stored on a spool, but as individual emails..


One other thing I just thought of...  I have this at the top of my 
.procmailrc file... (in my home dir)..

Put your paths here.. and

DEFAULT="~/Maildir/"
MAILDIR=$HOME/Maildir/

You also need a catchall recipe at the bottom..

:0w
/home/yourname/Maildir

or some such..

-- 
Gary
___
[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: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Kevin D. Kinsey, DaleCo, S.P.
Philippe Vachon wrote:

Hey.
I guess I was trying my best to avoid having to recompile the Kernel, 
and stick with the stock kernel in 5.1. Are there any alternatives to 
recompiling?

Thanks.

Phil V.

Jorn Argelo wrote:

Do you have the following kernel options compiled in your kernel?

device  pcm
device  sbc
I believe you don't need a soundblaster kernel module then, but I am 
not sure.

Cheers,

Jorn

On Friday 27 February 2004 17:41, Philippe Vachon wrote:
 

Hey Folks.
I just subscribed to the list, but I've been using FreeBSD on and off
for a few months now. There has, however, been one thing lacking 
from my
FreeBSD setup and that is the ability to play sound!

I followed the directions in the handbook (namely adding the line to
load the snd_ab16.ko kernel module to loader.conf) and adjusted the
volume. The sound, when it does play, is compressed -- i.e. runs at 10
times the speed it should. I can't even play any audio with XMMS.
Anybody have any ideas? It's a Creative SoundBlaster 16 PnP ISA card
(model CT4180), and it's in a PIII450 box with an ASUS P2BF 
motherboard.
Any help will be appreciated.



There is a *long* list of loadable modules in
/boot/kernel/ ... check out the ones that have
snd* in the title.
Then, $man kldload.

HTH,

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: directories to exclude for backups

2004-02-27 Thread Ryan Merrick
Benjamin P. Keating wrote:
My Plan is to make a gzipped tarball of the entire machine, excluding 
directories that are not necessary. If however, there is a more sound 
solution then tarballing a machine for a backup, Im all ears. I know 
rsync is a possibility, but i'd like to have just a solid, non-active 
archive copy of machines.

EXCLUDE DIRECTORIES
--
/proc
/dev
/tmp
/usr/ports/
/var/tmp/
What else would be safe to exclude?

Thanks,
-Ben
Hello,

I use bacula to disk and tape.
http://www.bacula.org/
/usr/ports/sysutils/bacula
--
-Ryan Merrick
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


BSD 4.4 Configuration

2004-02-27 Thread Mateusz Rajca
Hi,
 
I have Intel 810 Video Card and BSD 4.4. In the configuration in BSD 4.4 Under Video 
Cards Intel 810 isn't on the list. What should I do?
 
Thanks
 
Matt


-
Do you Yahoo!?
Get better spam protection with Yahoo! Mail
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: procmail

2004-02-27 Thread Gary
Hi Brian,

--On Friday, February 27, 2004 03:55:47 PM -0600 "Henning, Brian" 
<[EMAIL PROTECTED]> wrote:

I tried removing everything in my recipes file, but that didn't work.
Any more thoughts?
What is the contents of your /var/qmail/control/defaultdelivery file?

Is it ./Maildiror ./Maildir/  ?

Also regarding Andrew Gould's post, in part below,

1. In recipe examples that I've seen, there is a space between the zero
and  second colon in ":0 :".  I don't know if this matters.
With the Maildir format, the second ":" is not needed in recipes, as no 
locking is needed, just one of the benefits of Maildir format over mbox. 
Mail is not stored on a spool, but as individual emails..

One other thing I just thought of...  I have this at the top of my 
.procmailrc file... (in my home dir)..

Put your paths here.. and

DEFAULT="~/Maildir/"
MAILDIR=$HOME/Maildir/
You also need a catchall recipe at the bottom..

:0w
/home/yourname/Maildir
or some such..

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


Re: Radeon 9800 XT 256 in FreeBSD 4.x or 5.x

2004-02-27 Thread Vulpes Velox
On Fri, 27 Feb 2004 16:35:56 -0500
Forrest Aldrich <[EMAIL PROTECTED]> wrote:

> I'm about to install/build a new FreeBSD system... but am curious if
> 
> anyone has gotten a sufficient driver for this card.   ATI provides
> one for Linux, of course... (frustrating) but not FreeBSD.

Just like on linux, check to see if it is suppurted by XFree86...
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: procmail

2004-02-27 Thread Andrew L. Gould
On Friday 27 February 2004 03:55 pm, Henning, Brian wrote:
> I tried removing everything in my recipes file, but that didn't work.
> Any more thoughts?
>
> Thanks,
>
> brian
>
> -Original Message-
> From: albi [mailto:[EMAIL PROTECTED]
> Sent: Friday, February 27, 2004 3:24 PM
> To: [EMAIL PROTECTED]
> Subject: Re: procmail
>
>
> On Fri, 27 Feb 2004 14:56:50 -0600
>
> "Brian H" <[EMAIL PROTECTED]> wrote:
> > I am trying to get procmail to send email to my Maildir in my home
> > directory, but
> > it keeps putting it in /var/mail/henninb. I am sure I just missed a
> > setting, can someone help point it out. here is how everything is
> > setup currently.
>
> -- cut for brevity --
>
> > ~/.pmdir> cat recipes
> >
> > :0:
> >
> > * ^FROM:.*(aol.com|spamsenders)
> > /dev/null
> >
> > :0:
> >
> > Inbox/
> >
> > cat .qmail
> >
> > |preline /usr/bin/procmail -t ~/.procmailrc || exit 111
> >
> > cat .procmailrc
> > VERBOSE=on
> > MAILDIR=$HOME/Maildir/
> > PMDIR=$HOME/.pmdir
> > LOGFILE=$PMDIR/log
>
> here's an example with postfix + procmail (looks like you should remove
> the :0: Inbox lines :
>
> $ less .forward
>
> |/usr/bin/procmail
>
> $ less .procmailrc
> VERBOSE=off
> SHELL=/bin/sh
> DEFAULT=$HOME/Maildir/
> ORGMAIL=$HOME/Maildir/
> MAILDIR=$HOME/Maildir/
> PMDIR=$HOME/.procmail
> LOGFILE=$PMDIR/log

A couple of items:

1. In recipe examples that I've seen, there is a space between the zero and 
second colon in ":0 :".  I don't know if this matters.

2. To test the recipes, make a copy of the mailbox and run formail. (formail 
is installed with procmail.)

cd ~
cp /var/mail/henninb ./henninb2
formail -ds procmail < ./henninb2

If the recipes work, then the problem may be that procmail isn't being 
executed successfully.

Good luck,

Andrew Gould

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


Re: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Philippe Vachon
Hey.
I guess I was trying my best to avoid having to recompile the Kernel, 
and stick with the stock kernel in 5.1. Are there any alternatives to 
recompiling?

Thanks.

Phil V.

Jorn Argelo wrote:

Do you have the following kernel options compiled in your kernel?

device  pcm
device  sbc
I believe you don't need a soundblaster kernel module then, but I am not sure.

Cheers,

Jorn

On Friday 27 February 2004 17:41, Philippe Vachon wrote:
 

Hey Folks.
I just subscribed to the list, but I've been using FreeBSD on and off
for a few months now. There has, however, been one thing lacking from my
FreeBSD setup and that is the ability to play sound!
I followed the directions in the handbook (namely adding the line to
load the snd_ab16.ko kernel module to loader.conf) and adjusted the
volume. The sound, when it does play, is compressed -- i.e. runs at 10
times the speed it should. I can't even play any audio with XMMS.
Anybody have any ideas? It's a Creative SoundBlaster 16 PnP ISA card
(model CT4180), and it's in a PIII450 box with an ASUS P2BF motherboard.
Any help will be appreciated.
Thanks a lot.
Phil V.
___
[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]"
 

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


Re: Radeon 9800 XT 256 in FreeBSD 4.x or 5.x

2004-02-27 Thread Jorn Argelo
You can try using FreeBSD's Linux Compatibility, but I can't guarantee if it 
works. That's why I always buy NVIDIA cards because they make FreeBSD 
drivers :-)

You shouldn't install it in the default paths though, but in /compat/linux.

Cheers,

Jorn

On Friday 27 February 2004 22:35, Forrest Aldrich wrote:
> I'm about to install/build a new FreeBSD system... but am curious if
> anyone has gotten a sufficient driver for this card.   ATI provides one
> for Linux, of course... (frustrating) but not FreeBSD.
>
>
> Thanks.
>
>
> ___
> [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: SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Jorn Argelo
Do you have the following kernel options compiled in your kernel?

device  pcm
device  sbc

I believe you don't need a soundblaster kernel module then, but I am not sure.

Cheers,

Jorn

On Friday 27 February 2004 17:41, Philippe Vachon wrote:
> Hey Folks.
> I just subscribed to the list, but I've been using FreeBSD on and off
> for a few months now. There has, however, been one thing lacking from my
> FreeBSD setup and that is the ability to play sound!
>
> I followed the directions in the handbook (namely adding the line to
> load the snd_ab16.ko kernel module to loader.conf) and adjusted the
> volume. The sound, when it does play, is compressed -- i.e. runs at 10
> times the speed it should. I can't even play any audio with XMMS.
>
> Anybody have any ideas? It's a Creative SoundBlaster 16 PnP ISA card
> (model CT4180), and it's in a PIII450 box with an ASUS P2BF motherboard.
> Any help will be appreciated.
>
> Thanks a lot.
> Phil V.
> ___
> [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: procmail

2004-02-27 Thread Henning, Brian
I tried removing everything in my recipes file, but that didn't work.
Any more thoughts?

Thanks,

brian

-Original Message-
From: albi [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 27, 2004 3:24 PM
To: [EMAIL PROTECTED]
Subject: Re: procmail


On Fri, 27 Feb 2004 14:56:50 -0600
"Brian H" <[EMAIL PROTECTED]> wrote:


> I am trying to get procmail to send email to my Maildir in my home
> directory, but
> it keeps putting it in /var/mail/henninb. I am sure I just missed a
> setting, can someone help point it out. here is how everything is
> setup currently.
-- cut for brevity --
> ~/.pmdir> cat recipes
> :0:
> * ^FROM:.*(aol.com|spamsenders)
> /dev/null
> 
> :0:
> Inbox/
> 
> cat .qmail
> |preline /usr/bin/procmail -t ~/.procmailrc || exit 111
> 
> 
> cat .procmailrc
> VERBOSE=on
> MAILDIR=$HOME/Maildir/
> PMDIR=$HOME/.pmdir
> LOGFILE=$PMDIR/log

here's an example with postfix + procmail (looks like you should remove
the :0: Inbox lines :

$ less .forward 
|/usr/bin/procmail

$ less .procmailrc
VERBOSE=off
SHELL=/bin/sh
DEFAULT=$HOME/Maildir/
ORGMAIL=$HOME/Maildir/
MAILDIR=$HOME/Maildir/
PMDIR=$HOME/.procmail
LOGFILE=$PMDIR/log

___
[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: Problems resolving hosts

2004-02-27 Thread Charles Swiger
On Feb 27, 2004, at 4:18 PM, JJB wrote:
Well if you had paid closer attention to what Travis wrote you would
have read that nothing had changed on that 5.2 lan box or his lan
network so your guess about resolv.conf is way off base, and that
UFS2 being the problem is a much more sound opinion.
Sigh.  I didn't claim that his resolv.conf changed; I didn't claim that 
his LAN network changed; I said that the behavior he describes is quite 
close to what would happen if one of the nameservers referenced in 
resolv.conf was having problems.

Do you not comprehend this?

And as far as IPFW goes, your statement is again another case of you
not paying attention to what was written. You really need to read
closely before opening your mouth saying things which are not true.
I never said "that IPFW is completely broken" what I said is ipfw
stateful rules do not work in an Lan network when ipfw's
divert/nated legacy subroutine is used. This subject was beat to
death in a long thread back around the first of the year. You should
check the archives for the technical details before you sound off
demonstrating to everyone how little you know about what truly has
transpired. Open mouth insert foot.
Young one, you are considerably less clever than you evidently think 
you are.  That's not surprising; this is unfortunately true of most 
people.  A tone of condescending snobbery pretty much is never 
appropriate, regardless of who is right or wrong.

I don't need to review the archives to remember that discussion; at 
that time I read them and concluded that you were unable to understand 
how to make IPFW+NAT work the way you expected it to.  However, there 
are lots of people who use IPFW+NAT successfully ("success" by their 
definitions, that is), just as there are people who use PF or other 
tools.

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


Re: emailing trouble...

2004-02-27 Thread Andrew Boothman
Xpression wrote:

Hi list, I've two servers, one running named and the Exim (MTA), the
second one running Apache and Squid, the trouble is that I want to send
mails through the second one to outside, but I can't, when I use:
second# mail [EMAIL PROTECTED] the mail fails and go to the root inbox,
and the same with any other user...any clue ??? Thanks...
What is logged in /var/log/maillog when this happens?

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


Radeon 9800 XT 256 in FreeBSD 4.x or 5.x

2004-02-27 Thread Forrest Aldrich
I'm about to install/build a new FreeBSD system... but am curious if 
anyone has gotten a sufficient driver for this card.   ATI provides one 
for Linux, of course... (frustrating) but not FreeBSD.

Thanks.

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


SoundBlaster 16 PnP ISA Card on 5.1

2004-02-27 Thread Philippe Vachon
Hey Folks.
I just subscribed to the list, but I've been using FreeBSD on and off 
for a few months now. There has, however, been one thing lacking from my 
FreeBSD setup and that is the ability to play sound!

I followed the directions in the handbook (namely adding the line to 
load the snd_ab16.ko kernel module to loader.conf) and adjusted the 
volume. The sound, when it does play, is compressed -- i.e. runs at 10 
times the speed it should. I can't even play any audio with XMMS.

Anybody have any ideas? It's a Creative SoundBlaster 16 PnP ISA card 
(model CT4180), and it's in a PIII450 box with an ASUS P2BF motherboard. 
Any help will be appreciated.

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


Re: Has anyone succeeded in compiling crm114 & Mailfilter

2004-02-27 Thread Lowell Gilbert
Lowell Gilbert <[EMAIL PROTECTED]> writes:

> Gunnar Flygt <[EMAIL PROTECTED]> writes:
> 
> > I tried to compile the spam catcher CRM114. It bails out fairly quickly.
> > Has anyone tweeked the src to work with FreeBSD?
> 
> If I get a chance, I intend to crank out a port for it in a day or
> so.  I wasn't intending to handle the integration with Mailfilter,
> though.
> 
> [I'm not *guaranteeing* I'll get the chance; I have to go to
> work on Monday, for the first time in over a year...]

It seems to build fine if you make the recommended changes in the
Makefile (look in the Makefile and search for "FreeBSD").  You need
the "tre" regex implementation, but the "libtre" port can install 
that for you.

I won't submit a port until I have it doing something useful for me...
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Firewall enabling confusion.

2004-02-27 Thread Ion-Mihai Tetcu
On Fri, 27 Feb 2004 16:14:26 -0500
"Shaun T. Erickson" <[EMAIL PROTECTED]> wrote:

> Ion-Mihai Tetcu wrote:
> 
> > hint:
> > sysctl -a | grep ip.fw 
> > for logging do:
> > sysctl -w net.inet.ip.fw.verbose: 1
> > sysctl -w net.inet.ip.fw.verbose_limit: 5
> 
> Ah.
> 
> > see also man ipfw, it will answer your questions.
> 
> I'm still wading through it - it's quite a long read. I'll finish before 
> asking anything else. ;)
> 
> > AFAIK recompile with IPFW_DEFAUL_TO_ACCEPT, but it would be a bad thing.
> 
> I don't disagree - I just wanted to know how. It helps me to understand 
> the system better. ;)

;) on ipfw2 you can suspend the last automatic deny all rule, see the man page.


-- 
IOnut
Unregistered ;) FreeBSD user

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


Re: procmail

2004-02-27 Thread albi
On Fri, 27 Feb 2004 14:56:50 -0600
"Brian H" <[EMAIL PROTECTED]> wrote:


> I am trying to get procmail to send email to my Maildir in my home 
> directory, but
> it keeps putting it in /var/mail/henninb. I am sure I just missed a
> setting, can someone help point it out. here is how everything is
> setup currently.
-- cut for brevity --
> ~/.pmdir> cat recipes
> :0:
> * ^FROM:.*(aol.com|spamsenders)
> /dev/null
> 
> :0:
> Inbox/
> 
> cat .qmail
> |preline /usr/bin/procmail -t ~/.procmailrc || exit 111
> 
> 
> cat .procmailrc
> VERBOSE=on
> MAILDIR=$HOME/Maildir/
> PMDIR=$HOME/.pmdir
> LOGFILE=$PMDIR/log

here's an example with postfix + procmail (looks like you should remove
the :0: Inbox lines :

$ less .forward 
|/usr/bin/procmail

$ less .procmailrc
VERBOSE=off
SHELL=/bin/sh
DEFAULT=$HOME/Maildir/
ORGMAIL=$HOME/Maildir/
MAILDIR=$HOME/Maildir/
PMDIR=$HOME/.procmail
LOGFILE=$PMDIR/log

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


Re: Kernel modules question.

2004-02-27 Thread Ion-Mihai Tetcu

<[EMAIL PROTECTED]>:
 Connected to 65.173.111.5 but sender was rejected.
 Remote host said: 554 5.0.0 Romanian spam rejected
   

Now ain't this a nice and full of wisdom message.



On Fri, 27 Feb 2004 13:25:22 -0700 (MST)
Warren Block <[EMAIL PROTECTED]> wrote:

> On Fri, 27 Feb 2004, Shaun T. Erickson wrote:
> 
> > In linux, I'd use /etc/modules.conf to list and configure any kernel
> > modules I want loaded at boot time. How is that done in FreeBSD?


-- 
IOnut
Unregistered ;) FreeBSD user

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


RE: Problems resolving hosts

2004-02-27 Thread JJB
Well if you had paid closer attention to what Travis wrote you would
have read that nothing had changed on that 5.2 lan box or his lan
network so your guess about resolv.conf is way off base, and that
UFS2 being the problem is a much more sound opinion.

And as far as IPFW goes, your statement is again another case of you
not paying attention to what was written. You really need to read
closely before opening your mouth saying things which are not true.
I never said "that IPFW is completely broken" what I said is ipfw
stateful rules do not work in an Lan network when ipfw's
divert/nated legacy subroutine is used. This subject was beat to
death in a long thread back around the first of the year. You should
check the archives for the technical details before you sound off
demonstrating to everyone how little you know about what truly has
transpired. Open mouth insert foot.

You should also read all the posts to this list and see for your
self all the 5.2.1 problems people are having. Bottom line is 5.2 is
an very dirty release and is an long way from being moved to stable.
It's formal release date has all ready been moved back 3 time and
will more than likely move back again. The kernel development team
just bit off more than it could handle this time. If it gets moved
to stable in it current condition it will only end up being one of
those 5.2.1.1.1 releases as fixes are applied to the stable branch
and fixing stable releales is not an goal of the stable branch.



-Original Message-
From: Chuck Swiger [mailto:[EMAIL PROTECTED]
Sent: Friday, February 27, 2004 1:22 PM
To: [EMAIL PROTECTED]
Cc: Travis Troyer; [EMAIL PROTECTED]
Subject: Re: Problems resolving hosts

JJB wrote:
> You are experiencing one of the many problems created by the new
> file system in the 5.x development releases. The file system gets
> all locked up and then times out before releasing the sector on
the
> hard drive so it can be read by program.

Dude, Travis' problem sounds a lot more like what would happen if
one of the
nameservers listed in /etc/resolv.conf wasn't responding to DNS
queries.

Your responses would be more helpful to other people if you
refrained from
locking the notion that all problems with 5.x are due to UFS2 into
your brain,
or for that matter, being convinced that IPFW is completely broken
and there
is a conspiracy against other firewalls on FreeBSD.  :-)

--
-Chuck

PS: To debug your problem, try using "dig @ns1 host", where you
replace ns1
with each of the DNS resolvers you have listed or available, and
replace host
with one or more hostnames that have been causing delays.  This will
show you
how quickly DNS is working and thus confirm whether the problem lies
in this
area, or else expose which nameserver isn't working and maybe why...

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


Re: Firewall enabling confusion.

2004-02-27 Thread Shaun T. Erickson
Ion-Mihai Tetcu wrote:

hint:
sysctl -a | grep ip.fw 
for logging do:
sysctl -w net.inet.ip.fw.verbose: 1
sysctl -w net.inet.ip.fw.verbose_limit: 5
Ah.

see also man ipfw, it will answer your questions.
I'm still wading through it - it's quite a long read. I'll finish before 
asking anything else. ;)

AFAIK recompile with IPFW_DEFAUL_TO_ACCEPT, but it would be a bad thing.
I don't disagree - I just wanted to know how. It helps me to understand 
the system better. ;)

	-ste

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


Re: Kernel modules question.

2004-02-27 Thread Ion-Mihai Tetcu
On Fri, 27 Feb 2004 15:44:24 -0500
"Shaun T. Erickson" <[EMAIL PROTECTED]> wrote:

> Warren Block wrote:
> 
> > On Fri, 27 Feb 2004, Shaun T. Erickson wrote:
> > 
> > 
> >>In linux, I'd use /etc/modules.conf to list and configure any kernel
> >>modules I want loaded at boot time. How is that done in FreeBSD?
> > 
> > 
> > It's /boot/loader.conf.  See 'man 5 loader.conf'.
> 
> Ah. Thank you. :) Where do I find documentation for the 341 or so modules?

man name_of_ the_module


-- 
IOnut
Unregistered ;) FreeBSD user

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


Re: Firewall enabling confusion.

2004-02-27 Thread Ion-Mihai Tetcu
On Fri, 27 Feb 2004 15:43:16 -0500
"Shaun T. Erickson" <[EMAIL PROTECTED]> wrote:

> Warren Block wrote:
> 
> > On Fri, 27 Feb 2004, Shaun T. Erickson wrote:
> > 
> > 
> >>Thanks! Yes, the ipfw.ko module is getting loaded. So now I just
> >need to>know how to enable things like divert and logging.
> > 
> > 
> > /etc/rc.firewall has examples.
> 
> I looked at that. That's not what I mean. :) I mean, if I do not have
> to build a new kernel to enable firewalling, logging and divert, then
> how do I enable them, such that the following line from my messages
> file would show that they have been enabled?


> Adding firewall_enable="YES" to rc.conf caused the ipfw module to be 
> loaded, enabling firewalling. Adding firewall_logging="YES" did *not* 
> enable logging in the message file line shown below. How do I do that?

hint:
sysctl -a | grep ip.fw 
for logging do:
sysctl -w net.inet.ip.fw.verbose: 1
sysctl -w net.inet.ip.fw.verbose_limit: 5

see also man ipfw, it will answer your questions.
 
> How would I get that line to show divert as being enabled? I may be 
> wrong (correct me if I am, please), but doesn't that line have to show
> them as enabled, before I can successfully make use of them in ipfw 
> commands like those you pointed me to in rc.firewall? What if I want 
> that line to report that the default is open, instead of deny?

AFAIK recompile with IPFW_DEFAUL_TO_ACCEPT, but it would be a bad thing.

> 
> Feb 27 14:37:22 peter kernel: ipfw2 initialized, divert disabled, 
> rule-based forwarding enabled, default to deny, logging disabled
> 
>   -ste
> 
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"
> 
> 
> !DSPAM:403faf7e32055386612425!
> 
> 


-- 
IOnut
Unregistered ;) FreeBSD user

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


Re: Search Path in bash2

2004-02-27 Thread Peter Risdon
Martin McCormick wrote:

	I am trying to modify the execution path on a FreeBSD system
for all the bash2 users on that system.  The man page says that 

 

	  default path is system-dependent, and is set by the
	  administrator who installs bash.	A common value is
	  ``/usr/gnu/bin:/usr/local/bin:/usr/ucb:/bin:/usr/bin:.''.
   

	How do I set, or in this case, reset it? 
 

The man page also says:

When  bash is invoked as an interactive login shell, or as a non-inter-
  active shell with the --login option, it first reads and 
executes  com-
  mands  from  the file /etc/profile, if that file exists.  After 
reading
  that file, it looks for ~/.bash_profile, ~/.bash_login, and 
~/.profile,
  in  that order, and reads and executes commands from the first 
one that
  exists and is readable.  The --noprofile option may be  used  
when  the
  shell is started to inhibit this behavior.

But so far as I have seen, at least on FreeBSD, /etc/profile does not 
generally contain path info. This is normally set in ~/.profile and the 
default contains something like this:

# remove /usr/games and /usr/X11R6/bin if you want
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/
bin:$HOME/bin; export PATH
So my guess is that to conform closely to this way of doing things, add 
the path to each user's ~/.profile and also to 
/usr/share/skel/dot.profile so it is there immediately for new users.

Alternatively, unless someone contradicts this, the man page seems to 
suggest you could add a path to /etc/profile and it would then be 
system-wide. I have never done this myself, though, so can't vouch for 
it whereas I have edited ~/.profile frequently.

HTH.

PWR.



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


procmail

2004-02-27 Thread Brian H
Greetings:

I am trying to get procmail to send email to my Maildir in my home 
directory, but
it keeps putting it in /var/mail/henninb. I am sure I just missed a setting,
can someone help point it out. here is how everything is setup currently.

Thanks,

Brian

~/.pmdir> cat recipes
:0:
* ^FROM:.*(aol.com|spamsenders)
/dev/null
:0:
Inbox/
cat .qmail
|preline /usr/bin/procmail -t ~/.procmailrc || exit 111
cat .procmailrc
VERBOSE=on
MAILDIR=$HOME/Maildir/
PMDIR=$HOME/.pmdir
LOGFILE=$PMDIR/log
cat .muttrc
set spoolfile=~/Maildir/
set mbox_type=Maildir
ls ~/Maildir
courierimapkeywords courierimapuiddbnew
courierimapsubscribed   cur tmp
_
Find and compare great deals on Broadband access at the MSN High-Speed 
Marketplace. http://click.atdmt.com/AVE/go/onm00200360ave/direct/01/

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


Re: Kernel modules question.

2004-02-27 Thread Shaun T. Erickson
Warren Block wrote:

On Fri, 27 Feb 2004, Shaun T. Erickson wrote:


In linux, I'd use /etc/modules.conf to list and configure any kernel
modules I want loaded at boot time. How is that done in FreeBSD?


It's /boot/loader.conf.  See 'man 5 loader.conf'.
Ah. Thank you. :) Where do I find documentation for the 341 or so modules?

	-ste

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


Re: Firewall enabling confusion.

2004-02-27 Thread Shaun T. Erickson
Warren Block wrote:

On Fri, 27 Feb 2004, Shaun T. Erickson wrote:


Thanks! Yes, the ipfw.ko module is getting loaded. So now I just need to
know how to enable things like divert and logging.


/etc/rc.firewall has examples.
I looked at that. That's not what I mean. :) I mean, if I do not have to 
build a new kernel to enable firewalling, logging and divert, then how 
do I enable them, such that the following line from my messages file 
would show that they have been enabled?

Adding firewall_enable="YES" to rc.conf caused the ipfw module to be 
loaded, enabling firewalling. Adding firewall_logging="YES" did *not* 
enable logging in the message file line shown below. How do I do that? 
How would I get that line to show divert as being enabled? I may be 
wrong (correct me if I am, please), but doesn't that line have to show 
them as enabled, before I can successfully make use of them in ipfw 
commands like those you pointed me to in rc.firewall? What if I want 
that line to report that the default is open, instead of deny?

Feb 27 14:37:22 peter kernel: ipfw2 initialized, divert disabled, 
rule-based forwarding enabled, default to deny, logging disabled

	-ste

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


Re: Kernel modules question.

2004-02-27 Thread Warren Block
On Fri, 27 Feb 2004, Shaun T. Erickson wrote:

> In linux, I'd use /etc/modules.conf to list and configure any kernel
> modules I want loaded at boot time. How is that done in FreeBSD?

It's /boot/loader.conf.  See 'man 5 loader.conf'.

-Warren Block * Rapid City, South Dakota USA
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Connecting ISP problem

2004-02-27 Thread Toomas Aas
Hi!

> Now ISP connected but failure to connect Internet.  Tried twice


> tun0: flags=8051 mtu 1492
> inet 203.88.164.90 --> 203.88.164.1 netmask 0x
> Opened by PID 236

This looks promising :-)

> # ping -c 3 [url]www.google.com[/url]
> ping: cannot resolve [url]www.google.com:[/url] Host name lookup failure.

Try ping 66.102.11.104

If this also fails, don't read on - wait for help from someone more 
experienced :-)

If this works, then the problem is that you don't have DNS server 
specified. You should put something like this into /etc/resolv.conf:

domain mydomain.net
nameserver xx.xx.xx.xx

xx.xx.xx.xx should be replaced with your ISP's DNS server. If you don't 
have your own domain name, you can use just your ISP's domain name 
here.
--
Toomas Aas | [EMAIL PROTECTED] | http://www.raad.tartu.ee/~toomas/
* I've got a life but it won't run on my operating system.

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


Re: Firewall enabling confusion.

2004-02-27 Thread Warren Block
On Fri, 27 Feb 2004, Shaun T. Erickson wrote:

> Thanks! Yes, the ipfw.ko module is getting loaded. So now I just need to
> know how to enable things like divert and logging.

/etc/rc.firewall has examples.

-Warren Block * Rapid City, South Dakota USA
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Kernel modules question.

2004-02-27 Thread Shaun T. Erickson
In linux, I'd use /etc/modules.conf to list and configure any kernel 
modules I want loaded at boot time. How is that done in FreeBSD?

I see that there are a *lot* of kernel modules in /boot/kernel. How do I 
find out what each one is for and what their configuration options are?

Sorry for newbie questions. I'm trying to learn FreeBSD as fast as I can. :)

	-ste

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


Re: Firewall enabling confusion.

2004-02-27 Thread Shaun T. Erickson
Remko Lodder wrote:

kldstat is the program you are looking for (like lsmod)
It can indeed be that the module is loaded with it's default
settings {block all}
Hope this solves your lsmod question, the rest i cannot help you
with since i don't understand ipfw :) {yet}
Thanks! Yes, the ipfw.ko module is getting loaded. So now I just need to 
know how to enable things like divert and logging.

	-ste

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


RE: Firewall enabling confusion.

2004-02-27 Thread Remko Lodder
kldstat is the program you are looking for (like lsmod)
It can indeed be that the module is loaded with it's default
settings {block all}

Hope this solves your lsmod question, the rest i cannot help you
with since i don't understand ipfw :) {yet}

cheers

--

Kind regards,

Remko Lodder
Elvandar.org/DSINet.org
www.mostly-harmless.nl Dutch community for helping newcomers on the
hackerscene

mrtg.grunn.org Dutch mirror of MRTG

-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Shaun T. Erickson
Verzonden: vrijdag 27 februari 2004 20:40
Aan: [EMAIL PROTECTED]
Onderwerp: Firewall enabling confusion.


I put 'firewall_enable="YES"' in /etc/rc.conf, in anticipation of
rebuilding my kernel with the following options turned on:

options IPFIREWALL
options IPFIREWALL_VERBOSE
options IPFIREWALL_VERBOSE_LIMIT=100

I rebooted, for unrelated reasons, and now see in the messages file that
ipfw2 has been enabled and, indeed, since I have no rules in place, my
system is cut off from the network.

I haven't yet rebuilt my kernel, so I don't understand why this kicked
in. Did adding that line in rc.conf suck in a kernel module that
obsoletes the need for those kernel options? How do I check (I'd do an
lsmod, on Linux - don't know what the equivalent FreeBSD command is)?
If it is a module, how do I enable logging, as adding
'firewall_logging="YES"' to /etc/rc.conf didn't turn it on, according to
the messages file. Likewise for divert (though I don't currently need it).

Feb 27 14:37:22 peter kernel: ipfw2 initialized, divert disabled,
rule-based forwarding enabled, default to deny, logging disabled

-ste

___
[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]"


Firewall enabling confusion.

2004-02-27 Thread Shaun T. Erickson
I put 'firewall_enable="YES"' in /etc/rc.conf, in anticipation of 
rebuilding my kernel with the following options turned on:

options IPFIREWALL
options IPFIREWALL_VERBOSE
options IPFIREWALL_VERBOSE_LIMIT=100
I rebooted, for unrelated reasons, and now see in the messages file that 
ipfw2 has been enabled and, indeed, since I have no rules in place, my 
system is cut off from the network.

I haven't yet rebuilt my kernel, so I don't understand why this kicked 
in. Did adding that line in rc.conf suck in a kernel module that 
obsoletes the need for those kernel options? How do I check (I'd do an 
lsmod, on Linux - don't know what the equivalent FreeBSD command is)?
If it is a module, how do I enable logging, as adding 
'firewall_logging="YES"' to /etc/rc.conf didn't turn it on, according to 
the messages file. Likewise for divert (though I don't currently need it).

Feb 27 14:37:22 peter kernel: ipfw2 initialized, divert disabled, 
rule-based forwarding enabled, default to deny, logging disabled

	-ste

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


Vinum configuration question.

2004-02-27 Thread Jason Schadel
Here's my situation.  I have two machines.  One running OpenBSD on a 
60gig drive and one running FreeBSD on a 10gig drive with a second 60gig 
for storage.  I want to take the 60 gig drive from the OpenBSD box and 
use it as a mirror to the 60 gig in the FreeBSD box.  The catch is I 
want to create the mirror on FreeBSD before I move the drive so I can 
copy the data on the OpenBSD box to the FreeBSD box.

Is there a way I can configure the drive on FreeBSD with vinum so I can 
copy the data from the OpenBSD drive then insert the 60 gig drive in the 
OpenBSD box into the array on the FreeBSD box?

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


Re: Multiple FreeBSD-installations on one harddisk?

2004-02-27 Thread Dan Strick
On Fri, 27 Feb 2004 17:23:13 +0100, [EMAIL PROTECTED] wrote:
>>
> In order to run two (different) versions of FreeBSD on one Harddisk
> (4.9 and 5.2) are there any special caveats/pitfalls besides having a
> separate slice for every installation?
>>

1) If you use the default FreeBSD master bootstrap program, boot0,
   do not configure it with the "noupdate" option.  (See the man
   page for the "boot0cfg" command.)  The boot1 program needs the
   boot0 "update" feature to determine which slice is being booted.

2) FreeBSD 4.9 does not understand UFS2 file systems (the default file
   system for FreeBSD 5.2).  Therefore, if you create a file system
   under 5.2 that you want to access from 4.9, specify the UFS1 file
   system format when you run newfs.

3) FreeBSD 4.9 and 5.2 store UFS1 summary data (e.g. amount of free
   disk space) in different places in the file system superblock.
   If you mount the same file system writable from both OS, you might
   like to "fsck -p" the file system after you switch to the other OS.

>>
> Anything special to take care of during installation (esp. when
> installing the second FreeBSD?)
>>

Be very careful not to enable a newfs for any preexisting partition
(on the other OS slice) when working in the sysinstall disk partition
menu.  I generally avoid the issue by doing the installation onto another
disk and manually copying the new OS onto the first disk.  Caution
dictates making a full set of backups before installing the second OS.

>>
> Is it possible to use the same swap-partition for both instances of BSD?
>>

Probably.  It used to be possible to configure a partition outside of
its slice by specifying an out-of-bounds partition offset to the disklabel
program.  I don't know if this is still tolerated.  I strongly advise
against it.  You can probably declare a special "swapdev" in a kernel
config file.  Perhaps there is a relevant "syscontrol" or "hint" (which
I don't know about) that you could specify in /boot/whatever.
I strongly advise against this also.  Disk space and main memory are
very cheap these days.  If you have enough main memory, you don't
need much swap space.  Creating a dependency of one OS on another's
installation could create a painful long term maintenance problem.

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


Re: Hostname in shell (bash)?

2004-02-27 Thread Robert Westendorp
Try:

PS1=`id [EMAIL PROTECTED] -s`"$ "

I put that into the .bashrc file.

- Original Message - 
From: "Steven N. Fettig" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, February 27, 2004 8:01 AM
Subject: Hostname in shell (bash)?


> Hi all,
>
> I searched the archives and documents on bash, but I can't figure out
> how to put the hostname of the workstation I am on before the $ of the
> shell/command line.  Does anyone know how to add the hostname
> (preferably the first part - i.e. www, db1, etc) to the command line for
> bash 2.x?
>
> Thanks,
> 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]"


Looking for FreeBSD 1.0

2004-02-27 Thread Chris
Does anyone know where I can find (ISO perhaps) of FreeBSD 1.0?

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


Re: Problems resolving hosts

2004-02-27 Thread Chuck Swiger
JJB wrote:
You are experiencing one of the many problems created by the new
file system in the 5.x development releases. The file system gets
all locked up and then times out before releasing the sector on the
hard drive so it can be read by program.
Dude, Travis' problem sounds a lot more like what would happen if one of the 
nameservers listed in /etc/resolv.conf wasn't responding to DNS queries.

Your responses would be more helpful to other people if you refrained from 
locking the notion that all problems with 5.x are due to UFS2 into your brain, 
or for that matter, being convinced that IPFW is completely broken and there 
is a conspiracy against other firewalls on FreeBSD.  :-)

--
-Chuck
PS: To debug your problem, try using "dig @ns1 host", where you replace ns1 
with each of the DNS resolvers you have listed or available, and replace host 
with one or more hostnames that have been causing delays.  This will show you 
how quickly DNS is working and thus confirm whether the problem lies in this 
area, or else expose which nameserver isn't working and maybe why...

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


Re: Boot and MBR. Thank YOU!

2004-02-27 Thread Jerry McAllister
> 
> Sorry for being such a pest, my boss kept asking why my computer wasn't
> working, and I'm not ready to ready for him to know I've got BSD loaded.
> I was in panic mode because I couldn't get my Windows XP screens and
> applications to come up. I deeply apologize, I was finally able to read
> all of your message Jerry and it worked they way you said it would. All
> is well, I'm on my way to prove that I can get twice the stuff I need
> through the open source community than we can buy through Microsoft.
> Thanks for all the posts and help. You guys rock!

Glad it is working.   You can experiment later with prettier
Boot Manglers, etc, but up and actually running always seems to
me to be the first step.

jerry

> 
> Res Ipsa Loquitor,
> Mark-Nathaniel Weisman
> Site Master
> Mystic1.net
> 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD box as router adding latency

2004-02-27 Thread Aloha Guy
Chris Dillon <[EMAIL PROTECTED]> wrote: On Thu, 26 Feb 2004, Aloha Guy wrote:

> Already tried that and it did improve things a little. I tried
> setting the HZ to 1000 and it didn't make much of a difference. Is
> there a larger number that actually works well?

You can try higher HZ numbers, but you might run into other problems.
Experiment and see. Others have experimented with higher HZ numbers
so you might want to check the list archives. Anyway, is a 1ms delay
really that bad?

The 1ms delay isn't that bad if it was 1ms but we're talking about 3-4ms atleast. As 
for HZ numbers, what should I search for in the archives and on which list since it 
seems like HZ is also in the dmesg output for the clock generator so it's one of those 
terms that are used widely. Thanks, John

-
Do you Yahoo!?
Get better spam protection with Yahoo! Mail
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Boot and MBR.

2004-02-27 Thread HOLLOW, CHRISTOPHER
Mark,

  You might want to try booting the box with a Win98 Rescuse disk and 
running 'fdisk /mbr'.  This -should- re-window-ize the MBR.  Then run 
fdisk from the prompt and set the Windows partition as active.  Reboot 
and see if Windows boots normally.  You will not see any indication of 
the existance of the BSD installation at this point.  Should Windows 
come up okay, install Grub (or GAG if it suits your fancy) and you 
-should- be off and running.

DISCLAIMER:  The ^^^ -should- ^^^ is in there because I'm not entirely 
familiar with your environment and configuration.  As always, when 
working with partitions, it is possible that you will lose one, both or 
all of the slices and installations on the box.  If there is anything 
worth keeping, ensure you have it backed up...

HTH,

Chris

Mark Weisman wrote:

I appreciate the ease of installation of Gag, however, my objectives
still not being met, when I boot into the Windows partition, I get an
error that shows little red squares in a diagonal pattern across the
screen. No Windows?
Res Ipsa Loquitor,
Mark-Nathaniel Weisman
Site Master
Mystic1.net
-Original Message-
From: Jud [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 27, 2004 8:46 AM
To: HOLLOW, CHRISTOPHER; Mark Weisman
Cc: [EMAIL PROTECTED]
Subject: Re: Boot and MBR.



On Fri, 27 Feb 2004 10:50:03 -0500, "HOLLOW, CHRISTOPHER"
<[EMAIL PROTECTED]> said:
 

Jud wrote:
   

[snip]
 

3. Install GAG, a free, easy and automagical boot loader.  
http://gag.sourceforge.net/>.
 

 

You can also Grub it up:

http://www.gnu.org/software/grub/ 
http://www.daemonnews.org/200102/grub.html

Grub is a popular and well-supported OSS boot loader
   

Absolutely.  I've happily used Grub, but turned to GAG when I went to
RAID-0.
Grub is an excellent bootloader and learning tool.  The only reason I
didn't include it in my recommendations to the OP was that I figured
he'd be happier at this point with something very easy and automagic.
Jud

 

--

Christopher Hollow - Consultant
Infrastructure & Technology Support
Toronto, ON


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


RE: Hostname in shell (bash)?

2004-02-27 Thread Derrick Ryalls
> Hi all,
> 
> I searched the archives and documents on bash, but I can't figure out 
> how to put the hostname of the workstation I am on before the 
> $ of the 
> shell/command line.  Does anyone know how to add the hostname 
> (preferably the first part - i.e. www, db1, etc) to the 
> command line for 
> bash 2.x?

I have this in my .bashrc and .bash_profile files (\h is hostname):

# set prompt
PS1="===[\h][\u] \w # "
PS2=">"


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


  1   2   >