Re: Linux binary wants GLIBC_2.4, GLIBCXX_3.4.9

2009-03-02 Thread Edward Ruggeri
Thanks very much! Will this actually change behavior of the Linux kernel module, or is it just supposed to trick new versions of linux_base to build? -- Ned Ruggeri On Sun, Mar 1, 2009 at 7:35 PM, Pieter de Goeje pie...@degoeje.nl wrote: On Monday 02 March 2009, Edward Ruggeri wrote: I am

Linux binary wants GLIBC_2.4, GLIBCXX_3.4.9

2009-03-01 Thread Edward Ruggeri
I am using FreeBSD 7.0 Stable. I want to run the Linguistica project Linux binary. However, after loading the Linux kernel module, when I try to run the binary the system replies: ./lxa-ubuntu-325: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by ./lxa-ubuntu-325)

Re: joining 2 files together ?

2008-08-07 Thread Edward Ruggeri
On Thu, Aug 7, 2008 at 10:38 AM, Bill Moran [EMAIL PROTECTED] wrote: But to answer your real question, you can't just mash two avi files together to make 1 big one. You'll need something like avidemux or one of the command line tools to actually get the avi headers correct. If I recall

Re: Setting up Wireless net Card

2008-08-05 Thread Edward Ruggeri
On Tue, Aug 5, 2008 at 2:48 AM, Warren Liddell [EMAIL PROTECTED] wrote: Im trying to setup//configure my Belkin Wireless Card, but since i have had it for a while in a windows machine, im no clue about using a wireless card in FreeBSD an not as yet able to find to many sources//articles that

Re: Sorry - plaintext this time - Disk geometry and two OSes.

2008-08-05 Thread Edward Ruggeri
On Mon, Aug 4, 2008 at 8:02 PM, Slick Bo [EMAIL PROTECTED] wrote: I've seen a few people on this mailing list say that disk geometry really doesn't matter that much, and the OS usually works fine despite apparent errors. But I'd prefer to be able to keep my windows installation. If I let

Re: ifconfig query/dhclient

2008-08-04 Thread Edward Ruggeri
On Mon, Aug 4, 2008 at 4:54 AM, Warren Liddell [EMAIL PROTECTED] wrote: Im trying to find out how i can change my net card on re0 to be a 10BaseT full duplex instead of auto @ 100. I don't know, but someone else can probably help. Also trying to work out why when using dhclient fwe0

Atheros Wireless Card Causes Page Fault

