Re: mounting ext2fs partitions on FBSD7 ( third time a charm?)

2008-07-05 Thread Nejc Škoberne
Hey, Have you, by any chance, tried and suceded at mounting ext2fs on FBSD7? If you did, at least I'd know that it _is_ possible :s It is possible, although I haven't used this on FreeBSD 7.0 yet (only on 5.x and 6.x releases). I'd also try this: mkdir /mnttest mount -t ext2fs /dev/ad0s8

Re: geom_raid5

2008-07-05 Thread Wojciech Puchar
thanks On Fri, 4 Jul 2008, Nejc Škoberne wrote: where to get the source? http://perforce.freebsd.org/depotTreeBrowser.cgi?FSPC=//depot/user/riddick Looks like the site where I got it from (http://home.tiscali.de/cmdr_faako/geom_raid5-eff.tbz) doesn't exist anymore. Bye, Nejc

pw: user disappeared during update

2008-07-05 Thread Unga
Hi all pwd_mkdb -C master_passwd_template No errors pwd_mkdb -p master_passwd_template pw useradd -n test -u 1000 -c Test -m -M 0700 -s /bin/bash pw: user 'test' disappeared during update It has updated the /etc/group as follows: test:*:1000: But no test user entry in /etc/passwd or

Re: mounting ext2fs partitions on FBSD7 ( third time a charm?)

2008-07-05 Thread Gonzalo Nemmi
On Saturday 05 July 2008 01:37:26 Ryan Coleman wrote: Gonzalo Nemmi wrote: On Friday 04 July 2008 22:58:18 you wrote: Gonzalo Nemmi wrote: Could somebody please throw me a pointer ... i have followed every instruction on every book and/or how-to ... yet ... What am I doing wrong??

Re: mounting ext2fs partitions on FBSD7 ( third time a charm?)

2008-07-05 Thread Gonzalo Nemmi
On Saturday 05 July 2008 03:24:53 Nejc Škoberne wrote: Hey, Have you, by any chance, tried and suceded at mounting ext2fs on FBSD7? If you did, at least I'd know that it _is_ possible :s It is possible, although I haven't used this on FreeBSD 7.0 yet (only on 5.x and 6.x releases). I'd

Re: mounting ext2fs partitions on FBSD7 ( third time a charm?)

2008-07-05 Thread Roland Smith
On Sat, Jul 05, 2008 at 05:46:09AM -0300, Gonzalo Nemmi wrote: On Saturday 05 July 2008 03:24:53 Nejc Škoberne wrote: Hey, Have you, by any chance, tried and suceded at mounting ext2fs on FBSD7? If you did, at least I'd know that it _is_ possible :s It is possible, although I

Re: mounting ext2fs partitions on FBSD7 ( third time a charm?)

2008-07-05 Thread Nejc Škoberne
Hey, ls -la / | grep mnttest Can you paste output of this command? sysid 5 (0x05),(Extended DOS) start 102398310, size 106446690 (51975 Meg), flag 0 beg: cyl 1023/ head 0/ sector 1; end: cyl 1023/ head 254/ sector 63 So the partition you're trying to mount is under an

Passive cooling problem with Athlon CPU

2008-07-05 Thread Mike Clarke
I'm running 6.3STABLE with an AMD 4850e Athlon X2 and occasionally get the following message on the console: acpi_tz0: failed to set new freq, disabling passive cooling I also see the following 2 messages immediately after devd starts every time I boot (and which don't appear in any log file):

FreeBSD 7.0 and RAM limit

2008-07-05 Thread Robert Heron
Hi, I use: FreeBSD 7.0-R on i386 server with motherboard S5000VSA and 6GB RAM onboard. BIOS version - 88 (the latest) Kernel includes: optionsMAXMEM=(6*1024*1024) And FreeBSD reports only: real memory = 2680160256 (2556 MB) avail memory = 2617892864 (2496 MB) Why? What

Re: FreeBSD 7.0 and RAM limit

