Re: pf or ipf rules to allow p2p Limewire through

2008-11-30 Thread Fbsd1
[EMAIL PROTECTED] wrote: So on the Limewire Advanced - Firewall config page enter a port number, such as 6346 in both the Listen on Port and the Manual Port Forward boxes. Then after your NAT rule in pf.conf enter something like the following: rdr on $ExtIF proto tcp from any to any port

Re: for awk experts only.

2008-11-30 Thread Giorgos Keramidas
On Sat, 29 Nov 2008 20:59:51 -0800, Gary Kline [EMAIL PROTECTED] wrote: wordnet/wn prints the string noun out whereas I'd rather it simply printed n. Is there a way of making this substitution using awk? (I've never used awk except as a cmdline filter.) The following

Re: FreeBSD 4.8: can't load kernel after doing cp -R / to another disk

2008-11-30 Thread Tijl Coosemans
On Sunday 30 November 2008 06:57:29 [EMAIL PROTECTED] wrote: Hello, everyone. This is the problem: our SCSI disk with FreeBSD 4.8 on it has been failing recently, so I copied its root partition to a fresh IDE disk with cp -pR and You should use dump and restore to copy the root partition,

Re: Unix program that sends email directly using MX record

2008-11-30 Thread Ott Köstner
Peter Boosten wrote: The most recent vulnerabilities of Postfix are from August and September 2008, and I still use it. Also I use (with great happyness) Sendmail on two machines, without any problems. The only problem ever caused was by clamav. Would be interesting to know, what kind of

Re: Anybody familiar with publib??

2008-11-30 Thread Ruben de Groot
On Sat, Nov 29, 2008 at 02:51:23PM -0800, Gary Kline typed: People, I found a neat function in publib that should do what I want, but adding either #imclude publib.h // as per man publib OR #include /usr/local/include/publib.h fails. Yes, I am adding -lpub to the enc of gcc.

Re: Unix program that sends email directly using MX record

2008-11-30 Thread Peter Boosten
On 30 nov 2008, at 13:51, Ott Köstner [EMAIL PROTECTED] wrote: Peter Boosten wrote: The most recent vulnerabilities of Postfix are from August and September 2008, and I still use it. Also I use (with great happyness) Sendmail on two machines, without any problems. The only problem ever

Re: Temporarily blocking ports

2008-11-30 Thread Jos Chrispijn
Thank you all for your help! Jos Chrispijn ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

does not understand df -H

2008-11-30 Thread Tsu-Fan Cheng
Hi, I have a pretty basic question: when I df -H my disk, the numbers cant add up, Filesystem SizeUsed Avail Capacity Mounted on /dev/ad0c 484G429G 17G96%/ad0c there should be more disk space available based on what is shown. why is this like that?? thanks!!

Re: does not understand df -H

2008-11-30 Thread Wojciech Puchar
Filesystem SizeUsed Avail Capacity Mounted on /dev/ad0c 484G429G 17G96%/ad0c there should be more disk space available based on what is shown. why is this like that?? man newfs man tunefs you used default options with newfs i think, including 8% space

Re: Problem about ppp -nat

2008-11-30 Thread Pongthep Kulkrisada
Hi all, set log phase chat connect carrier link ipcp ccp ID0 TUN command I still can't dial using this configuration... # ppp -background isp Loading /lib/libalias_cuseeme.so Loading /lib/libalias_ftp.so Loading /lib/libalias_irc.so Loading /lib/libalias_nbt.so Loading /lib/libalias_pptp.so

Re: Unix program that sends email directly using MX record

2008-11-30 Thread Sahil Tandon
Ott K?stner [EMAIL PROTECTED] wrote: Peter Boosten wrote: The most recent vulnerabilities of Postfix are from August and September 2008, and I still use it. Also I use (with great happyness) Sendmail on two machines, without any problems. The only problem ever caused was by clamav. Would

Re: 5 TB server

