Problem with Nvidia binary driver. . .

2005-06-07 Thread Dave Grochowski

Hey,

I have Compaq R3000z with an Athlon 64 3200+, nForce 3 chipset, and an 
Nvidia Geforce 4 440 Go.  Currently, I am running the i386 version of 
6-CURRENT, with the newest Xorg and whatnot.  The problem is that when I 
try to startx with the binary Nvidia driver installed, I get an error 
stating:


NVRM: AGP cannot be enabled on this combination of the AMD CPU and OS kernel
NVRM: kernel upgrade recommended.

I tried both Nvidia's AGP and FreeBSD's AGP driver, but neither worked.  
When I check the sysctl hw.nvidia.agp.status.status, it says that it is 
disabled, regardless of which AGP I choose to use.  If anyone has any 
insight on what to do to fix this, it would be greatly appreciated.


Sincerely,
Dave Grochowski.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Wacom Graphire USB support

2006-11-04 Thread Dave Grochowski

Hey,

Matt Carr wrote:
I've been looking at switching to FreeBSD for a few weeks now.  The 
only thing holding me back now is that I cannot find out if USB Wacom 
grahics tablets are supported.  I don't use a regular mouse in order 
to reduce wrist strain.  So I thought I ask here if they are supported 
or if anyone has found a way to get them to work?  Or am I stuck with 
Mandriva for a while longer?


My tablet is a USB 6x8 Wacom Graphire 3 (model#CTE630 Vendor Id: 056a 
Product Id: 0014), if that hepls. 
When I plug in my Intuos, FreeBSD detects it as a uhid device.  As long 
as you configure X to use it, it should work fine.  I'm not sure if the 
pressure sensitivity will work though. I do not recall how to set it up 
in Xorg, seeing as how I have no use for it currently, so I cannot help 
you there.  The lack of a decent paint program in FreeBSD has negated my 
need for tablet support.


Sincerely,
Dave Grochowski

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie NMap in FreeBSD Question

2007-01-15 Thread Dave Grochowski

Hey,

It is pretty straightforward:

--- cut here ---
#!/usr/local/bin/perl

exec(nmap 192.168.1.2);
--- cut here ---

I would just use an sh script for something this simple:

--- cut here ---
#!/bin/sh

nmap 192.168.1.2;
--- cut here ---

If you want to be able to supply optional arguments, we can slightly 
modify the script to allow for it:


--- cut here ---
#!/bin/sh

nmap $@ 192.168.1.2;
--- cut here ---

So you can do a ./mynmap -A -Ss and it will run nmap -A -Ss 192.168.1.2.

Hope that helps.

Sincerely,
Dave Grochowski

linux quest wrote:

Note: forwarded message attached.
 
-
Now that's room service! Choose from over 150,000 hotels 
in 45,000 destinations on Yahoo! Travel to find your fit.




Subject:
Newbie NMap in FreeBSD Question
From:
linux quest [EMAIL PROTECTED]
Date:
Sat, 13 Jan 2007 08:53:18 -0800 (PST)
To:
FreeBSD-questions@freebsd.org

To:
FreeBSD-questions@freebsd.org


   Lets say, I wanted to create a Perl script to execute a very simple
   nmap command as listed below, may I know how do I do it?
   unix# nmap 192.168.1.2
   I know we need to save it in .pl extension. May I know what else I
   need to do. I hope someone can share with me the simple coding.
   Thanks. [01.gif]
   Regards,
   Linux Quest
 _

   8:00? 8:25? 8:40? [1]Find a flick in no time
   with the[2]Yahoo! Search movie showtime shortcut.

References

   1. http://tools.search.yahoo.com/shortcuts/?fr=oni_on_mail#news
   2. http://tools.search.yahoo.com/shortcuts/?fr=oni_on_mail#news

  



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]