Re: batch rename

2008-01-05 Thread Dan Nelson
In the last episode (Jan 05), Jeff Laine said: My goal is to rename several files in such a way as to decapitalize starting letters in their names. The solution seems to be simple but I'm stuck. What should I use? awk/sed or write some shell-script? Best way is with ports/misc/mmv: mmv ?*

7.0-PRERELEASE installworld fails

2008-01-05 Thread Unga
Hi all Please note: I have posted this on freebsd-current. I'm sorry for that. I went again thru the Rebuilding world section in the Handbook and saw at the end if there are problems I should post to freebsd-questions. Kindly reply on this post. I'm making a kernel upgrade on 7.0-BETA4 with the

Re: Install order?

2008-01-05 Thread Boris Samorodov
On Fri, 04 Jan 2008 22:51:51 -0600 David Reedy Jr wrote: I'm very new to FreeBSD, just installed it for the first time maybe a week ago. Great, welcome. But please, don't start a new thread hitting a reply to and existing thread. First of, the thread history is not clean. And you won't get an

Re: 7.0-PRERELEASE installworld fails

2008-01-05 Thread Boris Samorodov
On Sat, 5 Jan 2008 00:13:30 -0800 (PST) Unga wrote: Please note: I have posted this on freebsd-current. I'm sorry for that. I went again thru the Rebuilding world section in the Handbook and saw at the end if there are problems I should post to freebsd-questions. Kindly reply on this post.

Re: Install order?

2008-01-05 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Boris Samorodov wrote: On Fri, 04 Jan 2008 22:51:51 -0600 David Reedy Jr wrote: I'm very new to FreeBSD, just installed it for the first time maybe a week ago. Great, welcome. But please, don't start a new thread hitting a reply to and existing

Re: Install order?

2008-01-05 Thread Boris Samorodov
On Sat, 05 Jan 2008 05:06:41 -0500 Aryeh M. Friedman wrote: Boris Samorodov wrote: On Fri, 04 Jan 2008 22:51:51 -0600 David Reedy Jr wrote: I'm very new to FreeBSD, just installed it for the first time maybe a week ago. Great, welcome. But please, don't start a new thread hitting a

Re: outgoing mail STOPPED.

2008-01-05 Thread Matthew Seaman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Gary Kline wrote: Anybody know how I messed up? ---This is no excuse, but because of the recent build problems I did wholesale ``portupgrades -af'' (**sigh**) Why cannot creat the queue files?? At a guess, either the

Re: Log archiving question

2008-01-05 Thread Matthew Seaman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Walt Pawley wrote: I've had no difficulties with the change made on my Mac OS X Jaguar system - if it affects something, the something is something I apparently don't do. So, all that preamble brings me to my question. Are there things that

Re: batch rename

2008-01-05 Thread Michel Talon
Aryeh M. Friedman wrote: My goal is to rename several files in such a way as to decapitalize starting letters in their names. The solution seems to be simple but I'm stuck. What should I use? awk/sed or write some shell-script? This assumes tcsh: foreach i (`ls [A-Z][a-z]*`) mv

Re: Install order?

2008-01-05 Thread Gerard
On Fri, 04 Jan 2008 22:51:51 -0600 David Reedy Jr [EMAIL PROTECTED] wrote: [snip] I'm setting this machine up as a local internet test server. I need to get Apache, MySQL and PHP installed, and I'm worried if there's a preferred /required order to get it to work right / at all. FWIW - I've

Re: OT: fixing a broken key

