The FreeBSD Diary: 2004-11-21 - 2004-12-11

2004-12-12 Thread Dan Langille
The FreeBSD Diary contains a large number of practical 
examples and how-to guides.  This message is posted weekly
to [EMAIL PROTECTED] with the aim of letting people
know what's available on the website.  Before you post a question
here it might be a good idea to first search the mailing list 
archives http://www.freebsd.org/search/search.html#mailinglists 
and/or The FreeBSD Diary http://www.freebsddiary.org/. 

These are the articles posted during this period:

6-Dec : Secure Your Wireless with IPsec
 WEP just isn't enough for me 
 http://freebsddiary.org/ipsec-wireless.php?2


-- 
Dan Langille
BSDCan - http://www.BSDCan.org/ - BSD Conference

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


Re: SquirrelMail woes

2004-12-12 Thread Mike Oliveri
 LoadModule php4_module libexec/libphp4.so
 AddModule mod_php4.c
 AddType application/x-httpd-php .php

These were still on and okay. PHP in general still works, as when I
made a phpinfo() file to test PHP, it came up just fine and displayed
the info.

 2. i would also check /usr/local/etc/  and make sure theres a php.ini , by
 default it gets named php.ini-dist when first installed , you have to rename
 it php.ini for it to work .,..might also want to check for a setting in that 
 file
 
 register_globals = On
 
 usually its Off by default

My php.ini file is /usr/local/etc/php.ini and it appears to be
unchanged from the previous one before the upgrade. However,
register_globals was Off. I turned it on and restarted Apache via
'/usr/local/etc/rc.d/apache.sh restart' and tried again, but I'm still
getting the same error related to the sessions:

[Sun Dec 12 02:13:59 2004] [error] PHP Fatal error:  Call to undefined
function:  session_id() in
/usr/local/www/data/webmail/functions/global.php on line 293

