Re: I need a better way to loop in the shell...

2005-12-13 Thread Björn König
Hello user, This worked for me: xargs -I% rm % < file Björn ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Can't connect to local MySQL server

2005-12-13 Thread Björn König
Jose Borquez schrieb: I am attempting to create a mysql database so that I can install Group Office using mysqladmin create groupoffice and I keep getting the following errors: mysqladmin: connect to server at 'localhost' failed error: 'Can't connect to local MySQL server through socket '/tmp/

Re: When using make install for php5 it fails

2005-12-13 Thread Björn König
Jose Borquez schrieb: When attempting to install php5 from ports it attempts to download, but I get the following errors: Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/php-5.1.1.tar.bz2: File unavailable

Re: Getting the network traffic amount since the interface went up

2005-12-13 Thread Parv
in message <[EMAIL PROTECTED]>, wrote Chuck Swiger thusly... > > Parv wrote: ... > > Is there a way to find out the amount of traffic (in & out) > > since a network interface has been up (not since the OS has been > > up)? > > There are lots of solutions to this problem, it kinda depends on > what

Can't connect to local MySQL server

2005-12-13 Thread Jose Borquez
I am attempting to create a mysql database so that I can install Group Office using mysqladmin create groupoffice and I keep getting the following errors: mysqladmin: connect to server at 'localhost' failed error: 'Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)' Check

nfs exporting mounted iso files ?

2005-12-13 Thread Bill Schoolcraft
Hello Family, I have been trying to export four mounted iso images under /mnt on my FreeBSD-5.4 box via nfs and I can export everything under /mnt but the iso's don't show up on the client, only the directories. First I mounted all the iso's with the following series of commands. mdconfig -a -t

doubts

2005-12-13 Thread Anirban Adhikary
Hi guys This is Anirban. I have a doubts on the following question. How to write a shell program that will check whether a server is up or down (on ping) and log the report to a file. Hope i will receive my answer soon. With regards Anirban. ___ freebs

Re: you need mirror from israel?

2005-12-13 Thread Chuck Swiger
YairNet LinuxServ wrote: > Hello > we Compay WebHosting (Www.linuxserv.co.il) > You need to mirror freebsd from israel ,if yes give me help so mirror > good day. It's likely that this document will tell you all about mirroring FreeBSD: http://www.freebsd.org/doc/en_US.ISO8859-1/articles/hubs/art

Re: kern.maxdsiz "big memory/tuning" questions

2005-12-13 Thread Chuck Swiger
Michael Dexter wrote: [ ... ] > However, I am not clear if: > > 1. It is permitted to use "M" and "G" notation (kern.maxsiz="1G")? - > some say yes, some say no and I would prefer not risk the system not > booting. Using "1G" or some number followed by "M" is working for me in 5.x and 6.0. > 2.

Re: Getting the network traffic amount since the interface went up

2005-12-13 Thread Chuck Swiger
Parv wrote: > I am interested to know the total amount of data passed through a > network interface (em0 in my case) since the interface went up. So > far, i have seen that pload, nload, & "netstat -b -I" report the > amount since the operating system has been up, not since the new > ethernet conn

RE: Polling For 100 mbps Connections? (Was Re: Freebsd Theme Song)

2005-12-13 Thread Ted Mittelstaedt
>-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] Behalf Of Drew Tomlinson >Sent: Tuesday, December 13, 2005 6:48 AM >To: Ted Mittelstaedt >Cc: Michael Vince; [EMAIL PROTECTED]; freebsd-questions@freebsd.org; >Kris Kennaway >Subject: Re: Polling For 100 mbps Connecti

RE: FreeBSD router two DSL connections

2005-12-13 Thread Ted Mittelstaedt
>-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] Behalf Of Gayn Winters >Sent: Tuesday, December 13, 2005 7:49 AM >To: 'Ted Mittelstaedt'; 'Winelfred G. Pasamba'; 'Yance Kowara' >Cc: freebsd-questions@freebsd.org >Subject: RE: FreeBSD router two DSL connections > >

RE: Lousy network performance ...

2005-12-13 Thread Ted Mittelstaedt
Turn on SNMP on your router plugged into the adsl modem and use a tool like mrtg to graph the circuit utilization. Also, access your adsl modem's error counters and find out what your signal to noise ratio is, what your received decibel level is, if your taking errors, and such. Some of the cons

Re: I need a better way to loop in the shell...

2005-12-13 Thread Norberto Meijome
user wrote: I always do loops in /bin/sh like this: for f in `cat file` ; do rm -rf $f ; done Easy. I like doing it like this. The problem is, when I am dealing with an input list that has multiple words per line, this chops it up and treats every word as a new line... For instance, lets say