2008-07-17 Thread Edward Ruggeri
Hi, This is a question about a hardware problem. I hope this is an appropriate place to ask. I have a recently purchased Lenovo ThinkPad, with a Atheros 5212 wireless card (well, dmesg says it's an Atheros 5212; I believe it). It also has a wired internet connector, which works perfectly fine.

Atheros Wireless Card Causes Page Fault

2008-07-17 Thread Edward Ruggeri
Hi, This is a question about a hardware problem. I hope this is an appropriate place to ask. I have a recently purchased Lenovo ThinkPad, with a Atheros 5212 wireless card (well, dmesg says it's an Atheros 5212; I believe it). It also has a wired internet connector, which works perfectly fine.

Re: Atheros Wireless Card Causes Page Fault

2008-07-17 Thread Edward Ruggeri
On Thu, Jul 17, 2008 at 9:38 AM, Edward Ruggeri [EMAIL PROTECTED] wrote: Hi, This is a question about a hardware problem. I hope this is an appropriate place to ask. I have a recently purchased Lenovo ThinkPad, with a Atheros 5212 wireless card (well, dmesg says it's an Atheros 5212; I

Re: Even more documentation?

2008-04-29 Thread Edward Ruggeri
On Fri, Apr 25, 2008 at 10:32 PM, Edward Ruggeri [EMAIL PROTECTED] wrote: Hi all, I've used FreeBSD for about two years now. Besides using Linux for projects on school computers, I never had much experience with Unix-like operating systems. While I get by nicely on FreeBSD, I recently

Dynamic Memory Allocation Limit?

2008-04-29 Thread Edward Ruggeri
I have recently been writing an implementation of the sieve of Eratosthenes in C. To find all primes less than N, I dynamically create an array of chars (relatively small datatype) of length N+1 (I know I don't need to represent evens). Everything works great up until around 600 million, at

Even more documentation?

2008-04-25 Thread Edward Ruggeri
Hi all, I've used FreeBSD for about two years now. Besides using Linux for projects on school computers, I never had much experience with Unix-like operating systems. While I get by nicely on FreeBSD, I recently felt that I didn't have a very solid understanding of it's organization or

Re: do I need to install xorg?

2008-04-25 Thread Edward Ruggeri
On Fri, Apr 25, 2008 at 10:15 PM, cuongvt [EMAIL PROTECTED] wrote: I bought nvidia geforce 8500GT graphic card and I want to install fresh Freebsd 7.0 (with X, gnome) So do I need to portinstall x11/xorg with x11/nvidia-driver? Or I only need to portinstall x11/nvidia-driver only in order

Handbook Question

2008-04-22 Thread Edward Ruggeri
Hi All! Still reading through the FreeBSD handbook. I'm at section 5.5.3; it discusses how to edit the /usr/local/etc/fonts/local.conf file to adjust how X11 handles the anti-aliasing of fonts. It ends (about) with this sentence: Anti-aliasing should be enabled the next time the X server is

Re: Changing Console Video Modes

2008-04-22 Thread Edward Ruggeri
On Mon, Apr 21, 2008 at 2:55 PM, Joshua Isom [EMAIL PROTECTED] wrote: On Apr 20, 2008, at 9:28 PM, Edward Ruggeri wrote: I'm just reading through the manual for FreeBSD, and I am at section 3.2.6 Changing Console Video Modes. This discusses how to change the default console resolution

Changing Console Video Modes

2008-04-20 Thread Edward Ruggeri
I'm just reading through the manual for FreeBSD, and I am at section 3.2.6 Changing Console Video Modes. This discusses how to change the default console resolution. I would try this out, but as I can only access my FreeBSD box remotely at the moment, I am hesitant to recompile the kernel with

Re: overnight upgrade interrupted by questions

2008-04-15 Thread Edward Ruggeri
A lot of people would reply that they'd like to configure the ports themselves before launching the installation, leading people to suggest scripts such as: #!/bin/sh plist=`pkg_version -ovl'' |awk '{ print $1 }'` for porg in $plist ; do cd /usr/ports/${porg} make config-recursive done

Slow performance as root over SSH?

2008-04-14 Thread Edward Ruggeri
Hi all, (This may actually be a question for the dtach people). I've recently been using dtach (basically the detach function of screen) over SSH to instruct my freeBSD machine to perform long tasks even after I disconnect from it. It's worked great: I run SSH and connect to my box, execute

Re: Slow performance as root over SSH?

2008-04-14 Thread Edward Ruggeri
On Mon, Apr 14, 2008 at 9:29 AM, Kris Kennaway [EMAIL PROTECTED] wrote: Edward Ruggeri wrote: Recently, I figured to do this with portupgrade. Now, I don't allow root login, so I log in as a user in the wheel group and use su. Now, as root, I run: dtach -A portupgrade -a. It starts

Re: Slow performance as root over SSH?

2008-04-14 Thread Edward Ruggeri
On Mon, Apr 14, 2008 at 12:41 PM, Kris Kennaway [EMAIL PROTECTED] wrote: No. Unless dtach is doing something bizarre I cannot think of a reason this would be happening. Kris Maybe I simply over-sentimentalized the old days of updating the portsdb. Sincerely, -- Ned Ruggeri

Random Restarts?

2007-05-20 Thread Edward Ruggeri
Hi, My system randomly reboots, usually in the evening. It is definitely not a soft reboot, since the filesystems don't get properly dismounted. My suspicion is that it is a heat related issue -- I do leave the computer running just about all day long, and it has started to get warm.

Re: Random Restarts?

2007-05-20 Thread Edward Ruggeri
On Sun, 20 May 2007 11:41:36 -0500, Roland Smith [EMAIL PROTECTED] wrote: On Sun, May 20, 2007 at 11:03:25AM -0500, Edward Ruggeri wrote: Hi, My system randomly reboots, usually in the evening. It is definitely not a soft reboot, since the filesystems don't get properly dismounted. My

Re: Random Restarts?

2007-05-20 Thread Edward Ruggeri
On Sun, 20 May 2007 13:23:00 -0500, Garrett Cooper [EMAIL PROTECTED] wrote: Roland Smith wrote: On Sun, May 20, 2007 at 11:03:25AM -0500, Edward Ruggeri wrote: Hi, My system randomly reboots, usually in the evening. It is definitely not a soft reboot, since the filesystems don't get

Re: Problem Launching Applications in Gnome

2007-03-11 Thread Edward Ruggeri
On Thu, 08 Mar 2007 13:04:48 -0600, Edward Ruggeri [EMAIL PROTECTED] wrote: On Thu, 08 Mar 2007 12:54:55 -0600, Chuck Swiger [EMAIL PROTECTED] wrote: On Mar 7, 2007, at 6:57 PM, [EMAIL PROTECTED] wrote: The main application I run is Vim, which I run through Gnome- Terminal. I frequently

Re: Problem Launching Applications in Gnome

2007-03-08 Thread Edward Ruggeri
On Thu, 08 Mar 2007 12:54:55 -0600, Chuck Swiger [EMAIL PROTECTED] wrote: On Mar 7, 2007, at 6:57 PM, [EMAIL PROTECTED] wrote: The main application I run is Vim, which I run through Gnome- Terminal. I frequently have several copies running simultaneously. In general response to