Take care,
Mike



 
 hope this helps
 --
 Brent Bailey CCNA
 Bmyster LLC
 Computer Networking and Webhosting
 Network Engineer, Webmaster, President
 http://www.bmyster.com
 [EMAIL PROTECTED]
 207-490-5992
 
 On Sat, 11 Dec 2004 16:25:30 -0600, Mike Oliveri wrote
 
 
  I've been trying to upgrade SquirrelMail and PHP from the ports (I'm
  on FreeBSD 4.9) and keep running into the following error in my
  Apache error log:
 
  [Sat Dec 11 16:14:58 2004] [error] PHP Fatal error:  Call to
  undefined function:  session_id() in
  /usr/local/www/data/webmail/functions/global.php on line 293
 
  The SquirrelMail wiki says to rebuild PHP with --enable-session, and
  also has the suggestion session.file_handler set to files (I assume
  it means session-save_handler as that's all I found). If I run
  pkg_version -v, here's what it has to say about PHP, so I assume
  php-session is the equivalent of compiling with --enable-session:
 
  php4-4.3.9_1=   up-to-date with port
  php4-gettext-4.3.9_1=   up-to-date with port
  php4-mbstring-4.3.9_1   =   up-to-date with port
  php4-mhash-4.3.9_1  =   up-to-date with port
  php4-openssl-4.3.9_1=   up-to-date with port
  php4-pcre-4.3.9_1   =   up-to-date with port
  php4-session-4.3.9_1=   up-to-date with port
  php4-xml-4.3.9_1=   up-to-date with port
 
  Everything worked fine before the upgrade. Everything appears okay
  with Apache (1.33 also just upgraded from ports) and PHP in general
  (a phpinfo() file works fine). Any help or insight would be greatly 
  appreciated!
 
  Take care,
  Mike
  [EMAIL PROTECTED]
  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to [EMAIL PROTECTED]
 

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


Re: SquirrelMail woes

2004-12-12 Thread Paul Schmehl
--On Saturday, December 11, 2004 4:25 PM -0600 Mike Oliveri 
[EMAIL PROTECTED] wrote:

I've been trying to upgrade SquirrelMail and PHP from the ports (I'm
on FreeBSD 4.9) and keep running into the following error in my Apache
error log:
[Sat Dec 11 16:14:58 2004] [error] PHP Fatal error:  Call to undefined
function:  session_id() in
/usr/local/www/data/webmail/functions/global.php on line 293
The SquirrelMail wiki says to rebuild PHP with --enable-session, and
also has the suggestion session.file_handler set to files (I assume
it means session-save_handler as that's all I found). If I run
pkg_version -v, here's what it has to say about PHP, so I assume
php-session is the equivalent of compiling with --enable-session:
This appears to be a case of not reading /usr/ports/UPDATING.  The php port 
was altered not too long ago, and the extensions were moved to a separate 
port.  You need to install both php4 *and* php4-extensions.  Then you'll 
have to reinstall squirrelmail.  Also, make sure you comment out the 
extensions_dir variable in php.info.

Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
The University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SquirrelMail woes

2004-12-12 Thread Mike Oliveri
 [Sun Dec 12 02:13:59 2004] [error] PHP Fatal error:  Call to undefined
 function:  session_id() in
 /usr/local/www/data/webmail/functions/global.php on line 293

I seem to remember running into this in the past and solving it by
reisntalling PHP with cclient support built in. However, I haven't
seen that option presented to me anywhere when installing/reinstalling
PHP.

I tried reinstalling the php4-session port, but it hasn't helped any,
either. Is there a way to force PHP to use/install it?

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


Re: SquirrelMail woes

2004-12-12 Thread Mike Oliveri
  [Sat Dec 11 16:14:58 2004] [error] PHP Fatal error:  Call to undefined
  function:  session_id() in
  /usr/local/www/data/webmail/functions/global.php on line 293
 
  The SquirrelMail wiki says to rebuild PHP with --enable-session, and
  also has the suggestion session.file_handler set to files (I assume
  it means session-save_handler as that's all I found). If I run
  pkg_version -v, here's what it has to say about PHP, so I assume
  php-session is the equivalent of compiling with --enable-session:
 
 This appears to be a case of not reading /usr/ports/UPDATING.  The php port
 was altered not too long ago, and the extensions were moved to a separate
 port.  You need to install both php4 *and* php4-extensions.  Then you'll
 have to reinstall squirrelmail.  Also, make sure you comment out the
 extensions_dir variable in php.info.

Actually, I do have php4-extensions installed -- most were installed
via SquirrelMail and I added php4-imap to the list. Here's a full list
of the extensions I have installed:

hp4-4.3.9_1=   up-to-date with port
php4-ctype-4.3.9_1  =   up-to-date with port
php4-extensions-1.0 =   up-to-date with port
php4-gettext-4.3.9_1=   up-to-date with port
php4-imap-4.3.9_1   =   up-to-date with port
php4-mbstring-4.3.9_1   =   up-to-date with port
php4-mhash-4.3.9_1  =   up-to-date with port
php4-mysql-4.3.9_1  =   up-to-date with port
php4-openssl-4.3.9_1=   up-to-date with port
php4-overload-4.3.9_1   =   up-to-date with port
php4-pcre-4.3.9_1   =   up-to-date with port
php4-posix-4.3.9_1  =   up-to-date with port
php4-session-4.3.9_1=   up-to-date with port
php4-tokenizer-4.3.9_1  =   up-to-date with port
php4-xml-4.3.9_1=   up-to-date with port
php4-zlib-4.3.9_1   =   up-to-date with port

You mention php.info -- I have a php.conf with a directive PHP_EXT_DIR=20020429
Is this what needs to be commented out? 

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


Re: SquirrelMail woes

2004-12-12 Thread Mike Oliveri
 This appears to be a case of not reading /usr/ports/UPDATING.  The php port
 was altered not too long ago, and the extensions were moved to a separate
 port.  You need to install both php4 *and* php4-extensions.  Then you'll
 have to reinstall squirrelmail.  Also, make sure you comment out the
 extensions_dir variable in php.info.

Found extensions_dir in php.ini. My apologies, it's late and been a
long day. That solved the problem. Based on the Apache errors I was
seeing regarding the modules and the contents of the extensions.ini
file, I've been chasing other ghosts.

Thanks for the help, I greatly appreciate it!

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


Re: 5.3: cant install openoffice 1.1 from ports

2004-12-12 Thread Simon Burke
On Sat, 11 Dec 2004 19:16:39 -0600, Jay Moore
[EMAIL PROTECTED] wrote:
 On Monday 06 December 2004 04:23 pm, Simon Burke wrote:
 
 
  I've recently done a fresh install of 5.3, i updated ports using cvsup
  to install gnome2.8, which im using know, great.
 
  Problem is that it wont allow me to compile openoffice properly, i
  cant give an error message as  its about 7hrs in i  get the message
  and i've since made clean.
 
  Does anyone know if it is broken? or how i can get an openoffice
  release installed, as 1.0 is apparentlyu broken according to ports and
  1.1 wont compile sucessfully.
 
 I've tried to compile OO on a couple of FreeBSD boxes. It actually came to a
 successful conclusion on one, but crapped itself after I used it a few times.
 I really disliked being redirected to Sun's website to click through their
 Java license agreements, too.
 
 I finally solved the problem by installing Fedora Core 2 on an old laptop that
 I use as a desktop Windoze replacement - OO was part of the standard setup,
 and it works quite well so far.
 
 Jay
 
I now have a working openoffice. As mentioned before i just needed to
install the native jdk14 before i started with openoffice. This wasnt
made clear at the start but still it now works.

-- 
Theres no place like ::1

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


talkd enable

2004-12-12 Thread Chris
I found instructions to enable talkd with inetd, but I don't use inetd. Is 
there any other way to get the talk daemon running so I can utilize the talk 
feature?

Thanks,
Chris

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


RE: FreeBSD 5.3-RC1 + Speedtouch 330 USB

2004-12-12 Thread Subhro
Consider cvsupping to RELEASE or preferably STABLE.

Regards
S.

Indian Institute of Information Technology
Subhro Sankha Kar
Block AQ-13/1, Sector V
Salt Lake City
PIN 700091
India
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-freebsd-
 [EMAIL PROTECTED] On Behalf Of Marcel Falkiewicz
 Sent: Sunday, December 12, 2004 19:33
 To: [EMAIL PROTECTED]
 Subject: FreeBSD 5.3-RC1 + Speedtouch 330 USB
 
 Hello,
  I have been trying to run a Thomson Speedtouch 330 USB modem for a
 few days now and I just become more and more upset with this
 situation. I installed the pppoa
 drivers from ports (/usr/ports/net/pppoa) - the most recent version.
 I made required changes in /etc/ppp/ppp.conf, changed the script
 extension (adsl.sh) and when I tried to run the startup script I found
 myself in a very uncomfortable situation:
 
 [...]
 Dec 12 14:30:24  kernel: ugen0: THOMSON Speed Touch 330, rev 1.10/4.00,
 addr 2
 Dec 12 14:30:37  modem_run[5731]: Unable to locate firmware in
 /usr/local/libdata/mgmt.o
 [...]
 
 But:
 # ls -l /usr/local/libdata/mgmt.o
 -r--r--r--  1 root  wheel  535856 Dec 12 14:27 /usr/local/libdata/mgmt.o
 
 # uname -a
 FreeBSD  5.3-RC1 FreeBSD 5.3-RC1 #0: Sun Oct 17 01:25:37 UTC 2004
 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386
 
 Did some engage a similar problem with running this damn modem? Thanks
 in advance for any help.
 
 --
 Regards,
  Marcel Falkiewicz
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-
 [EMAIL PROTECTED]


smime.p7s
Description: S/MIME cryptographic signature


Replaced drive

2004-12-12 Thread Martin Schweizer
Hello list

After I replaced my hard drive (with a larger one) I get the following 
messages in dmeg.boot after reboot. Probably it's only a hint and not an 
error. How I can resolve this issue? I use FreeBSD 4.10.

ad0: 39266MB ExcelStor Technology J340 [79780/16/63] at ata0-master UDMA100
ad2: DMA limited to UDMA33, non-ATA66 cable or device
ad2: 39266MB ExcelStor Technology J340 [79780/16/63] at ata1-master UDMA33
acd0: CDROM LTN483 at ata1-slave PIO4
Mounting root from ufs:/dev/ad0s2a
ad0s1: raw partition size != slice size
ad0s1: start 63, end 16064, size 16002
ad0s1c: start 63, end 80405324, size 80405262
ad0s1: truncating raw partition
ad0s1: rejecting partition in BSD label: it isn't entirely within the slice
ad0s1: start 63, end 16064, size 16002
ad0s1a: start 63, end 524350, size 524288
ad0s1: rejecting partition in BSD label: it isn't entirely within the slice
ad0s1e: start 524351, end 1048638, size 524288
ad0s1: rejecting partition in BSD label: it isn't entirely within the slice
ad0s1f: start 1048639, end 80405324, size 79356686

Thank you in advance.
-- 

Regards

Martin Schweizer
[EMAIL PROTECTED]

PC-Service M. Schweizer GmbH; Gewerbehaus Schwarz; CH-8608 Bubikon
Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch;
public key : http://www.pc-service.ch/pgp/public_key.asc; 
fingerprint: EC21 CA4D 5C78 BC2D 73B7  10F9 C1AE 1691 D30F D239;



pgpoImw1Sk8t8.pgp
Description: PGP signature


Cyrus imapd22 port failling to install

2004-12-12 Thread freebsd
Hi,
I have a little problem with cyrus imapd install . I can install it 
from source without problem but if i use the port i can

do the make , it succeed,
go in the build directory and try a make install , it succeed
BUT  if i want to make install of the port then i got this:
### Making install in 
/var/build/ports/mail/cyrus-imapd22/work/cyrus-imapd-2.2.10/notifyd
/usr/bin/install -c -o root -g wheel -s -m 755 notifyd /usr/local/cyrus/bin
/usr/local/lib/perl5/5.6.1/man/man3/Cyrus::IMAP.3: No such file or directory
*** Error code 1


it seems this failling because of perl man page ?
Anyone  as an idea of why it fails in the ports but works if i just go 
to the  build directory and do the make install ?

best regards,
Ghislain.




core1 /ports/mail/cyrus-imapd22# make -D WITH_OPENSSL_BASE install
===  Installing for cyrus-imapd-2.2.10
===   cyrus-imapd-2.2.10 depends on file: 
/usr/local/lib/perl5/site_perl/5.6.1/File/Temp.pm - found
===   cyrus-imapd-2.2.10 depends on file: /usr/local/etc/rc.subr - found
===   cyrus-imapd-2.2.10 depends on file: /usr/local/bin/perl5.6.1 - found
===   cyrus-imapd-2.2.10 depends on shared library: sasl2.2 - found
===   cyrus-imapd-2.2.10 depends on shared library: db3.3 - found
===   Generating temporary packing list
===  Checking if mail/cyrus-imapd22 already installed
/usr/bin/install -c -o root -g wheel -d /usr/local/bin
/usr/bin/install -c -o root -g wheel -d /usr/local/lib
/usr/bin/install -c -o root -g wheel -d /usr/local/include/cyrus
/usr/bin/install -c -o root -g wheel -d /usr/local/man/man1
/usr/bin/install -c -o root -g wheel -d /usr/local/man/man3
/usr/bin/install -c -o root -g wheel -d /usr/local/man/man5
/usr/bin/install -c -o root -g wheel -d /usr/local/cyrus/man/man8
### Making install in 
/var/build/ports/mail/cyrus-imapd22/work/cyrus-imapd-2.2.10/man
for file in ./imtest.1 ./pop3test.1 ./nntptest.1  ./lmtptest.1 
./smtptest.1 ./sivtest.1  ./mupdatetest.1 ./installsieve.1 
./sieveshell.1;  do  /usr/bin/install -c -o root -g wheel -m 644 $file 
/usr/local/man/man1 || exit 1;  done
for file in ./imclient.3;  do  /usr/bin/install -c -o root -g wheel -m 
644 $file /usr/local/man/man3 || exit 1;  done
for file in ./imapd.conf.5 ./krb.equiv.5 ./cyrus.conf.5;  do  
/usr/bin/install -c -o root -g wheel -m 644 $file /usr/local/man/man5 || 
exit 1;  done
for file in ./arbitron.8 ./cyr_expire.8 ./deliver.8  ./fud.8 ./imapd.8 
./pop3d.8 ./quota.8  ./reconstruct.8 ./rmnews.8 ./syncnews.8  ./mbpath.8 
./timsieved.8 ./master.8  ./lmtpd.8 ./idled.8 ./ctl_mboxlist.8  
./ctl_deliver.8 ./ctl_cyrusdb.8 ./ipurge.8  ./tls_prune.8 ./squatter.8 
./cvt_cyrusdb.8  ./notifyd.8 ./chk_cyrus.8 ./mbexamine.8  ./nntpd.8 
./fetchnews.8 ./smmapd.8;  do  /usr/bin/install -c -o root -g wheel -m 
644 $file /usr/local/cyrus/man/man8 || exit 1;  done
### Making install in 
/var/build/ports/mail/cyrus-imapd22/work/cyrus-imapd-2.2.10/et
### Making install in 
/var/build/ports/mail/cyrus-imapd22/work/cyrus-imapd-2.2.10/lib
/usr/bin/install -c -o root -g wheel -d /usr/local/lib
/usr/bin/install -c -o root -g wheel -m 644 libcyrus.a /usr/local/lib
/usr/bin/install -c -o root -g wheel -m 644 libcyrus_min.a /usr/local/lib
ranlib /usr/local/lib/libcyrus.a
for file in ./acl.h ./assert.h ./auth.h  ./bsearch.h ./charset.h 
./glob.h  ./gmtoff.h ./imclient.h ./imparse.h  ./lock.h ./map.h 
./mkgmtime.h  ./nonblock.h ./parseaddr.h ./prot.h  ./retry.h 
./sysexits.h ./strhash.h  ./lsort.h ./stristr.h  ./util.h ./xmalloc.h 
./imapurl.h  ./cyrusdb.h ./iptostring.h ./rfc822date.h  ./libcyr_cfg.h;  
do  /usr/bin/install -c -o root -g wheel -m 644 $file 
/usr/local/include/cyrus || exit 1;  done
for file in ./hash.h ./mpool.h ./xmalloc.h  ./strhash.o ./libconfig.h 
./assert.h  imapopts.h;  do  /usr/bin/install -c -o root -g wheel -m 644 
$file /usr/local/include/cyrus || exit 1;  done
### Making install in 
/var/build/ports/mail/cyrus-imapd22/work/cyrus-imapd-2.2.10/sieve
/usr/bin/install -c -o root -g wheel -d /usr/local/cyrus/bin
/usr/bin/install -c -o root -g wheel -s -c -m 755 sievec 
/usr/local/cyrus/bin || exit
### Making install in 
/var/build/ports/mail/cyrus-imapd22/work/cyrus-imapd-2.2.10/master
/usr/bin/install -c -o root -g wheel -d /usr/local/cyrus/bin
for file in master;  do  /usr/bin/install -c -o root -g wheel -s -m 755 
$file /usr/local/cyrus/bin || exit 1;  done
### Making install in 
/var/build/ports/mail/cyrus-imapd22/work/cyrus-imapd-2.2.10/imap
/usr/bin/install -c -o root -g wheel -d /usr/local/cyrus/bin
for file in imapd lmtpd pop3d  fud smmapd reconstruct quota mbpath 
ipurge  cyrdump chk_cyrus cvt_cyrusdb deliver ctl_mboxlist  ctl_deliver 
ctl_cyrusdb squatter mbexamine cyr_expire arbitron  tls_prune idled;  
do  /usr/bin/install -c -o root -g wheel -s -m 755 $file 
/usr/local/cyrus/bin || exit 1;  done
ln -f /usr/local/cyrus/bin/pop3d /usr/local/cyrus/bin/pop3proxyd
### Making install in 
/var/build/ports/mail/cyrus-imapd22/work/cyrus-imapd-2.2.10/imtest
/usr/bin/install -c -o root -g 

Re: Cant get SVGLIB running

2004-12-12 Thread Ramiro Aceves
Ramiro Aceves wrote:
Hello dear FreeBSD friends.
I am having trouble to get SVGALIB running. I need it for running LINRAD 
amateur radio software from the ports.  I cvsuped the ports collection 
and installed LINRAD and SVGALIB with the make and make install comands 
as usual, no problem at all. The problem arises when I execute linrad 
and get a nice Bus error :-(

I have configured the file /usr/local/etc/vga/libvga.config many times 
according to my hardware with no success. Also tried to place the config 
file in /etc/vga/libvga.config. I have googled for bugs but I did not 
find any problems like this one.

I am a Debian GNU/Linux user and never had problems to get SVGALIB 
running in this box. My cpu is a 1200 MHz AMD athlon processor. Graphic 
card is a Nvidia TNT 32 MB.

I attach my libvga.config
I will apreciate any help. Does anybody have such a Nvidia TNT card 
working with SVGALIB?

Many thanks in advance, anyway, I am enjoying FreeBSD, it is fun! . The 
Linrad software is very important for me as a radio amateur and I need 
getting it working in order to switch from Linux to FreeBSD (I use it 
for MoonBounce communication). FreeBSD ofers for me everything I do in 
Linux, so If I make Linrad work I could switch.

Hello again:
I have tried a simple C program to test svgalib drawing some line 
patterns on the screen. I found that it works if I use chipset VGA in 
/usr/local/etc/vga/libvga.config. If I choose chipset NV3 acording to 
my video card it segfaults (that is the setting I have under Linux). The 
problem is that VGA mode does not offer enough resolution and color 
depth to run Linrad software.

Do you think that I should write a bug report to the mantainer saying 
that the NVIDIA card does not work with SVGALIB?

Thanks in advance.
Ramiro.

/*SVGALIB TEST*/
#includevga.h
void main(void){
int a;

vga_init();
vga_setmode(G640x480x16);
vga_setcolor(6);
for (a=0;a640;a=a+10){
vga_drawline(0,0,a,480);
   }
sleep(4);
}
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


need help

2004-12-12 Thread angelito munez
Hi,,.
 
i just formatted freeBSD 4.9 i want it to run firewall and a router... but i 
need help in configuration..i really wanna what packages do i need i want to 
run in dhcp..waht packages do i want and software need to laod on my bsd 4.9... 
thnx u guys more power


-
Do you Yahoo!?
 Yahoo! Mail - 250MB free storage. Do more. Manage less.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: need help

2004-12-12 Thread Peter Risdon
angelito munez wrote:
Hi,,.
 
i just formatted freeBSD 4.9 i want it to run firewall and a router... but i need help in configuration..i really wanna what packages do i need i want to run in dhcp..waht packages do i want and software need to laod on my bsd 4.9... thnx u guys more power

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html
and specifically:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/advanced-networking.html
Peter.
--
the circle squared
network systems and software
http://www.circlesquared.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Replaced drive

2004-12-12 Thread Giorgos Keramidas
On 2004-12-12 15:12, Martin Schweizer [EMAIL PROTECTED] wrote:
 Hello list

 After I replaced my hard drive (with a larger one) I get the following
 messages in dmeg.boot after reboot. Probably it's only a hint and not an
 error. How I can resolve this issue? I use FreeBSD 4.10.

Did you use dd(1) to move over the existing partitions and data?
Judging from the following, it seems you _did_.

 ad0: 39266MB ExcelStor Technology J340 [79780/16/63] at ata0-master UDMA100
 ad2: DMA limited to UDMA33, non-ATA66 cable or device
 ad2: 39266MB ExcelStor Technology J340 [79780/16/63] at ata1-master UDMA33
 acd0: CDROM LTN483 at ata1-slave PIO4
 Mounting root from ufs:/dev/ad0s2a
 ad0s1: raw partition size != slice size
 ad0s1: start 63, end 16064, size 16002
 ad0s1c: start 63, end 80405324, size 80405262
 ad0s1: truncating raw partition
 ad0s1: rejecting partition in BSD label: it isn't entirely within the slice
 ad0s1: start 63, end 16064, size 16002
 ad0s1a: start 63, end 524350, size 524288
 ad0s1: rejecting partition in BSD label: it isn't entirely within the slice
 ad0s1e: start 524351, end 1048638, size 524288
 ad0s1: rejecting partition in BSD label: it isn't entirely within the slice
 ad0s1f: start 1048639, end 80405324, size 79356686

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


Problems with local cvsup mirror

2004-12-12 Thread stan
I went to update some machines this weekend, to find that my local cvsup
mirror is not getting updated. Here is the log file:


CVSup update begins at 2004-12-12 11:17:00
Updating from cvsup11.freebsd.org
Connected to cvsup11.freebsd.org
Updating collection cvs-all/cvs
 Append to CVSROOT-ports/commitlogs/ports
 Append to CVSROOT-src/commitlogs/sys
 Edit ports/lang/scm/Makefile,v
 Create ports/lang/scm/files/patch-eval.c,v
 Edit ports/print/scribus/Makefile,v
 Edit src/lib/libc/stdlib/atexit.c,v
src/lib/libc/stdlib/atexit.c,v: Checksum mismatch -- will transfer entire file
 Edit src/release/doc/zh_CN.GB2312/readme/article.sgml,v
src/release/doc/zh_CN.GB2312/readme/article.sgml,v: Checksum mismatch -- will 
transfer entire file
 Edit src/release/doc/zh_CN.GB2312/relnotes/common/new.sgml,v
src/release/doc/zh_CN.GB2312/relnotes/common/new.sgml,v: Checksum mismatch -- 
will transfer entire file
 Edit src/sys/ufs/ffs/ffs_vfsops.c,v
Skipping collection gnats/current
Updating collection www/current
Updater failed: 
/usr/local/etc/cvsup/prefixes/FreeBSD-www.current/data/FAQ/#cvs.cvsup-83855.11: 
Cannot create: Permission denied
CVSup update ends at 2004-12-12 11:21:56

Ive done a chomd -R cvsupin on /usr/local/etc/cvsu, and a chgrp -R cvsup on
it to.

Can anyone tell me what I'm doing wrong?

-- 
They that would give up essential liberty for temporary safety deserve
neither liberty nor safety.
-- Benjamin Franklin
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Replaced drive

2004-12-12 Thread Giorgos Keramidas
On 2004-12-12 18:19, Martin Schweizer [EMAIL PROTECTED] wrote:
Am Sun, Dec 12, 2004 at 04:58:45PM +0200 Giorgos Keramidas schrieb:
On 2004-12-12 15:12, Martin Schweizer [EMAIL PROTECTED] wrote:
 Hello list

 After I replaced my hard drive (with a larger one) I get the following
 messages in dmeg.boot after reboot. Probably it's only a hint and not an
 error. How I can resolve this issue? I use FreeBSD 4.10.

 Did you use dd(1) to move over the existing partitions and data?
 Judging from the following, it seems you _did_.

 ad0: 39266MB ExcelStor Technology J340 [79780/16/63] at ata0-master 
 UDMA100
 ad2: DMA limited to UDMA33, non-ATA66 cable or device
 ad2: 39266MB ExcelStor Technology J340 [79780/16/63] at ata1-master UDMA33
 acd0: CDROM LTN483 at ata1-slave PIO4
 Mounting root from ufs:/dev/ad0s2a
 ad0s1: raw partition size != slice size
 ad0s1: start 63, end 16064, size 16002
 ad0s1c: start 63, end 80405324, size 80405262

 Hello Giorgos

 No, I used dump.

Weird.  Can I see the output of fdisk and disklabel for that disk?

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


Re: Typo in: cache-update (portindex) - hangs(?)

2004-12-12 Thread Joshua Lokken
On Sat, 11 Dec 2004 13:24:31 +0100, Christopher Illies
[EMAIL PROTECTED] wrote:
  
   The problem I have is now that cache-init seems to hang:
   ^^
 
 Sorry, this was a typo: I meant cache-update, not cache-init.
 
 
  It took a couple of hours for cache-init to complete on my
  K-6/2 450 / 128MB machine at home.  You may just want
  to give it some time.
 
 Thanks for your reply and sorry for the typo. Yes cache-init also took
 a couple of hours on my computer, but when it finished i got the command-promt
 back. But I am having problems with cache-update. I include the last
 paragraphs of my original post with the typo corrected:
 
 for upating the portstree I do:
 # cvsup -g -L 2 ports-supfile
 # cache-update
 # portindex -o /usr/ports/INDEX-5 (I am using 5-stable)
 # portsdb -u (I am also using portupgrade)
 # portupgrade -arR (or whatever)
 
What happens if you add

# make fetchindex

immediately after the cvsup?


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


Re: Replaced drive

2004-12-12 Thread Martin Schweizer
Hello Giorgos

No, I used dump.

Am Sun, Dec 12, 2004 at 04:58:45PM +0200 Giorgos Keramidas schrieb:
 On 2004-12-12 15:12, Martin Schweizer [EMAIL PROTECTED] wrote:
  Hello list
 
  After I replaced my hard drive (with a larger one) I get the following
  messages in dmeg.boot after reboot. Probably it's only a hint and not an
  error. How I can resolve this issue? I use FreeBSD 4.10.
 
 Did you use dd(1) to move over the existing partitions and data?
 Judging from the following, it seems you _did_.
 
  ad0: 39266MB ExcelStor Technology J340 [79780/16/63] at ata0-master 
  UDMA100
  ad2: DMA limited to UDMA33, non-ATA66 cable or device
  ad2: 39266MB ExcelStor Technology J340 [79780/16/63] at ata1-master UDMA33
  acd0: CDROM LTN483 at ata1-slave PIO4
  Mounting root from ufs:/dev/ad0s2a
  ad0s1: raw partition size != slice size
  ad0s1: start 63, end 16064, size 16002
  ad0s1c: start 63, end 80405324, size 80405262
  ad0s1: truncating raw partition
  ad0s1: rejecting partition in BSD label: it isn't entirely within the slice
  ad0s1: start 63, end 16064, size 16002
  ad0s1a: start 63, end 524350, size 524288
  ad0s1: rejecting partition in BSD label: it isn't entirely within the slice
  ad0s1e: start 524351, end 1048638, size 524288
  ad0s1: rejecting partition in BSD label: it isn't entirely within the slice
  ad0s1f: start 1048639, end 80405324, size 79356686
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

-- 

Regards

Martin Schweizer
[EMAIL PROTECTED]

PC-Service M. Schweizer GmbH; Gewerbehaus Schwarz; CH-8608 Bubikon
Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch;
public key : http://www.pc-service.ch/pgp/public_key.asc; 
fingerprint: EC21 CA4D 5C78 BC2D 73B7  10F9 C1AE 1691 D30F D239;



pgp0P1zDNs5Pu.pgp
Description: PGP signature


Re: Replaced drive

2004-12-12 Thread Martin Schweizer
Am Sun, Dec 12, 2004 at 07:25:51PM +0200 Giorgos Keramidas schrieb:
 On 2004-12-12 18:19, Martin Schweizer [EMAIL PROTECTED] wrote:
 Am Sun, Dec 12, 2004 at 04:58:45PM +0200 Giorgos Keramidas schrieb:
 On 2004-12-12 15:12, Martin Schweizer [EMAIL PROTECTED] wrote:
  Hello list
 
  After I replaced my hard drive (with a larger one) I get the following
  messages in dmeg.boot after reboot. Probably it's only a hint and not an
  error. How I can resolve this issue? I use FreeBSD 4.10.
 
  Did you use dd(1) to move over the existing partitions and data?
  Judging from the following, it seems you _did_.
 
  ad0: 39266MB ExcelStor Technology J340 [79780/16/63] at ata0-master 
  UDMA100
  ad2: DMA limited to UDMA33, non-ATA66 cable or device
  ad2: 39266MB ExcelStor Technology J340 [79780/16/63] at ata1-master 
  UDMA33
  acd0: CDROM LTN483 at ata1-slave PIO4
  Mounting root from ufs:/dev/ad0s2a
  ad0s1: raw partition size != slice size
  ad0s1: start 63, end 16064, size 16002
  ad0s1c: start 63, end 80405324, size 80405262
 
  Hello Giorgos
 
  No, I used dump.
 
 Weird.  Can I see the output of fdisk and disklabel for that disk?

Here they are:

fdisk:

*** Working on device /dev/ad0 ***
parameters extracted from in-core disklabel are:
cylinders=5005 heads=255 sectors/track=63 (16065 blks/cyl)

Figures below won't work with BIOS for partitions not in cyl 1
parameters to be used for BIOS calculations are:
cylinders=5005 heads=255 sectors/track=63 (16065 blks/cyl)

Media sector size is 512
Warning: BIOS sector numbering starts with sector 1
Information from DOS bootblock is:
The data for partition 1 is:
sysid 6,(Primary 'big' DOS ( 32MB))
start 63, size 16002 (7 Meg), flag 0
beg: cyl 0/ head 1/ sector 1;
end: cyl 0/ head 254/ sector 63
The data for partition 2 is:
sysid 165,(FreeBSD/NetBSD/386BSD)
start 16065, size 80389260 (39252 Meg), flag 80 (active)
beg: cyl 1/ head 0/ sector 1;
end: cyl 1023/ head 254/ sector 63
The data for partition 3 is:
UNUSED
The data for partition 4 is:
UNUSED

disklabel /dev/ad0:
# /dev/ad0:
type: unknown
disk: amnesiac
label: fictitious
flags:
bytes/sector: 512
sectors/track: 63
tracks/cylinder: 255
sectors/cylinder: 16065
cylinders: 5005
sectors/unit: 80418240
rpm: 3600
interleave: 1
trackskew: 0
cylinderskew: 0
headswitch: 0   # milliseconds
track-to-track seek: 0  # milliseconds
drivedata: 0 

8 partitions:
#size   offsetfstype   [fsize bsize bps/cpg]
  c: 804182400unused0 0 # (Cyl.0 - 5005*)

disklabel /dev/ad2:
# /dev/ad2:
type: unknown
disk: amnesiac
label: fictitious
flags:
bytes/sector: 512
sectors/track: 63
tracks/cylinder: 255
sectors/cylinder: 16065
cylinders: 5005
sectors/unit: 80418240
rpm: 3600
interleave: 1
trackskew: 0
cylinderskew: 0
headswitch: 0   # milliseconds
track-to-track seek: 0  # milliseconds
drivedata: 0 

8 partitions:
#size   offsetfstype   [fsize bsize bps/cpg]
  c: 804182400unused0 0 # (Cyl.0 - 5005*)

-- 

Regards

Martin Schweizer
[EMAIL PROTECTED]

PC-Service M. Schweizer GmbH; Gewerbehaus Schwarz; CH-8608 Bubikon
Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch;
public key : http://www.pc-service.ch/pgp/public_key.asc; 
fingerprint: EC21 CA4D 5C78 BC2D 73B7  10F9 C1AE 1691 D30F D239;



pgpbaHnMBJxKx.pgp
Description: PGP signature


FreeBSD 4.8

2004-12-12 Thread Jerry Hoover
I would like to learn FreeBSD 4.8  (I think I have a copy)
What I need to know,  what does it require?
CPU?
RAM?
Hard Drive Space?
 
I would like to assamble a small computer from stuff I have for learning 
purposes,   Thank you for your time.
 
Jerry Hoover


-
Do you Yahoo!?
 Send a seasonal email greeting and help others. Do good.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Replaced drive

2004-12-12 Thread Giorgos Keramidas
On 2004-12-12 18:42, Martin Schweizer [EMAIL PROTECTED] wrote:
 Am Sun, Dec 12, 2004 at 07:25:51PM +0200 Giorgos Keramidas schrieb:
  On 2004-12-12 18:19, Martin Schweizer [EMAIL PROTECTED] wrote:
  Am Sun, Dec 12, 2004 at 04:58:45PM +0200 Giorgos Keramidas schrieb:
  On 2004-12-12 15:12, Martin Schweizer [EMAIL PROTECTED] wrote:
   Hello list
  
   After I replaced my hard drive (with a larger one) I get the following
   messages in dmeg.boot after reboot. Probably it's only a hint and not an
   error. How I can resolve this issue? I use FreeBSD 4.10.
  
   Did you use dd(1) to move over the existing partitions and data?
   Judging from the following, it seems you _did_.
  
   ad0: 39266MB ExcelStor Technology J340 [79780/16/63] at ata0-master 
   UDMA100
   ad2: DMA limited to UDMA33, non-ATA66 cable or device
   ad2: 39266MB ExcelStor Technology J340 [79780/16/63] at ata1-master 
   UDMA33
   acd0: CDROM LTN483 at ata1-slave PIO4
   Mounting root from ufs:/dev/ad0s2a
   ad0s1: raw partition size != slice size
   ad0s1: start 63, end 16064, size 16002
   ad0s1c: start 63, end 80405324, size 80405262
  
   Hello Giorgos
  
   No, I used dump.
 
  Weird.  Can I see the output of fdisk and disklabel for that disk?

 Here they are:

 fdisk:

 *** Working on device /dev/ad0 ***
 parameters extracted from in-core disklabel are:
 cylinders=5005 heads=255 sectors/track=63 (16065 blks/cyl)

 Figures below won't work with BIOS for partitions not in cyl 1
 parameters to be used for BIOS calculations are:
 cylinders=5005 heads=255 sectors/track=63 (16065 blks/cyl)

 Media sector size is 512
 Warning: BIOS sector numbering starts with sector 1
 Information from DOS bootblock is:
 The data for partition 1 is:
 sysid 6,(Primary 'big' DOS ( 32MB))
 start 63, size 16002 (7 Meg), flag 0
   beg: cyl 0/ head 1/ sector 1;
   end: cyl 0/ head 254/ sector 63
 The data for partition 2 is:
 sysid 165,(FreeBSD/NetBSD/386BSD)
 start 16065, size 80389260 (39252 Meg), flag 80 (active)
   beg: cyl 1/ head 0/ sector 1;
   end: cyl 1023/ head 254/ sector 63

Good, then you have a disk with 255*63*5005 = 80405325 sectors.

 disklabel /dev/ad0:
 # /dev/ad0:
 type: unknown
 disk: amnesiac
 label: fictitious
 flags:
 bytes/sector: 512
 sectors/track: 63
 tracks/cylinder: 255
 sectors/cylinder: 16065
 cylinders: 5005
 sectors/unit: 80418240
 rpm: 3600
 interleave: 1
 trackskew: 0
 cylinderskew: 0
 headswitch: 0 # milliseconds
 track-to-track seek: 0# milliseconds
 drivedata: 0

 8 partitions:
 #size   offsetfstype   [fsize bsize bps/cpg]
   c: 804182400unused0 0   # (Cyl.0 - 
 5005*)

Err, this is not right.  The ad0 disk has two slices, ad0s1 and ad0s2.
The ad0s1 slice is DOS, so it doesn't have a disk label.  The ad0s2
slice has a label, but you need to use:

# disklabel ad0s2

to see that.

 disklabel /dev/ad2:

This is a different disk, which may have other slices too (ad2s1, ad2s2, ...)

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


Clicks and Pops playing music.

2004-12-12 Thread Nikolas Britton
After switching my main box from windows to freebsd I have notice a shit 
load of clicks and pops when playing my mp3s. I have have a relatively 
nice sound system setup on my computer (SoundBlaster Live!, high end 
Yamaha 2.1 speaker system, and my mp3s encode at 150KB VBR) and this is 
really annoying me.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Replaced drive

2004-12-12 Thread Martin Schweizer
Am Sun, Dec 12, 2004 at 08:38:13PM +0200 Giorgos Keramidas schrieb:
messages in dmeg.boot after reboot. Probably it's only a hint and not 
an
error. How I can resolve this issue? I use FreeBSD 4.10.
   
Did you use dd(1) to move over the existing partitions and data?
Judging from the following, it seems you _did_.
   
ad0: 39266MB ExcelStor Technology J340 [79780/16/63] at ata0-master 
UDMA100
ad2: DMA limited to UDMA33, non-ATA66 cable or device
ad2: 39266MB ExcelStor Technology J340 [79780/16/63] at ata1-master 
UDMA33
acd0: CDROM LTN483 at ata1-slave PIO4
Mounting root from ufs:/dev/ad0s2a
ad0s1: raw partition size != slice size
ad0s1: start 63, end 16064, size 16002
ad0s1c: start 63, end 80405324, size 80405262
   
No, I used dump.
  
   Weird.  Can I see the output of fdisk and disklabel for that disk?
 
  Here they are:
 
  fdisk:
 
  *** Working on device /dev/ad0 ***
  parameters extracted from in-core disklabel are:
  cylinders=5005 heads=255 sectors/track=63 (16065 blks/cyl)
 
  Figures below won't work with BIOS for partitions not in cyl 1
  parameters to be used for BIOS calculations are:
  cylinders=5005 heads=255 sectors/track=63 (16065 blks/cyl)
 
  Media sector size is 512
  Warning: BIOS sector numbering starts with sector 1
  Information from DOS bootblock is:
  The data for partition 1 is:
  sysid 6,(Primary 'big' DOS ( 32MB))
  start 63, size 16002 (7 Meg), flag 0
  beg: cyl 0/ head 1/ sector 1;
  end: cyl 0/ head 254/ sector 63
  The data for partition 2 is:
  sysid 165,(FreeBSD/NetBSD/386BSD)
  start 16065, size 80389260 (39252 Meg), flag 80 (active)
  beg: cyl 1/ head 0/ sector 1;
  end: cyl 1023/ head 254/ sector 63
 
 Good, then you have a disk with 255*63*5005 = 80405325 sectors.
 
  disklabel /dev/ad0:
  # /dev/ad0:
  type: unknown
  disk: amnesiac
  label: fictitious
  flags:
  bytes/sector: 512
  sectors/track: 63
  tracks/cylinder: 255
  sectors/cylinder: 16065
  cylinders: 5005
  sectors/unit: 80418240
  rpm: 3600
  interleave: 1
  trackskew: 0
  cylinderskew: 0
  headswitch: 0   # milliseconds
  track-to-track seek: 0  # milliseconds
  drivedata: 0
 
  8 partitions:
  #size   offsetfstype   [fsize bsize bps/cpg]
c: 804182400unused0 0 # (Cyl.0 - 
  5005*)
 
 Err, this is not right.  The ad0 disk has two slices, ad0s1 and ad0s2.
 The ad0s1 slice is DOS, so it doesn't have a disk label.  The ad0s2
 ^^^
This is correct. But is no longer in use.

 slice has a label, but you need to use:
 
   # disklabel ad0s2
 
 to see that.


# /dev/ad0s2c:
type: ESDI
disk: ad0s2
label: 
flags:
bytes/sector: 512
sectors/track: 63
tracks/cylinder: 255
sectors/cylinder: 16065
cylinders: 5004
sectors/unit: 80389260
rpm: 3600
interleave: 1
trackskew: 0
cylinderskew: 0
headswitch: 0   # milliseconds
track-to-track seek: 0  # milliseconds
drivedata: 0 

8 partitions:
#size   offsetfstype   [fsize bsize bps/cpg]
  a:   52428804.2BSD 2048 1638494   # (Cyl.0 - 32*)
  b:   491520   524288  swap# (Cyl.   32*- 63*)
  c: 803892600unused0 0 # (Cyl.0 - 5003)
  e:   524288  10158084.2BSD 2048 1638494   # (Cyl.   63*- 95*)
  f: 78849164  15400964.2BSD 2048 1638489   # (Cyl.   95*- 5003*)
 
  disklabel /dev/ad2:
 
 This is a different disk, which may have other slices too (ad2s1, ad2s2, ...)

ad2 is my backup drive where I dump ad0 regulary.

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

-- 

Regards
Gruss
Mit freundlichen Grüssen

Martin Schweizer
[EMAIL PROTECTED]

PC-Service M. Schweizer GmbH; Gewerbehaus Schwarz; CH-8608 Bubikon
Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch;
public key : http://www.pc-service.ch/pgp/public_key.asc; 
fingerprint: EC21 CA4D 5C78 BC2D 73B7  10F9 C1AE 1691 D30F D239;



pgpCLK978DwhK.pgp
Description: PGP signature


Re: talkd enable

2004-12-12 Thread Kris Kennaway
On Sun, Dec 12, 2004 at 08:01:04AM -0600, Chris wrote:

 I found instructions to enable talkd with inetd, but I don't use
 inetd. Is there any other way to get the talk daemon running so I
 can utilize the talk feature?

Only if you use some other inetd-a-like.  i.e. you might as well just
use inetd.

Kris

P.S. Please wrap your lines at 70 characters so your emails may be
easily read.


pgpLQ7l92YWQW.pgp
Description: PGP signature


Re: FreeBSD 4.8

2004-12-12 Thread Kevin D. Kinsey, DaleCo, S.P.
Chuck Swiger wrote:
Jerry Hoover wrote:
I would like to learn FreeBSD 4.8  (I think I have a copy)
What I need to know,  what does it require?
CPU?
RAM?
Hard Drive Space?

A 486-grade CPU or later, 16MB of RAM, and 1 GB of disk space is 
something resembling a minimum configuration.  If you want to run a 
GUI environment involving X11, make that a Pentium-2 grade system and 
64+ MB of RAM, and 4+ GB of disk space.

Rather long list of techie details (for the PC-compat architecture):
http://www.freebsd.org/releases/5.3R/hardware-i386.html
HTH,
Kevin Kinsey
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Getting error with OpenOffice build

2004-12-12 Thread Trey Sizemore
I'm getting the following error when trying to build openoffice-1.1 from
ports on a recently cvsup'd box:

snip
rm
-f ../../unxfbsd.pro/bin/odk645/examples/OLE/delphi/InsertTables/SampleUI.dfm 
 /dev/null
tr -d \015  ../../examples/OLE/delphi/InsertTables/SampleUI.dfm
 ../../unxfbsd.pro/bin/odk645/examples/OLE/delphi/InsertTables/SampleUI.dfm
tr: Illegal byte sequence
dmake:  Error code 1, while making
'../../unxfbsd.pro/bin/odk645/examples/OLE/delphi/InsertTables/SampleUI.dfm'
dmake:
'../../unxfbsd.pro/bin/odk645/examples/OLE/delphi/InsertTables/SampleUI.dfm' 
removed.
---* RULES.MK *---

ERROR: Error 65280 occurred while
making /usr/ports/editors/openoffice-1.1/work/OOo_1.1.3_src/odk/examples/OLE
dmake:  Error code 1, while making 'build_all'
---* TG_SLO.MK *---
*** Error code 255

Stop in /usr/ports/editors/openoffice-1.1.


Can anyone tell me what is causing the error?

My box:

salamander# uname -a
FreeBSD salamander.thesizemores.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0:
Fri Nov  5 04:19:18 UTC 2004
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

Thanks.

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


Re: FreeBSD 4.8

2004-12-12 Thread Mark Cullen
Kevin D. Kinsey, DaleCo, S.P. wrote:
Chuck Swiger wrote:

Jerry Hoover wrote:

I would like to learn FreeBSD 4.8  (I think I have a copy)
What I need to know,  what does it require?
CPU?
RAM?
Hard Drive Space?

A 486-grade CPU or later, 16MB of RAM, and 1 GB of disk space is 
something resembling a minimum configuration.  If you want to run a 
GUI environment involving X11, make that a Pentium-2 grade system and 
64+ MB of RAM, and 4+ GB of disk space.


Rather long list of techie details (for the PC-compat architecture):
http://www.freebsd.org/releases/5.3R/hardware-i386.html
Or for 4.8...
http://www.freebsd.org/releases/4.8R/hardware-i386.html
I've got 4.10 running on an old 133MHz P1, without the external cache 
plugged in as it was faulty, and 64MB of RAM.. chugs along quite nicely :)

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

