Re: Capturing tar output

2008-09-10 Thread Wojciech Puchar
no space between 2 and > with space you started /usr/local/gtar/bin/tar -cvf - /home/hallja 2 and redirected stdout to /var/log/test.txt while trying to pipe the output too to gpg On Thu, 11 Sep 2008, [EMAIL PROTECTED] wrote: redirect stderr with "2>" operator Using the following command

Invalid pptp server

2008-09-10 Thread Michael Vorobyov
Hi, all! My ISP (Internet access via PPTP) has just changed PPTP server and now the server assign the same IP for the far end of the pptp interface as the server has. i.e.: pptp server - 192.168.0.1 my IP - 192.168.0.10 pptp iface - inet 192.168.1.10 --> 192.168.0.1 netmask 0x certain

Ran fsck, now all files are in lost+found

2008-09-10 Thread Bryant Eadon
So, I moved a RAID5 device between a FreeBSD 6.0 machine to fresh FreeBSD 7.0 machine. When I attempted to mount the device the OS complained that the disk had not bee unmounted properly -- figuring it was probably correct, I diligently dropped to single user mode and ran fsck on the disk. I

Re: Configure 2 gateways on a freebsd box for 2 interfaces

2008-09-10 Thread Olivier Nicole
Hi, > The first interface 192.168.0.1 255.255.255.0 > The second interface: 10.228.44.1 255.255.255.0 > The gateway for the first interface must be 192.168.0.254 and the > second > interface must be 10.228.44.254 > How can I configure them? In rc.conf we have just defaultrouter but > we can't

Re: mail server DNS configuration questions

2008-09-10 Thread Kevin Kinsey
Andrew Falanga wrote: Clients in the churches private network cannot send mail using this server, though they can receive mail from it (POP). The church has a private network, PN1, and the mail server sits at a church members house because he has a static IP address; let's call that PN2. The

Using long preambles on an Atheros WG311T wireless card

2008-09-10 Thread Christophe Ramon
Dear all I'm running hostapd on a FreeBSD 6.1 server and an Atheros WG311T wireless card. ath0: flags=8843 mtu 2290 inet6 fe80::214:6cff:fe72:a9fa%ath0 prefixlen 64 scopeid 0x3 inet 10.1.0.1 netmask 0xff00 broadcast 10.1.0.255 ether 00:14:6c:72:a9:fa media: IEE

Re: Capturing tar output

2008-09-10 Thread jhall
> > redirect stderr with "2>" operator > Using the following command, # /usr/local/gtar/bin/tar -cvf - /home/hallja 2 > /var/log/test.txt | /usr/local/bin/gpg --encrypt "recipient" | dd of=/dev/nsa0 obs=128k I receive an error meesage stating, "Ambiguous output redirect." Any additional suggestio

Re: mail server DNS configuration questions

2008-09-10 Thread Andrew Falanga
Sahil Tandon wrote: Andrew Falanga <[EMAIL PROTECTED]> wrote: It doesn't take a rocket scientist, or a computer scientist, to figure out we've got DNS issues. What exactly is the problem though? What problems are you having on the mail server that lead you to the above conclusion?

Re: portmanager errors

2008-09-10 Thread gahn
yes: lab2# portmanager -v rParseCommandLine 0.4.1_9 --- On Wed, 9/10/08, Gerard <[EMAIL PROTECTED]> wrote: > From: Gerard <[EMAIL PROTECTED]> > Subject: Re: portmanager errors > To: freebsd-questions@freebsd.org > Date: Wednesday, September 10, 2008, 4:15 AM > On Tue, Sep 9, 2008 at 11:04 PM

kde4 build trouble with lib samplerate

2008-09-10 Thread Desmond Chapman
Here is the output from building kde4: cc -I/usr/local/include -O2 -fno-strict-aliasing -pipe -std=gnu99 -W -Wstrict-prototypes -Wmissing-prototypes -Wall -Waggregate-return -Wcast-align -Wcast-qual -Wnested-externs -Wshadow -Wpointer-arith -o .libs/sndfile-resample sndfile-resample.o -L/usr/

