routing for jails on public IPs, jails on private IPs between 2 servers

2009-08-05 Thread Izhar Firdaus
Hi , I have this question which need some comment/help on: == the setup == I have 2 freebsd servers with several jails running on it. Each server have several jails thats either listening on publicly accessible IP or listening on a loopback/private IP. The two servers are connected together

Re: find question

2009-08-05 Thread Matthew Seaman
Jay Hall wrote: I am sure this is something I am doing that is obviously wrong, but I cannot figure it out. I am reading a list of directories from a file, and then listing all of the files in the directory to a file. Here is the code. #!/usr/local/bin/bash cat ${FILELIST} |

How to find real CPU temperature?

2009-08-05 Thread Unga
Hi all I'm running FreeBSD 7.2 on Intel P4 computer. The lmmon -i shows 21C and when go to BIOS shows 65C! BIOS reading seems to be correct as the CPU heat pipe is very hot to the extent cannot touch. How do I read the real BIOS temperature readings when FreeBSD is running to check whether

Re: Moused crashes with Synaptics

2009-08-05 Thread Bertram Scharpf
Hi Mel, Am Dienstag, 04. Aug 2009, 18:50:24 -0800 schrieb Mel Flynn: On Tuesday 04 August 2009 03:26:24 Bertram Scharpf wrote: Further I seem to have missed something else. I found the page http://wiki.freebsd.org/SynapticsTouchpad where are mentioned some sysctls:

Re: cvs tag usage

2009-08-05 Thread David Southwell
On Tue, Aug 4, 2009 at 5:32 PM, b. f.bf1...@googlemail.com wrote: He has _7_2_0_RELEASE, not RELENG_7_0_2_RELEASE. Well, neither actually. :) s/0_2/2_0/ . But I inferred from the context -- it seemed obvious, particularly from what he wrote later -- that he meant those choices as

Re: cvs tag usage

2009-08-05 Thread David Southwell
On Tue, Aug 4, 2009 at 5:32 PM, b. f.bf1...@googlemail.com wrote: He has _7_2_0_RELEASE, not RELENG_7_0_2_RELEASE. Well, neither actually. :) s/0_2/2_0/ . But I inferred from the context -- it seemed obvious, particularly from what he wrote later -- that he meant those choices as

Network card Intel and 802.1P tag

2009-08-05 Thread Andrey O.Sokolov
Hi! I have two network interfaces - fxp and em When i send on both interface packet with 802.1P tag, i see this tag on fxp and don't see on em. em: 10:41:14.849139 00:18:ba:8a:c8:c1 (oui Unknown) 00:15:b7:62:de:ec (oui Unknown), ethertype 802.1Q (0x8100), length 118: vlan 20, p 0 fxp:

Learning about Control of Optimization -- for dummies please

2009-08-05 Thread David Southwell
I have found http://docs.freebsd.org/info/gcc/gcc.ifo.Optimize_Options.html. I am about to build a new kernel am starting to dig a bit deeper into things I have, until now, taken for granted. The above link is very informative in technical terms about how to control optimization but I find it

Re: Learning about Control of Optimization -- for dummies please

2009-08-05 Thread Roland Smith
On Wed, Aug 05, 2009 at 10:54:07AM +0100, David Southwell wrote: I have found http://docs.freebsd.org/info/gcc/gcc.info.Optimize_Options.html. I am about to build a new kernel am starting to dig a bit deeper into things I have, until now, taken for granted. The above link is very

Re: How to find real CPU temperature?

2009-08-05 Thread Erik Norgaard
Unga wrote: Hi all I'm running FreeBSD 7.2 on Intel P4 computer. The lmmon -i shows 21C and when go to BIOS shows 65C! BIOS reading seems to be correct as the CPU heat pipe is very hot to the extent cannot touch. How do I read the real BIOS temperature readings when FreeBSD is running to

Re: How to find real CPU temperature?

2009-08-05 Thread Modulok
On 8/5/09, Unga unga...@yahoo.com wrote: I'm running FreeBSD 7.2 on Intel P4 computer. The lmmon -i shows 21C and when go to BIOS shows 65C! BIOS reading seems to be correct as the CPU heat pipe is very hot to the extent cannot touch. How do I read the real BIOS temperature readings when

Re: How to find real CPU temperature?

2009-08-05 Thread Unga
--- On Wed, 8/5/09, Erik Norgaard norga...@locolomo.org wrote: From: Erik Norgaard norga...@locolomo.org Subject: Re: How to find real CPU temperature? To: Unga unga...@yahoo.com Cc: freebsd-questions@freebsd.org Date: Wednesday, August 5, 2009, 7:03 PM Unga wrote: Hi all I'm running

Re: How to find real CPU temperature?