2008-07-05 Thread Kris Kennaway
Robert Heron wrote: Hi, I use: FreeBSD 7.0-R on i386 server with motherboard S5000VSA and 6GB RAM onboard. BIOS version - 88 (the latest) Kernel includes: optionsMAXMEM=(6*1024*1024) And FreeBSD reports only: real memory = 2680160256 (2556 MB) avail memory = 2617892864 (2496

Re: FreeBSD 7.0 and RAM limit

2008-07-05 Thread Wojciech Puchar
use amd64 On Sat, 5 Jul 2008, Robert Heron wrote: Hi, I use: FreeBSD 7.0-R on i386 server with motherboard S5000VSA and 6GB RAM onboard. BIOS version - 88 (the latest) Kernel includes: optionsMAXMEM=(6*1024*1024) And FreeBSD reports only: real memory = 2680160256 (2556

Sed in FreeBSD

2008-07-05 Thread Sebastian Tymków
Hi, I'm trying to use sed in script to append file after pattern but I couldn't find any good example how can I do it. I've tried with sed -e '/PATTERN/ a\ line' file but this did'n work. There are many axamples in internet but none of them work on FreeBSD. Best regards, Sebastian Tymkow

Firefox 3 for FreeBSD 7.0 release

2008-07-05 Thread dfeustel
I downloaded the firefox*gz file from devel but it doesn't make for 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? Thanks. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To

Re: Firefox 3 for FreeBSD 7.0 release

2008-07-05 Thread Roland Smith
On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: I downloaded the firefox*gz file from devel but it doesn't make for 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? It builds fine from ports on amd64 7-STABLE. Use the port www/firefox3. Roland -- R.F.Smith

Re: Sed in FreeBSD

2008-07-05 Thread andrew clarke
On Sat 2008-07-05 16:06:39 UTC+0200, Sebastian Tymk?w ([EMAIL PROTECTED]) wrote: I'm trying to use sed in script to append file after pattern but I couldn't find any good example how can I do it. I've tried with sed -e '/PATTERN/ a\ line' file but this did'n work. There are many axamples in

Re: Sed in FreeBSD

2008-07-05 Thread Sahil Tandon
Sebastian Tymk?w [EMAIL PROTECTED] wrote: I'm trying to use sed in script to append file after pattern but I couldn't find any good example how can I do it. Based on sed(1), I think you need something like: sed '/PATTERN/ r file' -- Sahil Tandon [EMAIL PROTECTED]

Re: Sed in FreeBSD

2008-07-05 Thread James Bailie
Sebastian Tymków wrote: I've tried with sed -e '/PATTERN/ a\ line' file but this did'n work. There are many axamples in internet but none of them work on FreeBSD. The inserted line needs to be on a separate physical line. sed -e '/PATTERN/a\ line' For /bin/csh, you need two backslashes

Re: Firefox 3 for FreeBSD 7.0 release

2008-07-05 Thread dfeustel
On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: I downloaded the firefox*gz file from devel but it doesn't make for 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? It builds fine from ports on

Re: mount_nfs not accepting syntax specified by its usage complaint

2008-07-05 Thread Mel
On Saturday 05 July 2008 04:10:44 [EMAIL PROTECTED] wrote: How does this command: # mount_nfs -dis -g 8 -I 512 -R 3 -r 512 -w 512 solomon:/var/spool/uucp /solomon/uucp not comply with the resulting usage complaint? usage: mount_nfs [-234bcdiLlNPsTU] [-a maxreadahead] [-D deadthresh]

Re: Passive cooling problem with Athlon CPU

2008-07-05 Thread Mel
On Saturday 05 July 2008 13:12:19 Mike Clarke wrote: I'm running 6.3STABLE with an AMD 4850e Athlon X2 and occasionally get the following message on the console: acpi_tz0: failed to set new freq, disabling passive cooling I also see the following 2 messages immediately after devd starts

Re: Firefox 3 for FreeBSD 7.0 release

2008-07-05 Thread Mel
On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: I downloaded the firefox*gz file from devel but it doesn't make for 64-bit. Is Firefox 3 available

Re: Firefox 3 for FreeBSD 7.0 release

2008-07-05 Thread dfeustel
On Sat, Jul 05, 2008 at 06:12:15PM +0200, Mel wrote: On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: I downloaded the firefox*gz file from devel but

Re: Firefox 3 for FreeBSD 7.0 release

2008-07-05 Thread Duane Hill
On Sat, 5 Jul 2008, [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 06:12:15PM +0200, Mel wrote: On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: I

Re: Firefox 3 for FreeBSD 7.0 release

2008-07-05 Thread Manolis Kiagias
[EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 06:12:15PM +0200, Mel wrote: On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: I

Konqueror UNICODE fonts

2008-07-05 Thread Ghirai
Hello list. I'm running KDE 3.5.8 from ports. Konqueror doesn't seem to want to display unicode fonts properly; i get boxes instead, even though i set the encoding to UTF-8. The same seem to be with text editors and such. Any indeas? Thanks. -- Regards, Ghirai.

Re: Firefox 3 for FreeBSD 7.0 release

2008-07-05 Thread dfeustel
On Sat, Jul 05, 2008 at 07:31:28PM +0300, Manolis Kiagias wrote: [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 06:12:15PM +0200, Mel wrote: On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: On Sat, Jul

Re: Firefox 3 for FreeBSD 7.0 release

2008-07-05 Thread YANSWBVCG
On Sat, Jul 05, 2008 at 04:47:29PM +, [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 07:31:28PM +0300, Manolis Kiagias wrote: [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 06:12:15PM +0200, Mel wrote: On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: On Sat,

Re: Passive cooling problem with Athlon CPU

2008-07-05 Thread Mike Clarke
On Saturday 05 July 2008, Mel wrote: And your /etc/sysctl.conf where you set this value? If it's not set by you, it may be set by /etc/rc.d/power_profile based on your /etc/rc.conf. It's not set by me. All I have in /etc/sysctl.conf is: vfs.usermount=1 kern.ipc.shmmax=67108864

inetd on FreeBSD 7.0-STABLE

2008-07-05 Thread Jack Raats
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Inetd gives the following error: Jul 5 19:45:17 orac inetd[770]: nntp from 192.168.1.101 exceeded counts/min (limit 60/min) Is it possible to increase the limit and how? Jack -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.7 (MingW32) - GPGrelay

Re: httpd php dump

2008-07-05 Thread Chuck Swiger
kalin m wrote: [ ... ] i suspect the apache so module.. but not really sure executing php files on the cli is working fine to.. it must be the so... httpd and php are supposed to just work together. that's why core dump without any messages is a bit weired. supposed to is

Re: inetd on FreeBSD 7.0-STABLE

2008-07-05 Thread Rodrigo Gonzalez
Jack Raats wrote: Inetd gives the following error: Jul 5 19:45:17 orac inetd[770]: nntp from 192.168.1.101 exceeded counts/min (limit 60/min) Is it possible to increase the limit and how? Jack _ man inetd check -c, -C and -R optionsfor defaults or max-child and

Re: mounting ext2fs partitions on FBSD7 ( third time a charm?)

2008-07-05 Thread Gonzalo Nemmi
On Saturday 05 July 2008 06:01:36 you wrote: Hey, ls -la / | grep mnttest Can you paste output of this command? sysid 5 (0x05),(Extended DOS) start 102398310, size 106446690 (51975 Meg), flag 0 beg: cyl 1023/ head 0/ sector 1; end: cyl 1023/ head 254/ sector 63

Re: mounting ext2fs partitions on FBSD7 ( third time a charm?)

2008-07-05 Thread Gonzalo Nemmi
On Saturday 05 July 2008 05:59:42 Roland Smith wrote: mount -t ext2fs /dev/ad0s1 /mnt [EMAIL PROTECTED]:~ # mount -t ext2fs /dev/ad0s1 /mnt [EMAIL PROTECTED]:~ # ls /mnt ls: /mnt: Bad file descriptor [EMAIL PROTECTED]:~ # ls -la / | grep /mnt ls: mnt: Bad file descriptor [EMAIL PROTECTED]:~ #

Why would it make such a difference to move mysqld to another machine?

2008-07-05 Thread John Almberg
I asked a question the other day about using top on a multi-processor machine. As a side note, I asked how mysqld could be consuming more than 100% of CPU power... last pid: 43730; load averages: 1.93, 2.64, 2.22 up 92+19:45:54 09:26:27 238

Re: mounting ext2fs partitions on FBSD7 ( third time a charm?)

2008-07-05 Thread Gonzalo Nemmi
On Saturday 05 July 2008 06:01:36 Nejc Škoberne wrote: Hey, ls -la / | grep mnttest Can you paste output of this command? sysid 5 (0x05),(Extended DOS) start 102398310, size 106446690 (51975 Meg), flag 0 beg: cyl 1023/ head 0/ sector 1; end: cyl 1023/ head 254/

Re: Problem with pf, which is not doing NAT

2008-07-05 Thread Jason Garrett
On Fri, Jul 4, 2008 at 4:34 AM, assetburned [EMAIL PROTECTED] wrote: Hi On 04.07.2008, at 08:32, Michael Lednev wrote: assetburned пишет: So any ideas? do you have gateway_enable=YES in /etc/rc.conf? Yes I have that line active. I also have natd_enable=NO because I was told I

Re: AMD SB700 southbridge sata ahci supported?

2008-07-05 Thread Rhomel Chinsio
Try disabling USB in the BIOS: http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/122880 On Fri, Jun 27, 2008 at 11:21 PM, Gobbledegeek [EMAIL PROTECTED] wrote: Hi I install freebsd 7 i386 twice, installed mbr, both times boot loader failed to load at 1st stage with cpu register values

Re: mount_nfs not accepting syntax specified by its usage complaint

2008-07-05 Thread perryh
option 'g' has been removed temporarily, but usage() hasn't been updated accordingly. Aha! Removing the -g 8 fixed it, and the 512-byte read and readdir restrictions seem to be working well (albeit slowly). That a temporary removal present in 7.0 has been there at least since 6.1 reminds me

Re: calcru: runtime went backwards errors

2008-07-05 Thread David Allen
On Mon, Jun 30, 2008 at 7:38 AM, Bob Johnson [EMAIL PROTECTED] wrote: On 6/30/08, David Allen [EMAIL PROTECTED] wrote: I've been seeing errors like the following appearing: Jun 30 03:13:57 ford kernel: calcru: runtime went backwards from 261 usec to 258 usec for pid 516 (devd) [...] Jun 30

The FreeBSD Diary: 2008-06-15 - 2008-07-05

2008-07-05 Thread Dan Langille
The FreeBSD Diary contains a large number of practical examples and how-to guides. This message is posted weekly to freebsd-questions@freebsd.org 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

Weird network problem

2008-07-05 Thread Paul Schmehl
I just installed 7.0 STABLE on a brand new Dell SC1435 (dual AMD 64bit dual core processors), and I'm experiencing a very weird problem. If I try to do anything with the network, I lose connectivy. For example, if I run /etc/rc.d/netif restart, when the interface comes back up, it says the

Sound on amd64

2008-07-05 Thread Kurt Buff
I'm trying to update the kernel in 7.0-Stable (updated today) with either snd_hda or snd_ich, and it's erroring out during buildkernel with one or the other of these failure messages: For snd_ich, I get this: In file included from /usr/src/sys/dev/sound/pcm/sound.h:94 from

Welcome! 2 tips to get started...

2008-07-05 Thread Refriendz
* * * To ensure that Refriendz emails reach your inbox, please add our From address ([EMAIL PROTECTED]) to your email Address Book or Safe List. * * * Welcome to Refriendz Patricia! Here are two tips for you to get started: = 1. Find Your Friendz:

Re: Sound on amd64

2008-07-05 Thread Conrad J. Sabatier
On Sat, 5 Jul 2008 19:02:09 -0700 Kurt Buff [EMAIL PROTECTED] wrote: I'm trying to update the kernel in 7.0-Stable (updated today) with either snd_hda or snd_ich, and it's erroring out during buildkernel with one or the other of these failure messages: For snd_ich, I get this: In file

RE: OT: anyone been crazy enough to mirror wikipedia?

2008-07-05 Thread Ted Mittelstaedt
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Steve Franks Sent: Wednesday, July 02, 2008 2:47 PM To: Gary Kline Cc: Wojciech Puchar; Chad Perrin; FreeBSD Mailing List Subject: Re: OT: anyone been crazy enough to mirror wikipedia? You know,