2008-11-30 Thread Valentin Bud
On Fri, Nov 28, 2008 at 8:38 PM, Modulok [EMAIL PROTECTED] wrote: On 11/28/08, Valentin Bud [EMAIL PROTECTED] wrote: Hello community, I have to come up with a solution for a company that has as we speak 4 TB of data spread among 3 computers with lots of HDDs. Of course i've recommend them

Re: does not understand df -H

2008-11-30 Thread Sahil Tandon
Tsu-Fan Cheng [EMAIL PROTECTED] wrote: Hi, I have a pretty basic question: when I df -H my disk, the numbers cant add up, Filesystem SizeUsed Avail Capacity Mounted on /dev/ad0c 484G429G 17G96%/ad0c there should be more disk space available based

Re: 5 TB server

2008-11-30 Thread Valentin Bud
On Fri, Nov 28, 2008 at 9:45 PM, Karl Vogel [EMAIL PROTECTED] wrote: On Fri, 28 Nov 2008 15:48:45 +0200, Valentin Bud [EMAIL PROTECTED] said: V I have to come up with a solution for a company that has as we speak 4 TB V of data spread among 3 computers with lots of HDDs. Of course I've V

Re: 5 TB server

2008-11-30 Thread Valentin Bud
On Fri, Nov 28, 2008 at 11:55 PM, Karl Vogel [EMAIL PROTECTED] wrote: On Fri, 28 Nov 2008 14:45:31 -0500, I spewed something along the lines of: K In my experience, completely new filesystems or operating systems need at K least 5 years in the field to weed out all the weird corner-cases. I

Re: Pasting via ssh causes data loss

2008-11-30 Thread Mel
On Sunday 30 November 2008 06:46:59 Eugene Pimenov wrote: Hello everyone, I'm not really sure weither it's related to freebsd or ssh. When I paste a lot of data (6060 bytes, 60 lines 100 bytes each + ‘\n’) via ssh into `cat test.txt` or the small program, one freebsd receives 5181, another

Re: Pasting via ssh causes data loss

2008-11-30 Thread Eugene Pimenov
30.11.2008, в 19:36, Mel написал(а): On Sunday 30 November 2008 06:46:59 Eugene Pimenov wrote: Not sure, but can you copy files via cat? As in: cat /tmp/foo | ssh machine cat - /tmp/foo If that isn't truncated, I can only think of clipboard limitations or tty issues. No, it's not

Regular Expression Help

2008-11-30 Thread Drew Tomlinson
I'm attempting to take an ldiff file and flip first/last name order. However I can not figure out how to match hyphenated last names. In vim, my current search/replace string is: %s/cn=\(\w\+\-*\) \(\w\+\),/cn=\2 \1,/gc This will match: cn=Smith Joe, and replace it with: cn=Joe Smith,

Re: for awk experts only.

2008-11-30 Thread Gary Kline
On Sun, Nov 30, 2008 at 11:47:29AM +0200, Giorgos Keramidas wrote: On Sat, 29 Nov 2008 20:59:51 -0800, Gary Kline [EMAIL PROTECTED] wrote: wordnet/wn prints the string noun out whereas I'd rather it simply printed n. Is there a way of making this substitution using awk? (I've

Re: Regular Expression Help

2008-11-30 Thread prad
On Sun, 30 Nov 2008 09:14:53 -0800 Drew Tomlinson [EMAIL PROTECTED] wrote: I'm attempting to take an ldiff file and flip first/last name order. you can try using sh (i'm using zsh) file data.txt has the following: joe brown joe brown-smith file t.sh is coded as: #!/usr/local/bin/zsh #

Re: for awk experts only.

2008-11-30 Thread Giorgos Keramidas
On Sun, 30 Nov 2008 09:15:15 -0800, Gary Kline [EMAIL PROTECTED] wrote: On Sun, Nov 30, 2008 at 11:47:29AM +0200, Giorgos Keramidas wrote: Don't do this with a long stream of if/else/.../else blocks. AWK is a pattern based rule-language. You can apply different blocks of code to lines that

Re: 5 TB server

2008-11-30 Thread Wojciech Puchar
I perfectly agree with you and yes there might be monsters out there in the ZFS on FreeBSD but the fact that us (the community) embrace the change and apply it makes the development of it possible and even faster. I don't want to offend anyone or to start a war this is just my opinion.