Re: Configure 2 gateways on a freebsd box for 2 interfaces

2008-09-10 Thread Derek Ragona
At 12:05 PM 9/10/2008, The Noob wrote: Hello all, I have a small question. I have two interface in two vlans. The first interface 192.168.0.1 255.255.255.0 The second interface: 10.228.44.1 255.255.255.0 The gateway for the first interface must be 192.168.0.254 and the second interface must be 1

Re: mail server DNS configuration questions

2008-09-10 Thread Andrew Falanga
George Davidovich wrote: On Sat, Sep 06, 2008 at 07:28:28PM -0600, Andrew Falanga wrote: Well, my clients at church are still having issues and after working with George, a respondant to my original questions, I think that most, if not all, of my problems are related to DNS and how we've got

Re: mail server DNS configuration questions

2008-09-10 Thread Andrew Falanga
Patrick Mahan wrote: Andrew Falanga presented these words - circa 9/6/08 6:28 PM-> Hi, Well, my clients at church are still having issues and after working with George, a respondant to my original questions, I think that most, if not all, of my problems are related to DNS and how we've got

Re: Configure 2 gateways on a freebsd box for 2 interfaces

2008-09-10 Thread Tom Marchand
You should be able to use the route command. On Sep 10, 2008, at 1:05 PM, The Noob wrote: Hello all, I have a small question. I have two interface in two vlans. The first interface 192.168.0.1 255.255.255.0 The second interface: 10.228.44.1 255.255.255.0 The gateway for the first interface mu

Re: branches, updates, buildworld

2008-09-10 Thread Pieter de Goeje
On Wednesday 10 September 2008, [EMAIL PROTECTED] wrote: > 4) Will "make buildworld" fail with a make.conf like this: > > > PERL_VER=5.8.8 > PERL_VERSION=5.8.8 > BDECFLAGS="-march=pentium2 -mmmx -pipe -O3 -fomit-frame-pointer \ > -combine -fno-strict-aliasing" > > CFLAGS+=${BDECFLAGS} > CX

Re: Capturing tar output

2008-09-10 Thread Wojciech Puchar
/usr/local/gtar/bin/tar -C /usr/home/photos --listed-incremental \ /var/db/photos.snar -cvf - ./ |tee outfile| /usr/local/bin/gpg --encrypt --recipient \ "recipient" | dd of=/dev/nsa0 obs=128K this will duplicate data, not filenames -- Original message -- F

Re: Capturing tar output

2008-09-10 Thread Wojciech Puchar
I am using the following command to perform backups each evening. /usr/local/gtar/bin/tar -C /usr/home/photos --listed-incremental \ /var/db/photos.snar -cvf - ./ | /usr/local/bin/gpg --encrypt --recipient \ "recipient" | dd of=/dev/nsa0 obs=128K Since I am having tar write the output of the co

Re: branches, updates, buildworld

2008-09-10 Thread Todor Genov
> OK. It brings another question. For example Postgres is not a part of > the base system. Will it break if i make: > ## > pkg_add -r postgresql83-server.tbz > cvsup /usr/share/examples/cvsup/standard-supfile > make buildworld > make buildkernel > make installkernel > reboot (in single mode) > merg

Re: branches, updates, buildworld

2008-09-10 Thread Kevin Kinsey
Lister Notifies wrote: Nope, it's too soon for me to deal with moving targets. So, I guess I need the rock-stable version until I get familiar with the OS. I'll agree with "rock-stable" as it relates to FBSD; however, realize that the "-STABLE" tag mostly refers to the fact that the developers

Re: Configure 2 gateways on a freebsd box for 2 interfaces

2008-09-10 Thread Christopher Cowart
The Noob wrote: > I have a small question. > I have two interface in two vlans. > The first interface 192.168.0.1 255.255.255.0 > The second interface: 10.228.44.1 255.255.255.0 > The gateway for the first interface must be 192.168.0.254 and the second > interface must be 10.228.44.254 > How can I

Last Chance to Register for Tomorrow's Connect Webcast