When using make install for php5 it fails

2005-12-13 Thread Jose Borquez
When attempting to install php5 from ports it attempts to download, but I get the following errors: Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/php-5.1.1.tar.bz2: File unavailable (e.g., file not found, n

Re: Multiple CPUs

2005-12-13 Thread Kris Kennaway
On Tue, Dec 13, 2005 at 08:50:39PM -0700, Bob Lee wrote: > Quoting Robert Fitzpatrick <[EMAIL PROTECTED]>: > > Here's my top procs: > > > > last pid: 2079; load averages: 8.31, 8.91, 8.43up 0 > > +00:35:15 20:57:53 > > 149 processes: 13 running, 136 sleeping > > Robert, > FWIW, I di

Re: I need a better way to loop in the shell...

2005-12-13 Thread Robert Eckardt
On Tue, 13 Dec 2005 23:44:42 -0500 (EST), user wrote > I always do loops in /bin/sh like this: > > for f in `cat file` ; do rm -rf $f ; done Hi, try instead: cat file | while read f ; do rm -f "$f" ; done In your command `file' is presented as 10,000 Maniacs MTV Unplugged - 01 - These Are Days

I need a better way to loop in the shell...

2005-12-13 Thread user
I always do loops in /bin/sh like this: for f in `cat file` ; do rm -rf $f ; done Easy. I like doing it like this. The problem is, when I am dealing with an input list that has multiple words per line, this chops it up and treats every word as a new line... For instance, lets say I have a fil

Re: IMAP-UW Security question

2005-12-13 Thread Frank Steinborn
Jose Borquez wrote: > SECURITY REPORT: > This port has installed the following binaries which execute with > increased privileges. > /usr/local/libexec/mlock > > What can I do to minimize this security risk? Do I create an mlock user? In fact, every port that installs a suid-binary wil

Re: Multiple CPUs

2005-12-13 Thread Bob Lee
Quoting Robert Fitzpatrick <[EMAIL PROTECTED]>: > Here's my top procs: > > last pid: 2079; load averages: 8.31, 8.91, 8.43up 0 > +00:35:15 20:57:53 > 149 processes: 13 running, 136 sleeping Robert, FWIW, I did some research a short time ago on utilization and other aspects of watchi

IMAP-UW Security question

2005-12-13 Thread Jose Borquez
Just recently installed IMAP-UW through ports and once the install finished I got the following security message: SECURITY REPORT: This port has installed the following binaries which execute with increased privileges. /usr/local/libexec/mlock What can I do to minimize this security r

Re: pine

2005-12-13 Thread Mac Mason
On Wed, Dec 14, 2005 at 02:12:38PM +1100, caleb wrote: > Would IPSEC be an option for securing my login > details or kerberos? Nope. Unless the ISP's mail server supports some form of encryption, there's nothing you can do. On the other hand, your desktop machine is probably only about two hops

Re: can't mount msdos fs on freebsd6?

2005-12-13 Thread Jeff D. Hamann
ah... that's the ticket! thanks! jeff. - Original Message - From: "Tino Boss" <[EMAIL PROTECTED]> To: Cc: "Jeff D. Hamann" <[EMAIL PROTECTED]> Sent: Tuesday, December 13, 2005 10:49 AM Subject: Re: can't mount msdos fs on freebsd6? Jeff D. Hamann wrote: mothra# mount -t msdos /

Re: pine

2005-12-13 Thread caleb
On Wed, 14 Dec 2005, RW wrote: If the server supports neither ssl, nor any form secure authentication, there nothing you can do to protect your password. Hi RW, Thanks for your reply. Would IPSEC be an option for securing my login details or kerberos? caleb -- There is no spoon _

Re: ipfilter question

2005-12-13 Thread Elmer Rivera
Got it working. forgot to add security.none after *.notice; Thanks guys... -- Elmer Rivera, http://www.vizcayano.com, http://youand.i.ph ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscr

Re: ipfilter question

2005-12-13 Thread Parv
in message <[EMAIL PROTECTED]>, wrote Rob Lytle thusly... > > > > > > Here's my setup: ... > > > in /etc/syslog.conf > > > > yes, there is no other security.* facility, actually i got it > > working Please keep the attribution & attribute the respective authors. > I have the problem that ipmo

Re: Multiple CPUs

2005-12-13 Thread Kris Kennaway
On Tue, Dec 13, 2005 at 09:00:13PM -0500, Robert Fitzpatrick wrote: > On Tue, 2005-12-13 at 14:54 -0500, Kris Kennaway wrote: > > On Tue, Dec 13, 2005 at 02:12:57PM -0500, Robert Fitzpatrick wrote: > > > I guess this means my new server is only using one of my CPUs? > > > > > > esmtp# grep CPU /va

Re: pine

2005-12-13 Thread RW
On Wednesday 14 December 2005 01:01, caleb wrote: > Hi everyone, > I am having some problems setting up pine && .pinerc using > FreeBSD 6.0 - STABLE. My ISP uses POP and I am using thier SMTP for > outgoing. I spoke to the helpdesk and the POP server does not support ssl. > > I h

Re: Multiple CPUs

2005-12-13 Thread Robert Fitzpatrick
On Tue, 2005-12-13 at 14:54 -0500, Kris Kennaway wrote: > On Tue, Dec 13, 2005 at 02:12:57PM -0500, Robert Fitzpatrick wrote: > > I guess this means my new server is only using one of my CPUs? > > > > esmtp# grep CPU /var/log/dmesg.today > > CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-clas

Re: version 6!

2005-12-13 Thread John Nielsen
After realizing how long I made this little explanation, I decided it might be helpful to someone if I made it available on the freebsd-questions mailing list. List: take the following for what it's worth. On Tuesday 13 December 2005 07:00 pm, ntkonn wrote: > Crap amighty, I just upgraded FreeB

pine

2005-12-13 Thread caleb
Hi everyone, I am having some problems setting up pine && .pinerc using FreeBSD 6.0 - STABLE. My ISP uses POP and I am using thier SMTP for outgoing. I spoke to the helpdesk and the POP server does not support ssl. Pine was compiled and installed with support for POP3 here are some

Re: /etc/mail/local-host-names

2005-12-13 Thread Wojciech Puchar
I think you need to put that in /etc/mail/access as 10 RELAY and then do a #make maps Check the Makefile in /etc/mail/ for more on the make option Read /usr/share/sendmail/cf/README for more info. thanks. so what does local-host-names control? exactly as filename states? what domain does

Re: /etc/mail/local-host-names

2005-12-13 Thread Wojciech Puchar
to enable anybody in IPv4 10.0.0.0/8 to relay through this server 10. seems not to work. I think--but don't *quote* me:) -- that the host-names file does eactly what ^Cwhostname does in sendmail.cf. So if your host were named foo, you would put ^foo in local-ho

Re: Off-Topic

2005-12-13 Thread Pietro Cerutti
I'm for this one: The best way to accellerate a computer running Windows is at 9.81 m/s^2 by Roland It's wonderful! -- Pietro Cerutti <[EMAIL PROTECTED]> Beansidhe - SwiSS Death / Thrash Metal Windows: "Where do you want to go today?" Linux: "Where do you want to go tomorrow?" FreeBSD: "Are

Re: ipfilter question

2005-12-13 Thread Rob Lytle
> > Here's my setup: > > > > /etc/rc.conf > > ipmon_enable="YES" > > ipmon_flags="-Dns" > > > > /etc/syslog.conf > > security.* /var/log/ipfilter.log > > > > > > Make sure you don't have any other security.* facility specified in > > /etc/syslog.conf > > yes, there is no other security.

kern.maxdsiz "big memory/tuning" questions

2005-12-13 Thread Michael Dexter
Hello, I'm trying to RTFM but the M does not appear to exist. I am dealing with processes over 512MB in size on 6.0 on x86 and am using these loader.conf tunables as suggested by MySQL and other documentation: kern.maxdsiz="1073741824" # 1GB kern.dfldsiz="1073741824" # 1GB kern.maxssiz="1342

Re: ipfilter question

2005-12-13 Thread Elmer Rivera
#uname -a FreeBSD hcggw1.hcg.com.ph 5.4-RELEASE-p8 FreeBSD 5.4-RELEASE-p8 #0: Sat Dec 10 09:49:16 PHT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/HCGGW1 i386 > > setup /var/log/ipfilter.log as my log file. > > How/where did you set this up? # touch /var/log/ipfilter.log > > modified syslog

Getting the network traffic amount since the interface went up

2005-12-13 Thread Parv
I am interested to know the total amount of data passed through a network interface (em0 in my case) since the interface went up. So far, i have seen that pload, nload, & "netstat -b -I" report the amount since the operating system has been up, not since the new ethernet connection has been (re)es

Re: Ports vs Packages

2005-12-13 Thread Chris
Jose Borquez wrote: > Nathan Vidican wrote: > >> Jose Borquez wrote: >> >>> When installing the same software using either the ports or a package >>> do they both install in the same locations? For Example installing >>> Apache from ports on one server and installing Apache from packages >>> on a

Re: Ports vs Packages

2005-12-13 Thread Jose Borquez
Nathan Vidican wrote: Jose Borquez wrote: When installing the same software using either the ports or a package do they both install in the same locations? For Example installing Apache from ports on one server and installing Apache from packages on another server would still use the same l

Re: Lousy network performance ...

2005-12-13 Thread Chris
Gayn Winters wrote: >>-Original Message- >>From: [EMAIL PROTECTED] >>[mailto:[EMAIL PROTECTED] On Behalf Of Kiffin Gish >>Sent: Tuesday, December 13, 2005 1:16 AM >>To: freebsd-questions@freebsd.org >>Subject: Lousy network performance ... >> >> >>I am having problems with a slow Internet

Re: Off-Topic

2005-12-13 Thread Parv
in message <[EMAIL PROTECTED]>, wrote Roland Smith thusly... > > > Unix _is_ user-friendly. It's just a little picky about who it's > friends are. That is due to Tollef Fog Heen ... http://groups.google.com/group/linux.debian.maint.boot/message/a5ad57a7694c5549?dmode=source - Parv -- _

Re: Off-Topic

2005-12-13 Thread Robert Marella
On Tue, 13 Dec 2005 22:56:47 +0100 Roland Smith <[EMAIL PROTECTED]> wrote: > On Tue, Dec 13, 2005 at 09:35:18PM +, Uncle Deejy-Pooh wrote: > > We've another contender for the 'Signature-of-the-Forum' award. > > This one spotted from Jayesh Jayan: > >"The box said "Requires Windows 95, NT,

FBSD4 to FBSD5 gone bad

2005-12-13 Thread Tuc at T-B-O-H
Hi, Following http://www.freebsd.org/releases/5.3R/migration-guide.html and I ran into a problem. When I boot to single user mode It sticks and can't get farther. I'm typing this by hand atapci0: port 0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 5.1 on pci0 atapci0: Lazy allocatio

Re: Order of installation for Apache, PHP, IMAP, and MySQL

2005-12-13 Thread Kevin Kinsey
Jose Borquez wrote: I need to install and configure Apache, PHP, IMAP, and MySQL because I would like to install Group Office which is a groupware application sweet. I need to know if there is a specific order that I need to install the applications listed above. Any help on this would be gre

Re: sysinstall swap node problem

2005-12-13 Thread Josh Endries
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Josh Endries wrote: > I'm having the same problem but haven't figured it out, maybe it's > just a bug in sysinstall? If I don't use diskLabelCommit and wait > until installCommit later it continues, but that doesn't make sense > to me; there's no more

sysinstall swap node problem

2005-12-13 Thread Josh Endries
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 So anyone have a resolution to this problem asked last year: http://lists.freebsd.org/pipermail/freebsd-questions/2004-March/040502.html http://lists.freebsd.org/pipermail/freebsd-questions/2004-March/042082.html I'm having the same problem but haven

Re: Off-Topic

2005-12-13 Thread Roland Smith
On Tue, Dec 13, 2005 at 09:35:18PM +, Uncle Deejy-Pooh wrote: > We've another contender for the 'Signature-of-the-Forum' award. > This one spotted from Jayesh Jayan: >"The box said "Requires Windows 95, NT, or better", so I installed > Linux." > Although I'm SURE it should read ". Free

Re: Ports vs Packages

2005-12-13 Thread Nathan Vidican
Jose Borquez wrote: When installing the same software using either the ports or a package do they both install in the same locations? For Example installing Apache from ports on one server and installing Apache from packages on another server would still use the same locations for both? Than

Off-Topic

2005-12-13 Thread Uncle Deejy-Pooh
We've another contender for the 'Signature-of-the-Forum' award. This one spotted from Jayesh Jayan: "The box said "Requires Windows 95, NT, or better", so I installed Linux." Although I'm SURE it should read ". FreeBSD" ! But, still in No1 spot: Windows: "Where do you want to go today?"

Re: HP-UX NFS client

2005-12-13 Thread Darren Henderson
On Tue, 13 Dec 2005, Darren Henderson wrote: synopsis: freebsd NFS server, HP-UX NFS client. Client succeeds if it uses automount to mount the volumes but fails if a manual mount is used despite options. question: anyone have experience in a similar enviroment that can point me toward a so

Re: Ports vs Packages

2005-12-13 Thread albi
On Tue, 13 Dec 2005 13:17:01 -0800 Jose Borquez <[EMAIL PROTECTED]> wrote: > When installing the same software using either the ports or a > package do they both install in the same locations? For Example > installing Apache from ports on one server and installing Apache from > packages on anoth

Re: Ports vs Packages

2005-12-13 Thread Kris Kennaway
On Tue, Dec 13, 2005 at 01:17:01PM -0800, Jose Borquez wrote: > When installing the same software using either the ports or a package > do they both install in the same locations? For Example installing > Apache from ports on one server and installing Apache from packages on > another server wo

Order of installation for Apache, PHP, IMAP, and MySQL

2005-12-13 Thread Jose Borquez
I need to install and configure Apache, PHP, IMAP, and MySQL because I would like to install Group Office which is a groupware application sweet. I need to know if there is a specific order that I need to install the applications listed above. Any help on this would be greatly appreciated.

Ports vs Packages

2005-12-13 Thread Jose Borquez
When installing the same software using either the ports or a package do they both install in the same locations? For Example installing Apache from ports on one server and installing Apache from packages on another server would still use the same locations for both? Thank you in advance, Jos

Re: /etc/mail/local-host-names

2005-12-13 Thread Charles Swiger
On Dec 13, 2005, at 3:03 PM, Wojciech Puchar wrote: how line should look at this file to enable anybody in IPv4 10.0.0.0/8 to relay through this server 10. seems not to work. As someone else has said, local-host-names controls class W, the list of hosts for which mail will be delivered loc

Thinkpad 380XD with CardBus problems. $PIR: ROUTE_INTERRUPT Failed.

2005-12-13 Thread Andrew Walker
I have installed FreeBSD 6.0 on my Thinkpad 380XD, but I cannot get networking to work, and I believe it is because there is a conflict with my cardbus initializing. The card is a Xircom RBEM58G-100, and is listed as supported under the dc driver. Here are the relavent messages from /var/log/messa

Re: Multiple CPUs

2005-12-13 Thread Pietro Cerutti
On 12/13/05, Robert Fitzpatrick <[EMAIL PROTECTED]> wrote: > I guess this means my new server is only using one of my CPUs? > > esmtp# grep CPU /var/log/dmesg.today > CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU) > Hyperthreading: 2 logical CPUs > cpu0: on acpi0 > > Can someone

Re: /etc/mail/local-host-names

2005-12-13 Thread Dave McCammon
--- Wojciech Puchar <[EMAIL PROTECTED]> wrote: > how line should look at this file > > to enable anybody in IPv4 10.0.0.0/8 to relay > through this server > > 10. > > seems not to work. > > thanks I think you need to put that in /etc/mail/access as 10 RELAY and then do a #make maps C

Re: /etc/mail/local-host-names

2005-12-13 Thread Giorgos Keramidas
On 2005-12-13 12:15, Gary Kline <[EMAIL PROTECTED]> wrote: >On Tue, Dec 13, 2005 at 09:03:11PM +0100, Wojciech Puchar wrote: >> how line should look at this file >> >> to enable anybody in IPv4 10.0.0.0/8 to relay through this server >> >> 10. >> >> seems not to work. > > I think--but don't *quote*

Re: /etc/mail/local-host-names

2005-12-13 Thread Gary Kline
On Tue, Dec 13, 2005 at 09:03:11PM +0100, Wojciech Puchar wrote: > how line should look at this file > > to enable anybody in IPv4 10.0.0.0/8 to relay through this server > > 10. > > seems not to work. I think--but don't *quote* me:) -- that the host-names file does eactly what

/etc/mail/local-host-names

2005-12-13 Thread Wojciech Puchar
how line should look at this file to enable anybody in IPv4 10.0.0.0/8 to relay through this server 10. seems not to work. thanks ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscrib

Re: Multiple CPUs

2005-12-13 Thread Kris Kennaway
On Tue, Dec 13, 2005 at 02:12:57PM -0500, Robert Fitzpatrick wrote: > I guess this means my new server is only using one of my CPUs? > > esmtp# grep CPU /var/log/dmesg.today > CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU) > Hyperthreading: 2 logical CPUs > cpu0: on acpi0 > > C

Re: Multiple CPUs

2005-12-13 Thread Charles Swiger
On Dec 13, 2005, at 2:12 PM, Robert Fitzpatrick wrote: I guess this means my new server is only using one of my CPUs? esmtp# grep CPU /var/log/dmesg.today CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU) Hyperthreading: 2 logical CPUs cpu0: on acpi0 Can someone point me to the

Re: May be a question repeated

2005-12-13 Thread Jayesh Jayan
Hi Wash, Thank you for your mail. I tried the option and it worked fine. On 12/13/05, Odhiambo Washington <[EMAIL PROTECTED]> wrote: > > * On 13/12/05 04:15 +0530, Jayesh Jayan wrote: > > Hi, > > > > I have a server which runs Apache/1.3.33 (Unix) and exim 4.53-0 on a > FreeBSD > > 5.4. > > > >

Re: Multiple CPUs

2005-12-13 Thread Ian Lord
At 14:12 2005-12-13, Robert Fitzpatrick wrote: I guess this means my new server is only using one of my CPUs? esmtp# grep CPU /var/log/dmesg.today CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU) Hyperthreading: 2 logical CPUs cpu0: on acpi0 Can someone point me to the best doc

Re: Multiple CPUs

2005-12-13 Thread Sean
Robert Fitzpatrick wrote: I guess this means my new server is only using one of my CPUs? esmtp# grep CPU /var/log/dmesg.today CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU) Hyperthreading: 2 logical CPUs cpu0: on acpi0 Can someone point me to the best doc for enabling use of

RE: Multiple CPUs

2005-12-13 Thread Tamouh H.
> Can someone point me to the best doc for enabling use of both > CPUs on the FreeBSD 5.4 server? I assume the kernel needs > built with options. > > -- > Robert This is what you need in your Kernel: options SMP # ENABLE MULTI PROCESSOR device acpi

Multiple CPUs

2005-12-13 Thread Robert Fitzpatrick
I guess this means my new server is only using one of my CPUs? esmtp# grep CPU /var/log/dmesg.today CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU) Hyperthreading: 2 logical CPUs cpu0: on acpi0 Can someone point me to the best doc for enabling use of both CPUs on the FreeBSD 5.4

Re: Re[2]: Polling For 100 mbps Connections? (Was Re: Freebsd Theme Song)

2005-12-13 Thread Danial Thom
--- Cezar Fistik <[EMAIL PROTECTED]> wrote: > Hello, > > Just a remark. I'm using an "Intel PRO/1000 MT > Dual Port Gigabit Copper > CAT5 Server PCI express Adapter" in a box > serving as router. Pumping 150Mbps > through it with 99% idle CPU and 1% interrupts, > polling enabled. It's > a litle

Re: Polling For 100 mbps Connections? (Was Re: Freebsd Theme Song)

2005-12-13 Thread Danial Thom
--- Drew Tomlinson <[EMAIL PROTECTED]> wrote: > Ted Mittelstaedt wrote, On 12/13/2005 12:44 AM: > > > > > > >>-Original Message- > >>From: Drew Tomlinson > [mailto:[EMAIL PROTECTED] > >>Sent: Monday, December 12, 2005 12:30 PM > >>To: Ted Mittelstaedt > >>Cc: Michael Vince; [EMAIL PRO

HP-UX NFS client

2005-12-13 Thread Darren Henderson
synopsis: freebsd NFS server, HP-UX NFS client. Client succeeds if it uses automount to mount the volumes but fails if a manual mount is used despite options. question: anyone have experience in a similar enviroment that can point me toward a solution? We use HP's Data Protector as an ent

Re: can't mount msdos fs on freebsd6?

2005-12-13 Thread Tino Boss
Jeff D. Hamann wrote: mothra# mount -t msdos /dev/ad0s2 /data mount_msdosfs: /dev/ad0s2: Invalid argument I remember having had a similar problem and it was just a that it was an extended partition and somehow it was not displayed with the correct number in some utility. If that's your case

RE: Polling For 100 mbps Connections? (Was Re: Freebsd Theme Song)

2005-12-13 Thread Danial Thom
--- Ted Mittelstaedt <[EMAIL PROTECTED]> wrote: > > > >-Original Message- > >From: Danial Thom > [mailto:[EMAIL PROTECTED] > >Sent: Monday, December 12, 2005 1:35 PM > >To: Drew Tomlinson; Ted Mittelstaedt > >Cc: Michael Vince; [EMAIL PROTECTED]; > freebsd-questions@freebsd.org; > >Kri

Re[2]: Polling For 100 mbps Connections? (Was Re: Freebsd Theme Song)

2005-12-13 Thread Cezar Fistik
Hello, Just a remark. I'm using an "Intel PRO/1000 MT Dual Port Gigabit Copper CAT5 Server PCI express Adapter" in a box serving as router. Pumping 150Mbps through it with 99% idle CPU and 1% interrupts, polling enabled. It's a litle bit expensive, but it does its job perfectly. -- Best regards

Re: I'm looking for school of freebsd in montreal

2005-12-13 Thread Jon Drews
On 12/12/05, psiinformatique <[EMAIL PROTECTED]> wrote: > #I'm looking for school of freebsd in montreal and i dont find any. Im > #not realy good in BSD, i start to use last year. I use as my main os > #on my laptop to become a normal user, but more i get into it, There is Marketbridge Technolog

Re: port math/maxima broken....

2005-12-13 Thread Mikael Backman
P.U.Kruppa wrote: On Tue, 13 Dec 2005, P.U.Kruppa wrote: On Tue, 13 Dec 2005, Mikael Backman wrote: Hi, Is there anybody who knows when/if this port will be fixed? Is there any similar app in the ports tree? /Mikael I think it isn't completely broken. In its Makefile you can comment the l

Re: getting iwi_firmware to work

2005-12-13 Thread Alex Zbyslaw
Jeff D. Hamann wrote: I have a dual boot machine which I can read the primary ntfs partition (but not the fat32 partition -- very unhappy about that). Generically, there's no problem reading FAT32 partitions and it's the only writeable-and-shareable-with-windows filesystem type, so maybe y

Re: Slices

2005-12-13 Thread Alex Zbyslaw
Kevin Kinsey wrote: Seems I was a tad off in my earlier estimate of "within the last 60 days"... but Googling for " 'boot like linux' freebsd" produces the thread I was thinking of (the initial post of which is here): http://lists.freebsd.org/pipermail/freebsd-questions/2005-March/079428.htm

Re: can't mount msdos fs on freebsd6?

2005-12-13 Thread Andreas Rudisch
On Tue, 2005-12-13 at 09:08 -0800, Jeff D. Hamann wrote: > The results I get back from mount are: > > mothra# mount -t msdos /dev/ad0s2 /data > mount_msdosfs: /dev/ad0s2: Invalid argument > Help? #mount -t msdosfs /dev/ad0s2 /data or #mount_msdosfs /dev/ad0s2 /data -- GnuPG key : 0x2A573565

Re: can't mount msdos fs on freebsd6?

2005-12-13 Thread Alex Zbyslaw
Jeff D. Hamann wrote: Strange, but I can mount an ntfs filesystem (dual boot machine) but not the fat32 partition on a new freebsd 6.0 installation. The drive contains three paritions: /dev/ad0s1 -- 30GB NTFS (winxp) mounted on /winxp /dev/ad0s2 -- 30GB FAT32 (data to be accessed by both winx

Re: Slices

2005-12-13 Thread Kevin Kinsey
Alex Zbyslaw wrote: Kevin Kinsey wrote: A word of probable caution (though I stand ready to be corrected): FreeBSD isn't like Linux in the fact that it expects /boot to be in / (the 'a' slice of whatever disk the bootmgr has been instructed to use)... so a seperate /boot will likely get

Re: can't mount msdos fs on freebsd6?

2005-12-13 Thread Giorgos Keramidas
On 2005-12-13 09:08, "Jeff D. Hamann" <[EMAIL PROTECTED]> wrote: > Strange, but I can mount an ntfs filesystem (dual boot machine) but not the > fat32 partition on a new freebsd 6.0 installation. The drive contains three > paritions: > > /dev/ad0s1 -- 30GB NTFS (winxp) mounted on /winxp > /dev/ad0s

can't mount msdos fs on freebsd6?

2005-12-13 Thread Jeff D. Hamann
Strange, but I can mount an ntfs filesystem (dual boot machine) but not the fat32 partition on a new freebsd 6.0 installation. The drive contains three paritions: /dev/ad0s1 -- 30GB NTFS (winxp) mounted on /winxp /dev/ad0s2 -- 30GB FAT32 (data to be accessed by both winxp and freebsd 6.0) moun

Re: courier-authlib-0.58 dumps core at login

2005-12-13 Thread Louis J. LeBlanc
On Tue, December 13, 2005 11:44 am, Mark Bucciarelli wrote: > On Sun, Dec 11, 2005 at 10:17:16PM -0500, Louis LeBlanc wrote: > >> On 12/11/05 09:44 PM, Louis LeBlanc sat at the `puter and typed: These >> passwords do match, but the debug log shows a rejection. > > I use MySql for users and recently

getting iwi_firmware to work

2005-12-13 Thread Jeff D. Hamann
I'm in the processing of putting together my new FreeBSD 6.0 (downloaded the iso image yesterday) laptop which has a Intel Pro/Wireless 2915ABG wireless card (as well as a firewire ethernet something?). The machine doesn't have a floppy drive and I haven't been able to build the drivers using th

Re: port math/maxima broken....

2005-12-13 Thread P.U.Kruppa
On Tue, 13 Dec 2005, P.U.Kruppa wrote: On Tue, 13 Dec 2005, Mikael Backman wrote: Hi, Is there anybody who knows when/if this port will be fixed? Is there any similar app in the ports tree? /Mikael I think it isn't completely broken. In its Makefile you can comment the line # WITH_CMUCL= ye

RE: Lousy network performance ...

2005-12-13 Thread Gayn Winters
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Kiffin Gish > Sent: Tuesday, December 13, 2005 1:16 AM > To: freebsd-questions@freebsd.org > Subject: Lousy network performance ... > > > I am having problems with a slow Internet DSL-connection, > e

Re: courier-authlib-0.58 dumps core at login

2005-12-13 Thread Mark Bucciarelli
On Sun, Dec 11, 2005 at 10:17:16PM -0500, Louis LeBlanc wrote: > On 12/11/05 09:44 PM, Louis LeBlanc sat at the `puter and typed: These > passwords do match, but the debug log shows a rejection. I use MySql for users and recently noted that if maildir, uid and/or gid is not set properly the auth

Re: Slices

2005-12-13 Thread Alex Zbyslaw
Kevin Kinsey wrote: OK. But then what would be ideal slice size for /, /var, /usr, /boot? A word of probable caution (though I stand ready to be corrected): FreeBSD isn't like Linux in the fact that it expects /boot to be in / (the 'a' slice of whatever disk the bootmgr has been instru

Re: make buildworld failure

2005-12-13 Thread Andreas Rudisch
On Tue, 2005-12-13 at 09:54 -0600, Dan Ross wrote: > I am trying to build a new kernel with smp. I started with make clean > and got no errors. > I then type make buildworld from /usr/src directory > suggestions? 1. You do not need to recompile world if you only want to build a new kernel with

Re: port math/maxima broken....

2005-12-13 Thread P.U.Kruppa
On Tue, 13 Dec 2005, Mikael Backman wrote: Hi, Is there anybody who knows when/if this port will be fixed? Is there any similar app in the ports tree? /Mikael I think it isn't completely broken. In its Makefile you can comment the line # WITH_CMUCL= yes and uncomment WITH_GCL= yes Thi

Re: Slices

2005-12-13 Thread Giorgos Keramidas
On 2005-12-13 16:40, Pietro Cerutti <[EMAIL PROTECTED]> wrote: >On 12/13/05, RW <[EMAIL PROTECTED]> wrote: >>On Tuesday 13 December 2005 10:36, Giorgos Keramidas wrote: OK. But then what would be ideal slice size for /, /var, /usr, /boot? >> >> There's no need for a boot partition; that's a Li

Re: Slices

2005-12-13 Thread Kevin Kinsey
Sasa Stupar wrote: --On 12. december 2005 19:29 -0500 Jerry McAllister <[EMAIL PROTECTED]> wrote: On Mon, 12 Dec 2005 12:40:40 -0600 Kevin Kinsey <[EMAIL PROTECTED]> wrote: > Sasa Stupar wrote: > > > You can also do the same as I did. I have just configured one slice > > named / which >

Re: I'm looking for school of freebsd in montreal.

2005-12-13 Thread David Robillard
Hi Eric, I live in Montréal and I now run around 100 FreeBSD servers. They provide all sorts of services from DNS, SMTP, WWW, Proxy, FTP, Databases, Firewalls, you name it. If you can wait a month or two, I can provide you with basic FreeBSD training and then move on to more specialized setups as

Re: Slices

2005-12-13 Thread Pietro Cerutti
On 12/13/05, Robert Huff <[EMAIL PROTECTED]> wrote: > > Pietro Cerutti writes: > > > > There's no need for a boot partition; that's a Linux practice. > > > > You're right, but I don't feel it as a bad practice... mounting it > > read-only could prevent from many problems, don't you think? > >

Re: Slices

2005-12-13 Thread Robert Huff
Pietro Cerutti writes: > > There's no need for a boot partition; that's a Linux practice. > > You're right, but I don't feel it as a bad practice... mounting it > read-only could prevent from many problems, don't you think? Could, yes. In practice ... never had it happen to me. I'

make buildworld failure

2005-12-13 Thread Dan Ross
I am trying to build a new kernel with smp. I started with make clean and got no errors. I then type make buildworld from /usr/src directory it runs for about an hour then I get: gzip -cn /usr/src/sbin/ip6fw/ip6fw.8 > ip6fw.8.gz ===> sbin/ipf make: don't know how to make bsd.README. Stop *** Err

RE: FreeBSD router two DSL connections

2005-12-13 Thread Gayn Winters
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Ted > Mittelstaedt > > >-Original Message- > >From: [EMAIL PROTECTED] > >[mailto:[EMAIL PROTECTED] Behalf Of Winelfred G. > >Pasamba > >Sent: Monday, December 12, 2005 8:26 AM > >To: Yance Kow

Re: Slices

2005-12-13 Thread Pietro Cerutti
On 12/13/05, RW <[EMAIL PROTECTED]> wrote: > On Tuesday 13 December 2005 10:36, Giorgos Keramidas wrote: > > > > OK. But then what would be ideal slice size for /, /var, /usr, /boot? > > There's no need for a boot partition; that's a Linux practice. You're right, but I don't feel it as a bad pract

  1   2   >