--
Internet Explorer? Try FireFox at http://www.mozilla.org/products/firefox/
Outlook Express? Try ThunderBird at 
http://www.mozilla.org/products/thunderbird/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: new

2004-12-12 Thread Jerry McAllister
 
 sir i am new in BSD 
 i think this is the UNIX operating system and it's free ? to use ? or what ?
 and i m new in BSD so kindly guide me how can i start leranning from where ? 
 i got this site from www.ugu.com

JUst go to http://www.freebsd.org/   and start following links
and rading stuff.  It is all there in documentation, FAQs ans such.

Yes, this is about a BSD operating system (FreeBSD) and you can freely
download, install and run it.  Instructions are all on that website.

jerry

  
 thanking you
  
 
 
   
 -
 Do you Yahoo!?
  Take Yahoo! Mail with you! Get it on your mobile phone.
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 

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


running scripts on FreeBSD 5.3

2004-12-12 Thread Alistair Bryan
Hi there,
I've recently installed v5.3 and am completely new to FreeBSD.
I downloaded and a driver for my adsl modem and, following the
instructions which came with the software, compiled the program.
In order to run it I tried to run one of the supplied scripts and got
the following error:
bash-2.05b# ./eci-doctor.sh
[: unexpected operator
You are using linux kernel version 5.3-RELEASE
./eci-doctor.sh: 48: Syntax error: ( unexpected
Line 48 has the line function fatal () {
I created a directory whch I called adsl andcompiled the program in there.
What am I doing wrong?
Do I need to include this directory in the path?
T.I.A.
Ali
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: shared memory settings in 5.3

2004-12-12 Thread Kris Kennaway
On Sun, Dec 12, 2004 at 01:52:20PM -0800, John wrote:
 Hello,
   I am setting up sybase 11 to run on 5.3 release and
 want to increase the available shared memory for
 sybase to use but am unsure how to do this.  I have
 seen references to setting SHMMAXPGS, but am not quite
 sure how to set this or what units it is currently set
 in now.  Any help would be greatly appreciated. 

This is set in your kernel configuration file.  Check GENERIC and
NOTES for the default settings.  See the handbook for more help on
building a kernel.

Kris


pgpKcR3aM3NJe.pgp
Description: PGP signature


Qmail Problems

2004-12-12 Thread Mike Grissom
I have been having a problem with qmail-send dying for a while now.  In the log 
file it says that alert: oh no! lost spawn connection which leads me to 
believe the problem is with the qmail-lspawn or qmail-rspawn.  I have FreeBSD 
4.10-STABLE #0: Thu Nov 11 17:21:04 EST 2004 installed on the box.  Any ideas 
what could be causing this?  Or how to fix this problem?No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.296 / Virus Database: 265.5.0 - Release Date: 12/9/2004
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Swap partition not used?

2004-12-12 Thread Toomas Aas
Simon Burke wrote:
After a while of using 5.3RELEASE, i have noticed a small problem, my
swap partition isnt getting used. Well its not a small problem
considering that i have only 256mb ram on this machine.
boredom# swapctl -l
Device:   1024-blocks Used:
/dev/ad0s1b  48211256
this i suppose shows that some of it is used but the amount used never
increases. I'm currently using 100% memory (installing openoffice from
ports, finally).
Do you get any system error messages indicating that something is 
running out of memory? If not, I'd say everything is OK with your system 
- the swap is not used much because it simply isn't needed. The fact 
that 56 kB of swap is used seems to indicate that your system knows very 
well where it's swap is.

I've tried using swapon -a to add it and it doesnt seem to have worked.
What do you mean by that? The swapctl output above shows that your swap 
partition is being used. You can't force your system to use more swap by 
issuing that command ;)

Its also does not show in df -ha ,though i cant recall if it is
supposed to be there. Though i dont think it has to be mounted?
No, the swap partition is not supposed to show up in output of df.
I'm also running a 5.3-STABLE box with 256 MB of RAM and at the moment 
the situation is like that:

premium# swapctl -l
Device:   1024-blocks Used:
/dev/ad0s1b  524288 0
I'm not worried at all :)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Un-GNOME-ing a FreeBSD box

2004-12-12 Thread Brett Glass
At 10:56 AM 12/12/2004, Paul Mather wrote:
  
On Sat, 11 Dec 2004 18:54:18 -0700, Brett Glass [EMAIL PROTECTED]
wrote:

 Again, I really find it hard to believe that there would be no
 provision 
 for deleting a port AND the ports on which it depends cleanly. I tend
 to use a minimal number of ports and packages, and so didn't realize
 that this was such a difficult thing until now.

The problem with deleting a port and the ports on which it depends
cleanly is that there may be other ports depending on a dependency.  So,
there needs to be some arbitration to decide what legitimately should go
and which should stay.

What's needed is a way of doing garbage collection -- reference counts
plus a way of resolving circular dependencies (which reference counts
can't handle).

--Brett

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


keyboard and x-win freeze up

2004-12-12 Thread T.F. Cheng
i am running freebsd 5.3 (x86) on amd64, not sure what
happened, I just found out that my keyboard and
x-window are not responsding to me. login from another
computer from telnet, and look at dmesg, here it is: 
handle_workitem_freeblocks: block count
handle_workitem_freeblocks: block count
handle_workitem_freeblocks: block count
cd9660: Joliet Extension (Level 1)
arp: 192.168.0.1 moved from 00:09:5b:4d:dc:ec to
00:09:5b:65:a3:85 on xl0
arp: 192.168.0.1 moved from 00:09:5b:65:a3:85 to
00:09:5b:4d:dc:ec on xl0
arp: 192.168.0.1 moved from 00:09:5b:4d:dc:ec to
00:80:c8:01:2f:be on xl0
arp: 192.168.0.1 moved from 00:80:c8:01:2f:be to
00:09:5b:4d:dc:ec on xl0
arp: 192.168.0.1 moved from 00:09:5b:4d:dc:ec to
00:80:c8:01:2f:be on xl0
arp: 192.168.0.1 moved from 00:80:c8:01:2f:be to
00:09:5b:4d:dc:ec on xl0
arp: 192.168.0.1 moved from 00:09:5b:4d:dc:ec to
00:80:c8:01:2f:be on xl0
arp: 192.168.0.1 moved from 00:80:c8:01:2f:be to
00:09:5b:4d:dc:ec on xl0
arp: 192.168.0.1 moved from 00:09:5b:4d:dc:ec to
00:09:5b:65:a3:85 on xl0
arp: 192.168.0.1 moved from 00:09:5b:65:a3:85 to
00:09:5b:4d:dc:ec on xl0
I am currently using a 3Com 3c905-TX with driver xl.
not sure if this what's causing the trouble. 

=
Best Regards,

Tsu-Fan Cheng

_
Do You Yahoo!?
 @yahoo.com  @ http://chinese.mail.yahoo.com
Get your free @yahoo.com address at http://chinese.mail.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


sound works with kldload, but not /boot/loader.conf?

2004-12-12 Thread Robert William Vesterman
Hi,
I just tried playing a WAV file using xmms (this is the first time I've 
tried anything with sound on my installation).  It issued a very generic 
error message, telling me things like make sure your device is 
installed.  I did some research (mostly in the FreeBSD handbook), and 
eventually got my sound working by doing a kldload snd_driver. 

I then changed /boot/loader.conf to contain the line:
snd_driver_load=YES
So that I wouldn't have to kldload snd_driver every time.  After 
rebooting, xmms acted like it was playing the song - no error message, 
equalizer lights happily jumping around, et cetera - but no sound came out.

If I try kldload snd_driver at this point, it says that snd_driver is 
already loaded.  If I comment out the line from /boot/loader.conf, 
reboot and do a kldload snd_driver, the sound works fine (as it did 
before).

So, am I doing something wrong? Is there a way to get the 
/boot/loader.conf line to work? Is there anything else I could investigate?

If it's just screwed up and that's all there is to it, could I just 
manually put kldload snd_driver into some automatic startup script? If 
so, what is the appropriate script?

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


Re: newsyslog

2004-12-12 Thread Garance A Drosihn
At 10:07 AM -0500 12/11/04, munn wrote:
I have two FreeBSD machines running 4.10-RELEASE-p5.  On machine A
newsyslog  rolls over the log files perfectly, on Machine B I get
the message:
/var/log/auth.log.0: No such file or directory
The newsyslog.conf entries are :
MACHINE A: /var/log/auth.log600  7 100  * Z
MACHINE B: /var/log/auth.log600  7 100  $W6D0 Z
An ls of the /var/log directory yields
ls -ltr auth*
-rw---  1 root  wheel  97872 Dec 11 00:00 auth.log.1
-rw---  1 root  wheel 95 Dec 11 00:00 auth.log.0.gz
-rw---  1 root  wheel176 Dec 11 09:42 auth.log
I have looked relevant permissions and files sizes on both machines
and they are identical.  Can anyone suggest what the problem is?
Is the time entry the issue ... I just copied it from another entry
in the newsyslog.conf file.
I doubt the time-entry would be the issue.  That will only effect
*when* a file gets rotated.  It should have no effect on what should
be done once it is decided to rotate the file.
You might try running 'newsyslog -nvv', and see if that shows a
difference between the two machines.
Is that 'ls' command from the machine which works, or the one which
does not work?  Either way, it doesn't seem quite right.  You should
either see 'auth.log.0.gz' and 'auth.log.1.gz', or you should see
'auth.log.0' and 'auth.log.1'.  The program is complaining that it
can not find 'auth.log.0', and sure enough there is no 'auth.log.0'.
You might want to try 'gunzip /var/log/auth.log.0.gz', and then
run newsyslog and see if it works any better.
--
Garance Alistair Drosehn=   [EMAIL PROTECTED]
Senior Systems Programmer   or  [EMAIL PROTECTED]
Rensselaer Polytechnic Instituteor  [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


shell script, rc, and starting a server process at boot time

2004-12-12 Thread Lucas Holt
This one has me a bit puzzled.  I just setup a freebsd 4.10 release 
install for use as a gaming server.  I want to run Enemy Territory on 
startup.

I created a script in /usr/local/etc/rc.d/  that contains the following:
#!/bin/sh
cd /compat/linux/usr/games/et
./etded.x86 \+set ttycon 0 +exec server.cfg   /dev/null 21
exit \
The problem is that this script will hang up the autoboot rc processes. 
 In order for the game to work, stderr and stdout need to be 
redirected.  As far as i know, i got that part working and directing 
the /dev/null  I think the problem is with keyboard input.  I haven't 
figured out a way to redirect stdin to /dev/null or something similar.  
I suspect thats what is holding up autoboot.  I'm certainly no expert 
at shell scripting.  is there a way to redirect stdin, stderr, and 
stdout so that the game will load automatically?  Preferably I'd like 
to alter this so i don't have to start the extra  /bin/sh process, but 
i really don't care if it has to be there to get the game to run.

Thanks in advance.
Lucas Holt
[EMAIL PROTECTED]

FoolishGames.com  (Jewel Fan Site)
JustJournal.com (Free blogging)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: sound works with kldload, but not /boot/loader.conf?

2004-12-12 Thread Adam Smith
On Sun, Dec 12, 2004 at 08:28:32PM -0500, Robert William Vesterman said:
 Hi,
 
 I just tried playing a WAV file using xmms (this is the first time I've 
 tried anything with sound on my installation).  It issued a very generic 
 error message, telling me things like make sure your device is 
 installed.  I did some research (mostly in the FreeBSD handbook), and 
 eventually got my sound working by doing a kldload snd_driver. 
 
 I then changed /boot/loader.conf to contain the line:
 
 snd_driver_load=YES
 
 So that I wouldn't have to kldload snd_driver every time.  After 
 rebooting, xmms acted like it was playing the song - no error message, 
 equalizer lights happily jumping around, et cetera - but no sound came out.

You may need to adjust your mixer settings.  Run 'mixer' and have a look at
the output.  You can modify any of the settings there by running, for
example:

mixer pcm 90
mixer vol 90

(for me to get any sound at all, I need to have both of these turned up).

You can then store those settings somehow but I can't remember how to do
that off the top of my head.


-- 
Adam Smith
Internode   : http://www.internode.on.net
Phone   : (08) 8228 2999

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


Re: DHCP and 2 subnets

2004-12-12 Thread Mike Oliveri
I assume you have two different interfaces on the box, one for each
box? Judging by the router addresses, these would be 10.1.0.1 and
10.2.0.1. If the hardware-reserved hosts are connected to the
appropriate interface, I would guess  the second would be working.

Otherwise, can you put the host declarations in with the subnet
definitions? It's been a while since I've read through man dhcpd, so
you might want to take a look at it to be sure.

Take care,
Mike


On Sun, 12 Dec 2004 13:13:22 UT, goose bla [EMAIL PROTECTED] wrote:
 hello,
 
 I have router with inet and allias. 10.1.0.0/24 10.2.0.0/24.
 i want allot to pc(client) their IP by their MAC adress. but it's going
 only with one subnet. i can allot IP only to one subnet.
 
 this is running
 
 subnet 10.1.0.0 netmask 255.255.255.0 {
 range 10.1.0.31 10.1.0.60;
   default-lease-time 600;
   max-lease-time 7200;
   option subnet-mask 255.255.255.0;
   option domain-name bla.org;
   option domain-name-servers 222.222.222.22;
   option routers 10.1.0.1;
 }
 
 host pc1 {
 hardware ethernet 00:33:11:22:bb:94;
 fixed-address 10.1.0.10;
 }
 
 but i need somethink like this:
 
 subnet 10.1.0.0 netmask 255.255.255.0 {
 range 10.1.0.31 10.1.0.60;
   default-lease-time 600;
   max-lease-time 7200;
   option subnet-mask 255.255.255.0;
   option domain-name bla.org;
   option domain-name-servers 222.222.222.22;
   option routers 10.1.0.1;
 }
 
 subnet2 10.2.0.0 netmask 255.255.255.0 {
 range 10.2.0.31 10.2.0.60;
   default-lease-time 600;
   max-lease-time 7200;
   option subnet-mask 255.255.255.0;
   option domain-name bla.org;
   option domain-name-servers 222.222.222.22;
   option routers 10.2.0.1;
 
 host pc1 {
 hardware ethernet 00:33:11:22:bb:94;
 fixed-address 10.1.0.10;
 }
 
 host pc2 {
 hardware ethernet 00:44:44:22:bb:94;
 fixed-address 10.2.0.10;
 }
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

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


Re: sound works with kldload, but not /boot/loader.conf?

2004-12-12 Thread Adam Smith
On Sun, Dec 12, 2004 at 05:39:02PM -0800, Michael C. Shultz said:
 I use /usr/local/etc/rc.d/START.sh taht conatins the following:
 
 echokldload snd_driver
 kldload snd_driver

Or you could put it in your kernel, and then it would all work the way it's
supposed to!


-- 
Adam Smith
Internode   : http://www.internode.on.net
Phone   : (08) 8228 2999

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


Re: shell script, rc, and starting a server process at boot time

2004-12-12 Thread Lucas Holt
Thanks to a reply and a guess I think I got it working.
I deleted the trailing \ on the exit command and added an  at the end 
of my etded line.  It seems to be starting ok now.

Lucas Holt
[EMAIL PROTECTED]

FoolishGames.com  (Jewel Fan Site)
JustJournal.com (Free blogging)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: sound works with kldload, but not /boot/loader.conf?

2004-12-12 Thread Michael C. Shultz
On Sunday 12 December 2004 08:10 pm, Adam Smith wrote:
 On Sun, Dec 12, 2004 at 05:39:02PM -0800, Michael C. Shultz said:
  I use /usr/local/etc/rc.d/START.sh taht conatins the following:
 
  echokldload snd_driver
  kldload snd_driver

 Or you could put it in your kernel, and then it would all work the
 way it's supposed to!

For you mixer comment you can also add

mixer vol 100:100 to usr/local/etc/rc.d/START.sh though
there is probably a better way to do that as well.

-Mike

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


Re: sound works with kldload, but not /boot/loader.conf?

2004-12-12 Thread Michael C. Shultz
On Sunday 12 December 2004 05:28 pm, Robert William Vesterman wrote:
 Hi,

 I just tried playing a WAV file using xmms (this is the first time
 I've tried anything with sound on my installation).  It issued a very
 generic error message, telling me things like make sure your device
 is installed.  I did some research (mostly in the FreeBSD handbook),
 and eventually got my sound working by doing a kldload snd_driver.

 I then changed /boot/loader.conf to contain the line:

 snd_driver_load=YES

 So that I wouldn't have to kldload snd_driver every time.  After
 rebooting, xmms acted like it was playing the song - no error
 message, equalizer lights happily jumping around, et cetera - but no
 sound came out.

 If I try kldload snd_driver at this point, it says that snd_driver
 is already loaded.  If I comment out the line from /boot/loader.conf,
 reboot and do a kldload snd_driver, the sound works fine (as it did
 before).

 So, am I doing something wrong? Is there a way to get the
 /boot/loader.conf line to work? Is there anything else I could
 investigate?

 If it's just screwed up and that's all there is to it, could I just
 manually put kldload snd_driver into some automatic startup script?
 If so, what is the appropriate script?

 Thanks,

 Bob Vesterman.

I use /usr/local/etc/rc.d/START.sh taht conatins the following:

echokldload snd_driver
kldload snd_driver

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


network glitch with internal network/gateway on 5.3

2004-12-12 Thread Louis LeBlanc
Hey all.

I'm finally getting over my lazy spell re: the chore of swapping the
new server in for the old.

There are a couple hangups.

The old server was running 4.10, and handling PPP/natd flawlessly.  It
was also starting the ppp connection up automagically on boot.

The new one isn't doing either.

I have the following in /etc/rc.conf:

ppp_enable=YES
ppp_mode=ddial
ppp_nat=YES
ppp_profile=verizon
ppp_user=root
natd_enable=YES
natd_program=/sbin/natd
natd_flags=-u -s -same_ports -dynamic -n fxp0 -log_facility security
natd_interface=tun0
firewall_enable=YES
firewall_script=/etc/rc.firewall
gateway_enable=YES

Most, if not all of this is adapted from the old servers settings.

The internal network interface (rl0) is set up as 10.8.20.5.

My routes are set up as:
Internet:
DestinationGatewayFlagsRefs  Use  Netif  Expire
default10.9.99.1  UGS 041846   tun0
10.8.20/24 link#1 UC  00rl0
10.8.20.7  00:a0:c9:74:12:a3  UHLW03rl0  958
10.9.99.1  68.163.129.130 UH  10   tun0
127.0.0.1  127.0.0.1  UH  0 8782lo0


I've also got the firewall script from the old server, which has
always been pretty good for my purposes.  Just one thing seems to be
hanging up.  This is the error message:
ipfw: getsockopt(IP_FW_ADD): Invalid argument

This is right on the divert rule:
${fwcmd} add divert natd all from any to any via ${natd_interface}

fwcmd is /sbin/ipfw and natd_interface is defined above as tun0.

Now, in the startup, I noticed that ppp isn't starting up, which is
probably where the whole thing goes south.  The problem is logged
briefly at the console, but I can't find any reference to it in the
logs.  It refers to a libintl.so.6(?) lib that can't be found, and is
needed by su.  The lib does appear to exist in /usr/local/lib/ though.

I assume this refers to the fact that ppp is to be run as root.  This
might also explain why I have no problems starting ppp up as root
manually once I've got the system up.

To test a theory, I linked the libintl.* libs from /usr/local/lib/ to
/usr/lib/ and rebooted.  Voila.  It comes up like it knows what to do
- except for that little natd issue.

Now I just need to figure out why ppp won't work without the gettext
libs, or figure out how to tell it to look in the right place, and
figure out the hangup with natd.

As usual, any suggestions would be appreciated.

Thanks
Lou
-- 
Louis LeBlanc   [EMAIL PROTECTED]
Fully Funded Hobbyist, KeySlapper Extrordinaire :)
http://www.keyslapper.org ԿԬ

alimony, n:
  Having an ex you can bank on.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Platform question

2004-12-12 Thread Micheal Mand
Hello,

I am very interested in using FreeBSD on my old Compaq box, but the only 
problem is, I can't seem to find where Windows holds the system information. 
(Stupid Windows) Does anyone have any ideas or know which port I should use?

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


[no subject]

2004-12-12 Thread kalisa paul
êàê êîíôèãóðèðîâàòü U.S.Robotics 56K Faxmodem USB
ìîäåëü 5633 â Linux  (linux Kernel 2.4.20)
Ñïîñèáî.



-
Do you Yahoo!?
 The all-new My Yahoo! – Get yours free!
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Platform question

2004-12-12 Thread AntonZ
I'm sorry for my ignorance, but what the hell are you talking about? What
does Windows have to do with your desire to install freebsd?

Best Regards, Anton


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Micheal Mand
Sent: Sunday, December 12, 2004 9:34 PM
To: [EMAIL PROTECTED]
Subject: Platform question

Hello,

I am very interested in using FreeBSD on my old Compaq box, but the only
problem is, I can't seem to find where Windows holds the system information.
(Stupid Windows) Does anyone have any ideas or know which port I should use?

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

-- 
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.296 / Virus Database: 265.5.0 - Release Date: 12/9/2004
 

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.296 / Virus Database: 265.5.0 - Release Date: 12/9/2004
 

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


half a thousand in bonus chips added to your first deposit

2004-12-12 Thread remi69
Get up to $500 in bonus chips added to your first deposit. After installing the 
software, simply register with the casino and we will match 50% of up to $1000 
of your first deposit with bonus chips added to your player account. Click the 
link below: http://www.imperialcasino.com/S13XXF/ 
http://www.imperialcasino.com/downloads/S13XXF/Imperial%20Casino.exe Fair Play 
is both a philosophy and a science in our Casino. First, we have philosophical 
commitment to providing absolutely fair play in every game because it's the 
right thing to do. We treat our players like we want to be treated: honestly 
and fairly. Second, we use industry standard Las Vegas odds and game-play rules 
to ensure that our players get the most entertainment value for their money. 
Fair play means lots of winners and more repeat business for our Casino. We 
also take a scientific approach to making sure our games are fair: Fair by 
design. The software that powers our casino games uses a sophisticated Random 
Numb!
 er Generator (RNG) to make sure each hand of cards or roll of the dice is 
unpredictable and completely random. Thus, our games are designed to be fair 
from the ground up. Test for fairness. We methodically analyze historical game 
data and test our games on a continual basis to assure ourselves that the games 
are absolutely fair and random. Audit for assurance. We make our game software 
and test data available to external auditors and gaming authorities to provide 
an outside, independent check of our own research and analysis. 
http://www.imperialcasino.com/downloads/S13XXF/ or try downloading the soft 
right away - risk free 
http://www.imperialcasino.com/downloads/S13XXF/Imperial%20Casino.exe Yours 
sincerely, Derek Applegate CIO, senior editor, sales person 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: DHCP and 2 subnets

2004-12-12 Thread luke
i'm not sure about this but you might look into using one subnet
10.0.0.0/8 and two ranges in your config instead of two of each. just
a thought...i  use static ips
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


half a thousand in bonus chips added to your first deposit

2004-12-12 Thread remi69
Get up to $500 in bonus chips added to your first deposit. After installing the 
software, simply register with the casino and we will match 50% of up to $1000 
of your first deposit with bonus chips added to your player account. Click the 
link below: http://www.imperialcasino.com/S13XXF/ 
http://www.imperialcasino.com/downloads/S13XXF/Imperial%20Casino.exe Fair Play 
is both a philosophy and a science in our Casino. First, we have philosophical 
commitment to providing absolutely fair play in every game because it's the 
right thing to do. We treat our players like we want to be treated: honestly 
and fairly. Second, we use industry standard Las Vegas odds and game-play rules 
to ensure that our players get the most entertainment value for their money. 
Fair play means lots of winners and more repeat business for our Casino. We 
also take a scientific approach to making sure our games are fair: Fair by 
design. The software that powers our casino games uses a sophisticated Random 
Numb!
 er Generator (RNG) to make sure each hand of cards or roll of the dice is 
unpredictable and completely random. Thus, our games are designed to be fair 
from the ground up. Test for fairness. We methodically analyze historical game 
data and test our games on a continual basis to assure ourselves that the games 
are absolutely fair and random. Audit for assurance. We make our game software 
and test data available to external auditors and gaming authorities to provide 
an outside, independent check of our own research and analysis. 
http://www.imperialcasino.com/downloads/S13XXF/ or try downloading the soft 
right away - risk free 
http://www.imperialcasino.com/downloads/S13XXF/Imperial%20Casino.exe Yours 
sincerely, Derek Applegate CIO, senior editor, sales person 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Clicks and Pops playing music.

2004-12-12 Thread Nikolas Britton
Jorge Mario G. wrote:
--- Nikolas Britton [EMAIL PROTECTED] escribió: 
 

After switching my main box from windows to freebsd
I have notice a shit 
load of clicks and pops when playing my mp3s. I have
have a relatively 
nice sound system setup on my computer (SoundBlaster
Live!, high end 
Yamaha 2.1 speaker system, and my mp3s encode at
150KB VBR) and this is 
really annoying me.
   

What exateley do you mean by clicks and pops? and when
did they occur?
A blind tip try enabling virtual channels
Jorge Mario
 

Thanks jorge, I had maxautovchans=4 already set but you spurred me on to 
read the man page for snd and figure out what all the sysctl's do. In 
the man page I found this:

hw.snd.targetirqrate:
Set the default block size such that continuous playback will achieve 
this IRQ rate.  This value can be tuned to improve application 
performance.Increase this value when the sound lags and decrease it 
if sound stutters or breaks up.

On a whim I change this from 32 to 48 via /boot/loader.conf and 
rebooted. This (so far) seems to have done the trick, I have not heard 
any clicks, pops, or other abnormal artifacts when playing my music.

So, for anyone that uses the  SoundBlaster Live! and Audigy cards 
(snd_emu10k1) you might want to try this, here are my settings:

$ sysctl hw.snd
hw.snd.targetirqrate: 48
hw.snd.report_soft_formats: 1
hw.snd.verbose: 1
hw.snd.unit: 0
hw.snd.maxautovchans: 4
hw.snd.pcm0.buffersize: 4096
/boot/loader.conf:
## Sound Support
#sound_load=YES
#snd_emu10k1_load=YES
#snd_driver_load=YES
hw.snd.maxautovchans=4
hw.snd.targetirqrate=48
Kernel config file:
# Sound Support
device  sound   # PCM audio device infrastructure
device  snd_emu10k1   # SoundBlaster Live! and Audigy PCI 
bridge device driver

$ uname -a
FreeBSD spectra.intranet 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #0: Thu 
Dec  2 19:09:20 CST 2004 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/SPECTRA  i386

now... I just need to figure out how to disable Line-in and Mic for a 
better SNR, any takers?




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


DHCP and 2 subnets

2004-12-12 Thread goose bla
hello,

I have router with inet and allias. 10.1.0.0/24 10.2.0.0/24.
i want allot to pc(client) their IP by their MAC adress. but it's going 
only with one subnet. i can allot IP only to one subnet.

this is running 

subnet 10.1.0.0 netmask 255.255.255.0 {
range 10.1.0.31 10.1.0.60;
  default-lease-time 600;
  max-lease-time 7200;
  option subnet-mask 255.255.255.0;
  option domain-name bla.org;
  option domain-name-servers 222.222.222.22;
  option routers 10.1.0.1;
}

host pc1 {
hardware ethernet 00:33:11:22:bb:94;
fixed-address 10.1.0.10;
}


but i need somethink like this:

subnet 10.1.0.0 netmask 255.255.255.0 {
range 10.1.0.31 10.1.0.60;
  default-lease-time 600;
  max-lease-time 7200;
  option subnet-mask 255.255.255.0;
  option domain-name bla.org;
  option domain-name-servers 222.222.222.22;
  option routers 10.1.0.1;
}

subnet2 10.2.0.0 netmask 255.255.255.0 {
range 10.2.0.31 10.2.0.60;
  default-lease-time 600;
  max-lease-time 7200;
  option subnet-mask 255.255.255.0;
  option domain-name bla.org;
  option domain-name-servers 222.222.222.22;
  option routers 10.2.0.1;


host pc1 {
hardware ethernet 00:33:11:22:bb:94;
fixed-address 10.1.0.10;
}

host pc2 {
hardware ethernet 00:44:44:22:bb:94;
fixed-address 10.2.0.10;
}

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


FreeBSD 5.3-RC1 + Speedtouch 330 USB

2004-12-12 Thread Marcel Falkiewicz
Hello,
 I have been trying to run a Thomson Speedtouch 330 USB modem for a
few days now and I just become more and more upset with this
situation. I installed the pppoa
drivers from ports (/usr/ports/net/pppoa) - the most recent version.
I made required changes in /etc/ppp/ppp.conf, changed the script
extension (adsl.sh) and when I tried to run the startup script I found
myself in a very uncomfortable situation:

[...]
Dec 12 14:30:24  kernel: ugen0: THOMSON Speed Touch 330, rev 1.10/4.00, addr 2
Dec 12 14:30:37  modem_run[5731]: Unable to locate firmware in
/usr/local/libdata/mgmt.o
[...]

But:
# ls -l /usr/local/libdata/mgmt.o
-r--r--r--  1 root  wheel  535856 Dec 12 14:27 /usr/local/libdata/mgmt.o

# uname -a
FreeBSD  5.3-RC1 FreeBSD 5.3-RC1 #0: Sun Oct 17 01:25:37 UTC 2004
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

Did some engage a similar problem with running this damn modem? Thanks
in advance for any help.

-- 
Regards,
 Marcel Falkiewicz

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


need help

2004-12-12 Thread angelito munez
  

-
Do you Yahoo!?
 Read only the mail you want - Yahoo! Mail SpamGuard.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


How do I delete a DDO [Dynamaic Drive Overlay}

2004-12-12 Thread bibb-babb Lange
I never installed a DDO on my computer, but it is there and it seems to have 
originated in China.

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


Re: Un-GNOME-ing a FreeBSD box

2004-12-12 Thread RW
On Sunday 12 December 2004 01:54, Brett Glass wrote:
 At 06:42 PM 12/11/2004, Lowell Gilbert wrote:
 That isn't supposed to happen.  If another port has X11 listed as a
 dependency, make deinstall would have said so and refused to remove
 it..

 Which, by the way, is what the owner of the machine is seeing. He's
 listed the ports that were installed by running pkg_info, and is
 laboriously visiting each one's directory and trying to do a
 make deinstall. But it's refusing to delete things due to dependency
 issues. I'm not sure, but I'll bet that the dependencies here aren't
 a clean, hierarchical tree but rather more of a web. If there's
 a circular dependency, he's stuck.

 Again, I really find it hard to believe that there would be no provision
 for deleting a port AND the ports on which it depends cleanly. I tend
 to use a minimal number of ports and packages, and so didn't realize
 that this was such a difficult thing until now.

There is a way: 

  pkg_deinstall -R gnome 

which delete gnome and all it depends on, except those packages that are 
required by other packages that aren't to be deleted. The pitfalls are that 
you will need to reinstall gnome, and also there might be ports that gnome 
depends on that were usefull leaf ports in their own right. I dont think 
there will be anything like that with gnome, but I'm not entirely sure.  

also pkg_deinstall  2004-11-20 08:00 

which removes all packages added after the specified timestamp. 

In either case I would test to see what will go by running pkg_glob first.
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Un-GNOME-ing a FreeBSD box

2004-12-12 Thread Paul Mather
On Sat, 11 Dec 2004 18:54:18 -0700, Brett Glass [EMAIL PROTECTED]
wrote:

 Again, I really find it hard to believe that there would be no
 provision 
 for deleting a port AND the ports on which it depends cleanly. I tend
 to use a minimal number of ports and packages, and so didn't realize
 that this was such a difficult thing until now.

The problem with deleting a port and the ports on which it depends
cleanly is that there may be other ports depending on a dependency.  So,
there needs to be some arbitration to decide what legitimately should go
and which should stay.  You can't delete a dependency until you also
delete all the ports depending upon it.  If some of them are ports you
want to keep, then the dependency has to stay.

I find the sysutils/pkg_cutleaves port very useful for trimming back on
the ports you've installed but may no longer need.  This is especially
true for some ports that might install various ports needed to build a
given port, but which are not needed for it to run.  The pkg_cutleaves
port can be used to deinstall safely these build dependencies.

Pkg_cutleaves works from the leaves of your installed ports inwards to
the root.  It will invite you to delete ports that are leaf ports,
i.e., ones that have no ports depending upon them.  As you cut
unnecessary leaves, more leaves become available for trimming.
Eventually, you'll either cut back to something you're happy with, or
you'll end up deleting everything. :-)

You can create a /usr/local/etc/pkg_leaves.exclude file detailing ports
you never want to cut.  (I add to this file as I add ports to my system
that I want to keep.)  This is handy for reducing the amount of trimming
questions you're offered and generally helps speed up the whole process.

So, I suggest you use sysutils/pkg_cutleaves as a clean solution to the
port de-installation problem.

Cheers,

Paul.
-- 
e-mail: [EMAIL PROTECTED]

Without music to decorate it, time is just a bunch of boring production
 deadlines or dates by which bills must be paid.
--- Frank Vincent Zappa
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 4.8

2004-12-12 Thread Chuck Swiger
Jerry Hoover wrote:
I would like to learn FreeBSD 4.8  (I think I have a copy)
What I need to know,  what does it require?
CPU?
RAM?
Hard Drive Space?
A 486-grade CPU or later, 16MB of RAM, and 1 GB of disk space is something 
resembling a minimum configuration.  If you want to run a GUI environment 
involving X11, make that a Pentium-2 grade system and 64+ MB of RAM, and 4+ GB 
of disk space.

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


Re: Clicks and Pops playing music.

2004-12-12 Thread Jorge Mario G.
 --- Nikolas Britton [EMAIL PROTECTED] escribió: 
 After switching my main box from windows to freebsd
 I have notice a shit 
 load of clicks and pops when playing my mp3s. I have
 have a relatively 
 nice sound system setup on my computer (SoundBlaster
 Live!, high end 
 Yamaha 2.1 speaker system, and my mp3s encode at
 150KB VBR) and this is 
 really annoying me.
What exateley do you mean by clicks and pops? and when
did they occur?
A blind tip try enabling virtual channels

Jorge Mario

_
Do You Yahoo!?
Información de Estados Unidos y América Latina, en Yahoo! Noticias.
Visítanos en http://noticias.espanol.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: running scripts on FreeBSD 5.3

2004-12-12 Thread Chuck Swiger
Alistair Bryan wrote:
I downloaded and a driver for my adsl modem and, following the
instructions which came with the software, compiled the program.
In order to run it I tried to run one of the supplied scripts and got
the following error:
bash-2.05b# ./eci-doctor.sh
[: unexpected operator
You are using linux kernel version 5.3-RELEASE
It looks like you've obtained a Linux driver.  FreeBSD isn't Linux, it's 
BSD.
You might take a look at dmesg and see whether FreeBSD already recognizes it, 
otherwise, it would help if you provided more detail about what your ADSL 
modem is and how it's connected (ie, ethernet, USB, serial port?)...

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


shared memory settings in 5.3

2004-12-12 Thread John
Hello,
  I am setting up sybase 11 to run on 5.3 release and
want to increase the available shared memory for
sybase to use but am unsure how to do this.  I have
seen references to setting SHMMAXPGS, but am not quite
sure how to set this or what units it is currently set
in now.  Any help would be greatly appreciated. 

J




__ 
Do you Yahoo!? 
Yahoo! Mail - Helps protect you from nasty viruses. 
http://promotions.yahoo.com/new_mail
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD or OpenBSD

2004-12-12 Thread Thomas Vincent
I would just do a google search. OpenBSD is definitely more thoroughly
audited in terms of its code base. But has a reputation of being
slower then FreeBSD. And to some degree, stable enough vs. very
stable. But for your requirements that may not be a issue.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


SBWAIT

2004-12-12 Thread Chris Bird
I am currently have a problem with both SAMBA , SSH and GLFTPD under 5.3. 
i can download files using this method without problem but when it comes 
to upload they stall and complete if you wait for a long time.

The box is setup as a router using ipfw and natd.
So far i have tried checking netstat -m during a trasnfer and the buffers 
are not being used up.

does anyone have any advice on this. i have tried useing a standard open 
rc.firewall as well to check it isnt my script but the same thing is 
occouring.

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


Re: Un-GNOME-ing a FreeBSD box

2004-12-12 Thread Paul Mather
On Sun, 2004-12-12 at 16:14 -0700, Brett Glass wrote:
 At 10:56 AM 12/12/2004, Paul Mather wrote:
   
 On Sat, 11 Dec 2004 18:54:18 -0700, Brett Glass [EMAIL PROTECTED]
 wrote:
 
  Again, I really find it hard to believe that there would be no
  provision 
  for deleting a port AND the ports on which it depends cleanly. I tend
  to use a minimal number of ports and packages, and so didn't realize
  that this was such a difficult thing until now.
 
 The problem with deleting a port and the ports on which it depends
 cleanly is that there may be other ports depending on a dependency.  So,
 there needs to be some arbitration to decide what legitimately should go
 and which should stay.
 
 What's needed is a way of doing garbage collection -- reference counts
 plus a way of resolving circular dependencies (which reference counts
 can't handle).

That would be okay for ports you explicitly installed, but not, I think,
for ones that were installed as dependencies that you nevertheless wish
to keep (i.e., that you would have explicitly installed, too, but
couldn't because they were already installed).  So, there still needs to
be some way of arbitrating what you want to retain, akin
to /usr/local/etc/pkg_leaves.exclude, or similar.

As for resolving circular dependencies, I can't think of a legitimate
case where they would arise.  They can't, by definition: the ports
dependencies form a directed acyclic graph (DAG), right?

Cheers,

Paul.
-- 
e-mail: [EMAIL PROTECTED]

Without music to decorate it, time is just a bunch of boring production
 deadlines or dates by which bills must be paid.
--- Frank Vincent Zappa
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: FreeBSD 5.3-RC1 + Speedtouch 330 USB

2004-12-12 Thread Ted Mittelstaedt
Marcel,

  Why are you wasting time with this when you can just buy an
Ethernet version off Ebay for under $10?  Here's some listings
for you:

http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItemcategory=14922item=672962
rd=1

http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItemcategory=14922item=6729197290
rd=1

If youare insistent on going with USB you might try an alcatel
Speedtouch, this is the predicessor modem.  I have one that you
can have for FREE if you want to play with it.

Ted

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Marcel
 Falkiewicz
 Sent: Sunday, December 12, 2004 6:03 AM
 To: [EMAIL PROTECTED]
 Subject: FreeBSD 5.3-RC1 + Speedtouch 330 USB


 Hello,
  I have been trying to run a Thomson Speedtouch 330 USB modem for a
 few days now and I just become more and more upset with this
 situation. I installed the pppoa
 drivers from ports (/usr/ports/net/pppoa) - the most recent version.
 I made required changes in /etc/ppp/ppp.conf, changed the script
 extension (adsl.sh) and when I tried to run the startup script I found
 myself in a very uncomfortable situation:

 [...]
 Dec 12 14:30:24  kernel: ugen0: THOMSON Speed Touch 330, rev
 1.10/4.00, addr 2
 Dec 12 14:30:37  modem_run[5731]: Unable to locate firmware in
 /usr/local/libdata/mgmt.o
 [...]

 But:
 # ls -l /usr/local/libdata/mgmt.o
 -r--r--r--  1 root  wheel  535856 Dec 12 14:27 /usr/local/libdata/mgmt.o

 # uname -a
 FreeBSD  5.3-RC1 FreeBSD 5.3-RC1 #0: Sun Oct 17 01:25:37 UTC 2004
 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

 Did some engage a similar problem with running this damn modem? Thanks
 in advance for any help.

 --
 Regards,
  Marcel Falkiewicz

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


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


RE: Fwd: option COMPAT_13 --- Sorry

2004-12-12 Thread Yudi

 I'm using freebsd v4.9
 I'm finished installed ezm3, but when I configure
 cvsup  especially in :

 # cvsup -g -L 2 /root/ports-supfile
 
 there error for connecting to cvsup server ( I
 tried
 mirror on Japan , Korea and Indonesia)
 
 What happen and what should I do ???
 
 Thanks,
 Best regard



__ 
Do you Yahoo!? 
Take Yahoo! Mail with you! Get it on your mobile phone. 
http://mobile.yahoo.com/maildemo 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: DHCP and 2 subnets

2004-12-12 Thread Joerg Pulz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Sun, 12 Dec 2004, goose bla wrote:
hello,
I have router with inet and allias. 10.1.0.0/24 10.2.0.0/24.
i want allot to pc(client) their IP by their MAC adress. but it's going
only with one subnet. i can allot IP only to one subnet.
[stripped]
Hi,
don't know if i got you roght, but here are my thoughts.
if you want to serve more than one ip network over one physical wire you 
have to define a shared network.
here is an example. (remeber, host declarations have to be inside! the 
subnet they belong to)

shared-network MYNETWORK {
subnet 10.1.0.0 netmask 255.255.255.0 {
range 10.1.0.31 10.1.0.60;
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option domain-name bla.org;
option domain-name-servers 222.222.222.22;
option routers 10.1.0.1;
host pc1 {
hardware ethernet 00:33:11:22:bb:94;
fixed-address 10.1.0.10;
}
}
subnet2 10.2.0.0 netmask 255.255.255.0 {
range 10.2.0.31 10.2.0.60;
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option domain-name bla.org;
option domain-name-servers 222.222.222.22;
option routers 10.2.0.1;
host pc2 {
hardware ethernet 00:44:44:22:bb:94;
fixed-address 10.2.0.10;
}
}
}
as far as i can tell, this setups work here for me. i don't know the exact 
behavior of dhcpd if you declare dynamic ranges in more than one ip 
subnet. i've only one dynamic range in one! subnet.

regards
Joerg
- -- 
The beginning is the most important part of the work.
-Plato
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.6 (FreeBSD)

iD8DBQFBvT7fSPOsGF+KA+MRAntAAKCVOy85a1hGnjzJPPZZrBHEszQ+kACcCT7x
d/2WSZOBLILhENRRV3BnJqc=
=v6L+
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Mounting hard drive from a live cd?

2004-12-12 Thread Jorge Mario G.
hi there
how do I mount the hard drive from a live cd?
I\m using fressbie


thanks

=


_
Do You Yahoo!?
Información de Estados Unidos y América Latina, en Yahoo! Noticias.
Visítanos en http://noticias.espanol.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]