2009-08-05 Thread Erik Norgaard
Unga wrote: Here is what it show on my computer: sysctl -a | grep hw.acpi.thermal hw.acpi.thermal.min_runtime: 0 hw.acpi.thermal.polling_rate: 10 hw.acpi.thermal.user_override: 0 hw.acpi.thermal.tz0.temperature: 19.0C hw.acpi.thermal.tz0.active: -1 hw.acpi.thermal.tz0.passive_cooling: 1

Re: Learning about Control of Optimization -- for dummies please

2009-08-05 Thread Scott Bennett
On Wed, 5 Aug 2009 12:19:23 +0200 Roland Smith rsm...@xs4all.nl wrote: On Wed, Aug 05, 2009 at 10:54:07AM +0100, David Southwell wrote: I have found http://docs.freebsd.org/info/gcc/gcc.info.Optimize_Options.html. I am about to build a new kernel am starting to dig a bit deeper into

Re: Learning about Control of Optimization -- for dummies please

2009-08-05 Thread David Southwell
On Wed, 5 Aug 2009 12:19:23 +0200 Roland Smith rsm...@xs4all.nl wrote: On Wed, Aug 05, 2009 at 10:54:07AM +0100, David Southwell wrote: I have found http://docs.freebsd.org/info/gcc/gcc.info.Optimize_Options.html. I am about to build a new kernel am starting to dig a bit deeper

Wierd X crash

2009-08-05 Thread Coert Waagmeester
Hello all, I am fairly new to FreeBSD. I use linux a lot. Am running FreeBSD 7.2 i386 with the nvidia 173 driver with an AGP GeForce FX 5200. My X works, with xinerama and two screens, perfectly, but as soon as I hold down any key (like Backspace to remove a line of text) X crashes. This is

kernel designations terminology confusion -- amd64 used for into quad core

2009-08-05 Thread David Southwell
Hi every one My understanding is that one uses the amd64 for building a kernel for systems with Intel Quad Core processors. It is helpful when naming conventions follow a logical strand. I mean why does freebsd use a single manufacturer's name to represent a genre? David

RE: Learning about Control of Optimization -- for dummies please

2009-08-05 Thread Johan Hendriks
On Wed, 5 Aug 2009 12:19:23 +0200 Roland Smith rsm...@xs4all.nl wrote: On Wed, Aug 05, 2009 at 10:54:07AM +0100, David Southwell wrote: I have found http://docs.freebsd.org/info/gcc/gcc.info.Optimize_Options.html. I am about to build a new kernel am starting to dig a bit deeper

Re: kernel designations terminology confusion -- amd64 used for into quad core

2009-08-05 Thread Erik Trulsson
On Wed, Aug 05, 2009 at 02:14:49PM +0100, David Southwell wrote: Hi every one My understanding is that one uses the amd64 for building a kernel for systems with Intel Quad Core processors. That depends on if you installed the amd64 version of FreeBSD or the i386 version. The kernel should

Re: kernel designations terminology confusion -- amd64 used for into quad core

2009-08-05 Thread Jonathan McKeown
On Wednesday 05 August 2009 15:14:49 David Southwell wrote: Hi every one My understanding is that one uses the amd64 for building a kernel for systems with Intel Quad Core processors. It is helpful when naming conventions follow a logical strand. I mean why does freebsd use a single

Re: Learning about Control of Optimization -- for dummies please

2009-08-05 Thread David Southwell
On Wed, 5 Aug 2009 12:19:23 +0200 Roland Smith rsm...@xs4all.nl wrote: On Wed, Aug 05, 2009 at 10:54:07AM +0100, David Southwell wrote: I have found http://docs.freebsd.org/info/gcc/gcc.info.Optimize_Options.html. I am about to build a new kernel am starting to dig a bit

Re: Learning about Control of Optimization -- for dummies please

2009-08-05 Thread Roland Smith
On Wed, Aug 05, 2009 at 07:38:20AM -0500, Scott Bennett wrote: On Wed, 5 Aug 2009 12:19:23 +0200 Roland Smith rsm...@xs4all.nl wrote: On Wed, Aug 05, 2009 at 10:54:07AM +0100, David Southwell wrote: I have found http://docs.freebsd.org/info/gcc/gcc.info.Optimize_Options.html. I am

Re: kernel designations terminology confusion -- amd64 used for into quad core

2009-08-05 Thread Mark Stapper
David Southwell wrote: Hi every one My understanding is that one uses the amd64 for building a kernel for systems with Intel Quad Core processors. It is helpful when naming conventions follow a logical strand. I mean why does freebsd use a single manufacturer's name to represent a

Re: Learning about Control of Optimization -- for dummies please

2009-08-05 Thread Roland Smith
On Wed, Aug 05, 2009 at 02:02:05PM +0100, David Southwell wrote: Additionally, compiler settings for building the kernel can be set with COPTFLAGS in /etc/make.conf. Using anything other than -O or -O2 is not guaranteed to work. If you don't know what you are doing, do not use COPTFLAGS