Re: Regular Expression Help

2008-11-30 Thread Matthew Seaman
Drew Tomlinson wrote: I'm attempting to take an ldiff file and flip first/last name order. However I can not figure out how to match hyphenated last names. In vim, my current search/replace string is: %s/cn=\(\w\+\-*\) \(\w\+\),/cn=\2 \1,/gc This will match: cn=Smith Joe, and replace it

Re: Regular Expression Help

2008-11-30 Thread Giorgos Keramidas
On Sun, 30 Nov 2008 09:14:53 -0800, Drew Tomlinson [EMAIL PROTECTED] wrote: I'm attempting to take an ldiff file and flip first/last name order. However I can not figure out how to match hyphenated last names. In vim, my current search/replace string is: %s/cn=\(\w\+\-*\) \(\w\+\),/cn=\2

Re: Regular Expression Help

2008-11-30 Thread Drew Tomlinson
Matthew Seaman wrote: Drew Tomlinson wrote: I'm attempting to take an ldiff file and flip first/last name order. However I can not figure out how to match hyphenated last names. In vim, my current search/replace string is: %s/cn=\(\w\+\-*\) \(\w\+\),/cn=\2 \1,/gc This will match:

Re: FBSD 7.1 BETA2 and RTL8168/8111 problem

2008-11-30 Thread Fernando Apesteguía
On Fri, Nov 28, 2008 at 11:09 PM, Tore Lund [EMAIL PROTECTED] wrote: Fernando Apesteguía wrote: Hi all, I recently installed FreeBSD 7.1 BETA2 on my system. During installation using FTP option, I could notice the following: After some random time (two, five or six minutes, for instance)

Re: Pasting via ssh causes data loss

2008-11-30 Thread Ivan Voras
Eugene Pimenov wrote: Hello everyone, I'm not really sure weither it's related to freebsd or ssh. When I paste a lot of data (6060 bytes, 60 lines 100 bytes each + ‘\n’) via ssh into `cat test.txt` or the small program, one freebsd receives 5181, another receives 3221 bytes. I regularly

Error Building Qt4-sql

2008-11-30 Thread Warren Liddell
Just updated my ports via csup and i need qt4-sql installed as a dependency for KDE4.1.3, but it refuses to let me compile it with the following error... The target system byte order could not be detected! Turn on verbose messaging (-v) to see the final report. You can use the -little-endian

Re: Pasting via ssh causes data loss

2008-11-30 Thread Eugene Pimenov
On 30 нояб, 23:20, Ivan Voras [EMAIL PROTECTED] wrote: I regularly do copy-pastes of textual data of that size (and larger) in interactive sessions (with text editors) without problems, between FreeBSD machines and from Linux to FreeBSD machines. Are you sure it's not a problem with your

Re: 5 TB server

2008-11-30 Thread Wojciech Puchar
This is one of the main reasons i want to go with ZFS. Another would be the filesystem level compression of the data. I have noticed that 3dmax files (one of the programs the company works with) are very compressable (from 50 Mb to ~ 7Mb). will it be majority of data???

Re: pf or ipf rules to allow p2p Limewire through

2008-11-30 Thread Norberto Meijome
On Fri, 28 Nov 2008 14:31:14 +0800 Fbsd1 [EMAIL PROTECTED] wrote: I think you are missing the fact that limewire does not use dedicated port numbers. Every session uses different port numbers and the remote computers come in on different hight port numbers. Limewire starts off with a proto

Re: Pasting via ssh causes data loss

2008-11-30 Thread Chris
On Nov 30, 2008, at 2:20 PM, Eugene Pimenov wrote: On 30 нояб, 23:20, Ivan Voras [EMAIL PROTECTED] wrote: I regularly do copy-pastes of textual data of that size (and larger) in interactive sessions (with text editors) without problems, between FreeBSD machines and from Linux to FreeBSD

Re: firewall rules for bitlord, yahoo, limewire

