file of large size

2002-10-02 Thread shubha mr

Hi,
Can anyone suggest me a shell script or a command to
create a large file in BSD(aroung 50 MB).Any junk data
in it is also fine.

Thanks in advance,
shubha

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: file of large size

2002-10-02 Thread mpd

On Wed, Oct 02, 2002 at 08:25:17AM +0100, shubha mr wrote:
 Hi,
 Can anyone suggest me a shell script or a command to
 create a large file in BSD(aroung 50 MB).Any junk data
 in it is also fine.

cat /dev/urandom | head -c byte count  large_file
large_file will be a byte count file of garbage data.

 
 Thanks in advance,
 shubha
 

mike

-- 
___
 
HER NAME, MY YOUNG FRIEND, IS APPARENTLY HEADCHEESE.
- Pokey the Penguin from POKEY THE PENGUIN AND HEADCHEESE

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: file of large size

2002-10-02 Thread Kris Kennaway

On Wed, Oct 02, 2002 at 08:25:17AM +0100, shubha mr wrote:
 Hi,
 Can anyone suggest me a shell script or a command to
 create a large file in BSD(aroung 50 MB).Any junk data
 in it is also fine.

truncate -s 50M /path/to/file

This creates a sparse file (i.e. it doesn't take up 50M of disk
space).  If you actually need space to be allocated, use dd(1).

Kris



msg03613/pgp0.pgp
Description: PGP signature


[no subject]

2002-10-02 Thread Manuel Enrique García Cuesta


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



[no subject]

2002-10-02 Thread Manuel Enrique García Cuesta


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



[no subject]

2002-10-02 Thread Manuel Enrique García Cuesta


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



[no subject]

2002-10-02 Thread Manuel Enrique García Cuesta


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: NEdit dead - XFree86 Libs!!!

2002-10-02 Thread Alex Kiesel

On Mon, 2002-09-30 at 10:48, Michael Collette wrote:
 Just a quick follow up to additional attempts to correct this problem.

 The package I installed was: XFree86-libraries-4.2.1_1.tgz

I can confirm this with my installation here.

A portupgrade -f Xfree86-libraries solved the problem, which was
obviously caused by the open-motif port that deleted
/usr/X11R6/lib/X11/XKeysymDB.

Reinstalling the port brought the file back where it belongs :)

Alex

-- 
Alex Kiesel


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



MySQL or Postgresql on FreeBSD, have I just started a holy war?

2002-10-02 Thread Mailing Lists

Hi all,

I've just been getting ready to start serious MySQL development on a 
Dual Processor FreeBSD box and I stumbled across the following blog 
entry on the web today which has me thinking:

http://jeremy.zawodny.com/blog/archives/000203.html#000203

The coles notes version is that the author, who seems to have some 
chops in both MySQL and FreeBSD (looks like he's a sysadmin at Yahoo, 
hi if you're out there Jeremy), has come across some issues with 
threading and smp support while using MySQL  FreeBSD. Now, of course, 
he doesn't mention is the machines where these issues come up are super 
high traffic or not, so this may be all moot if you're not running say, 
Yahoo!

I'm still a babe in the woods when it comes to MySQL, but I'm 
redeveloping several databases that I did some time ago in a 
proprietary database solution (4D) and I'll be damned if I'm going to 
redo these things again any time soon, so I'd like to know that I've 
made the right choice of DB  Platform. I've been really happy with 4D 
overall, but need to have more connectivity options, hence the move.

There must be a ton of people running MySQL on FreeBSD, so my first 
question is, are the issues raised here ones likely to occur on a low 
to medium volume system? I'm doing about 100,000 queries a day on our 
current db server from a variety of websites and would expect this 
volume to double or triple in the next year.

My FreeBSD Box is currently DP PIII 500's, but I'll be upgrading it to 
Ghz PIII's before deployment with a gig of RAM, more if needed. My 
current DB server is actually an iMac, it's a long story, with a 400Mhz 
G3 and 512 mb RAM running OS X 10.2 and keeping up quite nicely, so I 
don't imagine the hardware itself will be a limiting factor.

My second question is, if it looks like this will potentially be an 
issue, how does Postgresql perform on FreeBSD. I could use it just as 
easily as MySQL and, from what I've heard, it's a little beefier in 
some aspects. With regards to threading issues, am I likely to be 
happier with Postgresql in the long term?

Our current DB server runs for _MONTHS_ at a time without me even 
having to look at it, so reliability is the key factor in my decision 
process. Moving away from FreeBSD is not an option I'd like to consider 
at the moment, as I'm quite happy with it so far, so I'd like to pick 
the db that likes FreeBSD the best.

Sorry if I just started a holy war, I promise not to ask about Postfix 
v Qmail! :-)

Tom Wiebe


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: MySQL or Postgresql on FreeBSD, have I just started a holy war?

2002-10-02 Thread Roger 'Rocky' Vetterberg

Mailing Lists wrote:
 Hi all,
 
 I've just been getting ready to start serious MySQL development on a 
 Dual Processor FreeBSD box and I stumbled across the following blog 
 entry on the web today which has me thinking:
 
 http://jeremy.zawodny.com/blog/archives/000203.html#000203
 
 The coles notes version is that the author, who seems to have some chops 
 in both MySQL and FreeBSD (looks like he's a sysadmin at Yahoo, hi if 
 you're out there Jeremy), has come across some issues with threading and 
 smp support while using MySQL  FreeBSD. Now, of course, he doesn't 
 mention is the machines where these issues come up are super high 
 traffic or not, so this may be all moot if you're not running say, Yahoo!
 
 I'm still a babe in the woods when it comes to MySQL, but I'm 
 redeveloping several databases that I did some time ago in a proprietary 
 database solution (4D) and I'll be damned if I'm going to redo these 
 things again any time soon, so I'd like to know that I've made the right 
 choice of DB  Platform. I've been really happy with 4D overall, but 
 need to have more connectivity options, hence the move.
 
 There must be a ton of people running MySQL on FreeBSD, so my first 
 question is, are the issues raised here ones likely to occur on a low to 
 medium volume system? I'm doing about 100,000 queries a day on our 
 current db server from a variety of websites and would expect this 
 volume to double or triple in the next year.
 
 My FreeBSD Box is currently DP PIII 500's, but I'll be upgrading it to 
 Ghz PIII's before deployment with a gig of RAM, more if needed. My 
 current DB server is actually an iMac, it's a long story, with a 400Mhz 
 G3 and 512 mb RAM running OS X 10.2 and keeping up quite nicely, so I 
 don't imagine the hardware itself will be a limiting factor.
 
 My second question is, if it looks like this will potentially be an 
 issue, how does Postgresql perform on FreeBSD. I could use it just as 
 easily as MySQL and, from what I've heard, it's a little beefier in some 
 aspects. With regards to threading issues, am I likely to be happier 
 with Postgresql in the long term?

Im far from skilled in SQL and databases, but I have used postgre on 
FreeBSD for some time, and never had any problems. I run a few db's, 
the biggest probably around 25000 rows and maybe 300 hits a day, so I 
cant really say its under any kind of load worth mentioning. However, 
I have tried to stress it a bit with a few simple perl scripts bombing 
it with queries. On a dual PII 233 with 256M ram I couldnt even make 
it break a sweat. As I said, Im no SQL guru, my very primitive 
benchmark was just a few perl loops sending queries as fast as they 
could. No matter how I tried I couldnt even notice any impact on the 
machine's performance...I guess the SQL answered faster then my perl 
loops could generate queries. :)

 From what I've read and experienced, postgre seems to be an excellent 
choice on FreeBSD. And I do love FreeBSD, but to me this sound like 
the old use whatever gets the job done saying.
If linux can do what you want and do it good, you really shouldnt run 
it on BSD just for the sake of it.

--
R


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: ipmon syslogd problems

2002-10-02 Thread Dean E. Weimer

Toomas Aas [EMAIL PROTECTED] said:

  I have ipfilter set up and running fine, but I have been finding that my 
  security logs show up in both my security and messages log files.  ipmon 
is 
  running with the command ipmon -oI -s -D and my syslog.conf file has 
the 
  following relevant configuration.
  ..
  local0.*/var/log/security
  security.*  /var/log/security
  *.notice;kern.debug;lpr.info;mail.crit;news.err /var/log/messages
 
 I believe *.notice includes all the higher levels, such as *.err and 
 *.warning.
 
 If you don't want messages from local0 and security facilities to 
 appear in /var/log/messages, add this to /var/log/messages:
 
 local0.none;security.none
 

Looking at the man page for syslog I see the line that I missed before that 
talks about the special facility log level none.  One thing to note, if 
you put it before the *.notice, you still get the messages, but putting it 
on the end of the line works.

 --
 Toomas Aas | [EMAIL PROTECTED] | http://www.raad.tartu.ee/~toomas/
 * I haven't lost my mind; I know exactly where I left it.
 
 



-- 
Thanks,
  Dean E. Weimer
  http://www.dweimer.org/