Re: kernel designations terminology confusion -- amd64 used for into quad core

2009-08-05 Thread David Southwell
On Wed, Aug 05, 2009 at 02:14:49PM +0100, David Southwell wrote: Hi every one My understanding is that one uses the amd64 for building a kernel for systems with Intel Quad Core processors. That depends on if you installed the amd64 version of FreeBSD or the i386 version. The kernel

Re: Learning about Control of Optimization -- for dummies please

2009-08-05 Thread David Southwell
On Wed, Aug 05, 2009 at 02:02:05PM +0100, David Southwell wrote: Additionally, compiler settings for building the kernel can be set with COPTFLAGS in /etc/make.conf. Using anything other than -O or -O2 is not guaranteed to work. If you don't know what you are doing, do not use

Re: upgrade 7.2 overwrites partitions

2009-08-05 Thread PJ
Polytropon wrote: On Mon, 03 Aug 2009 10:58:58 -0400, PJ af.gour...@videotron.ca wrote: Could somone explain to me why an upgrade from sysinstall would overwrite partitions; especially when the instructions indicate that files will not be overwritten? I'm not sure how to explain.

Re: kernel designations terminology confusion -- amd64 used for into quad core

2009-08-05 Thread Mark Stapper
David Southwell wrote: David Southwell wrote: Hi every one My understanding is that one uses the amd64 for building a kernel for systems with Intel Quad Core processors. It is helpful when naming conventions follow a logical strand. I mean why does freebsd use a single manufacturer's

Re: Wierd X crash

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 04:37:38 Coert Waagmeester wrote: I am fairly new to FreeBSD. I use linux a lot. Am running FreeBSD 7.2 i386 with the nvidia 173 driver with an AGP GeForce FX 5200. My X works, with xinerama and two screens, perfectly, but as soon as I hold down any key (like

Re: upgrade 7.2 overwrites partitions

2009-08-05 Thread Jonathan McKeown
On Wednesday 05 August 2009 15:49:38 PJ wrote: Polytropon wrote: On Mon, 03 Aug 2009 10:58:58 -0400, PJ af.gour...@videotron.ca wrote: Could somone explain to me why an upgrade from sysinstall would overwrite partitions; especially when the instructions indicate that files will not be

Re: kernel designations terminology confusion -- amd64 used for into quad core

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 05:27:55 Erik Trulsson wrote: The amd64 architecture is called that because it was AMD who invented and created it and was for a while the only one using it and since AMD named the architecture AMD64 that was the name FreeBSD used too. Later Intel also started

Re: find question

2009-08-05 Thread Glen Barber
On Wed, Aug 5, 2009 at 3:36 AM, Matthew Seamanm.sea...@infracaninophile.co.uk wrote: Try this as:    for line in $( cat $FILELIST ) ; do        echo $line        find $line -type f $TMPFILE    done *assuming that none of the directory names in $FILELIST contain spaces* for line in

Re: How to find real CPU temperature?

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 04:04:18 Erik Norgaard wrote: Unga wrote: Here is what it show on my computer: sysctl -a | grep hw.acpi.thermal hw.acpi.thermal.min_runtime: 0 hw.acpi.thermal.polling_rate: 10 hw.acpi.thermal.user_override: 0 hw.acpi.thermal.tz0.temperature: 19.0C

Re: find question

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 07:00:40 Glen Barber wrote: On Wed, Aug 5, 2009 at 3:36 AM, Matthew Seamanm.sea...@infracaninophile.co.uk wrote: Try this as: for line in $( cat $FILELIST ) ; do echo $line find $line -type f $TMPFILE done *assuming that none of

Opera in your repos

2009-08-05 Thread Ilya Shpan'kov
Hi, I work in Opera Software - yes, we make a proprietary browser ;) Last 7 years I use GNU/Linux and know that, for example, in Russia the Opera browser is very popular in BSD Community. Well, there is a question: whether Opera is included to your distro and if not - how we can fix this

Re: Opera in your repos

2009-08-05 Thread Vincent Hoffman
Hi, Opera is indeed already in the ports (and packages) and has been since November 5th 2000 according to the Makefile in ports/www/opera. and it appears the port is maintained by one of the staff at opera MAINTAINER= freebsd-maintai...@opera.com Keep up the good work :) Vince

Re: find question

2009-08-05 Thread Glen Barber
On Wed, Aug 5, 2009 at 11:12 AM, Mel Flynnmel.flynn+fbsd.questi...@mailing.thruhere.net wrote: On Wednesday 05 August 2009 07:00:40 Glen Barber wrote: On Wed, Aug 5, 2009 at 3:36 AM, Matthew Seamanm.sea...@infracaninophile.co.uk wrote: Try this as:    for line in $( cat $FILELIST ) ; do

Re: Opera in your repos