2008-09-10 Thread Connect HQ
GET CONNECTED ONLINE [1]myCommunity [2]Chapters [3]Special Interest Groups [4]Community Voice [5]Events If you would like to opt-out of all future Connect e-mail correspondence, please send an e-mail with "opt-out" in the subject line to [EMAIL PROTECTED] Dear ,

Re: kldxref: file isn't dynamically-linked^M -- TECRA

2008-09-10 Thread freebsd_user
Chris Hill wrote: On Wed, 10 Sep 2008, Polytropon wrote: [snip] I'm sure you noticed the Ctrl-M (^M) at the ends of each line. This seems to be an MS-DOS-like line break (ASCII 0x13 + 0x10). UNIX (and so FreeBSD) use the NL or LF character 0x10. And 0x13 is the CR character which is equivalent

Re: branches, updates, buildworld

2008-09-10 Thread Lister Notifies
On 9/10/08, Todor Genov <[EMAIL PROTECTED]> wrote: > > [EMAIL PROTECTED] wrote: > > Hi, --snip-- > > 1) After reading the docs I remained with the impression that sources > > should be updated for "-current" and "-stable" branches only. Is this > > correct? > > The STABLE and CURRENT branch

Re: Configure 2 gateways on a freebsd box for 2 interfaces

2008-09-10 Thread Bill Moran
In response to "The Noob" <[EMAIL PROTECTED]>: > Hello all, > > I have a small question. > I have two interface in two vlans. > The first interface 192.168.0.1 255.255.255.0 > The second interface: 10.228.44.1 255.255.255.0 > The gateway for the first interface must be 192.168.0.254 and the secon

Configure 2 gateways on a freebsd box for 2 interfaces

2008-09-10 Thread The Noob
Hello all, I have a small question. I have two interface in two vlans. The first interface 192.168.0.1 255.255.255.0 The second interface: 10.228.44.1 255.255.255.0 The gateway for the first interface must be 192.168.0.254 and the second interface must be 10.228.44.254 How can I configure them? In

Re: branches, updates, buildworld