This message was sent from dweimer.org using TWIG
  - The Web Information Gateway.
  - For more information visit http://www.dweimer.org/
  - To Report Abuse Contact [EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: MySQL or Postgresql on FreeBSD, have I just started a holy war?

2002-10-02 Thread Kevin D. Kinsey, DaleCo, S.P.

IIRC, the site owner at phpbuilder.com has done some research on this
and has a solid opinion.  It may match Jeremy's, but I can't
remember
at the moment.  You might grok his search routine and get another
opinion.

Kevin Kinsey,
DaleCo, S.P.

- Original Message -
From: Roger 'Rocky' Vetterberg [EMAIL PROTECTED]
To: Mailing Lists [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, October 02, 2002 5:52 AM
Subject: Re: MySQL or Postgresql on FreeBSD, have I just started a
holy war?


 Mailing Lists wrote:
  Hi all,
 
  I've just been getting ready to start serious MySQL development
on a
  Dual Processor FreeBSD box and I stumbled across the following
blog
  entry on the web today which has me thinking:
 
  http://jeremy.zawodny.com/blog/archives/000203.html#000203
 
  The coles notes version is that the author, who seems to have
some chops
  in both MySQL and FreeBSD (looks like he's a sysadmin at Yahoo,
hi if
  you're out there Jeremy), has come across some issues with
threading and
  smp support while using MySQL  FreeBSD. Now, of course, he
doesn't
  mention is the machines where these issues come up are super high
  traffic or not, so this may be all moot if you're not running
say, Yahoo!
 
  I'm still a babe in the woods when it comes to MySQL, but I'm
  redeveloping several databases that I did some time ago in a
proprietary
  database solution (4D) and I'll be damned if I'm going to redo
these
  things again any time soon, so I'd like to know that I've made
the right
  choice of DB  Platform. I've been really happy with 4D overall,
but
  need to have more connectivity options, hence the move.
 
  There must be a ton of people running MySQL on FreeBSD, so my
first
  question is, are the issues raised here ones likely to occur on a
low to
  medium volume system? I'm doing about 100,000 queries a day on
our
  current db server from a variety of websites and would expect
this
  volume to double or triple in the next year.
 
  My FreeBSD Box is currently DP PIII 500's, but I'll be upgrading
it to
  Ghz PIII's before deployment with a gig of RAM, more if needed.
My
  current DB server is actually an iMac, it's a long story, with a
400Mhz
  G3 and 512 mb RAM running OS X 10.2 and keeping up quite nicely,
so I
  don't imagine the hardware itself will be a limiting factor.
 
  My second question is, if it looks like this will potentially be
an
  issue, how does Postgresql perform on FreeBSD. I could use it
just as
  easily as MySQL and, from what I've heard, it's a little beefier
in some
  aspects. With regards to threading issues, am I likely to be
happier
  with Postgresql in the long term?

 Im far from skilled in SQL and databases, but I have used postgre
on
 FreeBSD for some time, and never had any problems. I run a few
db's,
 the biggest probably around 25000 rows and maybe 300 hits a day, so
I
 cant really say its under any kind of load worth mentioning.
However,
 I have tried to stress it a bit with a few simple perl scripts
bombing
 it with queries. On a dual PII 233 with 256M ram I couldnt even
make
 it break a sweat. As I said, Im no SQL guru, my very primitive
 benchmark was just a few perl loops sending queries as fast as
they
 could. No matter how I tried I couldnt even notice any impact on
the
 machine's performance...I guess the SQL answered faster then my
perl
 loops could generate queries. :)

  From what I've read and experienced, postgre seems to be an
excellent
 choice on FreeBSD. And I do love FreeBSD, but to me this sound like
 the old use whatever gets the job done saying.
 If linux can do what you want and do it good, you really shouldnt
run
 it on BSD just for the sake of it.

 --
 R


 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: JDK13 || OpenOffice

2002-10-02 Thread Alexander Kabaev

jdk13 is used in the OO build process.

On Tue, 1 Oct 2002 21:11:49 -0400
MET [EMAIL PROTECTED] wrote:

 Why does OpenOffice require jdk13?  According to the site its not one
 of the requirements, or a requirement of StarOffice for that matter?
 
 ~ Matthew

-- 
Alexander Kabaev

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Byterunner multiserial saga

2002-10-02 Thread michael green

I've got a Byterunner tc800 set to 0x100 and irq 4 to
correspond with an Arnet 8 port for use under SCO 
OpenServer for terminals (the motherboard com ports
are disabled). 

I'm having difficulty getting it to run under FBSD
4.6.0 (large numbers of dropped characters). 

I have confirmed that the hardware functions correctly
by installing SCO OpenServer.

I have confirmed that the GENERIC kernel works
sucessfully with the motherboards com ports.

I've reviewed man sio, LINT, handbook, and searched
the maillist archives, the www and Byterunner web
site.

/usr/sbin/config returns a syntax error when the
keywords tty, vector or  siointr (see below) are used.
*

Could someone expand on the instructions in man sio
especially the hex flags code and the use of tty and
the other keywords. 

Current kernal config file=
#device sio0 at isa? port IO_COM1 irq 4
#device sio1 at isa? port IO_COM2 irq 3
#device sio2 at isa? port IO_COM3 irq 5
#device sio3 at isa? port IO_COM4 irq 9
options COM_MULTIPORT
device sio0 at isa? port 0x100 flags 0x20705
...
device sio7 at isa? port 0x138 flags 0x20705 irq 4


* Example seen in maillist archives=
device sio11 at isa? port 0x138 tty flags 0xb05 irq 12
vector siointr




Oh yes and what does this mean?:

You should set the 0x1 flag (only in current yet)
as well, to avoid the case where a pending IRQ from a
higher port prevents sio`s test#3 from passing on a
lower port.

Advice and suggestions please. Is this question in the
right place? Thanks.


__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re[2]: BTX halted

2002-10-02 Thread Ülkü SAYILAN

Hi,

Monday, September 30, 2002, 6:28:12 PM, you wrote:


I think this is SCSI device settle problem,
since default boot has been set up from CD and SCSI ID 0 and disk
SCSI ID is 4. Before FreeBSD installation MS NT was working on this
computer. After installation FreeBSD, it doesnt start kernel boot but
 it has found disk and has do partitions. is it possible setting up
 SCSI device during installion?!? I have tried all installaion
 procedure but I couldn't found any setting I belive that SCSI
 contoller isnt work properly. Also maybe FreeBSD hasn't got drive of this
 controler?!?!
 Tekram DC - 390F PCI SCSI controller
 BIOS version V3.20 date 1999-3-29

 disk is Quantum Atlas SCSI HD

 another error had depend on partition I understant but SCSý problem
 going on. Now it give such kind of error

 maounting root from ufs:/dev/md0c
 /stand/sysinstall running as init on vty0
 page fault
 syncing disk
 done
 uptime 21 sn
 reboot--


During my search I've found such URL consist of some error code and
linux kernel...

http://lists.insecure.org/linux-kernel/2000/Feb/1489.html
http://www.saclug.org/archive/2000/07/0332.html


especially such URL same as my problems
http://lists.insecure.org/linux-kernel/2000/Feb/0975.html


I decided to this SCSI controller has got some problems about unix and
derivatives... :( I couldn't kernel compile in FreeBSD ...

I wonder I am wrong? can you advice me?

I have done your previous advice during lsdev it couldn't found any
device and than founded 12 different kernel error.


MS On Mon, Sep 30, 2002 at 05:04:07PM +0300, Ülkü SAYILAN wrote:

 I have installed the freebsd 4.3 to no name SCSI pent 166 pc after
 installation, during boot process he has gave error like this
 
 int:...   err:0001aefl:..1026   eip
 esi:0..   ebx:0.. 0ecx: edx
 cs:0...   ed:0...43ebp:.esp
 
 
 ds es fs gs ss
 cs:eip:cc:00..00
 ss:ep:..0300
 
 BTX halted
 
 
 What's the mean of this, anybody can explane this message?!?!?
 
 is the problem depend on SCSI boot/disk partition, or ethernet cards?
 or anythings?

MS That's the boot loader crashing.  That's pretty severe.  In principal,
MS given the crashdump you've printed out, it should be possible to go
MS into the loader code and work out what was happening at that point,
MS but you'ld probably have to ask on freebsd-hackers to find someone
MS with the skills to do that.

MS This could be one of a number of problems --- disk hardware failure,
MS problems with the BIOS, wrong disk geometry.  It's unlikely to be
MS anything to do with the NICs.

MS One problem, and the first thing to check, is something that used to
MS be fairly common until sysinstall was modified to remove the
MS temptation to use such things. Dangerously dedicated disks sound
MS pretty cool to the uninitiated, but beware: many SCSI
MS controllers/bioses can't cope with them.  Unfortunately, the only
MS solution if you've installed your system this way is to go back to the
MS beginning and start all over again, and this time, install a proper
MS partition table.

MS If that isn't the case, can you verify that you can boot using the
MS boot blocks from the installation media (I assume CD Rom)?

MS Use this procedure:

MS Start to boot the system from the CD.  When you get the 10 second
MS count down, hit the space bar to interrupt.  You should end up at
MS the boot: prompt.

MS Now type:

MS unload
MS lsdev

MS This will either generate a BTX dump (in which case, you've
MS probably got pretty bad hardware problems) or it should show you a
MS list of all potential boot devices, including your hard drive. Now
MS type:

MS set currdev={harddrive}  (ie. what lsdev returned for your HD)
MS load kernel
MS boot

MS and you should end up with a running system.

MS If that whole rigmarole worked, then the problem is that somehow the
MS boot blocks on your hard drive have become scrambled, and you can
MS probably repair things by reinstalling them.

MS If it didn't work and you're not using dangerously dedicated disks,
MS then you've got really nasty trouble lowlevel trouble which will take
MS time, effort and probably the services of a FreeBSD guru to sort out.

MS Cheers,

MS Matthew




-- 

 Ülkümailto:[EMAIL PROTECTED]

Her development, her freedom, her independence, must come from and through herself. 
First, by asserting herself as a personality, and not as a sex commodity. 
Second, by refusing the right of anyone over her body; by refusing to bear children, 
unless she wants them, by refusing to be a servant to God, the State, society, 
the husband, the family, etc., by making her life simpler, but deeper and richer. 
That is, by trying to learn the meaning and substance of life in all its complexities; 
by freeing herself from the fear of public opinion and 

Re: MySQL or Postgresql on FreeBSD, have I just started a holy war?

2002-10-02 Thread GB Clark

Hello,

I'm a PostgreSQL person so take all my comments with that in mind.

On Wed, 2 Oct 2002 03:06:37 -0700
Mailing Lists [EMAIL PROTECTED] wrote:

 Hi all,
 
 I've just been getting ready to start serious MySQL development on a 
 Dual Processor FreeBSD box and I stumbled across the following blog 
 entry on the web today which has me thinking:
 
 http://jeremy.zawodny.com/blog/archives/000203.html#000203
 
 The coles notes version is that the author, who seems to have some 
 chops in both MySQL and FreeBSD (looks like he's a sysadmin at Yahoo, 
 hi if you're out there Jeremy), has come across some issues with 
 threading and smp support while using MySQL  FreeBSD. Now, of course, 
 he doesn't mention is the machines where these issues come up are super 
 high traffic or not, so this may be all moot if you're not running say, 
 Yahoo!

For the kind of traffic your talking about, either system (MySQL or PostgreSQL) 
would work just fine.

 I'm still a babe in the woods when it comes to MySQL, but I'm 
 redeveloping several databases that I did some time ago in a 
 proprietary database solution (4D) and I'll be damned if I'm going to 
 redo these things again any time soon, so I'd like to know that I've 
 made the right choice of DB  Platform. I've been really happy with 4D 
 overall, but need to have more connectivity options, hence the move.

Everything being about equal at this point for you, look at the available
features.  Do you use subselects, procedures, triggers, FK or transactions?

Yes, I know that the latest development versions of MySQL support FK and
transactions, but in this case you loose hot backups (ie when the server is up)
unless your willing to pay for the util.
 
 There must be a ton of people running MySQL on FreeBSD, so my first 
 question is, are the issues raised here ones likely to occur on a low 
 to medium volume system? I'm doing about 100,000 queries a day on our 
 current db server from a variety of websites and would expect this 
 volume to double or triple in the next year.

100,000 to 400,000 trans a day should be nothing to any decent database.  
This is only about 1 to 4 transactions a second.  I've handled this kind of 
load using DBM files with perl.

 My FreeBSD Box is currently DP PIII 500's, but I'll be upgrading it to 
 Ghz PIII's before deployment with a gig of RAM, more if needed. My 
 current DB server is actually an iMac, it's a long story, with a 400Mhz 
 G3 and 512 mb RAM running OS X 10.2 and keeping up quite nicely, so I 
 don't imagine the hardware itself will be a limiting factor.
 
 My second question is, if it looks like this will potentially be an 
 issue, how does Postgresql perform on FreeBSD. I could use it just as 
 easily as MySQL and, from what I've heard, it's a little beefier in 
 some aspects. With regards to threading issues, am I likely to be 
 happier with Postgresql in the long term?

PostgreSQL is non-threaded so that is a moot point.

PostgreSQL works quite well on FreeBSD under heavy load.  I've got a
system (1,000,000+ rows) that takes 3 to 10 connections a second without
a sweat running on a PIII 800 1000MB SCSI system.  Mind you, this is mostly
insert transactions.

 Our current DB server runs for _MONTHS_ at a time without me even 
 having to look at it, so reliability is the key factor in my decision 
 process. Moving away from FreeBSD is not an option I'd like to consider 
 at the moment, as I'm quite happy with it so far, so I'd like to pick 
 the db that likes FreeBSD the best.

I've got automatic monitoring on my high load system to watch my diskspace
and with some of my scripts to delete old data (it monitors a set of web sites
in real time), I forget it's there until the next time someone requests a new
feature.

 Sorry if I just started a holy war, I promise not to ask about Postfix 
 v Qmail! :-)
 Tom Wiebe
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
 

Hopefully it helps.

GB

-- 
GB Clark II | Roaming FreeBSD Admin
[EMAIL PROTECTED] | General Geek 
   CTHULU for President - Why choose the lesser of two evils?

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



advise on gateway-setup

2002-10-02 Thread Morten Grunnet Buhl

Hey all,
I have been using FreeBSD as desktop and server for over two years now.
However, my knowledge on buying hardware to and setting up a gateway is
very limited. Actually I have only toyed around with this in the
security and comfort of my own home.

Ok. After this little self promo its time for my questions.
The building I live in has 200+ apartments which in near future will
share an (I hope) powerful internet connection. Now I was put in-charge
of selecting the equipment to preform firewalling and gateway.
What I like it to do is firewalling and some sort of natted intranet
with bandwidth management. My question is. How powerful should the
gateway/firewall be? I am thinking about CPU and RAM and hardware en
general. Also I would be glad to get pointers on where to read for
setting up this..ofcause I will start whit the handbook right about here

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/advanced-networking.html
and then go to google

But if anybody has seen other documents/articles/manpages I should read
please point me to em, this could really safe me some time, thanks. 
--
DetEr.dk - Rules are made to control the fun.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: motherboard for freebsd 5.0 server

2002-10-02 Thread Stephen Hovey


IDE is not a good choice for a server.  Should choose scsi

On Wed, 2 Oct 2002, gsfgs sgsgsg wrote:

 
 
 Hi,
 
 I need an answer on this.
 http://tw.giga-byte.com/products/8iexp.htm
 I intend to use IDE RAID 0 or 1 with a SCSI sony DAT 12/24gb.
 Thise services will run on:(DSL)router,NAT, firewall, proxy, mail, ftp, 
 web,apache,SSL, PHP, amavis, antivirus.
 120gb disks, 1gb ram, amd or intel
 
 We are a small company in Slovenia
 
 Please am desperate nobody work in Slovenia with BSD.
 
 BYE
 
 VLado
 
 
 _
 Send and receive Hotmail on your mobile device: http://mobile.msn.com
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
 


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: MySQL or Postgresql on FreeBSD, have I just started a holy war?

2002-10-02 Thread Thomas T. Veldhouse

I am a Postgresql person myself.  I can say there is one bad thing about
Postgres that might be annoying to some.  When data is deleted, the disk
space is not recovered until a manual vacuum takes place.  On a high load
system with many updates or deletes, this could be a real headache.  A cron
job would probably fill role nicely.

Tom Veldhouse

- Original Message -
From: GB Clark [EMAIL PROTECTED]
To: Mailing Lists [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, October 02, 2002 7:05 AM
Subject: Re: MySQL or Postgresql on FreeBSD, have I just started a holy war?


 Hello,

 I'm a PostgreSQL person so take all my comments with that in mind.

 On Wed, 2 Oct 2002 03:06:37 -0700
 Mailing Lists [EMAIL PROTECTED] wrote:



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: motherboard for freebsd 5.0 server

2002-10-02 Thread Thomas T. Veldhouse

Depending on the use perhaps (I am not sure there is a working hot swapable
IDE raid solution for FreeBSD), but most can probably get by with it.  Of
more concern is that FreeBSD 5.0 is going to be used.  Don't use that!  It
is not stable yet.

Tom Veldhouse

- Original Message -
From: Stephen Hovey [EMAIL PROTECTED]
To: gsfgs sgsgsg [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, October 02, 2002 11:15 AM
Subject: Re: motherboard for freebsd 5.0 server



 IDE is not a good choice for a server.  Should choose scsi

 On Wed, 2 Oct 2002, gsfgs sgsgsg wrote:

 
 
  Hi,
 
  I need an answer on this.
  http://tw.giga-byte.com/products/8iexp.htm
  I intend to use IDE RAID 0 or 1 with a SCSI sony DAT 12/24gb.
  Thise services will run on:(DSL)router,NAT, firewall, proxy, mail, ftp,
  web,apache,SSL, PHP, amavis, antivirus.
  120gb disks, 1gb ram, amd or intel
 
  We are a small company in Slovenia
 
  Please am desperate nobody work in Slovenia with BSD.
 
  BYE
 
  VLado
 
 
  _
  Send and receive Hotmail on your mobile device: http://mobile.msn.com
 
 
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body of the message
 


 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



netmos parallel port card pci

2002-10-02 Thread Ralph Kube

Hi,
I', new to FreeBSD and I got stuck with a hardware problem. I bought a
parallel port pci card and then I found out that FreeBSD isn't
supporting it. There appears to be a patch for NetBSD so that it
supports it via their puc(4) driver.
pciconf categorizes it into 'simple comms' (0x078000),the device name is
'Nm9805 PCI + 1284 Printer Port'. I was looking around and found the
file sys/dev/puc/pucdata.c within the kernel sources. What effect would
it have if i would create an additional entry for that card?
Or better, which files need to be modified to support this card.
Thank you in advance,
Ralph Kube

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: motherboard for freebsd 5.0 server

2002-10-02 Thread Stephen Hovey


I thought the issue was that a scsi drive can drop off the bus well
fullfilling a request, whereas the system waits on an IDE

On Wed, 2 Oct 2002, Thomas T. Veldhouse wrote:

 Depending on the use perhaps (I am not sure there is a working hot swapable
 IDE raid solution for FreeBSD), but most can probably get by with it.  Of
 more concern is that FreeBSD 5.0 is going to be used.  Don't use that!  It
 is not stable yet.
 
 Tom Veldhouse
 
 - Original Message -
 From: Stephen Hovey [EMAIL PROTECTED]
 To: gsfgs sgsgsg [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Wednesday, October 02, 2002 11:15 AM
 Subject: Re: motherboard for freebsd 5.0 server
 
 
 
  IDE is not a good choice for a server.  Should choose scsi
 
  On Wed, 2 Oct 2002, gsfgs sgsgsg wrote:
 
  
  
   Hi,
  
   I need an answer on this.
   http://tw.giga-byte.com/products/8iexp.htm
   I intend to use IDE RAID 0 or 1 with a SCSI sony DAT 12/24gb.
   Thise services will run on:(DSL)router,NAT, firewall, proxy, mail, ftp,
   web,apache,SSL, PHP, amavis, antivirus.
   120gb disks, 1gb ram, amd or intel
  
   We are a small company in Slovenia
  
   Please am desperate nobody work in Slovenia with BSD.
  
   BYE
  
   VLado
  
  
   _
   Send and receive Hotmail on your mobile device: http://mobile.msn.com
  
  
   To Unsubscribe: send mail to [EMAIL PROTECTED]
   with unsubscribe freebsd-questions in the body of the message
  
 
 
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body of the message
 
 
 


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



make fails

2002-10-02 Thread Boris A. Grebenyuk


Hi! I'm trying to build kernel for i486 PC. But get an error:

Press any key to continue...bash-2.04# bash-2.04# make kernel
linking kernel
if_ed.o: In function `ed_tick':
if_ed.o(.text+0x26d9): undefined reference to `mii_tick'
if_ed.o: In function `ed_init':
if_ed.o(.text+0x2aca): undefined reference to `mii_mediachg'
if_ed.o: In function `ed_ifmedia_upd':
if_ed.o(.text+0x4d8d): undefined reference to `mii_mediachg'
if_ed.o: In function `ed_ifmedia_sts':
if_ed.o(.text+0x4dc2): undefined reference to `mii_pollstat'
*** Error code 1

Stop in /usr/src/sys/compile/DISKLESS_486.

How can I solve a problem? I think there is some unchecked options or devices in
my kernel config. Need you help.

 Best regards,
 
 Grebenyuk A. Boris
 E-mail: [EMAIL PROTECTED]
 ICQ UIN: 122902706



#
# GENERIC -- Generic kernel configuration file for FreeBSD/i386
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
#http://www.FreeBSD.org/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ./LINT configuration file. If you are
# in doubt as to the purpose or necessity of a line, check first in LINT.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.43 2002/05/23 17:04:01 obrien Exp $

machine i386
cpu I486_CPU
ident   DISKLESS_484
maxusers10

#makeoptionsDEBUG=-g#Build kernel with gdb(1) debug symbols

#optionsMATH_EMULATE#Support for x87 emulation
options INET#InterNETworking
options INET6   #IPv6 communications protocols
options FFS #Berkeley Fast Filesystem
options FFS_ROOT#FFS usable as root device [keep this!]
options SOFTUPDATES #Enable FFS soft updates support
#optionsUFS_DIRHASH #Improve performance on big directories
options MFS #Memory Filesystem
options MD_ROOT #MD is a potential root device
options NFS #Network Filesystem
options NFS_ROOT#NFS usable as root device, NFS required
#optionsMSDOSFS #MSDOS Filesystem
options CD9660  #ISO 9660 Filesystem
options CD9660_ROOT #CD-ROM usable as root, CD9660 required
options PROCFS  #Process filesystem
options COMPAT_43   #Compatible with BSD 4.3 [KEEP THIS!]
#optionsSCSI_DELAY=15000#Delay (in ms) before probing SCSI
#optionsUCONSOLE#Allow users to grab the console
options USERCONFIG  #boot -c editor
options VISUAL_USERCONFIG   #visual boot -c editor
#optionsKTRACE  #ktrace(1) support
#optionsSYSVSHM #SYSV-style shared memory
#optionsSYSVMSG #SYSV-style message queues
#optionsSYSVSEM #SYSV-style semaphores
#optionsP1003_1B#Posix P1003_1B real-time extensions
#options_KPOSIX_PRIORITY_SCHEDULING
options ICMP_BANDLIM#Rate limit bad replies
options KBD_INSTALL_CDEV# install a CDEV entry in /dev

# Diskless support
options BOOTP  # Use BOOTP to obtain IP address/hostname
options BOOTP_NFSROOT  # NFS mount root filesystem using BOOTP info
options BOOTP_COMPAT   # Workaround for broken bootp daemons

# To make an SMP kernel, the next two are needed
#optionsSMP # Symmetric MultiProcessor Kernel
#optionsAPIC_IO # Symmetric (APIC) I/O

device  isa
device  eisa
#device pci

# Floppy drives
device  fdc0at isa? port IO_FD1 irq 6 drq 2
device  fd0 at fdc0 drive 0
#device fd1 at fdc0 drive 1
#
# If you have a Toshiba Libretto with its Y-E Data PCMCIA floppy,
# don't use the above line for fdc0 but the following one:
#device fdc0

# ATA and ATAPI devices
device  ata0at isa? port IO_WD1 irq 14
device  ata1at isa? port IO_WD2 irq 15
device  ata
device  atadisk # ATA disk drives
#device atapicd # ATAPI CDROM drives
#device atapifd # ATAPI floppy drives
#device atapist # ATAPI tape drives
options ATA_STATIC_ID   #Static device numbering

# 

Re: Setting Up VLAN IFaces for IDS

2002-10-02 Thread Mike Hogsett


In a switched network unicast packets from host A on port 1 to host b on
port 2 will never be seen by host C on port 3 (whether it is a trunk or
not).  That is the whole point of a switch.  Broadcast packets are always
sent to all ports in in the VLAN (including trunks).

 Greetings.
 
 My goal is to set up three vlan interfaces on a FreeBSD 4.6.2R box for use wi
 th an IDS product.
 
 Currently, the switch to which the BSD box is connected is set up properly wi
 th tagging enabled for the respective VLANS.
 
 I have a parent interface (fxp1) configured with no IP address.
 
 If I use TCPDUMP on the parent interface to test whether or not the tagged pa
 ckets are being received I get something like:
 
  #tcpdump -i fxp1
  00:03:42.758875 802.1Q vlan#10 P0 ...
   lots and lots of VLAN10 stuff here
 
 Which to me implies that the packets are arriving at the BSD box appropriatel
 y tagged.
 
 So, I configure a vlan with no IP address:
 
  #ifconfig vlan0 vlan 10 vlandev fxp1 up
 
 And when I do a:
 
  #tcpdump -i vlan0
 
 All I get are broadcasts... ARPs, ICMP to something.255, etc for VLAN10.  All
  unicast packets for VLAN10 are dropped.
 
 Am I barking up a wrong tree?  Is it possible to do this?  Ideally, I'd like 
 to have the following:
 
 +--+  +---+
 | FBSD | vlan0VLAN#10 |   |
|  +-vlan1VLAN#11-+ switch|
 | IDS  | vlan2VLAN#12 |   |
 +--+---+  +-+-+-+-+
   | | | |
   | | | \__VLAN#10
   \__iface with IP  | \VLAN#11
 \__VLAN#12
 
 Thanks for any input...
 -ed
 -- 
 ___
 Talk More, Pay Less with Net2Phone Direct(R), up to 1500 minutes free! 
 http://www.net2phone.com/cgi-bin/link.cgi?143 
 
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



IPFW DUMMYNET shaping 4.6.2-R - Speed limited to half of pipelimit

2002-10-02 Thread Randy Smith

Hi all,

I am using IPFW and DUMMYNET to do traffic shaping on 4.6.2-R gateway
(uname -a below). I have set the upload to 800Kbit/s and the download to
1500Kbit/s. Here is the relevent section from ipfw.conf.

add 500 pipe 1 ip from 192.169.91.16:255.255.255.240 to any pipe 1 config bw 800Kbit/s
add 500 pipe 2 ip from any to 192.168.91.16:255.255.255.240 pipe 2 config bw 1500Kbit/s

If I've read the docs correctly, the network 192.168.91.16/240 should have
it's upload limited to 800Kbs it's download to 1500Kbs. However, MRTG is
reporting that the upload traffic is maxing out at around 400Kbs.

I have played with the upload speed and the connection always maxes out at
about half of what I set it to.

My questions:
1) How do I get the traffic limited to the bw I set it to?
2) What is causing this?
3) Would changing/setting the queuing method help?

# uname -a
FreeBSD gateway..net 4.6.2-RELEASE FreeBSD 4.6.2-RELEASE #2:
Mon Aug 19 19:06:07 MDT 2002
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/PROXY  i386

Thank you for your help in this matter.

ps. Please CC me as I am not subscribed to this list.

-- 
Randy Smith
Amigo.Net Systems Administrator
1-719-589-6100 x 4185
http://www.amigo.net/




To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: make fails

2002-10-02 Thread Kent Stewart



Boris A. Grebenyuk wrote:
 Hi! I'm trying to build kernel for i486 PC. But get an error:
 
 Press any key to continue...bash-2.04# bash-2.04# make kernel
 linking kernel
 if_ed.o: In function `ed_tick':
 if_ed.o(.text+0x26d9): undefined reference to `mii_tick'
 if_ed.o: In function `ed_init':
 if_ed.o(.text+0x2aca): undefined reference to `mii_mediachg'
 if_ed.o: In function `ed_ifmedia_upd':
 if_ed.o(.text+0x4d8d): undefined reference to `mii_mediachg'
 if_ed.o: In function `ed_ifmedia_sts':
 if_ed.o(.text+0x4dc2): undefined reference to `mii_pollstat'
 *** Error code 1
 
 Stop in /usr/src/sys/compile/DISKLESS_486.
 
 How can I solve a problem? I think there is some unchecked options or devices in
 my kernel config. Need you help.

In your kernel config, you have

# ISA Ethernet NICs.
# 'device ed' requires 'device miibus'
device  ed0 at isa? port 0x280 irq 10 iomem 0xd8000

and you didn't do what it told you to do. You have miibus commented out.

# PCI Ethernet NICs that use the common MII bus controller code.
# NOTE: Be sure to keep the 'device miibus' line in order to use these 
NICs!
#device miibus  # MII bus support


Kent
-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: advise on gateway-setup

2002-10-02 Thread Mike Hogsett


 I'm in a similar position, but on a smaller scale.  I'm trying to figure
 out where these Switched Gateway/Routers/Firewall/VPN devices that are
 coming on the market fit in, and where it is better to use our favorite
 FreeBSD machine to do the work?  Would I be wrong in assuming these
 little hardware devices are faster at the job than a FreeBSD machine?

I can't comment on whether FreeBSD or the small devices are better at the
job.  I can comment on one of these small switch/router/firewall boxes.  I
have deployed several Cisco PIX 501s and have been very pleased with their
performance, their capabilities and their price.

I have about 6 of them deployed at home (residence) offices and they are
doing NAT, routing, firewalling, and 3DES VPN to the main office.  They
are very nice little machines.  Plus they are the cutest little Cisco
boxes you will ever see (about the size of a paper back book).

 - Mike Hogsett


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: KDE, sound, artsd and xmms

2002-10-02 Thread Kirk Strauser


At 2002-10-02T11:59:13Z, Irvine Short [EMAIL PROTECTED] writes:

 How do you guys get all the above to play together?

I run 'artsdsp esd' and forget about it.  XMMS and a few other apps like to
use ESD, so I don't try to fight it.
-- 
Kirk Strauser
In Googlis non est, ergo non est.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: KDE, sound, artsd and xmms

2002-10-02 Thread Peter Leftwich

On Wed, 2 Oct 2002, Scott A. Moberly wrote:
 put:
 hw.snd.pcm0.vchans=4
 hw.snd.maxautovchans=4

 into /etc/sysctl.conf; attach arts to /dev/dsp0.1 and esd to /dev/dsp.2
 This leaves /dev/dsp0 - /dev/dsp0.0 open for odd aplications that
 need direct access.  You could additionally attach nas to /dev/dsp0.3 if
 you are networking sound.
 Scott A. Moberly
 [EMAIL PROTECTED]

 Microsoft: Where would you like to go to today
 Linux: Where would you like to go tomorrow
 FreeBSD: Hey,when are you guys going to catch up

Apple: Hell little one!  Here take my hand, and where shall we go?

 On Wed, Oct 02, 2002 at 08:19:09AM +, Weston M. Price wrote:
  Yeah, an extremely frustrating problem to say the least. I have used both
  methods (ie the plugin and artsdsp) and have found that that artsdsp is the
  most stable and effective way to get the two apps to work together on a
  consistet basis. The plugin causes xmms at the drop of a dime. Until the
  plugin gets fixed go with artsdsp.
  Regards,
  Weston
 
  On Wednesday 02 October 2002 11:59 am, Irvine Short wrote:
   Hey All - How do you guys get all the above to play together?
   I'd like to keep artsd going. At the moment I can get xmms to play by
   running artsdsp xmms.
  
   Is there a neater/better way? There's a plugin for xmms to talk directly
   to artsd but by all accounts it's old and buggy and not  in the ports
   subsystem.
  
   Any suggestions much appreciated.
   I'm running FreeBSD 4.7RX, KDE 3,03, and XMMS 1.2.7
   The sound card is an Ensoniq AudioPCI ESS1371
 Scott A. Moberly
 [EMAIL PROTECTED]
 Those who do not understand Unix are condemned to reinvent it, poorly.
 -- Henry Spencer

Wow!  I just searched the ports for xmms and saw crossfade and gdancer
plug-ins!  Does FreeAMP (too?) support these features, and a speed-up /
slow-down plugin such as the one Winamp for Windows supports (where the
vocals are unaffected)?!

--
Peter Leftwich
President  Founder
Video2Video Services
Box 13692, La Jolla, CA, 92039 USA
+1-413-403-9555


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: JDK13

2002-10-02 Thread Weston M. Price

Actually, for binaries aka java, javac the soft link should work just fine. 
The CLASSPATH variable only comes into play when actually executing class 
files within the JVM, thus, the variable really has nothing to do with binary 
execution. 

Many Java applications require the JAVA_HOME variable to be set to run 
properly. I don't know what shell you use but for the Korn shell you would 
put this in your .profile

JAVA_HOME=/path/to/where/you/installed/the/jdk. 
export JAVA_HOME. 

Regards,

Weston

On Wednesday 02 October 2002 06:03 pm, Matt Smith wrote:
 either add /usr/local/jdk1.3.1/bin/ to your PATH, or simply make
 soft-links (or hard links, at your preference):

 ln -s /usr/local/jdk1.3.1/bin/java /usr/local/bin/java

 HOWEVER, I believe (from my minimal Java experience) that the Java
 utilities will look for CLASS_PATHs and other java Stuff relative to
 location of java binaries.  Executing via link from another location
 (like /usr/local/bin) may cause issues.
 But again, my Java experience is minimal, and I may be waaay off.
 Perhaps someone on this list can clarify?
 -Matt

 On Wed, 2002-10-02 at 13:29, MET wrote:
  Is there any way that I could make java and javac global commands like
  other programs?  So that way I can be in any folder and type java and
  have it execute the file through the VM?
 
  ~ Matthew
 
  P.S. I'm picky but thanks a lot
 
  -Original Message-
  From: Matt Smith [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, October 02, 2002 1:19 PM
  To: MET
  Cc: [EMAIL PROTECTED]
  Subject: Re: JDK13
 
 
  try:
 
  /usr/local/jdk1.3.1/bin/java
 
  and
 
  /usr/local/jdk1.3.1/bin/javac
 
  -Matt
 
  On Wed, 2002-10-02 at 13:15, MET wrote:
   So I installed the JDK13 and would like to start coding.  However,
   java and javac commands seem to do nothing.  Do I have to make them
   alias's to the programs (didn't actually check if they're installed)
   or something else?
  
   Ideas?
  
   ~ Matthew
  
  
   To Unsubscribe: send mail to [EMAIL PROTECTED]
   with unsubscribe freebsd-questions in the body of the message

 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Problems with webcam+soundcard

2002-10-02 Thread Peter Leftwich

On Wed, 2 Oct 2002, Alessandro de Manzano wrote:
 On Wed, Oct 02, 2002 at 08:03:22PM +0200, Dario Freni wrote:
  # ls -l /dev/dsp*
  lrwxrwxrwx  1 root  wheel 4 Oct  2 19:48 /dev/dsp - dsp0
  lrwxrwxrwx  1 root  wheel 6 Oct  2 19:48 /dev/dsp0 - dsp0.0
  crw-rw-rw-  1 root  wheel   30,   3 Oct  2 19:48 /dev/dsp0.0

I believe /dev/dsp is the sound digitizer, basically microphone in.

What make/model/brand of soundcard is it?

 well, you could try with
 sh /dev/MAKEDEV snd1 or snd2
 should be enough :-)
 bye!
 Ale

There's some good settings regarding emu101k in /etc/rc.conf or modules you
can load in /boot/loader.conf

--
Peter Leftwich
President  Founder
Video2Video Services
Box 13692, La Jolla, CA, 92039 USA
+1-413-403-9555


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: 8.4Gb IDE Drive Limit

2002-10-02 Thread Matthew Donadio

Matthew Donadio wrote:
 I have an old Pentium Pro system that I would like to install FreeBSD
 4.6.2 on.  Unfortunately, its BIOS has the 8.4Gb limit, and I can't find
 an upgrade for it.  The only drive I have available is a new Maxtor 40Gb
 unit.  I can boot and install from the CD-ROM, and everything is OK, but
 I cannot get it to boot on its own.  I have tried some of the
 suggestions in the FAQ, but I still cannot get it to work.
 
 Any ideas would be appreciated (or if anybdy knows a source of new
 8.4Gb drives).  Thanks.

I should add that I would be happy (I think) if I could boot from CD,
and have that image mount my disk.  I'm not sure how to go about doing
this, especially since I can't boot into my FreeBSD system right now.

Thanks.

-- 
Matthew Donadio ([EMAIL PROTECTED])

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: 8.4Gb IDE Drive Limit

2002-10-02 Thread Matthew Donadio

Mike Hogsett wrote:
 How did you partition the 40Gb drive?

Thanks for the reply.

I split the drive in two with the intentions of installing FreeBSD on
one slice, and Linux on the other (I haven't tried Linux yet).  Are you
suggesting that I should try putting / on a small slice by itself, and
see if that boots?  It's worth a shot.

-- 
Matthew Donadio ([EMAIL PROTECTED])

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: 8.4Gb IDE Drive Limit

2002-10-02 Thread Mike Hogsett


 I split the drive in two with the intentions of installing FreeBSD on
 one slice, and Linux on the other (I haven't tried Linux yet).  Are you
 suggesting that I should try putting / on a small slice by itself, and
 see if that boots?  It's worth a shot.

I would suggest that you make a 256Mb partition with a single 256Mb
FreeBSD slice as the first partition on the disk, then divide the
remaining space as you see fit.  (Redhat*) Linux will also want a /boot
partition (64 - 128Mb will do, should be below cylinder 1024).

 - Mike

* I don't have experience with the other Linux distributions, so the
others may have different requirements.

P.S.  I would not spend the effort installing Linux if it was my machine.
FreeBSD is far superior in many ways.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: advise on gateway-setup

2002-10-02 Thread Fernando Gleiser

On Wed, 2 Oct 2002, James Earl wrote:


 I'm in a similar position, but on a smaller scale.  I'm trying to figure
 out where these Switched Gateway/Routers/Firewall/VPN devices that are
 coming on the market fit in, and where it is better to use our favorite
 FreeBSD machine to do the work?  Would I be wrong in assuming these little
 hardware devices are faster at the job than a FreeBSD machine?

In my opinion, unless a) you have a corporate policy which says what to
deploy or b) you have a very large scale project which needs Big Iron
or c) you need dedicated hardware/software only available for the hardware
solution (ie EIGRP, or some very specialized WAN card) there is no reason
to install a dedicated hardware solution instead of a BSD box.

They may be atractive in the beginning, but you need to factor the
costs and availability of support, software licences/updates, replacement
parts and the like. Have you ever asked how much an extra 100BT card for
a Cisco costs? :)

One of the main advantages of the BSD/Linux solution is the hardware
availability. If a NIC blows, you can get another one in less than one
hour for less than $80. You don't need a dedicated (Cisco|Nokia|whoever)
hardware.



Fer


 James

 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Quite OT, problems with AOpen DX34 Plus motherboard and disks being trashed

2002-10-02 Thread Danny Pansters

I thought, since I run FreeBSD on this particular
server box, I might try posting here also. Sorry about
length of post but it still doesn't have all info I
could deliver as it is. 

As posted on motherboard.org forum:
--

Hi. I could really use some advice here.

The mobo has two PIII-800s, onboard Adaptec scsi
controller, Via chipset. Was using 2 identical Seagate
Barracuda 18 GB disks with software RAID1. OS: FreeBSD
4.6. When referring to first disk: this is the one I
boot the OS off. Now to the horror story...

After approx. 1.5 years of running virtually 24/7 my
first SCSI disk got read and write errors, and upon
rescanning it would have disappeared from the chain.
Upon rebooting the same would re-occur after non-equal
but overall increasingly shorter periods. In the end:
hours. Occasionally the drive wouldn't be seen by SCSI
BIOS at all. The other one (at the same chain) would.

First thought: drive is dying. However when using
Seagate's diagnostic boot disk the drive would either
not show up, or it would and if it did it passed all
tests.

Second thought: try other disk anyway. Because I want
to keep working with a mirrored configuration I got
two new identical disks, ATA this time (WD, 20GB)
with a new and short ATA100 cable. Dumped my data and
OS from the second SCSI drive and recreated
configuration. Incidentally, once I had everything
running, I could mount the other (supposedly faulty)
SCSI disk and read/write just fine. Within days
though, the second ATA disk started to show the same
problems as my former first SCSI disk did earlier.
Again upon rebooting it would work again but not very
long. Incidentally clicking noises. Not good!

Third thought: bad power supply. From what I've read,
opinions on this vary, but I came across enough posts
in mailing lists archives (FreeBSD's and some others)
indicating that a bad supply can do a lot of damage.
So I got me top knotch Antec power supply and tossed
the old one out. Connected system fan to it and
things seemed fine. At least the box was a lot less
noisy (the power supply itself has not one but two
fans also of itself effectively pushing the warm air
out of the server enclosure plus it can regulate
system fan speed when needed). However, within a day
or two my system logs again showed read errors. And
more ticking and clicking. Outch.

Fourth thought: check temperature, voltages, airflow,
etc. Actually, I ahve been looking at operational
variables like these all along. With the new power 
supply, mobo temp would go to some 35 degrees celcius,
with the old one up to 39. Not too much. As for
voltages, well, they looked normal, except that the
-12V would always be close to -17. I am not sure if
this is wrong, AFAIK it has always been like that. It
certainly didn't change when I replaced the power
supply. Also, none of the disks ever appeared to
become very warm.

Fifth thought, perhaps getting more far fetched: for
some reason, the offending disk always seemed to be
the one physically located at the bottom of the 5.25 
cage. I probably need to explain what this thing looks
like: The cage can be taken out of the server
enclosure wholly, it holds the CDROM, and one can
screw up to five 3.5 devices around it. The most
logical place to start is using the positions under
the CDROM drive and to make them fit one has to use
the metal (I think copper) strips on both sides
screwed into the harddisks and into the cage. These
came with the machine and were indeed used to hold the
harddisks. Other places to put additional disks are on
top and on both sides of the cage forming kind of a
cube altogether. Yes, I have made VERY sure that the
disk at the bottom is not touching another disk,
neither does it touch the underside of the cage or the
enclosure. The things is, a ticking ATA disk is often
caused by too low voltage which wears it out quickly,
as far as I've understood. 

Could I be having some problem with grounding? And
where then, how could this have suddenly started? 
Otherwise, well, I can't think of anything else than
to replace the mobo. Can a damaged mobo lead to
problems as described above? It would have to happen
somewhere upstream from the ATA/SCSI controllers
then.

In short, I'm really stumped on this! Last time I
tried to power up the damn thing all it did was click,
it didn't even get to post, let alone boot :( I'm very
reluctant to keep on trying and testing because in the
meantime chances are my disks will deteriorate further
(I suspect the ATA drive is already toast).

Any ideas, recommendations, experiences that might
help me??

Thanks a ton for even reading this long post.

__
Do you Yahoo!?
New DSL Internet Access from SBC  Yahoo!
http://sbc.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: /var/spool/uucppublic

2002-10-02 Thread pbdlists

On Tue, Oct 01, 2002 at 10:39:19PM -0700, Mikko Työläjärvi wrote:
 
 Just delete the directory.  And keep deleting it after every new
 upgrade, install or make world, until uucp finally is divorced from
 the base system, causing grief for all of the three people still alive
 using uucp... ;-).  Hmm.. looks like that will happen in 5.0.  Whee.

Hey, make that count 4! I'm using good old UUCP on a number of servers
throughout three companies.

Cheers,

Kurt

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: OpenOffice User Installation

2002-10-02 Thread Scott A. Moberly

On Wed, Oct 02, 2002 at 05:19:30AM -0500, MET wrote:
 So we are at the same page, I'm following the directions found in the FBSD 
 handbook for installing OpenOffice from the ports.
 
 As a super-user I can 'make install clean' the port without any problem 
 whatsoever (but it took forever).  Then the directions say that I have to 
 install the program as a user.  So I logout of super-user and I run the 
 command 'make install-user'.  Since I'm in the KDE environment I get a pop-up 
 warning saying this (not an exact copy - except for the file)
 
 ===
 Cannot Find Sciprt and the Installation cannot continue without it.
 
 The file was looked for in the following directory:
 
   /usr/local/OpenOffice.org1.0/program/setup.ins
 ===
 
 Does anyone have any ideas what I might do in order to get this program 
 started?
 
 ~ Matthew
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
This happened on a few of the earlier incarnations of OpenOffice in
the ports.  There were (are) patches available for it, but I'd
suggest cvsup'ing the ports tree now at 1.0.1.
-- 
Scott A. Moberly
[EMAIL PROTECTED]

A budget is just a method of worrying before you spend money, as well
as afterward.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



jpilot, usb and palm m505.

2002-10-02 Thread Yann Golanski

I cannot seem to get my Palm m505 to sync on my desctop whci is running
-STABLE and jpilot with pilot-link0.11.4 installed. 

The error of jpilot is:
 ***
  Syncing on device /dev/uhub0 - this was changed to /dev/ugen0 as well.
  Press the HotSync button now
 
 pi_bind No such file or directory
 Check your serial port and settings
 exiting with status -10

dmesg gives: 
 usb0: VIA 83C572 USB controller on uhci0
 usb0: USB revision 1.0
 usb1: VIA 83C572 USB controller on uhci1
 usb1: USB revision 1.0

And when the sync button is pressed, /var/log/messages gives:
 Oct  2 22:31:08 anubis /kernel: ugen0: Palm, Inc. Palm Handheld, rev 1.00/1.00, addr 2
 Oct  2 22:32:13 anubis /kernel: ugen0: at uhub0 port 2 (addr 2) disconnected
 Oct  2 22:32:13 anubis /kernel: ugen0: detached

Any idea of what I am missing?

-- 
[EMAIL PROTECTED]  -=*=-  www.kierun.org
PGP:   www.kierun.org/pgp/key-kierun
PGP:   009D 7287 C4A7 FD4F 1680  06E4 F751 7006 9DE2 6318
IRC:   nick kierun, server spod.uk.amiganet.org, channel #sanctus

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: OpenOffice User Installation

2002-10-02 Thread Dru



On Wed, 2 Oct 2002, Scott A. Moberly wrote:

 On Wed, Oct 02, 2002 at 05:19:30AM -0500, MET wrote:
  So we are at the same page, I'm following the directions found in the FBSD
  handbook for installing OpenOffice from the ports.
 
  As a super-user I can 'make install clean' the port without any problem
  whatsoever (but it took forever).  Then the directions say that I have to
  install the program as a user.  So I logout of super-user and I run the
  command 'make install-user'.  Since I'm in the KDE environment I get a pop-up
  warning saying this (not an exact copy - except for the file)
 
  ===
  Cannot Find Sciprt and the Installation cannot continue without it.
 
  The file was looked for in the following directory:
 
  /usr/local/OpenOffice.org1.0/program/setup.ins
  ===
 
  Does anyone have any ideas what I might do in order to get this program
  started?


I'm getting the same thing (after a 50 hour make!)

This is with ports cvsupped daily.

pkg_info |grep openoffice
openoffice-1.0.1_3  Integrated wordprocessor/dbase/spreadheet/drawing/chart/bro

Any other suggestions?

Dru


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: xterm and colors

2002-10-02 Thread Lou Katz

I hate all this color stuff. HOW DO I TURN IT OFF? I am colorblind.


On Sat, Sep 28, 2002 at 08:55:58AM +0200, Frank Heitmann wrote:
 On Sat, Sep 28, 2002 at 12:54:10AM -0500, Bryan Cassidy wrote:
 
  How do i set the colors so when I just use ls I get the color
  directories and the rest of colors? I just want the basic colors
  that I can get without having to do alot of configuring.
 Have you set your TERM environment variable to 'xterm-color' ?
 
 The way to do this differs depending on the shell you use, if it's
 bash just type:
 export TERM=xterm-color
 
 if it's csh type:
 setenv TERM xterm-color
 
 (There are more shells, look at the man page of your shell for more
 details!)
 
 Hope that helps,
 Cheers and Good Morning :)
 Frank
 
 P.S. I have read that in new versions of FreeBSD the TERM variable
 is set to xterm-color by default, but I have forgotten if this is
 already done in -stable or if this is done in -current - and I
 don't know which version of FreeBSD you are running :)
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

-- 

-=[L]=-

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: OpenOffice User Installation

2002-10-02 Thread Scott A. Moberly

On Wed, Oct 02, 2002 at 05:37:34PM -0400, Dru wrote:
 
 
 On Wed, 2 Oct 2002, Scott A. Moberly wrote:
 
  On Wed, Oct 02, 2002 at 05:19:30AM -0500, MET wrote:
   So we are at the same page, I'm following the directions found in the FBSD
   handbook for installing OpenOffice from the ports.
  
   As a super-user I can 'make install clean' the port without any problem
   whatsoever (but it took forever).  Then the directions say that I have to
   install the program as a user.  So I logout of super-user and I run the
   command 'make install-user'.  Since I'm in the KDE environment I get a pop-up
   warning saying this (not an exact copy - except for the file)
  
   ===
   Cannot Find Sciprt and the Installation cannot continue without it.
  
   The file was looked for in the following directory:
  
 /usr/local/OpenOffice.org1.0/program/setup.ins
   ===
  
   Does anyone have any ideas what I might do in order to get this program
   started?
 
 
 I'm getting the same thing (after a 50 hour make!)
 
 This is with ports cvsupped daily.
 
 pkg_info |grep openoffice
 openoffice-1.0.1_3  Integrated wordprocessor/dbase/spreadheet/drawing/chart/bro
 
 Any other suggestions?
 
 Dru
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

Not sure then, I just finished a full build with no problems.  Might
check your dependencies?

pkg_version -v | grep -v \=

-- 
Scott A. Moberly
[EMAIL PROTECTED]

Those who do not understand Unix are condemned to reinvent it, poorly.
-- Henry Spencer

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: OpenOffice User Installation

2002-10-02 Thread Dru



On Wed, 2 Oct 2002, Scott A. Moberly wrote:

 On Wed, Oct 02, 2002 at 05:37:34PM -0400, Dru wrote:
 
 
  On Wed, 2 Oct 2002, Scott A. Moberly wrote:
 
   On Wed, Oct 02, 2002 at 05:19:30AM -0500, MET wrote:
So we are at the same page, I'm following the directions found in the FBSD
handbook for installing OpenOffice from the ports.
   
As a super-user I can 'make install clean' the port without any problem
whatsoever (but it took forever).  Then the directions say that I have to
install the program as a user.  So I logout of super-user and I run the
command 'make install-user'.  Since I'm in the KDE environment I get a pop-up
warning saying this (not an exact copy - except for the file)
   
===
Cannot Find Sciprt and the Installation cannot continue without it.
   
The file was looked for in the following directory:
   
/usr/local/OpenOffice.org1.0/program/setup.ins
===
   
Does anyone have any ideas what I might do in order to get this program
started?
 
 
  I'm getting the same thing (after a 50 hour make!)
 
  This is with ports cvsupped daily.
 
  pkg_info |grep openoffice
  openoffice-1.0.1_3  Integrated wordprocessor/dbase/spreadheet/drawing/chart/bro
 
  Any other suggestions?
 
  Dru
 
 
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body of the message

 Not sure then, I just finished a full build with no problems.  Might
 check your dependencies?

 pkg_version -v | grep -v \=


That comes back clean. (I assume I interpreted that correctly as checking
for outdated packages?)

Dru


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Installationproblems FreeBSD 4.6-release

2002-10-02 Thread Socketd

 Original Message 

On 10/2/02, 4:08:21 PM, Bengt Frost [EMAIL PROTECTED] wrote 
regarding Installationproblems FreeBSD 4.6-release:

 Hey,
 I tried ok *set hw.ata.ata_dma=1*
ok *set hw.ata.atapi_dma=1*
ok *boot*
 from loader prompt ok, but sysinstall still are unable to transfer the
 bin distribution from
 acd0c (tried to upgrade bin from sysinstall to) to my disk. My CD-rom
 is AOpen 50x.  No problem with my FreeBSD 4.5-release2 cd's.  Does
 anyone know where I can find the right info?  For fun I will now try to
 upgrade source code instead.

Try again with FreeBSD 4.6.2, you really don't want FreeBSD 4.6 (I also 
had problems with installing it via cdrom and there is a lot of security 
bugs in that version)!

br
socketd

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: OpenOffice User Installation

2002-10-02 Thread Scott A. Moberly

On Wed, Oct 02, 2002 at 05:51:34PM -0400, Dru wrote:
 
 
 On Wed, 2 Oct 2002, Scott A. Moberly wrote:
 
  On Wed, Oct 02, 2002 at 05:37:34PM -0400, Dru wrote:
  
  
   On Wed, 2 Oct 2002, Scott A. Moberly wrote:
  
On Wed, Oct 02, 2002 at 05:19:30AM -0500, MET wrote:
 So we are at the same page, I'm following the directions found in the FBSD
 handbook for installing OpenOffice from the ports.

 As a super-user I can 'make install clean' the port without any problem
 whatsoever (but it took forever).  Then the directions say that I have to
 install the program as a user.  So I logout of super-user and I run the
 command 'make install-user'.  Since I'm in the KDE environment I get a pop-up
 warning saying this (not an exact copy - except for the file)

 ===
 Cannot Find Sciprt and the Installation cannot continue without it.

 The file was looked for in the following directory:

   /usr/local/OpenOffice.org1.0/program/setup.ins
 ===

 Does anyone have any ideas what I might do in order to get this program
 started?
  
  
   I'm getting the same thing (after a 50 hour make!)
  
   This is with ports cvsupped daily.
  
   pkg_info |grep openoffice
   openoffice-1.0.1_3  Integrated wordprocessor/dbase/spreadheet/drawing/chart/bro
  
   Any other suggestions?
  
   Dru
  
  
   To Unsubscribe: send mail to [EMAIL PROTECTED]
   with unsubscribe freebsd-questions in the body of the message
 
  Not sure then, I just finished a full build with no problems.  Might
  check your dependencies?
 
  pkg_version -v | grep -v \=
 
 
 That comes back clean. (I assume I interpreted that correctly as checking
 for outdated packages?)
 
 Dru
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
Assumtion correct.

Have you tried running /usr/local/OpenOffice.org1.0/program/setup
directly, as the user having OpenOffice installed?
-- 
Scott A. Moberly
[EMAIL PROTECTED]

Demographic polls show that you have lost credibility across the
board.  Especially with  those 14 year-old Valley girls.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Setting Up VLAN IFaces for IDS

2002-10-02 Thread Ed Paquette

I've done a little more research and found that if I configure a VLAN in the
same fashion - but on one of my OpenBSD boxes (using hme as parent iface) the
connection works perfectly.

Upon completion of the vlan setup:
 #ifconfig vlan0 vlan 10 vlandev hme1 up

I can dump that vlan interface:
 #tcpdump -i vlan0

And get ALL packets from the ports on the switch configured as VLAN #10.

Is this a known FreeBSD issue?

-ed

 Hi.

 I agree with Mike's description of an (unconfigured) switch, but the issue 
 comes after it since tcpdumping -i fxp1 (the parent) yields ALL packets 
 (including unicasts).  This is what the switch was configured to do - forward 
 all packets.

 The issue is with the BSD box and the actual VLAN interface.

 Any ideas why the vlan interfaces are truncating unicasts?

 Thanks...

 In a switched network unicast packets from host A on port 1 to host b on
 port 2 will never be seen by host C on port 3 (whether it is a trunk or
 not).  That is the whole point of a switch.  Broadcast packets are always
 sent to all ports in in the VLAN (including trunks).

 Greetings.

 My goal is to set up three vlan interfaces on a FreeBSD 4.6.2R box for use
 with an IDS product.

 Currently, the switch to which the BSD box is connected is set up properly
 with tagging enabled for the respective VLANS.

 I have a parent interface (fxp1) configured with no IP address.

 If I use TCPDUMP on the parent interface to test whether or not the tagged
 packets are being received I get something like:

  #tcpdump -i fxp1
  00:03:42.758875 802.1Q vlan#10 P0 ...
  lots and lots of VLAN10 stuff here

 Which to me implies that the packets are arriving at the BSD box 
 appropriately tagged.

 So, I configure a vlan with no IP address:

  #ifconfig vlan0 vlan 10 vlandev fxp1 up

 And when I do a:

  #tcpdump -i vlan0

 All I get are broadcasts... ARPs, ICMP to something.255, etc for VLAN10. All
 unicast packets for VLAN10 are dropped.

 Am I barking up a wrong tree?  Is it possible to do this?  Ideally, I'd like
 to have the following:

 +--+  +---+
 | FBSD | vlan0VLAN#10 |   |
 |  +-vlan1VLAN#11-+ switch|
 | IDS  | vlan2VLAN#12 |   |
 +--+---+  +-+-+-+-+
  |  | | |
  |  | | \__VLAN#10
  \__iface with IP   | \VLAN#11
 \__VLAN#12

-- 
___
Talk More, Pay Less with Net2Phone Direct(R), up to 1500 minutes free! 
http://www.net2phone.com/cgi-bin/link.cgi?143 




To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: OpenOffice User Installation

2002-10-02 Thread Scott A. Moberly

On Wed, Oct 02, 2002 at 06:16:49PM -0400, Dru wrote:
 
snip 
 Same error message:
 
 The installation program cannot find the script file in whic
 The file was looked for in the following directory.
 /usr/local/OpenOffice.org1.0/program/setup.ins
 The installation program cannot be executed without this file, it will r
 
 A search for that file gives:
 
 /usr/libexec/locate.updatedb
 locate setup.ins
 
/usr/ports/editors/openoffice/work/oo_1.0.1_src/instsetoo/unxfbsd.pro/01/normal/setup.ins
 
/usr/ports/editors/openoffice/work/oo_1.0.1_src/instsetoo/unxfbsd.pro/49/normal/setup.ins
 /usr/ports/editors/staroffice52/files/setup.ins.patch
 
 That got me a bit closer. I tried copying the file to the desired
 directory. This started the installation program, which asked me to accept
 a non-displayed (!) agreement, asked the various questions, etc. However,
 once I click install, setup.bin exits on signal 11.
 
 This is a new machine with good RAM and I haven't had any problems
 building kernels, making world, or building other ports...
 
 Here's the uname:
 
 FreeBSD hostname 4.6.2-RELEASE FreeBSD 4.6.2-RELEASE #0: Sat Sep 21
 13:13:24 EDT 2002 hostname:/usr/obj/usr/src/sys/MULTIMEDIA  i386
 
 Dru
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

Interesting...
setup.ins isn't necessary /usr/local/OpenOffice.org1.0/program/setup
just calls setup.bin, also in /usr/local/OpenOffice.org1.0/program.

Two things.
1) I'm running -STABLE (i.e. 4.7-RC)
2) since it appears you still have the binaries laying around try:
as root:
make deinstall
rm -rf /usr/local/OpenOffice.org1.0
make install
as user:
make install-user

if that fails to work (and adding a make clean also fails to work)...
I have no clue


-- 
Scott A. Moberly
[EMAIL PROTECTED]

He hadn't a single redeeming vice.
-- Oscar Wilde

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: file of large size

2002-10-02 Thread Kevin Stevens



On Wed, 2 Oct 2002, [iso-8859-1] shubha mr wrote:

 Hi,
 Can anyone suggest me a shell script or a command to
 create a large file in BSD(aroung 50 MB).Any junk data
 in it is also fine.

 Thanks in advance,
 shubha

mkfile junk 50M

KeS



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: palm pose rom

2002-10-02 Thread Wayne Lubin

Sorry, forgot to mention that I don't own a palm. And
therefore I must get my rom from elsewhere, namely, I
thought the palmos site. but even so, you still may
want to program for many different palms, and hence
even if you own a palm, may want various different
rom.

wayne


--- Mike Hogsett [EMAIL PROTECTED] wrote:
 
 I thought pose came with a prc for the palm so you
 can download the
 ROM from your palm.
 
 Ahh yes
 
 /usr/local/share/pose/ROM_Transfer.prc
 
 
  Hi,
  
  I went to the palmos.com site to get some rom for
 my
  pose, but the only rom they seemed to have were
 for
  windows or mac. Where do I get my rom from?
 Thanks.
  
  Wayne
  
  __
  Do you Yahoo!?
  New DSL Internet Access from SBC  Yahoo!
  http://sbc.yahoo.com
  
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body
 of the message


__
Do you Yahoo!?
New DSL Internet Access from SBC  Yahoo!
http://sbc.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



linproc - getting it running

2002-10-02 Thread MET

I've got a program which is telling me to add this line to my /etc/fstab file:

   linproc /compat/linux/proc linprocfs rw 0 0

But as I have no ideas what it is I figured I'd ask and find out.  I 
understand that linproc has to do with linux emulation with the filesystem, 
but other than that I have no idea.

Do I just put that line into the bottom of fstab?  It doesn't seem to fit the 
style which that file has...is that ok?

The only thing I found when searching for this string is installing 
staroffice, which since it requires linux emulation I'm sure its a similar 
task.

Help...please

~ Matthew

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: linproc - getting it running

2002-10-02 Thread Adam Weinberger

 (10.02.2002 @ 0602 PST): MET said, in 0.7K: 
 I've got a program which is telling me to add this line to my /etc/fstab file:
 
linproc /compat/linux/proc linprocfs rw 0 0
 
 But as I have no ideas what it is I figured I'd ask and find out.  I 
 understand that linproc has to do with linux emulation with the filesystem, 
 but other than that I have no idea.

check out linprocfs(5).

you're nearly right there. linprocfs is as much a filesystem as procfs is.
it provides a file-based interface into the processes currently running
with linux emulation.

 Do I just put that line into the bottom of fstab?  It doesn't seem to fit the 
 style which that file has...is that ok?

that's exactly what you do. expand the spaces into tabs and you'll find
that it does in fact fit the formatting... it just doesn't look like it
::)

 The only thing I found when searching for this string is installing 
 staroffice, which since it requires linux emulation I'm sure its a similar 
 task.

a couple other ports and processes require it. running linux emulation
without the linprocfs is possible and reasonable, but won't put much of
a tax on your system.

-Adam


--
Oh good, my dog found the chainsaw.
-Lilo, Lilo  Stitch
Adam Weinberger
[EMAIL PROTECTED]
http://vectors.cx


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: FreeBSD release 4.6.2

2002-10-02 Thread Adam Weinberger

it shouldn't be. it's there for you, for reference, to make sure that
your files didn't get corrupted by the FLESH-EATING ZOMBIES that live in
the interweb.

-Adam


 (10.02.2002 @ 1021 PST): Chris Lum said, in 0.3K: 
   i was able to download the ISO files from the ftp sites you guys listed.
 there were 3 files.  Disk1, Disk2 and a checksum file.  which disk should
 this file be burnt onto if at all??
 
 Hope to hear from you soon,
 
 Chris Lum
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
 
 end of FreeBSD release 4.6.2 from Chris Lum 


--
Oh good, my dog found the chainsaw.
-Lilo, Lilo  Stitch
Adam Weinberger
[EMAIL PROTECTED]
http://vectors.cx


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Command: compress || Issues

2002-10-02 Thread MET

I'm attempting to compress a file as I'm attempting to upload it.  Oddly
this is for a class project.  However, the command just isn't working.
Below is what I'm typing.

   compress lab5.tar

I can see that it begins to make the file, but once the execution is
done the file disappears.  Any ideas anyone?

~ Matthew

P.S. I'd ask my teacher, except it's a little late to get a response at
this time.  Thanks all.



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Command: compress || Issues

2002-10-02 Thread Edwin Groothuis

On Wed, Oct 02, 2002 at 08:46:39PM -0400, MET wrote:
 I'm attempting to compress a file as I'm attempting to upload it.  Oddly
 this is for a class project.  However, the command just isn't working.
 Below is what I'm typing.
 
compress lab5.tar
 
 I can see that it begins to make the file, but once the execution is
 done the file disappears.  Any ideas anyone?

It should popup as lab5.tar.Z. See also the man-page of compress
for more information.

Edwin

-- 
Edwin Groothuis  |Personal website: http://www.MavEtJu.org
[EMAIL PROTECTED]|Weblog: http://www.mavetju.org/weblog/weblog.php 
bash$ :(){ :|:};:   | Interested in MUDs? http://www.FatalDimensions.org/

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: xterm and colors

2002-10-02 Thread Giorgos Keramidas

On 2002-10-02 14:36, Lou Katz [EMAIL PROTECTED] wrote:
 On Sat, Sep 28, 2002 at 08:55:58AM +0200, Frank Heitmann wrote:
  On Sat, Sep 28, 2002 at 12:54:10AM -0500, Bryan Cassidy wrote:
   How do i set the colors so when I just use ls I get the color
   directories and the rest of colors? I just want the basic colors
   that I can get without having to do alot of configuring.
 
  Have you set your TERM environment variable to 'xterm-color' ?

 I hate all this color stuff. HOW DO I TURN IT OFF? I am colorblind.

Please, don't cross post or ``shout'' in caps :-)

Most of the time I render my terminals color-free by running screen(1)
and setting TERM to vt220.

Giorgos.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Fixed FXP0 SCB and PCM0 timeouts

2002-10-02 Thread Jason Oakley

I moved all the cards around to different PCI slots and removed the TV
Card.

This weekend I will test if I can put the TV Card back in without causing
problems



: http://vzalive.bangrocks.com :
: VZ300/Laser 210/Salora/Texet :
.   http://www.bangrocks.com   .



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Anyone have a XF86Config for Diamond Stealth 3d 3000 Pro?

2002-10-02 Thread Jason Oakley

I have just set up my server at home with Gnome 2.0 and have been scouring
the net for an XF86Config for it.

If you have one for the above card, please email me

TIA



: http://vzalive.bangrocks.com :
: VZ300/Laser 210/Salora/Texet :
.   http://www.bangrocks.com   .



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



[no subject]

2002-10-02 Thread Buddy Alexander Jr

subscribe freebsd-questions

END
-- 
Buddy Alexander Jr

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Suggestion re packages

2002-10-02 Thread Ian Moore

Hi,
As I was browsing thru the questions mailing list just now, I thought of 
something that might improve the ease of use of our ports/packages system.
It seems to me it would be helpful if packages included a quick summary of any 
options used to compile the package and anything else that isn't included in 
the packages, but is present in the port (or vice versa?). For example -  the 
authentication bits in Squid)
I've come across problems several times where I couldn't get something to work 
because I'd installed the package rather than the port and I've seen 
questions from others with the same problem.
What do you think?

Cheers,
Ian

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: OpenOffice User Installation

2002-10-02 Thread Gary W. Swearingen

Dru [EMAIL PROTECTED] writes:

 Looks like I'll wait until 4.7 is out of RC and then try again. Thanks for
 the help.

Maybe you had a reason for going the port route, but if not, you could
try the package route.  I've forgotten where I got the package; Italy
or somewhere, but probably via a link from www.openoffice.org.  I did
$ PKG_TMPDIR=/u/tmp pkg_add -v openoffice-1.0.1_2.tbz2
$ PKG_TMPDIR=/u/tmp pkg_add -v en-ooodict-US-1.0.tbz2
Google might find one of those file names if openoffice.org fails you.

It seems to work OK though I didn't even do it as root as I'm trying an
experiment: I gave most of the port/package directories to a non-root
user and he tries to do building and installing so errant scripts won't
wipe out more important things, like OS files and personal files.  It
looks like many scripts want to install things as root:wheel, but I'm
hoping that many of them can be fixed by doing:
BINOWN=port_pkg_user BINGRP=port_pkg_group make install
I suspect that too many scripts will still break to make this practical,
but I really hate the idea of running app scripts as root and am going
to try to make this work.  I might wind up bugging a lot of people about
fixing their nasty scripts.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Fwd: Laptop is crashing while istalling

2002-10-02 Thread Gershon Shif


 Hi,
 I am trying to install FreeBSD on DELL laptop.
 After configuring kernel I confirm savings and
 message
 pops up:
 Found PC-card slot(s)
 Use PC-card device as installation media
 YES   NO
 
 My keyboard is not responding anymore.
 Thanks
 
 __
 Do you Yahoo!?
 New DSL Internet Access from SBC  Yahoo!
 http://sbc.yahoo.com
 


__
Do you Yahoo!?
New DSL Internet Access from SBC  Yahoo!
http://sbc.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: 80cm CD cover

2002-10-02 Thread Edwin Groothuis

On Thu, Oct 03, 2002 at 01:29:45PM +1000, Nigel Weeks wrote:
 I have rolled a CD image for a few friends, using a 'Beastie'
 picture I found somewhere.
 Do you know it I'm allowed to use it?

http://www.mckusick.com/beastie/mainpage/copyright.html

One stop shopping for all your beastie and copyright issues.

Edwin

-- 
Edwin Groothuis  |Personal website: http://www.MavEtJu.org
[EMAIL PROTECTED]|Weblog: http://www.mavetju.org/weblog/weblog.php 
bash$ :(){ :|:};:   | Interested in MUDs? http://www.FatalDimensions.org/

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: IPFW DUMMYNET shaping 4.6.2-R - Speed limited to half of pipe limit

2002-10-02 Thread Patrick O'Reilly

From: Randy Smith [EMAIL PROTECTED]

 Hi all,

 I am using IPFW and DUMMYNET to do traffic shaping on 4.6.2-R gateway
 (uname -a below). I have set the upload to 800Kbit/s and the download to
 1500Kbit/s. Here is the relevent section from ipfw.conf.

 add 500 pipe 1 ip from 192.169.91.16:255.255.255.240 to any pipe 1
config bw 800Kbit/s
 add 500 pipe 2 ip from any to 192.168.91.16:255.255.255.240 pipe 2
config bw 1500Kbit/s

 If I've read the docs correctly, the network 192.168.91.16/240 should
have
 it's upload limited to 800Kbs it's download to 1500Kbs. However, MRTG is
 reporting that the upload traffic is maxing out at around 400Kbs.

 I have played with the upload speed and the connection always maxes out
at
 about half of what I set it to.

 My questions:
 1) How do I get the traffic limited to the bw I set it to?
 2) What is causing this?
 3) Would changing/setting the queuing method help?


Randy,

Your problem is simple:  Remember that IPFW interacts with packets as they
pass through interfaces.  Your ipfw rules will match each packet twice -
once as it enters the gateway from the source network, and a second time
as it leaves the gateway en route to the destination.  Both times you are
queuing the packet in the same pipe.  This means that each packet uses
twice its own bandwidth in the pipe

The solution is to change your rules as follows (assume fxp0 is your
internet NIC):
 add 500 pipe 1 ip from 192.169.91.16:255.255.255.240 to any via fxp0
 add 500 pipe 2 ip from any to 192.168.91.16:255.255.255.240 via fxp0

---
Regards,
Patrick O'Reilly.
______
   / _ )__ __ (_)_ __ ___ _/ / __
  / __/ -_) _) /  ~  ) -_), ,-/ -_) _)
 /_/  \__/_//_/_/~/_/\__/ \__/\__/_/
http://www.perimeter.co.za




To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



4.7

2002-10-02 Thread Benjamin Polidore

The release engineering web page says that 4.7 came out 10/1, but the
main web page still says that the current release is 4.6.2 and it
doesn't appear that RELENG_4_7_0_RELEASE exists on cvsup.freebsd.org.

What's the deal?

-Ben Polidore
[EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



fsck on ext2 fs under FreeBSD

2002-10-02 Thread G. Clifford Williams

does anyone know of a nice clean way to fsck ext2 volumes in FreeBSD?
I have a volume that I can't backup (yet) or copy to another drive 
and I need to be able to 'clean' things up if the machine 
crashes...I'd like to not have to do this manually  but will if there 
is no other way. Thanks in advance

-- 
G. Clifford Williams
[EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



AWARD NOTIFICATION

2002-10-02 Thread werkenbijdeotto1

WERKEN BIJ DE LOTTO,
41132, NL-1007 DB AMSTERDAM,
THE NETHERLANDS.


FROM: THE DESK OF THE DIRECTOR PROMOTIONS,
INTERNATIONAL PROMOTIONS/PRIZE AWARD DEPARTMENT,
REF: WBL/67-B773524441

ATTN:

 AWARD NOTIFICATION; FINAL NOTICE

We are pleased to inform you of the announcement
today, 3rd OCTOBER. 2002, of winners of the WERKEN
BIJ DE LOTTO/ INTERNATIONAL PROGRAMS held on 19TH
MAY 2002.

You / your company, attached to ticket number
013-2316-2002-477, with serial number A025-09 drew
the lucky numbers 37-13-34-85-56-42, and
consequently won in category C.

You have therefore been approved for a lump sum pay
out of US$1,500,000.00 in cash credited to file REF
NO. REF: WBL/67-B773524441. This is from total prize
money of US$22,500,000.00 shared among the fifteen
international winners in the category C. All
participants were selected through a computer ballot
system drawn from 30,000 names from Australia, New
Zealand, America, Asia, Europe,USA and North America
as part our
International Promotions Program, which is conducted
annually.

CONGRATULATIONS!

Your fund is now deposited with a Finance and
Security House and insured in your name. Due to the
mix up of some numbers and names, we ask that you
keep this award strictly from public notice until
your claim has been processed and your money
remitted to your account. This is part of our
security protocol to avoid double claiming or
unscrupulous acts by participants of this program.

We hope with a part of you prize, you will
participate in our end of year high stakes US$1.3
billion International lotto.

To begin your claim, please contact your claims
officer immediately:

JANSEN DAVIS
FOREIGN SERVICE MANAGER,
EUROLITE BV,
PHONE:31-619676795
FAX: 31 205241590
EMAIL:[EMAIL PROTECTED]


For due processing and remittance of your prize
money to a designated account of your choice.
Remember, you must contact your claims officer not
later than OCTOBER 17 th, 2002. After this date, all
funds will be returned as unclaimed. All
correspondences to Mr. Jansen Davis,either by fax or
email, should have this email sent along with it and
also, your email address to which this email is
sent, should be clearly and boldly written in your
response.

NOTE: In order to avoid unnecessary delays and
complications, please remember to quote your
reference number in every one of your
correspondences with your officer. Furthermore,
should there be any change of your address, do
inform your claims officer as soon as possible.

Congratulations again from all our staff and thank
you for being part of our promotions program.


Sincerely,

THE DIRECTOR PROMOTIONS,
WERKEN BIJ DE LOTTO.
www.werken-bij-delotto.net

N.B. Any breach of confidentiality on the part of
the winners will result to disqualification. Please
do not reply this mail.




To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: HELP: telnet vs. security

2002-10-02 Thread Buki

On Tue, Oct 01, 2002 at 01:00:08PM -0700, Kevin Oberman wrote:
  Date: Tue, 01 Oct 2002 12:07:56 -0600
  From: Hal Lynch [EMAIL PROTECTED]
  Sender: [EMAIL PROTECTED]
  
  I am running 4.4-RELEASE-p26.
  
  I am trying to telnet out to a CISCO router.  It looks as though
  my side is trying to set up some kind of kerberos authentication.
  See below.  How do I prevent this from happening?  The router
  doesn't have a clue.  I am not running kerberos.
  
  hal
  
  ##
telnet some.cisco.router
  Trying some.ip.address...
  Connected to some.cisco.router.
  Escape character is '^]'.
  
  
  User Access Verification
  
  Password: Kerberos: No default realm defined for Kerberos!
  
  % Password:  timeout expired!
 
 This is the normal operation. Telnet always tries to use Kerberos
 authentication when the remote device supports it (which Cisco routers
 do).
 
 Have you considered reading the documentation? The FreeBSD team puts
 considerable effort into keeping it up-to-date and complete so people
 don't have to ask for help.
  -K  Specifies no automatic login to the remote system.

or perhaps putting 'default unset autologin' in ~/.telnetrc

 
 R. Kevin Oberman, Network Engineer
 Energy Sciences Network (ESnet)
 Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab)
 E-mail: [EMAIL PROTECTED]Phone: +1 510 486-8634
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

Buki
-- 
PGP public key: http://dev.null.cz/buki.asc

/\
\ / ASCII Ribbon Campaign
 X  Against HTML  Outlook Mail
/ \ http://www.thebackrow.net


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



fdisk: unable to write data to disk (RAID)

2002-10-02 Thread Marco Beishuizen


Hi,

I have two logical drives in a RAID controller. At startup FreeBSD
recognises them as amrd0 (RAID-5 with 4 disks) and amrd1 (RAID-0 with 1
disk).

Now I want to partition the amrd1 as 1 slice with 1 partition in it (just
to store data on it). But when I try in fdisk to write the changes to
disk, it says it is unable to write the changes. Now I can't do anything
with the disk.

What am I doing wrong?

Thanks in advance,

Marco


-- 
It is always preferable to visit home with a friend.  Your parents will
not be pleased with this plan, because they want you all to themselves
and because in the presence of your friend, they will have to act like
mature human beings ...
-- Playboy, January 1983


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



ipfw dynamic rules in 4.7-RC

2002-10-02 Thread Aragon Gouveia

Hi,

I'm having problems with ipfw in 4.7-RC WRT dynamic rulesets. Even though
dynamic rules are being created, these aren't being checked by check-state.
Output from 'ipfw -d show'.


00010  0 0 check-state
00100   2816   1208852 allow tcp from any to 66.8.x.y 25 keep-state setup
65535 994218 419055474 allow ip from any to any
## Dynamic rules:
00100 17 768 (T 81, slot 9) - tcp, 196.41.x.y 8220- 66.8.x.y 25
00100 743 591302 (T 300, slot 243) - tcp, 196.3.x.y 4830- 66.8.x.y 25


If it weren't for my default allow rule, smtp wouldn't work on 66.8.x.y.
Anyone experiencing the same?


Thanks,
Aragon

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



$BL$>5Bz9-9p"(@8C&%Q%s%F%#(J

2002-10-02 Thread house777@aa.alles.or.jp

‘—MŽÒ
ƒpƒ“ƒeƒBƒnƒEƒX
¦L‚ðŠó–]‚µ‚È‚¢•û‚͉º‚̃AƒhƒŒƒX
[EMAIL PROTECTED]
‚ ‚́AŽg—pÏ‰º’…ê–å“Xu‚Ï‚ñ‚Ä‚¡‚Í‚¤‚·v‚ª‹‚É“oêI
—‚ÌŽq‚ÌŠçŽÊ^‚ðŒ©‚Ä—ŽŽDI
ƒpƒ“ƒeƒBAƒuƒ‹ƒ}[AƒXƒgƒbƒLƒ“ƒOAŒC‰º
Š®‘S–§••‚Å‚¨“Í‚¯B
`‚¢‚¢“õ‚¢I`
‘ü¡i-mode‰“oê‹L”OƒI[ƒ‹3000‰~‚Å—ŽŽD‚Å‚«‚é‚æ!
http://love77.to
‘åã•{–k‹æ”~“c2-4
090-9292-6329


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Installationproblems FreeBSD 4.6-release

2002-10-02 Thread Bengt Frost

Hey,
I tried ok *set hw.ata.ata_dma=1*
   ok *set hw.ata.atapi_dma=1*
   ok *boot*
from loader prompt ok, but sysinstall still are unable to transfer the 
bin distribution from
acd0c (tried to upgrade bin from sysinstall to) to my disk. My CD-rom 
is AOpen 50x.  No problem with my FreeBSD 4.5-release2 cd's.  Does 
anyone know where I can find the right info?  For fun I will now try to 
upgrade source code instead.

/Bengt Frost -  PS I love FreeBSD and Python (and C).


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: KDE, sound, artsd and xmms

2002-10-02 Thread Lauri Watts

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 02 October 2002 13.59, Irvine Short wrote:
 Hey All

 How do you guys get all the above to play together?

 I'd like to keep artsd going. At the moment I can get xmms to play by
 running artsdsp xmms.

 Is there a neater/better way? There's a plugin for xmms to talk directly
 to artsd but by all accounts it's old and buggy and not  in the ports
 subsystem.

 Any suggestions much appreciated.

 I'm running FreeBSD 4.7RX, KDE 3,03, and XMMS 1.2.7

 The sound card is an Ensoniq AudioPCI ESS1371

If you have it (and most modern sound cards can handle this) go into 
KControl's Sound Server setting, and tell aRts to use a custom device.  Point 
it at /dev/dsp0.1, and let xmms (and any other sound utilities) have 
/dev/dsp.   Do check in /dev/ that the alternate devices are present. 

If your sound card doesn't support this option, you can in the same KControl 
module, tell aRts to exit after a certain amount of idle time (0 seconds is 
never, so set it to something low, like 5 seconds.)  All aRts aware 
applications are able to restart it if they want it.  You'll notice a small 
delay when starting something like Noatun, as it restarts the server, but 
nothing unreasonable.

Regards,
- -- 
Lauri Watts
KDE Documentation: http://i18n.kde.org/doc/
KDE on FreeBSD: http://freebsd.kde.org/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (FreeBSD)

iD8DBQE9mvwT/gUyA7PWnacRAs4WAJ4uyPHEf4BB10Bl4ZcjduKyM8Wc/QCffzVX
+qznD8P7NmcQuNe6XWILijk=
=w+gp
-END PGP SIGNATURE-


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Problems with webcam+soundcard

2002-10-02 Thread Alessandro de Manzano

On Wed, Oct 02, 2002 at 08:03:22PM +0200, Dario Freni wrote:

 # ls -l /dev/dsp*
 lrwxrwxrwx  1 root  wheel 4 Oct  2 19:48 /dev/dsp - dsp0
 lrwxrwxrwx  1 root  wheel 6 Oct  2 19:48 /dev/dsp0 - dsp0.0
 crw-rw-rw-  1 root  wheel   30,   3 Oct  2 19:48 /dev/dsp0.0

well, you could try with

sh /dev/MAKEDEV snd1

or snd2

should be enough :-)


-- 

bye!

Ale


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: KDE, sound, artsd and xmms

2002-10-02 Thread Scott A. Moberly

put:
hw.snd.pcm0.vchans=4
hw.snd.maxautovchans=4

into /etc/sysctl.conf; attach arts to /dev/dsp0.1 and esd to /dev/dsp.2
This leaves /dev/dsp0 - /dev/dsp0.0 open for odd aplications that 
need direct access.  You could additionally attach nas to /dev/dsp0.3 if
you are networking sound.

---
Scott A. Moberly
[EMAIL PROTECTED]

Microsoft: Where would you like to go to today
Linux: Where would you like to go tomorrow
FreeBSD: Hey,when are you guys going to catch up
On Wed, Oct 02, 2002 at 08:19:09AM +, Weston M. Price wrote:
 Yeah, an extremely frustrating problem to say the least. I have used both 
 methods (ie the plugin and artsdsp) and have found that that artsdsp is the 
 most stable and effective way to get the two apps to work together on a 
 consistet basis. The plugin causes xmms at the drop of a dime. Until the 
 plugin gets fixed go with artsdsp. 
 
 Regards,
 
 Weston
 
 On Wednesday 02 October 2002 11:59 am, Irvine Short wrote:
  Hey All
 
  How do you guys get all the above to play together?
 
  I'd like to keep artsd going. At the moment I can get xmms to play by
  running artsdsp xmms.
 
  Is there a neater/better way? There's a plugin for xmms to talk directly
  to artsd but by all accounts it's old and buggy and not  in the ports
  subsystem.
 
  Any suggestions much appreciated.
 
  I'm running FreeBSD 4.7RX, KDE 3,03, and XMMS 1.2.7
 
  The sound card is an Ensoniq AudioPCI ESS1371
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

-- 
Scott A. Moberly
[EMAIL PROTECTED]

Those who do not understand Unix are condemned to reinvent it, poorly.
-- Henry Spencer

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: 8.4Gb IDE Drive Limit

2002-10-02 Thread Dan Nelson

In the last episode (Oct 02), Matthew Donadio said:
 Mike Hogsett wrote:
  How did you partition the 40Gb drive?
 
 Thanks for the reply.
 
 I split the drive in two with the intentions of installing FreeBSD on
 one slice, and Linux on the other (I haven't tried Linux yet).  Are
 you suggesting that I should try putting / on a small slice by
 itself, and see if that boots?  It's worth a shot.

I think the main problem with getting large drives to boot on old
BIOSes is the 1024-cylinder limit.  You need to make sure the kernel is
located near enough to the start of the disk that it can be accessed
with BIOS calls.  If your FreeBSD partition is on the 2nd half of the
disk, it probably won't boot.  You might want to set it up like:

 |- 1024-cyl point
++---|---+--+---+
| /  |  / : swap : /usr  | swap | /usr  | 
++---+--+---+
   ^^   ^   ^
 LinuxFreeBSD slice containingLinux   Linux
 root all FreeBSD partitions  swap/usr
sda1   sda2 sda3  sda4
 da0s1  da0s2da0s3   da0s4 

That way both Linux and FreeBSD get their kernels near the start of the
disk.

-- 
Dan Nelson
[EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: jpilot, usb and palm m505.

2002-10-02 Thread Larry Rosenman

Known Issue.  Pilot-Link developer David Desrossier(sp) (aka setuid on
#pilot-link on irc.pilot-link.org) is working on it. 

I supplied a MotherBoard/Processor/Video Card for him to install FreeBSD
onto. 

I'm waiting with bated breath for him to fix it. 

I've been hanging out in the IRC channel to help with BSD issues for
him.

LER

On Wed, 2002-10-02 at 16:28, Yann Golanski wrote:
 I cannot seem to get my Palm m505 to sync on my desctop whci is running
 -STABLE and jpilot with pilot-link0.11.4 installed. 
 
 The error of jpilot is:
  ***
   Syncing on device /dev/uhub0 - this was changed to /dev/ugen0 as well.
   Press the HotSync button now
  
  pi_bind No such file or directory
  Check your serial port and settings
  exiting with status -10
 
 dmesg gives: 
  usb0: VIA 83C572 USB controller on uhci0
  usb0: USB revision 1.0
  usb1: VIA 83C572 USB controller on uhci1
  usb1: USB revision 1.0
 
 And when the sync button is pressed, /var/log/messages gives:
  Oct  2 22:31:08 anubis /kernel: ugen0: Palm, Inc. Palm Handheld, rev 1.00/1.00, 
addr 2
  Oct  2 22:32:13 anubis /kernel: ugen0: at uhub0 port 2 (addr 2) disconnected
  Oct  2 22:32:13 anubis /kernel: ugen0: detached
 
 Any idea of what I am missing?
 
 -- 
 [EMAIL PROTECTED]  -=*=-  www.kierun.org
 PGP:   www.kierun.org/pgp/key-kierun
 PGP:   009D 7287 C4A7 FD4F 1680  06E4 F751 7006 9DE2 6318
 IRC:   nick kierun, server spod.uk.amiganet.org, channel #sanctus
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
 
-- 
Larry Rosenman http://www.lerctr.org/~ler
Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED]
US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: xfree

2002-10-02 Thread Joshua Lokken


- Original Message -
From: Kevin Oberman [EMAIL PROTECTED]
To: Brian Henning [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Tuesday, October 01, 2002 1:31 PM
Subject: Re: xfree


  From: Brian Henning [EMAIL PROTECTED]
  Date: Tue, 1 Oct 2002 15:15:51 -0500
  Sender: [EMAIL PROTECTED]
 
  Hello-
  i just installed XFree86-4.2 package and i am have problems finding the
file
  XF86Setup script that does the graphic configuration of the mouse
keyboard
  video card and monitor. can someone tell me where i can find it? or has
the
  script changed to something else?
  thanks for the help,

 You should be installing XFree86-4.2.1. It has several security fixes.

 V4 of XFree86 no longer uses the XF86Setup program to generate the
 configuration. The preferred way to generate simple configurations is
 run the server with the -configure option. See 'man XFree86' for more
 details. Then read 'man XF86Config' for documentation on the
 configuration file details.

 The file generated will be /etc/X11/XF86Config and may be edited for
 more complex configurations such as multiple screens and non-default
 color depths and resolutions.

 R. Kevin Oberman, Network Engineer
 Energy Sciences Network (ESnet)
 Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab)
 E-mail: [EMAIL PROTECTED] Phone: +1 510 486-8634


xf86config works really well for me.

Joshua


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message