2009-08-05 Thread Ilya Shpan'kov
Thanks a lot, Vincent! В письме от Wed, 05 Aug 2009 17:32:26 +0200, Vincent Hoffman vi...@unsane.co.uk сообщал: Hi, Opera is indeed already in the ports (and packages) and has been since November 5th 2000 according to the Makefile in ports/www/opera. and it appears the port is

Re: Opera in your repos

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 07:02:18 Ilya Shpan'kov wrote: I work in Opera Software - yes, we make a proprietary browser ;) Last 7 years I use GNU/Linux and know that, for example, in Russia the Opera browser is very popular in BSD Community. Well, there is a question: whether Opera is

Some problems with Marvell Yukon NIC

2009-08-05 Thread Anton
Hello freebsd-questions, Found the solution here: [1]http ://unix.derkeiler.com/Mailing-Lists/FreeBSD/questions/2008-10/msg01065 .html But do not know how to apply patch :-( Please, help -- -- Best regards, Anton= ;

Re: Network card Intel and 802.1P tag

2009-08-05 Thread Nikos Vassiliadis
Andrey O.Sokolov wrote: Any idea how I can see 802.1P tag on em? You should, I guess, with no extra steps. Perhaps the em driver has some hardware capability, which set the priority tag to zero? Is the vlan hardware processing enabled? Could you post the output of ifconfig em0? Nikos

Re: Network card Intel and 802.1P tag

2009-08-05 Thread Gary Gatten
Not ALL chipsets / drivers support 802.1Q / p , maybe this is one of them? - Original Message - From: owner-freebsd-questi...@freebsd.org owner-freebsd-questi...@freebsd.org To: arc...@alkar.net arc...@alkar.net Cc: freebsd-questions@freebsd.org freebsd-questions@freebsd.org Sent: Wed Aug

Re: Opera in your repos

2009-08-05 Thread Tsu-Fan Cheng
Mmm afaIk, FreeBSd didn't make any software into distro, we just put them into our app system, called ports or port collections, which has all apps that can run on freebsd. http://www.freebsd.org/cgi/ports.cgi?query=operastype=all http://www.freebsd.org/cgi/ports.cgi?query=operastype=all On

7.2 CD won't boot

2009-08-05 Thread John Nielsen.
Hi guys, My 7.2 Release Disc 1 won't boot. I get the following and nothing more: CD Loader 1.2 Building the boot loader arguments Looking up /BOOT/LOADER... Found Relocating the loader and the BTX I'm running on a Intel SE7501BR2, single Xeon, 2GB. I have burned a second CD and swapped the

Re: 7.2 CD won't boot

2009-08-05 Thread Adam Vande More
On Wed, Aug 5, 2009 at 10:41 AM, John Nielsen. i...@us.army.org wrote: Hi guys, My 7.2 Release Disc 1 won't boot. I get the following and nothing more: CD Loader 1.2 Building the boot loader arguments Looking up /BOOT/LOADER... Found Relocating the loader and the BTX I'm running on a

Re: 7.2 CD won't boot

2009-08-05 Thread Glen Barber
On Wed, Aug 5, 2009 at 11:41 AM, John Nielsen.i...@us.army.org wrote: Hi guys, My 7.2 Release Disc 1 won't boot.  I get the following and nothing more: CD Loader 1.2 Building the boot loader arguments Looking up /BOOT/LOADER... Found Relocating the loader and the BTX I'm running on a

Re: 7.2 CD won't boot

2009-08-05 Thread David Southwell
On Wed, Aug 5, 2009 at 11:41 AM, John Nielsen.i...@us.army.org wrote: Hi guys, My 7.2 Release Disc 1 won't boot. I get the following and nothing more: CD Loader 1.2 Building the boot loader arguments Looking up /BOOT/LOADER... Found Relocating the loader and the BTX I'm

Re: find question

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 07:33:42 Glen Barber wrote: On Wed, Aug 5, 2009 at 11:12 AM, Mel Flynnmel.flynn+fbsd.questi...@mailing.thruhere.net wrote: On Wednesday 05 August 2009 07:00:40 Glen Barber wrote: On Wed, Aug 5, 2009 at 3:36 AM, Matthew Seamanm.sea...@infracaninophile.co.uk

Re: 7.2 CD won't boot

2009-08-05 Thread David Southwell
On Wed, Aug 5, 2009 at 11:41 AM, John Nielsen.i...@us.army.org wrote: Hi guys, My 7.2 Release Disc 1 won't boot. I get the following and nothing more: CD Loader 1.2 Building the boot loader arguments Looking up /BOOT/LOADER... Found Relocating the loader and the

help installing

2009-08-05 Thread J Lee Hughes
how can help me install free bsd I get loaded free bsd it said is loaded good Can not get xwindow to load or kde help use to opensuse the best for os == J Lee Hughes K C 0 H W A 73 = Do what you can every day! Learn what you can every day!

