Re: PS/2 problems

2007-07-27 Thread Christian Walther
Hi Tanner, On 27/07/07, Tanner Currie [EMAIL PROTECTED] wrote: Hi I just installed FreeBSD 6.2 and it's working great except my keyboard (PS/2 connected) cuts in and out. I tested the keyboard which works perfectly on another machine. It will work fine for 5 or 10 minutes and then it cuts in

Re: awk question

2007-07-27 Thread n j
awk '{print $(NF-1)}' user.csv Yup, those blank lines will kill it for sure. A sed filter to remove blank lines ahead of the awk statement should allow it to work properly. Or awk only i.e. no sed: awk '!(/^$/) { print $(NF-1) }' user.csv -- Nino

mysql upgrade from 5.0.27 to 5.0.45

2007-07-27 Thread Zbigniew Szalbot
Hello, I currently have mysql Ver 14.12 Distrib 5.0.27. I can see that the most current ports version is 5.0.45. So I tried to portupgrade and it tells me: --- Session started at: Fri, 27 Jul 2007 09:17:39 +0200 ** No need to upgrade 'mysql-server-5.0.45' (= mysql-server-5.0.45). (specify -f

GEOM_MIRROR: Device gm0: provider ad0 disconnected

2007-07-27 Thread Nejc Škoberne
Hello, I have a FreeBSD 5.3 system with two IDE disks. This is the dmesg at boot time: ad0: 117246MB Maxtor 6B120P0/BAH41G10 [238216/16/63] at ata0-master UDMA100 ad2: 117246MB Maxtor 6Y120L0/YAR41BW0 [238216/16/63] at ata1-master UDMA100 GEOM_MIRROR: Device gm0 created (id=2190829866).

mechanical drawing program

2007-07-27 Thread Chris Kottaridis
I do a little woodworking and would like to use a computer drawing program where I could create some mechanical drawings for various jigs and projects I do. Mostly simple things, but would also like to be able to handle some curves if I ever get ambitious enough to design a stripper canoe. I'd

Re: make buildworld fails on 6.2-STABLE

2007-07-27 Thread Jonathan Chen
On Thu, Jul 26, 2007 at 11:12:26AM -0500, J.D. Bronson wrote: so I deleted /usr/src redownloaded from a different mirror and tried make buildworld again... It still failed -but this time at a different point: Standard behaviour of failing hardware - most likely memory. -- Jonathan Chen

Simple SMTP forwarder

2007-07-27 Thread Ernst de Haan
Hi, I need a daemon that will accept SMTP connections and will call the 'sendmail' command to have them transported. I should be able to configure it so it will only accept connections from certain IP addresses. Is there a small, simple and elegant daemon available for this, or will I

Re: mysql upgrade from 5.0.27 to 5.0.45

2007-07-27 Thread Manolis Kiagias
Zbigniew Szalbot wrote: Hello, I currently have mysql Ver 14.12 Distrib 5.0.27. I can see that the most current ports version is 5.0.45. So I tried to portupgrade and it tells me: --- Session started at: Fri, 27 Jul 2007 09:17:39 +0200 ** No need to upgrade 'mysql-server-5.0.45' (=

Re: mysql upgrade from 5.0.27 to 5.0.45

2007-07-27 Thread Zbigniew Szalbot
Hello, On Fri, 27 Jul 2007 11:06:42 +0300, Manolis Kiagias [EMAIL PROTECTED] wrote: Zbigniew Szalbot wrote: Hello, I currently have mysql Ver 14.12 Distrib 5.0.27. I can see that the most current ports version is 5.0.45. So I tried to portupgrade and it tells me: --- Session started at:

Re: porteasy vs portupgrade

2007-07-27 Thread Feargal Reilly
On Thu, 26 Jul 2007 18:02:21 +0100 Adam J Richardson [EMAIL PROTECTED] wrote: To upgrade all ports plus deps, I use sudo portupgrade -aRr, usually inside a screen session so I can disconnect and go do something else for a while, like sleep. [I can't remember what the flags do, I just

Re: mysql upgrade from 5.0.27 to 5.0.45

2007-07-27 Thread Manolis Kiagias
Zbigniew Szalbot wrote: Yes, indeed I now know what happened. The *-server version got upgraded and I was unaware that *-client stayed at 0.27. I was sure that upgrading *-server will upgrade *-client too. Apparently it did not happen: $ pkg_info -Ix mysql mysql-client-5.0.27 Multithreaded

Re: recover corrupt 6.2 installation

2007-07-27 Thread Adam J Richardson
Hi Phil, [or is it Alain?] Alain wrote: It looks like the / partition is corrupt. snip Now, on bootup, the hdd appears to be read correctly but the messages come up: fsck: Bad file descriptor Unknown error; help! init: /rescue/sh on /etc/rc terminated abnormally, going to single user mode

Re: panic : swap_pager

2007-07-27 Thread Adam J Richardson
Hi, Cannot dump. No dump device defined. At least I know what this means. If you don't define a dump device, the swapper can't dump the corrupted swap data anywhere so you can analyse it later. Rather than explain here I recommend you, and everyone else in fact, read and digest these

Re: Redirect Incoming port 80 connections to port 8080.

2007-07-27 Thread Jeff Hedley
On 07/26/2007 04:51 PM, Jeff Hedley wrote: I am having a problem getting a Dansguardian + Squid transparent proxying system going for a client. The following is what i want to do, but cannot figure out how to get it working using ipfw + natd: [Host] - 10.0.0.150/24 - sends request to

updating mysql database

2007-07-27 Thread Robert Huff
David Banning writes: I installed mysql 5.1 on a new system and I want to run a 4.1 database. I notice that not all tables work. Is there a conversion to take the database from 4.1 to 5.1? It is my understanding that you will have to dump (using the appropriate MySQL utilities) the

updating mysql database

2007-07-27 Thread David Banning
I installed mysql 5.1 on a new system and I want to run a 4.1 database. I notice that not all tables work. Is there a conversion to take the database from 4.1 to 5.1? ___ freebsd-questions@freebsd.org mailing list

Re: porteasy vs portupgrade

2007-07-27 Thread Adam J Richardson
Hi Fergal, Ack! I mean Feargal! Sorry... Adam J Richardson ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

ISC bind9 with dynamic DNS update (chroot problem)

2007-07-27 Thread Patrick Dung
Hi I use FreeBSD 6.2 and the base bind9. For dynamic DNS update, bind9 automatically generate the journal file (end in .jnl). The default config is to use chroot and the running user as 'bind'. The problem is that after named is started (/etc/init.d/named start), the default chroot directory

Re: Can't burn cds

2007-07-27 Thread Vince
Sam Lawrance wrote: On 27/07/2007, at 12:35 PM, Paul Schmehl wrote: --On July 26, 2007 5:59:01 PM -0500 Josh Paetzel [EMAIL PROTECTED] wrote: camcontrol isn't going to know anything about IDE devices, it only knows about SCSI. So why does it show the first cd, which is also ide? The

Re: stop portmanager from building mysql-client-4.1.22

2007-07-27 Thread Adam J Richardson
Gerard wrote: On July 25, 2007 at 12:14PM Noah wrote: Even with the following IGNORE settings mysql-4.1.22 is still attempting to be built. # grep IGNORE /usr/local/etc/portmanager/pm-020.conf #IGNORE|editors/openoffice*| #IGNORE|java/jdk14| IGNORE|www/apache13| IGNORE|www/apache13*|

Re: ICH8R and SATA drives at boot

2007-07-27 Thread Adam J Richardson
Bruce Caruthers wrote: During boot, it takes about one minute for every drive I have attached to the SATA ports before I get the listing of detected drives and RAID arrays (Press Ctrl-I to ...). snip Is this normal? I'm thinking it isn't, since I cannot seem to find anyone complaining

Re: Simple SMTP forwarder

2007-07-27 Thread Giorgos Keramidas
On 2007-07-27 09:40, Ernst de Haan [EMAIL PROTECTED] wrote: Hi, I need a daemon that will accept SMTP connections and will call the 'sendmail' command to have them transported. I should be able to configure it so it will only accept connections from certain IP addresses. That's precisely the

Re: make and gmake on FreeBSD

2007-07-27 Thread Dima Sorkin
Hi. See below. Lots of software sources are configured with GNU autotools, which is why a lot of third party software will only compile with GNU make. In the case of dealii, not only are its sources configured with autotools, but I looked at their docs and at

Re: make and gmake on FreeBSD

2007-07-27 Thread Reid Linnemann
Written by Dima Sorkin on 07/26/07 16:37 Hi. Thank you very much. See below. Regards, Dima. On 7/27/07, Nikola Lecic wrote: No, make (BSD make) is a part of FreeBSD, gmake (GNU make) is a third-party application, available through devel/gmake port. They _are_ different. Yes, I forgot there

RE: Please Help with Confusion about ipfw rules.

2007-07-27 Thread fbsd2
I use the sample ipfw rules with keep state as shown in the handbook firewall section. People on this list don't have ESP so they can't read your mind about what rules you have coded. Posting your ipfw rule set will go a long way to getting a response from readers of this list. That being said I

php4 compile errors - need some help

2007-07-27 Thread Andreas Widerøe Andersen
I need some help identifying what causes this error and how to fix it: #portupgrade php4 [snip] mv -f ext/standard/base64.o ext/standard/base64.lo /bin/sh /usr/ports/lang/php4/work/php-4.4.7/libtool --preserve-dup-deps --mode=compile cc -Iext/standard/

Re: cdrecord on fbsd-6.1-R amd64

2007-07-27 Thread sac
On 7/18/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Not at amd64... I've tried this option and the output is cannot open scsi driver; for possible transport specifiers try cdrecord-dev --help. I've searched man cdrecord and it tells about some integer just put after dev which is called cam

Re: Can't burn cds

2007-07-27 Thread Paul Schmehl
--On Friday, July 27, 2007 13:53:19 +0100 Vince [EMAIL PROTECTED] wrote: Sam Lawrance wrote: On 27/07/2007, at 12:35 PM, Paul Schmehl wrote: --On July 26, 2007 5:59:01 PM -0500 Josh Paetzel [EMAIL PROTECTED] wrote: camcontrol isn't going to know anything about IDE devices, it only knows

Re: porteasy vs portupgrade

2007-07-27 Thread Adam J Richardson
Hi Fergal, Is there a tutorial out there somewhere that tells people to use -aRr? The number of times I see this in FreeBSD related fora is unreal. Yes, there is a tutorial. It's either Dru Lavigne or Michael Lucas who is the culprit. One second and I'll find the URL.

error on console on startup?

2007-07-27 Thread J.D. Bronson
Jul 27 06:18:06 router kernel: Starting devd. Jul 27 06:18:07 router kernel: hw.acpi.cpu.cx_lowest: Jul 27 06:18:07 router kernel: C1 Jul 27 06:18:07 router kernel: Jul 27 06:18:07 router kernel: sysctl: Jul 27 06:18:07 router kernel: hw.acpi.cpu.cx_lowest Jul 27 06:18:07 router kernel: : Jul 27

Re: Can't burn cds

2007-07-27 Thread Paul Schmehl
--On Friday, July 27, 2007 04:54:18 + Pollywog [EMAIL PROTECTED] wrote: On Friday 27 July 2007 02:38:31 Paul Schmehl wrote: --On July 27, 2007 2:07:47 AM + Pollywog [EMAIL PROTECTED] wrote: I had trouble getting CD burning to work, but the FreeBSD Handbook had the info I needed to

Re: mechanical drawing program

2007-07-27 Thread B H
Chris Kottaridis skrev: I do a little woodworking and would like to use a computer drawing program where I could create some mechanical drawings for various jigs and projects I do. Mostly simple things, but would also like to be able to handle some curves if I ever get ambitious enough to design

Re: make buildworld fails on 6.2-STABLE

2007-07-27 Thread JD Bronson
At 08:19 PM 7/27/2007 +1200, Jonathan Chen wrote: On Thu, Jul 26, 2007 at 11:12:26AM -0500, J.D. Bronson wrote: so I deleted /usr/src redownloaded from a different mirror and tried make buildworld again... It still failed -but this time at a different point: Standard behaviour of failing

Re: Can't burn cds

2007-07-27 Thread Sam Lawrance
On 27/07/2007, at 12:35 PM, Paul Schmehl wrote: --On July 26, 2007 5:59:01 PM -0500 Josh Paetzel [EMAIL PROTECTED] wrote: camcontrol isn't going to know anything about IDE devices, it only knows about SCSI. So why does it show the first cd, which is also ide? The device listed by

Xvnc query to gdm failing

2007-07-27 Thread Adam J Richardson
Hi all, I'm trying to use VNC to log into my FreeBSD laptop from another laptop [why? to learn how], but I'm stuck. I'm logged into gdm using display 0, typing this email at the keyboard that's physically attached to the gdm box. I'm getting the grey screen problem when I log in remotely

Re: updating mysql database

2007-07-27 Thread Gabor Kovesdan
David Banning escribió: I installed mysql 5.1 on a new system and I want to run a 4.1 database. I notice that not all tables work. Is there a conversion to take the database from 4.1 to 5.1? I think you only have to run REPAIR TABLE or OPTIMIZE TABLE on the broken tables. IIRC, the indexing

Please Help with Confusion about ipfw rules. Solved.

2007-07-27 Thread Martin McCormick
fbsd2 writes: I use the sample ipfw rules with keep state as shown in the handbook they do work fine. They just aren't meant for the kind of load they were under. I needed to know how to get the same functionality by other means. If you use the keep-state directive, high traffic can

Re: awk question

2007-07-27 Thread Martin McCormick
n j writes: Or awk only i.e. no sed: awk '!(/^$/) { print $(NF-1) }' user.csv That's right. I originally suggested the sed and then was thinking about it as I walked home yesterday and knew that awk could test for the blank line condition before committing suicide.:-) Martin

Re: Xvnc query to gdm failing

2007-07-27 Thread Pollywog
sudo find / | grep gdm.conf yields nothing. Where is it storing its settings if not in gdm.conf? Did you check /usr/local/etc/gdm/ ? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To

How to get best results from FreeBSD-questions

2007-07-27 Thread Greg Lehey
How to get the best results from FreeBSD questions. === Last update $Date: 2005/08/10 02:21:44 $ This is a regular posting to the FreeBSD questions mailing list. If you got it in answer to a message you sent, it means that the sender thinks that

The Complete FreeBSD: errata and addenda

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

imap errors with vpn connections

2007-07-27 Thread Mark Busby
I am running Freebsd 6.2-p6 with eGroupWare-1.2.106_1, dovecot-1.0.r2 and mpd-3.18_5. When I connect from home via vpn to the server then try to check mail thru egroupware I get imap authentication errors. Anyone at work checking their mail will also get the same error, kill the vpn

Re: updating mysql database

2007-07-27 Thread Hakan K
Although MySQL has worked very hard to ensure a high level of quality, protect your data by making a backup as you would for any other software beta release. MySQL generally recommends that you dump and reload your tables from any previous version to upgrade to 5.2. Troy http://primoris.com On

freebsd pear port

2007-07-27 Thread Tofig Suleymanov
Hello list, I've written an email to Pear port maintainer - but had no answer. Is there anybody who can advice on below. Many thanks, Tofig. Hello Alex, first of all big thanks for maintaining the PEAR port for the FreeBSD operating system ! Excellent work ! If you have a spare minute

Re: Xvnc query to gdm failing

2007-07-27 Thread Adam J Richardson
Pollywog wrote: sudo find / | grep gdm.conf yields nothing. Where is it storing its settings if not in gdm.conf? Did you check /usr/local/etc/gdm/ ? Ah... thanks. We both got halfway there, thus yielding a complete solution. For some reason gdm.conf exists in some versions of gdm before

Re: [kde-freebsd] BEL (primarily for vi).

2007-07-27 Thread Michael Nottebrock
Gary Kline schrieb: Sorry for the late reply, I simply forgot. Sounds like a good guess! Since Gnome is my main desktop, where do I find the KDE control center/system notifications? The executable is called kcontrol and is installed by the x11/kdebase3 port. Bear with

Re: Can't burn cds

2007-07-27 Thread Andriy Babiy
I had trouble getting CD burning to work, but the FreeBSD Handbook had the info I needed to get it to work. I had to modify my fstab and in order to use k3b, I had to mount the CD on the command line first. It won't work if the CD is not mounted first, it's not as easy as it is in Linux,

emacs22 and portsdb

2007-07-27 Thread Duane Winner
Hello, We've been having a problem with generating the ports Index ever since upgrading to emacs22. As per /usr/ports/UPDATING, we added EMACS_PORT_NAME=*emacs22* to /etc/make.conf Everything went fine. Now running emacs22. But ever since, our daily routine of cvsup'ing and portsdb -Uu

Re: [kde-freebsd] BEL (primarily for vi).

2007-07-27 Thread Gary Kline
On Fri, Jul 27, 2007 at 09:11:03PM +0200, Michael Nottebrock wrote: Gary Kline schrieb: Sorry for the late reply, I simply forgot. Sounds like a good guess! Since Gnome is my main desktop, where do I find the KDE control center/system notifications? The executable is called

Remote Execution of sudo Command Hangs.

2007-07-27 Thread Martin McCormick
We have 3 FreeBSD systems. One is trying to use ssh and sudo to run commands on two other systems. The remote command being executed is: ssh remote.system.domain sudo dhcpreset dhcpreset is an expect script most of which is shown here: spawn $env(SHELL) expect -exact \# send -- date\r

The output of ls

2007-07-27 Thread Andrew Falanga
Hi, I'm wondering what the output means when one does an ls -lR. Here's some sample output from my home dir: ./programs: total 900 -rwxr-xr-x 1 afalanga afalanga5467 Sep 25 2006 4or6 -rw-r--r-- 1 afalanga afalanga 606 Dec 20 2006 abc.cxx -rwxr-xr-x 1 afalanga afalanga8436

Re: The output of ls

2007-07-27 Thread Chuck Swiger
On Jul 27, 2007, at 12:57 PM, Andrew Falanga wrote: Right underneath the directory that is being probed at that point is a number, total X. What is X referring to? Is it blocks, bytes, what? It's probably the number of disk blocks occupied by all of the files in the directory. -- -Chuck

burncd and driveropts=burnfree?

2007-07-27 Thread Thomas Mueller
I recently installed FreeBSD 6.2 release and see there are two programs for burning CDs: burncd and cdrtools (cdrecord). My CD-RW drive is ATAPI. I looked through the online manpage for burncd and saw nothing comparable to driveropts=burnfree, which I use in Linux with cdrecord. So how would I

Re: 7-Current: turn off debugging (kqread?)

2007-07-27 Thread Kris Kennaway
On Tue, Jul 03, 2007 at 11:12:36AM -0500, Kevin Kramer wrote: thanks. I rebuild this morning with this and still no change. I can't even find any info on these flags... Dunno if anyone ever gave you the real answer to your question, but if not then here it is: your DNS is broken and taking

Re: The output of ls

2007-07-27 Thread Kris Kennaway
On Fri, Jul 27, 2007 at 01:57:54PM -0600, Andrew Falanga wrote: Hi, I'm wondering what the output means when one does an ls -lR. Here's some sample output from my home dir: ./programs: total 900 -rwxr-xr-x 1 afalanga afalanga5467 Sep 25 2006 4or6 -rw-r--r-- 1 afalanga afalanga

Re: The output of ls

2007-07-27 Thread Andrew Falanga
On 7/27/07, Kris Kennaway [EMAIL PROTECTED] wrote: On Fri, Jul 27, 2007 at 01:57:54PM -0600, Andrew Falanga wrote: RTFM ;-) Ouch! I deserved that one. Thanks. This is really going to hurt (me that is), but the reason I didn't find it in the manual is because the manual page I read was on

Re: 6.2-RELEASE hangs on boot on Ultra 80

2007-07-27 Thread Kris Kennaway
On Fri, Jun 29, 2007 at 10:27:17PM -0700, brian dye wrote: Greetings, I'm trying to install freebsd 6.2-RELEASE on a Sun Ultra 80 expert 3D-Lite workstation. I've tried the bootonly and disc1 .iso files with no luck. In both cases the system hangs after the following message: ...

ELI passphrase on boot with USB keyboard

2007-07-27 Thread Rolf G Nielsen
Hi, I recently purchased a new USB keyboard, since my old PS/2 one has seen its best days. This has caused me annoying problems with my ELI disks, though. I have four SATA harddrives, all of which are encrypted using ELI encryption. I've encrypted the raw disks, ad0, ad1, ad2 and ad3. The

Re: 64bit sysv ipc

2007-07-27 Thread Kris Kennaway
On Fri, Jul 20, 2007 at 02:06:19PM -0600, Dan Gish wrote: Hi, We are working off the latest 6.2 amd64 snapshot. # uname -a FreeBSD anton 6.2-STABLE-200706 FreeBSD 6.2-STABLE-200706 #0: Fri Jul 20 13:17:02 MDT 2007 [EMAIL PROTECTED]:/usr/src/sys/amd64/compile/MYKERNEL amd64 The system

ELI passphrase on boot with USB keyboard... (supplement)

2007-07-27 Thread Rolf G Nielsen
Forgot to mention, I've also tried a USB to PS/2 adaptor, but with that one, the USB keyboard won't work at all. Rolf Nielsen P.S. I'm sorry about the request for receit for the previous message. I have it activated by default, and forgot to deactivate it.

Re: updating mysql database

2007-07-27 Thread Matthew Seaman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Gabor Kovesdan wrote: David Banning escribió: I installed mysql 5.1 on a new system and I want to run a 4.1 database. I notice that not all tables work. Is there a conversion to take the database from 4.1 to 5.1? I think you only have to

Re: powerd on dual core

2007-07-27 Thread Kris Kennaway
On Tue, Jul 24, 2007 at 10:32:34AM +0200, Gabriel Linder wrote: Hi, I use a T2300 Core Duo laptop with SMP kernel and powerd enabled on FreeBSD 6.2. When I try to check my CPU settings with sysctl dev.cpu I get a value only for dev.cpu.0.freq (no dev.cpu.1.freq, but there are some

Re: ELI passphrase on boot with USB keyboard

2007-07-27 Thread Reid Linnemann
Written by Rolf G Nielsen on 07/27/07 15:21 Hi, I recently purchased a new USB keyboard, since my old PS/2 one has seen its best days. This has caused me annoying problems with my ELI disks, though. I have four SATA harddrives, all of which are encrypted using ELI encryption. I've

Re: panic : swap_pager

2007-07-27 Thread Kris Kennaway
On Wed, Jul 25, 2007 at 01:55:45PM +0800, Zhang hw wrote: Sometimes when I shutdown my system, it would tell me : ... All buffers synced Swap_pager: I/O error - pagein failed, blkno 744, size 4096, error 5 panic: swap_pager_force_pagein: read from swap failed Uptime:... #define EIO

Re: The output of ls

2007-07-27 Thread Kris Kennaway
On Fri, Jul 27, 2007 at 02:10:56PM -0600, Andrew Falanga wrote: On 7/27/07, Kris Kennaway [EMAIL PROTECTED] wrote: On Fri, Jul 27, 2007 at 01:57:54PM -0600, Andrew Falanga wrote: RTFM ;-) Ouch! I deserved that one. Thanks. No problem ;-) This is really going to hurt (me that is),

Re: ELI passphrase on boot with USB keyboard

2007-07-27 Thread Reid Linnemann
Written by Reid Linnemann on 07/27/07 15:49 Written by Rolf G Nielsen on 07/27/07 15:21 Hi, I recently purchased a new USB keyboard, since my old PS/2 one has seen its best days. This has caused me annoying problems with my ELI disks, though. I have four SATA harddrives, all of which are

Re: ELI passphrase on boot with USB keyboard

2007-07-27 Thread Rolf G Nielsen
Reid Linnemann wrote: Written by Reid Linnemann on 07/27/07 15:49 Written by Rolf G Nielsen on 07/27/07 15:21 Hi, I recently purchased a new USB keyboard, since my old PS/2 one has seen its best days. This has caused me annoying problems with my ELI disks, though. I have four SATA

Re: ISC bind9 with dynamic DNS update (chroot problem)

2007-07-27 Thread Doug Barton
Patrick Dung wrote: Hi I use FreeBSD 6.2 and the base bind9. For dynamic DNS update, bind9 automatically generate the journal file (end in .jnl). The default config is to use chroot and the running user as 'bind'. The problem is that after named is started (/etc/init.d/named start), Are

Re: emacs22 and portsdb

2007-07-27 Thread Matthew Seaman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Duane Winner wrote: We've been having a problem with generating the ports Index ever since upgrading to emacs22. As per /usr/ports/UPDATING, we added EMACS_PORT_NAME=*emacs22* to /etc/make.conf Errr --- that should probably read:

Abit VP6 Mother Board no USB

2007-07-27 Thread Chris Maness
I moved a hard drive from a system that had working usb to an abit VP6 PIII board, and FreeBSD is complaining that it can't find the USB host controller. Any suggestions? Chris Maness ___ freebsd-questions@freebsd.org mailing list

Re: ELI passphrase on boot with USB keyboard

2007-07-27 Thread Rolf G Nielsen
Reid Linnemann wrote: Written by Reid Linnemann on 07/27/07 15:49 Written by Rolf G Nielsen on 07/27/07 15:21 Hi, I recently purchased a new USB keyboard, since my old PS/2 one has seen its best days. This has caused me annoying problems with my ELI disks, though. I have four SATA

Master volume doesn't work with headphones

2007-07-27 Thread Snow Mountains
(Posted this yesterday to the multimedia list, but questions list seems to be more appropriate. Sorry for double posting.) Hi FreeBSD people, I have a simple mixer question. What I can do to get Master volume working the same way with and without headphones? If I plug in headphones (dell i5100),

Re: Master volume doesn't work with headphones

2007-07-27 Thread youshi10
On Fri, 27 Jul 2007, Snow Mountains wrote: (Posted this yesterday to the multimedia list, but questions list seems to be more appropriate. Sorry for double posting.) Hi FreeBSD people, I have a simple mixer question. What I can do to get Master volume working the same way with and without

Re: Abit VP6 Mother Board no USB

2007-07-27 Thread youshi10
On Fri, 27 Jul 2007, Chris Maness wrote: I moved a hard drive from a system that had working usb to an abit VP6 PIII board, and FreeBSD is complaining that it can't find the USB host controller. Any suggestions? Chris Maness 1. Check that the BIOS a) has USB support turned on, b) has PnP

Re: Abit VP6 Mother Board no USB

2007-07-27 Thread chris
On Fri, 27 Jul 2007, Chris Maness wrote: I moved a hard drive from a system that had working usb to an abit VP6 PIII board, and FreeBSD is complaining that it can't find the USB host controller. Any suggestions? Chris Maness 1. Check that the BIOS a) has USB support turned on, b) has

USB Mouse not Working

2007-07-27 Thread Chris Maness
I am having issues getting my USB mouse running. I don't get any error messages of the sort, and when I do #cat /dev/ums0 I don't get any funny garbage like I normally do out of a IO device. (That is after I kill moused). Any suggestions? Chris Maness (909) 223-9179

Re: USB Mouse not Working

2007-07-27 Thread Adam J Richardson
Chris Maness wrote: I am having issues getting my USB mouse running. I don't get any error messages of the sort, and when I do #cat /dev/ums0 I don't get any funny garbage like I normally do out of a IO device. (That is after I kill moused). Any suggestions? I had this. I had to start

Re: USB Mouse not Working

2007-07-27 Thread Chris Maness
Adam J Richardson wrote: Chris Maness wrote: I am having issues getting my USB mouse running. I don't get any error messages of the sort, and when I do #cat /dev/ums0 I don't get any funny garbage like I normally do out of a IO device. (That is after I kill moused). Any suggestions? I

Re: FastCGI PHP does not start on server reboot (via rc script).

2007-07-27 Thread Maxim Khitrov
On 7/25/07, Maxim Khitrov [EMAIL PROTECTED] wrote: On 7/24/07, Maxim Khitrov [EMAIL PROTECTED] wrote: Hello, I have this problem that I can't figure out. One of my web servers is using a combination of lighttpd and FastCGI php to run a few sites. On lighttpd website there is an rc

Re: Abit VP6 Mother Board no USB

2007-07-27 Thread Garrett Cooper
[EMAIL PROTECTED] wrote: On Fri, 27 Jul 2007, Chris Maness wrote: I moved a hard drive from a system that had working usb to an abit VP6 PIII board, and FreeBSD is complaining that it can't find the USB host controller. Any suggestions? Chris Maness 1. Check that the BIOS a) has

Re: USB Mouse not Working

2007-07-27 Thread Garrett Cooper
Chris Maness wrote: Adam J Richardson wrote: Chris Maness wrote: I am having issues getting my USB mouse running. I don't get any error messages of the sort, and when I do #cat /dev/ums0 I don't get any funny garbage like I normally do out of a IO device. (That is after I kill moused).

Re: Remote Execution of sudo Command Hangs.

2007-07-27 Thread Christian Walther
Hi Martin, On 27/07/07, Martin McCormick [EMAIL PROTECTED] wrote: We have 3 FreeBSD systems. One is trying to use ssh and sudo to run commands on two other systems. The remote command being executed is: ssh remote.system.domain sudo dhcpreset dhcpreset is an expect script most of