2008-11-30 Thread Norberto Meijome
On Thu, 27 Nov 2008 12:07:50 +0100 (CET) Wojciech Puchar [EMAIL PROTECTED] wrote: Yeah. Limewire is written in Java (iirc), which makes it extremely easy to port it to any system that can run java. for P2P sharing rtorrent (/usr/ports/net-p2p/rtorrent) works excellent if you only want

Re: firewall rules for bitlord, yahoo, limewire

2008-11-30 Thread Norberto Meijome
On Wed, 26 Nov 2008 23:25:21 -0600 Andrew Gould [EMAIL PROTECTED] wrote: The Limewire website says it has versions for Windows, Mac OS X, Linux and others, including OS/2 and Solaris. furthermore, you can just download the source and make it run from within Eclipse (with some tweaks regarding

ports mirror

2008-11-30 Thread Juan Pablo Roig
Hi all: i want trying to make in my lan a mirror of the ports. I have the cvsup mirror , and an rsync of all the ports. But in a client i made a cvsup of the ports list, but then when i make a port it going to get the tar.bz from an external ftp... i have an idea, to nfs mount all the rsynced

Re: ports mirror

2008-11-30 Thread Sahil Tandon
Juan Pablo Roig [EMAIL PROTECTED] wrote: i want trying to make in my lan a mirror of the ports. I have the cvsup mirror , and an rsync of all the ports. But in a client i made a cvsup of the ports list, but then when i make a port it going to get the tar.bz from an external ftp... If you

Is there anything weird I should know about using ipfw on alias addresses?

2008-11-30 Thread Brett Davidson
ifconfig shows the alias addresses correctly bound. Creating an ipfw rule and testing it from the command line works (connects out from master address, not alias) From website on alias address, the firewall blocks the packets. The weird thing is that it tags them (in the security log) as

doubt about contribution

2008-11-30 Thread manjunath reddy
derar sir , I have downloaded freebsd code and I have made some modifications to it. But now feeling difficulty in sending that code to cvs. can u please give me the instructions to upload code to CVS archieve. I am also intrested in knowing the

Re: doubt about contribution

2008-11-30 Thread Steven Susbauer
manjunath reddy wrote: derar sir , I have downloaded freebsd code and I have made some modifications to it. But now feeling difficulty in sending that code to cvs. can u please give me the instructions to upload code to CVS archieve. I am also

Re: Purchase of FreeBSD

2008-11-30 Thread Bryant Eadon
Harry Veltman wrote: Where can I buy it on CD, and how do I know if it is compatible with my hardware? ___ Harry, This may be an obvious statement, but this can be downloaded (an ISO image is an exact copy of a CD or DVD --

Re: Pasting via ssh causes data loss

2008-11-30 Thread Mel
On Sunday 30 November 2008 17:53:21 Eugene Pimenov wrote: 30.11.2008, в 19:36, Mel написал(а): On Sunday 30 November 2008 06:46:59 Eugene Pimenov wrote: Not sure, but can you copy files via cat? As in: cat /tmp/foo | ssh machine cat - /tmp/foo If that isn't truncated, I can only think

Re: Regular Expression Help

2008-11-30 Thread Matthew Seaman
Drew Tomlinson wrote: Matthew Seaman wrote: % perl -p -e 's/cn=([^ ,]+) ([^,]+),/cn=$2 $1,/' foo.txt I still don't really understand *why* the above works but I'm trying to pick it apart now. The RE breaks down like this: /cn=([^ ,]+) ([^,]+),/ cn= Match literal

Vishnu is out of the office.

2008-11-30 Thread vishnux
I will be out of the office starting 12/01/2008 and will not return until 12/12/2008. Please contact helpdesk directly for urgent matters at 043854184. ___ freebsd-questions@freebsd.org mailing list

Re: Regular Expression Help

2008-11-30 Thread Olivier Nicole
Hi, I still don't really understand *why* the above works but I'm trying to pick it apart now. Whenever I have a doubt about regular expression, I use the regexp coach. It works on Windows, but I find it a very intelligent and usefull tool. http://weitz.de/regex-coach/ Best regards, Olivier