2008-01-05 Thread Gerard
On Fri, 4 Jan 2008 13:49:20 -0500 Aryeh Friedman [EMAIL PROTECTED] wrote: After cleaning my keyboard by removing the keys and using a damp paper towel to clean the keys and the area between contacts (there is a barrier between the area under the keys and the contact so it is very unlikely the

Re: batch rename

2008-01-05 Thread Michael P. Soulier
On 05/01/08 Aryeh M. Friedman said: This assumes tcsh: foreach i (`ls [A-Z][a-z]*`) mv $i `echo $i|tr 'A-Z' 'a-z'` end sh version: for i in * do mv $i `echo $i | tr 'A-Z' 'a-z'` done Mike -- Michael P. Soulier [EMAIL PROTECTED] Any intelligent fool can make things bigger and

Re: 7.0-PRERELEASE installworld fails

2008-01-05 Thread Unga
--- Boris Samorodov [EMAIL PROTECTED] wrote: Hi Boris, thanks for the reply. I'm making a kernel upgrade on 7.0-BETA4 with the today's sources downloaded by cvsup. Upgrade to what? (RELENG_7, RELENG_7_0, HEAD, etc.) RELENG_7 What architecture do you use (i386, amd64, etc.) i386 Did

Re: 7.0-PRERELEASE installworld fails

2008-01-05 Thread Boris Samorodov
On Sat, 5 Jan 2008 05:25:29 -0800 (PST) Unga wrote: --- Boris Samorodov [EMAIL PROTECTED] wrote: I'm making a kernel upgrade on 7.0-BETA4 with the today's sources downloaded by cvsup. Upgrade to what? (RELENG_7, RELENG_7_0, HEAD, etc.) RELENG_7 What architecture do you use (i386,

compact portsnap db

2008-01-05 Thread Michael Lednev
Hello. Is there any way to compact /var/db/portsnap other than deleting it and doing postsnap fetch? -- С уважением, Michael mailto:[EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list

Re: 7.0-PRERELEASE installworld fails

2008-01-05 Thread Unga
--- Boris Samorodov [EMAIL PROTECTED] wrote: Hm, all this is just plain generic... ...but none should be compiled at installworld stage: My buildworld.log shows following programs are already compliled in this order without any error: /usr/src/lib/csu/i386-elf/crt1.c

Users login configuration

2008-01-05 Thread Ivan Dimitrov
Hi list, i have a freebsd server connected in local network behind a router. is there a way to configure the sshd to allow to login some (group of) users with their passwords only from the local network and to allow login other (and part of these) users only with key pairs from the internet

Upgrading the system: via sources or freebsd-update?

2008-01-05 Thread Giorgio Valoti
Hi all, I have a FreeBSD box and I’d like to know the pros and cons of the base system maintenance using the sources vs freebsd-update. At this time, I’m using cvsup, following the steps described in the handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ cutting-edge.html

Re: 7.0-PRERELEASE installworld fails

2008-01-05 Thread Boris Samorodov
On Sat, 5 Jan 2008 06:55:10 -0800 (PST) Unga wrote: Did you by any chance change time while source updating or world building? This is highly probable. I can remember after the year change my system time was strangely wrong. I corrected it, but cannot remember was it during while

Re: FreeBSD 7.0-PRE/AMD64: missing f77/Fortran compiler ...

2008-01-05 Thread Kris Kennaway
O. Hartmann wrote: Kris Kennaway wrote: O. Hartmann wrote: Sorry about the noise, but I miss g77 or f77 on my FreeBSD 7.0-PRE box. Where is it? Hasn't gcc 4.2 as incorporated in FreeBSD as the native compiler also a native fortran 90 compiler? No, you need to install the gfortran port.

Re: FreeBSD 7.0-PRE/AMD64: missing f77/Fortran compiler ...

2008-01-05 Thread O. Hartmann
Kris Kennaway wrote: O. Hartmann wrote: Sorry about the noise, but I miss g77 or f77 on my FreeBSD 7.0-PRE box. Where is it? Hasn't gcc 4.2 as incorporated in FreeBSD as the native compiler also a native fortran 90 compiler? No, you need to install the gfortran port. This is presumably

Re: one solved ; yet one new issue.

2008-01-05 Thread Roger B.A. Klorese
Gary Kline wrote: no diff. i also filled in smart-host in the .mc file. i did a make install. no difference... gary Those would have no effect. Send the file to me. ___ freebsd-questions@freebsd.org mailing list

Re: software raid 1 and recovery

2008-01-05 Thread Brian A. Seklecki
On Fri, 2008-01-04 at 10:56 -0500, Brian A. Seklecki wrote: Google: nagios + seklecki + check_raid_gmirror Also check out sysutils/smartmontools/ Also, I recently updated the plugin code to r270 with some patches from Scott Swanson. You can see a small screenshot of it in action here:

How do I get sendmail working again

2008-01-05 Thread Andrew Falanga
HI, I've gotten myself into a real fix at this point. (This is a continuation of the thread I started, sendmail is broken, how do I fix?) I was trying to setup authentication based relaying using istructions at http://www.puresimplicity.net/~hemi/freebsd/sendmail.html. I must first say

RE: How do I get sendmail working again

2008-01-05 Thread Andrew Falanga
Wanted to post the contents of my hostname.mc file: whitbap# cat whitbap.mc divert(-1) # # Copyright (c) 1983 Eric P. Allman # Copyright (c) 1988, 1993 # The Regents of the University of California. All rights reserved. # # Redistribution and use in source and binary forms, with or without

Anyone using dovecot deliver for virtual users

2008-01-05 Thread Andrew Falanga
Hi, Is anyone on this list, who's using dovecot, using dovecot deliver to deliver mail to virtual users? If so, what's the key to setting up the deliver process in sendmail? Andy ___ freebsd-questions@freebsd.org mailing list

My sendmail appears to be fixed, advice needed though

2008-01-05 Thread Andrew Falanga
Hi everybody, Sorry for this flurry of e-mail from me over the last few days. This has been highly frustrating. At any rate, I think I've worked it out. Although, I'd like to have some folks look over this hostname.mc file and tell me if the fix is legitimate. Basically, the instructions

Re: OT: fixing a broken key

2008-01-05 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Gerard wrote: On Fri, 4 Jan 2008 13:49:20 -0500 Aryeh Friedman [EMAIL PROTECTED] wrote: After cleaning my keyboard by removing the keys and using a damp paper towel to clean the keys and the area between contacts (there is a barrier between the

xf86-video drivers

2008-01-05 Thread E. J. Cerejo
I'm running FBSD6 stable and using portupgrade to manage my ports. I was wondering how do you stop all of these video drivers from building and installing when all I need is xf86-video-nv? ___ freebsd-questions@freebsd.org mailing list

PF and fitering statefull on GIF interface

2008-01-05 Thread Norman Maurer
Hi all, im using FreeBSD 6.2-p9 on my server which acts as IPSec router using ipsec-tools. This works fine... But now i need to filter traffic which comes from the local private network to the vpn private network. I tried todo this with pf and using keep state. The return packets just get

xf86-video drivers

2008-01-05 Thread Robert Huff
E. J. Cerejo writes: I'm running FBSD6 stable and using portupgrade to manage my ports. I was wondering how do you stop all of these video drivers from building and installing when all I need is xf86-video-nv? pd /usr/ports/x11-drivers/xorg-drivers make config

Re: xf86-video drivers

2008-01-05 Thread Daniel Bye
On Sat, Jan 05, 2008 at 03:49:42PM -0500, E. J. Cerejo wrote: I'm running FBSD6 stable and using portupgrade to manage my ports. I was wondering how do you stop all of these video drivers from building and installing when all I need is xf86-video-nv? # cd

Re: My sendmail appears to be fixed, advice needed though

2008-01-05 Thread Giorgos Keramidas
On 2008-01-05 13:08, Andrew Falanga [EMAIL PROTECTED] wrote: Hi everybody, Sorry for this flurry of e-mail from me over the last few days. This has been highly frustrating. You should post *more* details, not less. One of the things which was missing from the older posts (or at least, one

Re: Finally, Flash seems to be working for Me :)

2008-01-05 Thread Giorgos Keramidas
On 2008-01-04 00:42, Aryeh Friedman [EMAIL PROTECTED] wrote: On 1/4/08, Robert Huff [EMAIL PROTECTED] wrote: Rudy writes: I do do more than watch youtube videos, but people send me links and I'm always bummed if I have to reboot into Ubuntu just to see a stupid video :)

Re: HOW-TO get Flash7 working!

2008-01-05 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rudy wrote: With all this talk about FLASH, I found something out by trial and error and want to post again to the list so that others searching can get the FLASH player working in their brower: THIS STEP IS NEEDED OR FLASH WILL NOT WORK:

Re: Finally, Flash seems to be working for Me :)

2008-01-05 Thread Rudy
Robert Huff wrote: What you need is www/youtube-dl. Deposits the content in a form that can be played by mplayer (and presuably others). That seems like an extra step... People that want to be more efficient with their time -- even when watching youtube :) -- don't want to mess

HOW-TO get Flash7 working!

2008-01-05 Thread Rudy
With all this talk about FLASH, I found something out by trial and error and want to post again to the list so that others searching can get the FLASH player working in their brower: THIS STEP IS NEEDED OR FLASH WILL NOT WORK: sysctl compat.linux.osrelease=2.6.20 Better yet, add this to

oss port

2008-01-05 Thread aJTiM
Hi! I like to install port oss on FreeBSD 7 beta4 and I got an error: make = oss-v4.0-build1012-src-bsd.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. = Attempting to fetch from http://www.opensound.com/developer/sources/stable/bsd/. fetch:

Re: Paging Matthew Seaman

2008-01-05 Thread Giorgos Keramidas
On 2008-01-04 09:59, Paul Schmehl [EMAIL PROTECTED] wrote: I figure if anyone knows the answer to this off the top of their head, Matthew will. I'm sure Matthew knows the answer, but you should use a more relevant subject. This way the archived posts will be more useful to future posters.

unpack win32 exe file

2008-01-05 Thread Chris Whitehouse
Hi I have a Windows executable file (.exe) which in a Windows environment would be run to extract some files which it contains. Is there any way I can extract the files on my FreeBSD system? I've tried unzip, gunzip and archivers/upx with various extensions, zip, exe, gz etc but they all

Re: oss port

2008-01-05 Thread Kris Kennaway
aJTiM wrote: Hi! I like to install port oss on FreeBSD 7 beta4 and I got an error: make = oss-v4.0-build1012-src-bsd.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. = Attempting to fetch from http://www.opensound.com/developer/sources/stable/bsd/. fetch:

Re: HOW-TO get Flash7 working!

2008-01-05 Thread Pollywog
On Saturday 05 January 2008 22:06:27 Aryeh M. Friedman wrote: I am using 8-current (amd64) and found all I needed to do was install www/linux-flashplugin7 then do a nspluginwrapper -v -a -i and flash works fine (as far I can tell)... does this add any functionality I am not aware of?

Re: How do I get sendmail working again

2008-01-05 Thread Giorgos Keramidas
On 2008-01-05 11:18, Andrew Falanga [EMAIL PROTECTED] wrote: Wanted to post the contents of my hostname.mc file: whitbap# cat whitbap.mc [...] FEATURE(`no_default_msa') MAILER(local) MAILER(smtp) This part seems ok. dnl set SASL options dnl TRUST_AUTH_MECH(`GSSAPI DIGEST-MD5 CRAM-MD5

Re: oss port

2008-01-05 Thread Predrag Punosevac
Kris Kennaway wrote: aJTiM wrote: Hi! I like to install port oss on FreeBSD 7 beta4 and I got an error: make = oss-v4.0-build1012-src-bsd.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. = Attempting to fetch from http://www.opensound.com/developer/sources/stable/bsd/. fetch:

Re: HOW-TO get Flash7 working!

2008-01-05 Thread Greg Mars
Aryeh M. Friedman wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rudy wrote: With all this talk about FLASH, I found something out by trial and error and want to post again to the list so that others searching can get the FLASH player working in their brower: THIS STEP IS NEEDED OR

Re: My sendmail appears to be fixed, advice needed though

2008-01-05 Thread Andrew Falanga
Well, oddly enough I moved those additional lines to a position before the MAILER macros (I'll post the whitbap.mc file below as it exists now). However, I still got those error messages: Jan 5 18:29:10 whitbap sm-mta[6207]: NOQUEUE: SYSERR(root): opendaemonsocket: daemon MTA: cannot bind:

Re: My sendmail appears to be fixed, advice needed though

2008-01-05 Thread Andrew Falanga
On Saturday 05 January 2008 15:06:59 Giorgos Keramidas wrote: On 2008-01-05 13:08, Andrew Falanga [EMAIL PROTECTED] wrote: Hi everybody, Sorry for this flurry of e-mail from me over the last few days. This has been highly frustrating. You should post *more* details, not less. One of the

Re: unpack win32 exe file

2008-01-05 Thread Viktor Cemasko
Ave! Sat, 05 Jan 2008 23:10:03 + Chris Whitehouse wrote: Is there any way I can extract the files on my FreeBSD system? A version: 1. install wine port: cd /usr/ports/emulators/wine/ make install clean 2. download and install under wine TC:

RE: Future development of Jail (was Re: corporate backers of freebsd)

2008-01-05 Thread Ted Mittelstaedt
-Original Message- From: Andy Dills [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 02, 2008 9:29 AM To: Ted Mittelstaedt Cc: freebsd-questions@freebsd.org Subject: RE: Future development of Jail (was Re: corporate backers of freebsd) On Wed, 2 Jan 2008, Ted Mittelstaedt

module loads from kldload, but gives Unsupported file type from loader.conf

2008-01-05 Thread Steve Franks
I successfully built snd_hda on my 6.3amd64 system, so I placed it in loader.conf (snd_hda_load=YES), when I boot, dmesg shows: kldload: Unsupported file type If I sudo kldload snd_hda, dmesg shows: kldload: Unsupported file type kldload: Unsupported file type pcm0: Intel 82801G High Definition

Re: My sendmail appears to be fixed, advice needed though

2008-01-05 Thread Giorgos Keramidas
On 2008-01-05 17:13, Andrew Falanga [EMAIL PROTECTED] wrote: Well, oddly enough I moved those additional lines to a position before the MAILER macros (I'll post the whitbap.mc file below as it exists now). However, I still got those error messages: Jan 5 18:29:10 whitbap sm-mta[6207]:

[HOW-TO] cvsup for ports -- Re: compact portsnap db

2008-01-05 Thread Rudy
Michael Lednev wrote: Hello. Is there any way to compact /var/db/portsnap other than deleting it and doing postsnap fetch? I don't like portsnap -- granted I've never typed the portsnap command in my 10 years of FreeBSD use. I use cvsup! More info:

Re: My sendmail appears to be fixed, advice needed though

2008-01-05 Thread Andrew Falanga
On Saturday 05 January 2008 19:26:30 Giorgos Keramidas wrote: On 2008-01-05 17:13, Andrew Falanga [EMAIL PROTECTED] wrote: Well, oddly enough I moved those additional lines to a position before the MAILER macros (I'll post the whitbap.mc file below as it exists now). However, I still got

Re: HOW-TO get Flash7 working!

2008-01-05 Thread Rudy
By the way, I had some problems installing flash7 from ports a few days ago. It didn't like the size of the file and would fail even if you downloaded from Adobe and copied to ports/disfiles. I later did a 'portsnap fetch update' that must have gotten updated makefiles and fixed that

Re: HOW-TO get Flash7 working!

2008-01-05 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Greg Mars wrote: Aryeh M. Friedman wrote: Rudy wrote: With all this talk about FLASH, I found something out by trial and error and want to post again to the list so that others searching can get the FLASH player working in their brower: THIS

Re: HOW-TO get Flash7 working!

2008-01-05 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rudy wrote: By the way, I had some problems installing flash7 from ports a few days ago. It didn't like the size of the file and would fail even if you downloaded from Adobe and copied to ports/disfiles. I later did a 'portsnap fetch update'

Re: [HOW-TO] cvsup for ports -- Re: compact portsnap db

2008-01-05 Thread Aryeh M. Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rudy wrote: Michael Lednev wrote: Hello. Is there any way to compact /var/db/portsnap other than deleting it and doing postsnap fetch? I don't like portsnap -- granted I've never typed the portsnap command in my 10 years of FreeBSD use. I

The FreeBSD Diary: 2007-12-16 - 2008-01-05

2008-01-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