2008-09-10 Thread Todor Genov
[EMAIL PROTECTED] wrote: > Hi, > > I'm new to FreeBSD and I'd like to give it a try as a PostgreSQL test > server on an ancient box. > > Since I have a lot to learn about this OS, I chose FreeBSD-7.0-RELEASE. > (It's the most current production-ready release now, right?). > > On the other han

Re: Why the extra shells?

2008-09-10 Thread Paul Chvostek
Hi John, On Mon, Sep 01, 2008 at 08:43:49AM -0400, John Almberg wrote: > > This is my main concern at the moment... I am wondering if I killed > off an essential process when I killed off those shells... Probably not. Your `ps` output was: [on:~]> ps PID TT STAT TIME COMMAND 3

optical drives with freebsd 6.3

2008-09-10 Thread gahn
Hello, all I am having problems to mount my dvdrom drives on dell precision 490. in the file /etc/fstab, i removed option "noauto" from the line: /dev/acd0/cdrom cd9660 ro,noauto 0 0 /dev/acd1/cdrom1cd9660 ro,noauto 0 0 after i rebooted the machine

Re: safest way to upgrade a production server

2008-09-10 Thread John Almberg
maybe 6.3 had the drivers for the motherboard? I had that - I purchased a nice shiny newmotherbaord in 2007 but could not use it before 7.0R came out as the chips were not supported by 6.x. I chose not to use a CURRENT or RC version of 7, but to just wait. Possibly... the motherboard is an

Re: Capturing tar output

2008-09-10 Thread Tom Marchand
Trying using tee something like this: /usr/local/gtar/bin/tar -C /usr/home/photos --listed-incremental \ /var/db/photos.snar -cvf - ./ |tee outfile| /usr/local/bin/gpg --encrypt --recipient \ "recipient" | dd of=/dev/nsa0 obs=128K -- Original message -- From:

branches, updates, buildworld

2008-09-10 Thread relay.lists
Hi, I'm new to FreeBSD and I'd like to give it a try as a PostgreSQL test server on an ancient box. Since I have a lot to learn about this OS, I chose FreeBSD-7.0-RELEASE. (It's the most current production-ready release now, right?). On the other hand I'd like to make every possible speed impro

Re: freebsd 7.0 and jail

2008-09-10 Thread gahn
thanks for the advice. it worked out after i did "make world ..." first, then "make installworld ..". it doesn't work if one just do "make installworld ..." best --- On Wed, 9/10/08, Primeroz lists <[EMAIL PROTECTED]> wrote: > From: Primeroz lists <[EMAIL PROTECTED]> > Subject: Re: freebsd 7

Capturing tar output

2008-09-10 Thread jhall
Ladies and Gentlemen, I am using the following command to perform backups each evening. /usr/local/gtar/bin/tar -C /usr/home/photos --listed-incremental \ /var/db/photos.snar -cvf - ./ | /usr/local/bin/gpg --encrypt --recipient \ "recipient" | dd of=/dev/nsa0 obs=128K Since I am having tar write

Re: Exiting Gnome

2008-09-10 Thread Glen Barber
On Tue, Sep 9, 2008 at 1:08 AM, FBSD1 <[EMAIL PROTECTED]> wrote: > Started Gnome for first time. Can not figure how to exit (stop) gnome and > return to the FreeBSD command line. The System/logout option just hangs. How are you starting Gnome? Through rc.d or through 'startx'? -- Glen Barber ___

Re: portmanager errors

2008-09-10 Thread Gerard
On Tue, Sep 9, 2008 at 11:04 PM, gahn <[EMAIL PROTECTED]> wrote: > Hello: > > I run into errors when i run "portmanager -u": > > 00344 luit-1.0.2_2 /x11/luit > "Makefile", line 85: Could not find > /usr/ports/x11/xorg-clients/../../x11-servers/xorg-server/Makefile.inc > "Makefile", line 92: Malfor

problem using multiple monitors with gnome on FreeBSD 7

2008-09-10 Thread Derek Ragona
I did a new install of 7.0 on a system equipped with an nvidia 4 video port card with just two monitors attached. Xorg --configure worked fine, and setup xorg.conf correctly for both monitors. When I bring up X with gnome as root, both screens get used just fine. However when I bring up X w

Sudden Inability To Use SQL

2008-09-10 Thread Marcel Grandemange
Ok this is difficult to explain, but I have a FreeBSD7 server that has many components that connect to a remote mysql db for. Raduis/Mail and a few web sites. Recently with nothing changed.. Radius can no longer work cause it cannot contact sql server. Web sites bomb out with sql errors.

Re: freebsd 7.0 and jail

2008-09-10 Thread Primeroz lists
Make sure your buildworld /usr/obj is updated. Good idea is to erase your /usr/obj and buildworld again before going on with the jails. fc On Mon, Sep 8, 2008 at 7:28 PM, gahn <[EMAIL PROTECTED]> wrote: > Hello: > > I am trying to build jails on 7.0 system and got errors: > > ///

Re: safest way to upgrade a production server

2008-09-10 Thread DA Forsyth
On 8 Sep 2008 , [EMAIL PROTECTED] entreated about "freebsd-questions Digest, Vol 232, Issue 3": > >> FreeBSD ***servername*** 6.3-PRERELEASE FreeBSD 6.3-PRERELEASE #1: > >> Mon Dec 3 09:46:53 EST 2007 [EMAIL PROTECTED]:/usr/obj/usr/ > >> src/sys/INET_ON amd64 > > > > oooh, that is a bit old

Re: HUAWEI G3 Modem

2008-09-10 Thread Edwin Groothuis
See http://www.mavetju.org/weblog/html/cat_Huawei_E220.html and http://www.freebsd.org/cgi/query-pr.cgi?pr=usb/118686 -- Edwin Groothuis |Personal website: http://www.mavetju.org [EMAIL PROTECTED]| Weblog: http://www.mavetju.org/weblog/ __

Re: kde3 build problems

2008-09-10 Thread Jonathan McKeown
On Wednesday 10 September 2008 06:55:18 joeb wrote: > I believe kde3 is obsolete. I Just did kde4 and it worked. > That's most definitely not the case. KDE4 is still for early adopters, and KDE3 will continue to be supported as the ``conservative'' stable version for a while, according to