Re: help installing

2009-08-05 Thread David Southwell
how can help me install free bsd I get loaded free bsd it said is loaded good Can not get xwindow to load or kde help use to opensuse the best for os == J Lee Hughes K C 0 H W A 73 = Do what you can every day! Learn what you can

Re: Opera in your repos

2009-08-05 Thread Randall Wood
There are no issues I'm aware of, that's specific to the FreeBSD/Opera combination (no flash support is an issue with Adobe, not Opera and I got one bugreport in the queue, that I'm also not sure is FreeBSD specific, more built-in torrent application specific). -- No problems here - it's

Re: Looking for fast graphical web browser

2009-08-05 Thread Randall Wood
On Mon, Aug 03, 2009 at 11:53:22AM +0200, Wolfgang Riegler wrote: Has anyone tested Arora? I'm actually surprised no one has recommended Konqueror. It's not my favorite browser (I happen to love Opera) but it would seem to mostly fit the bill of fast, graphical. One trick it does that I

Re: Network card Intel and 802.1P tag

2009-08-05 Thread Nikos Vassiliadis
Gary Gatten wrote: Not ALL chipsets / drivers support 802.1Q / p , maybe this is one of them? The vlan driver handles tagging itself in software. You don't need support by the hardware driver or the NIC itself. That said, Intel NICs are known to work correctly and support dot1Q tags natively

Re: Looking for fast graphical web browser

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 09:57:30 Randall Wood wrote: On Mon, Aug 03, 2009 at 11:53:22AM +0200, Wolfgang Riegler wrote: Has anyone tested Arora? I'm actually surprised no one has recommended Konqueror. It's not my favorite browser (I happen to love Opera) but it would seem to mostly fit

Re: Network card Intel and 802.1P tag

2009-08-05 Thread Andrey O.Sokolov
У Ср, 2009-08-05 у 10:54 -0500, Gary Gatten пише: Not ALL chipsets / drivers support 802.1Q / p , maybe this is one of them? I have this problem on some ethernet cards, such as: e...@pci0:14:0:0:class=0x02 card=0x109a15d9 chip=0x109a8086 rev=0x00 hdr=0x00 vendor = 'Intel

foot-shot?

2009-08-05 Thread Gary Kline
Hm. Last night mutt began to fail to sent mail; it exited with a 127. When I tried to rebuolt mutt, turns out that I'm missing GNU m4... . I'll paste the build snafus after my sig here on my server. Ideas how things ggot hosed? anybody? -- Gary Kline

Re: Network card Intel and 802.1P tag

2009-08-05 Thread Nikos Vassiliadis
Andrey O.Sokolov wrote: Is the vlan hardware processing enabled? How I can enable this processing? ifconfig em0 vlanhwtag enables vlan processing in hw ifconfig em0 -vlanhwtag disables vlan processing in hw Maybe one these will work correctly without the zeroing effect. Perhaps off topic,

Re: [?? Probable Spam] Re: Network card Intel and 802.1P tag

2009-08-05 Thread Andrey O.Sokolov
У Ср, 2009-08-05 у 20:41 +0300, Nikos Vassiliadis пише: Is the vlan hardware processing enabled? How I can enable this processing? ifconfig em0 vlanhwtag enables vlan processing in hw ifconfig em0 -vlanhwtag disables vlan processing in hw Maybe one these will work correctly without

Re: [?? Probable Spam] Re: Network card Intel and 802.1P tag

2009-08-05 Thread Nikos Vassiliadis
Andrey O.Sokolov wrote: I tried both variant on both NIC - fxp and em The result doesn't change ;( You should post to net@ and maybe the maintainer will help you. Include pciconf. Perhaps off topic, but why are you interested in priority tags, since FreeBSD will silently ignore them? I

Re: Wierd X crash

2009-08-05 Thread Coert Waagmeester
On Wed, 2009-08-05 at 06:36 -0800, Mel Flynn wrote: On Wednesday 05 August 2009 04:37:38 Coert Waagmeester wrote: I am fairly new to FreeBSD. I use linux a lot. Am running FreeBSD 7.2 i386 with the nvidia 173 driver with an AGP GeForce FX 5200. My X works, with xinerama and two

Re: upgrade 7.2 overwrites partitions

2009-08-05 Thread Polytropon
Jonathan, I'd like to thank you for your polite words. I'm not sure I could have been able to express in the same way. Allow me a few comments: On Wed, 5 Aug 2009 16:51:53 +0200, Jonathan McKeown j.mcke...@ru.ac.za wrote: On Wednesday 05 August 2009 15:49:38 PJ wrote: Well, whatever it was it

net-mgmt/flowd - broken ?

2009-08-05 Thread Kalle Møller
Hi I'm trying to build flowd with perl make WITH_PERL=YES But it returns that it is broken ? flowd-0.9.1_1 is marked as broken: Incomplete pkg-plist. Without perl it installs fine. The problem is that I need the perl part to get some of the other tools to work :S Anything I can do to get

Re: Wierd X crash

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 10:17:19 Coert Waagmeester wrote: On Wed, 2009-08-05 at 06:36 -0800, Mel Flynn wrote: On Wednesday 05 August 2009 04:37:38 Coert Waagmeester wrote: I am fairly new to FreeBSD. I use linux a lot. Am running FreeBSD 7.2 i386 with the nvidia 173 driver with an

Re: cvs tag usage

2009-08-05 Thread Polytropon
On Wed, 5 Aug 2009 10:00:09 +0100, David Southwell da...@vizion2000.net wrote: I took a look at the web pages and found the following choices: RELENG_7_BP RELENG_7_2_BP RELENG_7_2_0_RELEASE RELENG_7_2 But could not find anything that told me where -p2 fits into this!! The -p2 is

Re: net-mgmt/flowd - broken ?

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 10:35:02 Kalle Møller wrote: make WITH_PERL=YES But it returns that it is broken ? flowd-0.9.1_1 is marked as broken: Incomplete pkg-plist. Without perl it installs fine. The problem is that I need the perl part to get some of the other tools to work :S

new machine trying to install /usr/ports

2009-08-05 Thread Admin
hi there, I am trying to get some basic ports tools installed on a new machine. I downloaded the entire ports.tar.gz and then placed all those contents in /usr/ports What are the best next steps to follow to get things up an running? I was hoping to install portsnap but here the error I

Re: new machine trying to install /usr/ports

2009-08-05 Thread Neal Hogan
On Wed, Aug 5, 2009 at 2:01 PM, Adminad...@enabled.com wrote: hi there, I am trying to get some basic ports tools installed on a new machine.  I downloaded the entire ports.tar.gz and then placed all those contents in /usr/ports What are the best next steps to follow to get things up an

Re: upgrade 7.2 overwrites partitions

2009-08-05 Thread Michael Powell
Polytropon wrote: [snip] Personally, I do think it's a pity, because FreeBSD (in my experience, since FreeBSD 4.5) is stable, easy to use (once you have the basic Unix concepts on board), and astonishingly well-documented. It's also supported by one of the friendliest and most knowledgeable

eclipse install

2009-08-05 Thread Coert Waagmeester
Hello all, What is the best way to install eclipse on FreeBSD 7.2? On Linux I installed java, and downloaded the newest eclipse. Regards, Coert ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Writing to a uhid device?

2009-08-05 Thread Brian McGovern
I picked up a Velleman K8055 digital I/O controller that connects to a PC via a USB port. FreeBSD picks up this device as a uhid, and I can see the following elements: bmcgover-pc# usbhidctl -f /dev/uhid2 -r Report descriptor: Collection page=Microsoft usage=0x0001 Input size=8 count=1

sshd and dhcp bind to specific address

2009-08-05 Thread Stefan Miklosovic
hi, my pc gets ip address from dhcp server, but on my pc, there is running sshd. I want to make ssh to listen to only one ip address, but if ip changes due to dhcp, ssh server do not work properly. I know, that dhcp is able to assign ip address to client from some range e.g. 192.168.0.1-254 It

Re: Wierd X crash

2009-08-05 Thread Morten Grunnet Buhl
* Coert Waagmeester lgro...@waagmeester.co.za [2009-08-05 14:37 +0200]: ... Am running FreeBSD 7.2 i386 with the nvidia 173 driver with an AGP GeForce FX 5200. My X works, with xinerama and two screens, perfectly, but as soon as I hold down any key (like Backspace to remove a line of text)

Re: sshd and dhcp bind to specific address

2009-08-05 Thread Erik Norgaard
Stefan Miklosovic wrote: hi, my pc gets ip address from dhcp server, but on my pc, there is running sshd. I want to make ssh to listen to only one ip address, but if ip changes due to dhcp, ssh server do not work properly. I know, that dhcp is able to assign ip address to client from some

Re: sshd and dhcp bind to specific address

2009-08-05 Thread Glen Barber
On Wed, Aug 5, 2009 at 5:11 PM, Stefan Miklosovicmiklosovic.free...@gmail.com wrote: hi, my pc gets ip address from dhcp server, but on my pc, there is running sshd. I want to make ssh to listen to only one ip address, but if ip changes due to dhcp, ssh server do not work properly. I

Problems with FreeBSD installation

2009-08-05 Thread Miguel
Hi, I've been trying to install FreeBSD in my laptop, but without success. I started with 7.2, but during installation i got the error: No disk found! Please verify that your disk controller... Looking at the logs, everything seems fine to me (although its my first time on the FreeBSD

Re: eclipse install

2009-08-05 Thread Polytropon
On Wed, 05 Aug 2009 23:00:08 +0200, Coert Waagmeester lgro...@waagmeester.co.za wrote: Hello all, What is the best way to install eclipse on FreeBSD 7.2? On Linux I installed java, and downloaded the newest eclipse. On FreeBSD, you don't need to download things manually via a web browser

Re: Problems with FreeBSD installation

2009-08-05 Thread Glen Barber
On Wed, Aug 5, 2009 at 5:01 PM, Miguelluis.hen...@gmail.com wrote: Hi, I've been trying to install FreeBSD in my laptop, but without success.  I started with 7.2, but during installation i got the error:  No disk found!  Please verify that your disk controller... Looking at the logs,

Re: Problems with FreeBSD installation

2009-08-05 Thread Miguel
Hi Glen, On Wed, Aug 5, 2009 at 10:33 PM, Glen Barberglen.j.bar...@gmail.com wrote: On Wed, Aug 5, 2009 at 5:01 PM, Miguelluis.hen...@gmail.com wrote: Hi, I've been trying to install FreeBSD in my laptop, but without success.  I started with 7.2, but during installation i got the error:  

Re: Problems with FreeBSD installation

2009-08-05 Thread Glen Barber
On Wed, Aug 5, 2009 at 5:35 PM, Miguelluis.hen...@gmail.com wrote: Hi Glen, Can you try booting with ACPI disabled?  It should be option 2 from the loader menu. Yes, I tried that already with same results. Can you try the installation media on another machine (to rule out a bad CD or bad

Re: Problems with FreeBSD installation

2009-08-05 Thread Miguel
On Wed, Aug 5, 2009 at 10:37 PM, Glen Barberglen.j.bar...@gmail.com wrote: On Wed, Aug 5, 2009 at 5:35 PM, Miguelluis.hen...@gmail.com wrote: Hi Glen, Can you try booting with ACPI disabled?  It should be option 2 from the loader menu. Yes, I tried that already with same results. Can

Re: eclipse install

2009-08-05 Thread Coert Waagmeester
On Wed, 2009-08-05 at 23:33 +0200, Polytropon wrote: On Wed, 05 Aug 2009 23:00:08 +0200, Coert Waagmeester lgro...@waagmeester.co.za wrote: Hello all, What is the best way to install eclipse on FreeBSD 7.2? On Linux I installed java, and downloaded the newest eclipse. On

Re: Problems with FreeBSD installation

2009-08-05 Thread Glen Barber
On Wed, Aug 5, 2009 at 5:45 PM, Miguelluis.hen...@gmail.com wrote: On Wed, Aug 5, 2009 at 10:37 PM, Glen Barberglen.j.bar...@gmail.com wrote: On Wed, Aug 5, 2009 at 5:35 PM, Miguelluis.hen...@gmail.com wrote: Hi Glen, Can you try booting with ACPI disabled?  It should be option 2 from the

Re: Problems with FreeBSD installation

2009-08-05 Thread Miguel
On Wed, Aug 5, 2009 at 10:52 PM, Glen Barberglen.j.bar...@gmail.com wrote: I have not tried 8.0-BETA (as someone on the IRC channel suggested) but not sure if it will make any difference.  As far as I understand, the snapshot I tried is more recent than 8.0-BETA2.  Or am I wrong?  Is it

Re: eclipse install

2009-08-05 Thread Polytropon
On Wed, 05 Aug 2009 23:53:22 +0200, Coert Waagmeester lgro...@waagmeester.co.za wrote: I tried it via the ports, but this error keeps popping up: Missing pkg-descr for patch-2.5.9. Seems to be a dependency. As far as I investigated the port's Makefile, gpatch should be fine, too. Instead of

Re: eclipse install

2009-08-05 Thread Daniel Underwood
I wish there was a FreeBSD package of the newest version of Eclipse CDT (or at least ganymede version). I do my research in Eclipse-CDT Galileo on multiple Linux systems, and it would be nice to be able to mess with things occasionally on my FreeBSD box. Although I can't recall specifics, I know

Re: sshd and dhcp bind to specific address

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 13:11:08 Stefan Miklosovic wrote: my pc gets ip address from dhcp server, but on my pc, there is running sshd. I want to make ssh to listen to only one ip address, but if ip changes due to dhcp, ssh server do not work properly. I know, that dhcp is able to

Re: sshd and dhcp bind to specific address

2009-08-05 Thread Robert Huff
Glen Barber wrote: my pc gets ip address from dhcp server, but on my pc, there is running sshd. I want to make ssh to listen to only one ip address, but if ip changes due to dhcp, ssh server do not work properly. I know, that dhcp is able to assign ip address to client from some range e.g.

Re: Problems with FreeBSD installation

2009-08-05 Thread Glen Barber
On Wed, Aug 5, 2009 at 6:10 PM, Miguelluis.hen...@gmail.com wrote: Yes, I understand -- just realised that BETA2 is more recent than the snapshot I tried.  Most probably, I'll just wait until 8.0 is actually released.  My problem with trying BETA2 is that it will take long time to get it

Re: eclipse install

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 13:53:22 Coert Waagmeester wrote: I tried it via the ports, but this error keeps popping up: Missing pkg-descr for patch-2.5.9. I believe you have a defective ports tree. You should have the following file: SHA256 (/usr/ports/devel/patch/pkg-descr) =

Re: Problems with FreeBSD installation

2009-08-05 Thread Miguel
On Wed, Aug 5, 2009 at 11:48 PM, Glen Barberglen.j.bar...@gmail.com wrote: On Wed, Aug 5, 2009 at 6:10 PM, Miguelluis.hen...@gmail.com wrote: Yes, I understand -- just realised that BETA2 is more recent than the snapshot I tried.  Most probably, I'll just wait until 8.0 is actually released.  

qt4 issue

2009-08-05 Thread Tsu-Fan Cheng
Hi, just update ports today and found out qt4 splitting into more ports. I am not sure why I install qt4 in the first place, and I don't run KDE. Can someone remind me of possible use of qt4 in a system? And, the only necessary qt I need is qt-copy, which is deported, I guess. How can I fix

Re: Moxa 8-port serial multiplexor, how-to

2009-08-05 Thread Tim Judd
On 7/29/09, Doug Poland d...@polands.org wrote: On Wed, July 29, 2009 12:04, WATANABE Kazuhiro wrote: At Fri, 24 Jul 2009 10:32:52 -0500, Doug Poland wrote: Hello, I'm trying to get a Moxa Technologies C168H/PCI 8-port mux card working in 7.2-RELEASE(i386). I've recompiled a GENERIC

Re: Problems with FreeBSD installation

2009-08-05 Thread Miguel
On Wed, Aug 5, 2009 at 11:48 PM, Glen Barberglen.j.bar...@gmail.com wrote: On Wed, Aug 5, 2009 at 6:10 PM, Miguelluis.hen...@gmail.com wrote: Yes, I understand -- just realised that BETA2 is more recent than the snapshot I tried.  Most probably, I'll just wait until 8.0 is actually released.  

Re: Moxa 8-port serial multiplexor, how-to

2009-08-05 Thread Doug Poland
On Wed, Aug 05, 2009 at 05:54:30PM -0600, Tim Judd wrote: On 7/29/09, Doug Poland d...@polands.org wrote: On Wed, July 29, 2009 12:04, WATANABE Kazuhiro wrote: At Fri, 24 Jul 2009 10:32:52 -0500, Doug Poland wrote: Hello, I'm trying to get a Moxa Technologies C168H/PCI 8-port mux

Re: Moxa 8-port serial multiplexor, how-to

2009-08-05 Thread Tim Judd
On 8/5/09, Doug Poland d...@polands.org wrote: On Wed, Aug 05, 2009 at 05:54:30PM -0600, Tim Judd wrote: On 7/29/09, Doug Poland d...@polands.org wrote: On Wed, July 29, 2009 12:04, WATANABE Kazuhiro wrote: At Fri, 24 Jul 2009 10:32:52 -0500, Doug Poland wrote: Hello, I'm trying to

Re: Moxa 8-port serial multiplexor, how-to

2009-08-05 Thread Doug Poland
On Wed, Aug 05, 2009 at 06:34:45PM -0600, Tim Judd wrote: On 8/5/09, Doug Poland d...@polands.org wrote: On Wed, Aug 05, 2009 at 05:54:30PM -0600, Tim Judd wrote: On 7/29/09, Doug Poland d...@polands.org wrote: On Wed, July 29, 2009 12:04, WATANABE Kazuhiro wrote: At Fri, 24 Jul 2009

Re: Problems with FreeBSD installation

2009-08-05 Thread Mel Flynn
On Wednesday 05 August 2009 13:01:30 Miguel wrote: Hi, I've been trying to install FreeBSD in my laptop, but without success. I started with 7.2, but during installation i got the error: No disk found! Please verify that your disk controller... Looking at the logs, everything seems

Re: Opera in your repos

2009-08-05 Thread Frank Shute
On Wed, Aug 05, 2009 at 07:43:05AM -0800, Mel Flynn wrote: [snip] Well, we can start to agree that FreeBSD is not a distro, but a UNIX operating system. :) We can't quite agree on that ;) BSD=Berkeley Software Distribution AKA distro of Unix At least the OP didn't make the faux pas of

Re: foot-shot?

2009-08-05 Thread Gary Kline
On Wed, Aug 05, 2009 at 10:40:38AM -0700, Gary Kline wrote: Hm. Last night mutt began to fail to sent mail; it exited with a 127. When I tried to rebuilt mutt, turns out that I'm missing GNU m4... . I'll paste the build snafus after my sig here on my server.

  1   2   >