Re: AMD Phenom II X4 temperature issues (was Re: hardware monitor)

2013-08-04 Thread Peter Giessel
You can also try shutting down (obviously), then removing the heat sink, put 
some thermal paste on the processor and reinstall the heat sink.  Sometimes 
there isn't much (any) thermal paste there and the processor can't get the heat 
into the heat sink.

On 2013, Aug 4, at 15:22, Gary Aitken vagab...@blackfoot.net wrote:

 Ok, so now I see that my cpu temperature shoots up pretty dang fast when a
 build is going on.

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


Re: which reader/tablet/whatever

2013-06-09 Thread Peter Giessel

On 2013, Jun 9, at 19:13, Gary Kline kl...@thought.org wrote:

can I put
   freebsd on these tablet devices?

Personally, I don't see how another O.S. would work on the tablet devices.  
They don't have any of the hardware other O.S.'s assume (such as a keyboard), 
and they have such proprietary hardware.  The hardware is so touch centric, 
than running a non-touch O.S. does not seem wise, but I could be wrong.


  if I bought, say, WAR AND PIECE
   or something out of copyright  { schopenhauer or marcus aurelius }
   that is in text, how do I get it to whatever tablet I have?  
   right now we've got cable and I use the telco for my server.
   I know that works, but it is only good for my computer network.
 
   but say I wanted to keep things simple and buy some kind of kindle
   or nook.  how does amazon.com or bn.com get their new ebooks onto
   my reader?


All of the tablet type devices I'm aware of can access the internet through 
WiFi, which allows them to download the various books.  Many of them now also 
have a 4g type cellular antenna which can be used (with a subscription for 
network access through your favorite telecom) to download your favorite book.

I admit I'm most familiar with putting books on Apple tablet devices.  PDFs or 
ePubs can be e-mailed to the device, which opens well in their reading app.  
The devices allow any text (including I suppose, plain text) on the screen to 
be spoken by the device.

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


Re: Fastest way to get an entire FBSD system back online?

2011-03-02 Thread Peter Giessel

On Mar 02, 2011, at 12:50 PM, Ed Flecko edfle...@gmail.com wrote:


Hi folks,
I confess I'm more familiar with Windows and for years I have
Ghosted PCs as a very fast way to get an entire PC back online in
the event of a drive failure. I can easily get a PC back online within
the hour using ghost (or some drive imaging software).

Is there something similar in the FBSD arena?...some form of backing
up a server so that if a drive fails, upon replacement of the
drive(s), the OS can be very quickly recovered from a backup (of some
sort), or from an image, etc.?

What options are available??? Suggestions???



Dump and Restore.  See the handbook:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/backup-basics.html___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: freeBSD logo

2009-06-25 Thread Peter Giessel
I want to make a t-shirt with the caption The Power to Serve but I can't
find it in a good resolution. Can you send it to me?

Vector formats (which would allow you to produce any resolution you want)
are available here:
http://www.freebsd.org/logo.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Processes dying with signal 11

2009-06-19 Thread Peter Giessel
On Friday, June 19, 2009, at 12:21PM, Bruce Cran br...@cran.org.uk wrote:
Unfortunately memtest86+ runs on x86 hardware and this is a
PowerPC iBook.  Being Apple hardware there's not much swapping of
hardware I can do - I'll run a few more tests but I guess it's probably
time to chuck it away.

Try running Memtest OS X:
http://www.memtestosx.org/joomla/index.php

You could also try Apple Hardware Test (available on the original
system disk - hold down Option on boot) to test all of the 'book's
hardware.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: AFP Client in FreeBSD

2009-06-10 Thread Peter Giessel
On Wednesday, June 10, 2009, at 09:45AM, Chris Maness ch...@chrismaness.com 
wrote:
Is there an AFP client for FreeBSD?  I have a mac with a gargantuan
hard drive, and I would like to back up my FreeBSD server to it, and
back up my mac to my FreeBSD server.  I have seen where FreeBSD can be
an AFP server, but there is little information on the client.  Any
suggestions?

I regularly backup my FreeBSD boxes using dump and ssh to a very
large hard drive on my mac.  Here is how I do it:

- Turn on SSH access on the mac (I believe in OSX.5 it is called
Remote Login)
- Setup PubkeyAuthentication:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/openssh.html
(Section 14.11.6 - works the same on Mac and FreeBSD)
- Wrote a script similar to this:
***
#!/bin/sh
/sbin/dump -1uaL -f - / | gzip -2 | ssh u...@192.168.0.xxx dd 
of=/Volumes/Remote\ Backup/root.gz
/sbin/dump -1uaL -f - /tmp | gzip -2 | ssh u...@192.168.0.xxx dd 
of=/Volumes/Remote\ Backup/tmp.gz
/sbin/dump -1uaL -f - /var | gzip -2 | ssh u...@192.168.0.xxx dd 
of=/Volumes/Remote\ Backup/var.gz
/sbin/dump -1uaL -f - /usr | gzip -2 | ssh u...@192.168.0.xxx dd 
of=/Volumes/Remote\ Backup/usr.gz
echo Dumps Done
***
(of course adjust the user from user to your actual ssh username, adjust 
Remote\ Backup to your
actual volume name, and fix the IP address to be the mac's actual IP address, 
and adjust the dump
level as desired.)
- Added this to crontab:
***
# Run the backup script
5   4   *   *   *   root/root/backup-script
***

Runs every day backing up my unix partitions to the filenames given (root.gz, 
etc) on the volume
on my Mac.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Flamewar ( was: Sponsoring FreeBSD)

2009-06-02 Thread Peter Giessel
 
On Tuesday, June 02, 2009, at 07:23AM, Wojciech Puchar 
woj...@wojtek.tensor.gdynia.pl wrote:

 http://www.freebsdfoundation.org/donate/sponsors.shtml

 So, instead of being pissed on, they might have been persuaded to pay a 
 little
 more, get their link and help the project as a whole.

That's what i told - add two zeroes to be advertised.

I can't resist.  The lack of math is killing me:

ONE zero.  ONE (1) ONE zero.

12 months/year * 50/month = $600/year
12 months/year * 100/month = $1200/year

$600/year / $5000/year = 0.12
$1200/year / $5000/year = 0.24 (or about a quarter of what is needed
for a link).

$417/month = $5004/year.

 Missed opportunity.

sure not.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


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


Re: Flamewar ( was: Sponsoring FreeBSD)

2009-06-02 Thread Peter Giessel
On Tuesday, June 02, 2009, at 12:44PM, Wojciech Puchar 
woj...@wojtek.tensor.gdynia.pl wrote:
 You believe he will pay for 4 years?


 No... he is suggesting quadrupling the amount.

so we end in what i suggested in the beginning - 5-10 thousands.
just added option to pay by instalments

The original poster several days ago suggested installments.  His original post
suggested $50-$100/month.  That is $600-$1200/year.  You repeatedly said that he
would need to add two zeros.  Adding two zeros would be $60,000 - 
$120,000/year.

This is not accurate.  Adding less than one zero would be more than sufficient 
to
obtain a link.

Instead of the original poster's range of $50-$100/month, the minimum amount 
needed
for a link is $417/month.  A modest increase over what the original poster 
suggested,
not 100 times what the original poster suggested as you repeatedly stated.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: 4 GB RAM hardware but only 3.4 GB real/avail

2009-05-11 Thread Peter Giessel
On Monday, May 11, 2009, at 01:25PM, Bill Moran wmo...@potentialtech.com 
wrote:
In response to Len Conrad lcon...@go2france.com:

 I'm sure this has been answered but I can't Google it.

Really?  This question has been asked a gazillion times ...

Agreeing with Bill Moran:
http://www.google.com/search?q=+4+GB+RAM+hardware+but+only+3.4+GB+real%2Favail

The first link takes me to:
http://www.codinghorror.com/blog/archives/000811.html

Which appears to be largely Windows specific, but very detailed if you are 
looking for a
more in-depth explanation and also says:
To be perfectly clear, this isn't a Windows problem-- it's an x86 hardware 
problem.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Image size manipulation

2009-02-04 Thread Peter Giessel
 
On Wednesday, February 04, 2009, at 07:10AM, Doug Hardie bc...@lafn.org 
wrote:
I am currently using gd to create some images from data, but don't see  
how to resize the images to a specific pixel size.  Nothing seems to  
stand out in the documentation.

void gdImageCopyResized doesn't stand out to you?
http://www.libgd.org/CopyResize
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: looking for a secondary.

2008-12-16 Thread Peter Giessel
On Tuesday, December 16, 2008, at 02:42PM, Gary Kline kl...@thought.org 
wrote:

   i was recently informed that the firm that bought secondary.com is 
 going to
   begin charging $100/mo.  i nearly choked on that, but whatever...  i'm
   looking for an *.org who does DNS secondaries free oe nearly so.  i know
   there is at least one place, but it's been years.  

Not free, but nearly so:
http://www.dyndns.com/services/dns/secdns/

$17.50/year = $1.46/month...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Disenchanted with ZFS; alternatives?

2008-12-02 Thread Peter Giessel
  time to wait and see if they will really make dragonfly faster than
  FreeBSD (it's their goal)...
 
 http://people.freebsd.org/~kris/scaling/dfly.html
 
 Good luck to them, they need it :)
 

That's a stupid benchmark. DragonFly doesn't have SMP support yet.

So?  Look at just the UP scores then.  From the above page:
UP performance on FreeBSD 7 is 2.6 times higher than dragonfly UP
performance and 1.8 times higher than freebsd 4 UP performance.

Please explain how DragonFly's lack of SMP affects the UP performance?

Also, from an end user perspective, you can hardly get a computer
these days that only has one core.  SMP performance is very relevant
from that perspective.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Optimal File System config for 2.5TB RAID5

2008-09-30 Thread Peter Giessel
On Tuesday, September 30, 2008, at 02:44PM, Jeremy Chadwick [EMAIL 
PROTECTED] wrote:
The only hardware RAID controller I've seen praise for, under FreeBSD,
are Areca controllers.

3ware has provided very good FreeBSD support as well.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Google Chrome

2008-09-02 Thread Peter Giessel
On Tuesday, September 02, 2008, at 12:38PM, Vlad GURDIGA [EMAIL PROTECTED] 
wrote:
Hello,

In Google Chrome System requirements
(http://www.google.com/support/chrome/bin/answer.py?answer=95411topic=14660)
they say that a Linux version is going to appear. And in the Download
and install help article
(http://www.google.com/support/chrome/bin/answer.py?answer=95346query=open-sourcetopic=type=)
they say that it is open-source.

Does this mean that is hope we'll have a FreeBSD version?

That would be somewhat ironic, since according to Reuters:
*** QUOTE ***
 We have borrowed good ideas from others, Google Vice President of Product 
Management
Sindar Pichai said. Our goal here was to bring our point of view, but do it in 
a very open way.

Because Chrome relies on Apple's open-source WebKit software for rendering Web 
pages, it
can run any application that runs on Apple's Safari Web browser, Pichai said.

If you are a Webmaster, and your site works in Apple Safari then it will work 
very well in
Google Chrome, he said.
*** END QUOTE ***

And Safari is based on KDE's Konquerer (which already runs on FreeBSD), so with 
a FreeBSD
version of Chrome, you would essentially have Konquerer ported to Apple, ported 
to Microsoft,
ported to Linux, ported back to FreeBSD

Granted, improvements are made along the way... (but losses probably occur as 
well).
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Does 'top' work on multi-processor systems?

2008-07-03 Thread Peter Giessel
If I recall correctly, on dual processor systems, 200% is full processor 
utilization,
so on an essentially 8 processor system, 800% would be full processor 
utilization.

157% in top would actually amount to about 20% of your full processor power.
 
On Thursday, July 03, 2008, at 05:41AM, John Almberg [EMAIL PROTECTED] 
wrote:
I have a 3 month old server with two quad-core processors, 8G of RAM,  
and an array of fast hard drives. The two main applications are web  
server and mail server. There are only about 20 small-business  
websites and approx. 40 email accounts on the server. i.e., not much.

In terms of actual usage, performance is great. Web pages load fast,  
and email is processed quickly. And the 92 days of up time says that  
this server has been up 100% since it's been installed in colo.

However, 'top' shows a fairly high load (see below). If when I leave  
top running for a while, I see the load average spike up to  7 or 8  
occasionally. However, this doesn't translate into slow  
performance... pages still load quickly.

Also, what's up with that 157% WCPU for the mysql process? That just  
seems wrong. The WCPU number for mysql has been stuck up above 100%  
for a few weeks... it seems like something is broken there.

On my previous single processor system, top was a good rough  
indicator of how the system was doing. But it doesn't seem to work  
very well on this 8 core system.

My best guess is that the bogus mysql number is also throwing off the  
load averages, making them higher than they really are, but that's  
just a guess.

Any thoughts? Is there a better tool for measuring load?

-- John


last pid: 43730;  load averages:  1.93,  2.64,   
2.22   up 92+19:45:54  09:26:27
238 processes: 3 running, 235 sleeping
CPU states:  8.1% user,  0.0% nice, 17.3% system,  0.2% interrupt,  
74.4% idle
Mem: 1384M Active, 3753M Inact, 373M Wired, 884K Cache, 214M Buf,  
2150M Free
Swap: 16G Total, 88K Used, 16G Free

   PID USERNAME  THR PRI NICE   SIZERES STATE  C   TIME   WCPU  
COMMAND
  1393 mysql  63  200   400M   221M kserel 0 191.5H 157.13%  
mysqld
43698 www 1   40   169M 29888K sbwait 5   0:00  2.63% httpd
43697 www 1  200   169M 29804K lockf  1   0:00  1.18% httpd
23376 vpopmail1   40 81468K 55772K select 7   0:28  1.17%  
perl5.8.8
43729 root1  960  7228K  2676K select 5   0:00  1.00%  
couriertls
43695 www 1   40   169M 29768K sbwait 5   0:00  0.67% httpd
43417 www 1   40   170M 31340K sbwait 7   0:00  0.20% httpd
85622 root1   40 98588K 68764K select 5   7:54  0.20% ruby
43325 www 1  200   170M 30412K lockf  7   0:00  0.15% httpd
  6352 root1   40 97660K 67784K select 3   1:04  0.10% ruby
42848 www 1   40   169M 30004K sbwait 4   0:00  0.10% httpd
43111 www 1  200   170M 30336K lockf  2   0:00  0.05% httpd

___
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]


Re: tape splitter

2008-02-22 Thread Peter Giessel
On Friday, February 22, 2008, at 02:07PM, Derek Ragona [EMAIL PROTECTED] 
wrote:
At 01:23 PM 2/22/2008, Wojciech Puchar wrote:
anybody know program to split data (from stdin) on tapes like that

something|splittotapes /dev/sa0

and then

concattapes /dev/sa0 |something


i know dump do this, but i need other thing to be written to more than 1 tape.

Well sonny in the old days we would create a volume with tar or cpio, then 
uuencode it, then run it through split. 

I believe gtar
( /usr/ports/archivers/gtar   if I recall correctly)
can do this directly.

See the manual for more details:

http://www.gnu.org/software/tar/manual/tar.html#SEC153
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: laser printer - which one?

2007-05-24 Thread Peter Giessel
On Thursday, May 24, 2007, at 09:58AM, Gabor Kovesdan [EMAIL PROTECTED] 
wrote:
- quality (I mean here, that I want to use it for a long time, thus it 
should be of good quality and be robust)
- has such a toner, *that can be refilled cheaply*

I've found that the price per page doesn't vary that much between
printers.  Some, but not that much.  Its more a matter of how long
you can go between replacing the toner.

- prints in good quality, speed and noise is not that important
- should work under FreeBSD / Linux, not just under Windows

I've used by Xerox a lot under MacOSX, FreeBSD (using CUPS mostly)
and printed maybe 5 pages from Windows...  It definitely works
with FreeBSD.

As for the price, I'm thinking of 100 000 HUF (about 400 EUR) as *very* 
maximum. The price is important, but the first point is more important 
at all...I color laser printer would be cool if this amount of money is 
sufficient for this, but a BW one is ok, too.

I have a Phaser 6300.  Xerox includes the .PDD file to make CUPS
recognize all its features.  Its priced a bit high for your requirements
but a Phaser 6180 might be something you are interested in.
http://www.office.xerox.com/printers/color-printers/phaser-6180/enus.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: What have you done for me lately !!!

2007-01-16 Thread Peter Giessel
 On Tuesday, January 16, 2007, at 09:55AM, Joe Arcaro [EMAIL PROTECTED] 
wrote:
I have on occasion looked at the apple web site, and never has apple 
even given credit to any form of BSD !

You must have missed it:

http://developer.apple.com/opensource/
*** QUOTE ***
With its open-source core based on FreeBSD 5.0 and the Mach 3.0
microkernel, Mac OS X is the best Macintosh operating system ever
for UNIX users. With built-in support for the X Window System, IPv6,
Kerberos integration, and added POSIX, Linux, and System V API
support, Mac OS X easily runs your favorite UNIX software. With a
CUPS-based print and fax engine, plus a suite of command-line
and Python interfaces to Apple's Quartz graphics, it is easy to
develop full-featured PDF workflows. Mac OS X even automounts
Macintosh, Windows, and UNIX file servers directly in the Finder.
*** END QUOTE ***

Its in the first sentence on their page.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Upgrade apache

2007-01-12 Thread Peter Giessel
 
On Friday, January 12, 2007, at 10:09AM, Tim Nilimaa [EMAIL PROTECTED] 
wrote:
Hi,
 
How do I upgrade apache-2.0.59 to apache22? Do I have to do make uninstall for 
port apache20 and then make install for apache22?
I do have php installed - wouldnt that be a problem if I uninstall apache20? 
Also - upgrading php43 to php51, is it the same thing with that?

I did this upgrade early last year.

IIRC, you'll have to change the apache configuration files.  IIRC, they are not 
compatible.

make deinstall apache20
make install apache22
rewrite your apache config files (they are even in a different folder than the 
old
apache20 config files.  New location: /usr/local/etc/apache22).

You could add your LoadModules for php43 to apache22 or you could upgrade
php after apache, and the installer scripts will add the correct LoadModule
lines to your apache22 config files for you.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Please Help! How to STOP them...

2007-01-12 Thread Peter Giessel
On Friday, January 12, 2007, at 01:34PM, VeeJay [EMAIL PROTECTED] wrote:
What do you mean here?

Remember to keep ssh1 disabled as well as direct root access into ssh
 from the ssh config file.


How to disable SSH1 and How to stop direct root access into ssh, where to
change?

Sounds like you have some reading to do.  Start here:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/securing-freebsd.html
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/openssh.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Kernel Config Recommendations for AMD Chip

2007-01-11 Thread Peter Giessel
 
On Thursday, January 11, 2007, at 10:20AM, Michael K. Smith - Adhost [EMAIL 
PROTECTED] wrote:
Hello All:

I've spent my entire FreeBSD life in /sys/i386 using Intel chips.  We
have a new server with the AMD processor listed below and I'm wondering
if:

1) I should stay in /sys/i386 with different configuration variables; or
2) Compile out of /sys/amd64

This question has been asked about a bazillion times on this mailing list.

Try starting here:
http://www.freebsd.org/cgi/mid.cgi?db=irt[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Easier way to install on 3ware 9550 card?

2007-01-10 Thread Peter Giessel
 
On Wednesday, January 10, 2007, at 01:22AM, Dan Mahoney, System Admin [EMAIL 
PROTECTED] wrote:
I am unable to load a version of twa.ko that 
supports my 3ware card because a previous version of twa.ko that does not 
support it is already in the generic kernel.  Changing the name of the 
loadable doesn't help, either.

P.S. 6.1 on AMD64 and i386 supports the 9550:
http://www.freebsd.org/releases/6.1R/relnotes-amd64.html
http://www.freebsd.org/releases/6.1R/relnotes-i386.html
http://www.freebsd.org/cgi/man.cgi?query=twasektion=4manpath=FreeBSD+6.1-RELEASE
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Easier way to install on 3ware 9550 card?

2007-01-10 Thread Peter Giessel
 
On Wednesday, January 10, 2007, at 01:22AM, Dan Mahoney, System Admin [EMAIL 
PROTECTED] wrote:
On Wed, 3 Jan 2007, John Nielsen wrote:

Apologies for top-posting.

I've made some progress with this, but as I suspected, I'm screwed on 
namespace collision.  I.e. I am unable to load a version of twa.ko that 
supports my 3ware card because a previous version of twa.ko that does not 
support it is already in the generic kernel.  Changing the name of the 
loadable doesn't help, either.

It looks like I might have to make my own release, and my own ISO, using 
the driver source from the 3ware site.

Does anyone have an easier way of doing this?

I've already emailed Scott Long asking about the possibility of the 
inclusion of the new twa driver in the next FreeBSD, but I fear we're too 
far down the release process, so it could be a YEAR before there's a 
RELEASE that supports it.

When I was dealing with this issue on my own server, the solution I used
(which may or may not work for you) is that I took a cheep old IDE drive
and plugged it into the built in IDE controller on my motherboard.

I installed to and booted off this drive, installed the updated .ko to the
IDE drive's installation.  Now the 9550's arrays showed up, so I used
dump/restore to move the working installation onto the 9550's
partitions, shutdown, pulled the IDE drive out, and booted off the
9550's partitions and all was well.

Like I say, it may or may not work for you depending on if you have
an IDE controller someplace or an empty PCI slot that you could
use to set things up with.

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


Re: java plugin for firefox

2007-01-10 Thread Peter Giessel
On Wednesday, January 10, 2007, at 02:04PM, eoghan [EMAIL PROTECTED] wrote:
On 10 Jan 2007, at 22:26, Vince Hoffman wrote:

 eoghan wrote:
 Hi
 Does anyone have a guide or advice for getting java plugin working  
 for firefox? Im running 6.1 on amd.

out of curiosity, did you install diablo-jdk before or after installing Firefox?

I had trouble getting java working when I installed diablo after the fox.
Reinstalling firefox (make deinstall clean install) and all was once 
again good.  I think the firefox installer detects that java is not installed
and disables it if you don't install java first.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: is THIS why the 6.2 release seems stalled ?

2007-01-09 Thread Peter Giessel
On Tuesday, January 09, 2007, at 02:38PM, Nikolas Britton [EMAIL PROTECTED] 
wrote:
Why then? Are you guys ever going to do something about Xorg DRI/DRM
for Radeon cards, Java, and Flash support? More importantly:

Why is another project's problems FreeBSD's problem?
Xorg isn't even in the base system.

If you install a port, that is your problem, but my server runs great without 
Xorg
and Xorg is not part of FreeBSD.  It will run on FreeBSD, but that is like
blaming Apple for Windows Media Player problems on Mac OS X.

2. Fix SATA RAID driver problems?

If you buy a quality SATA Raid card, with quality support, this isn't an
issue.  3ware regularly updates the drivers for their cards and
regularly commits their updates back into the base system.  Buy
a cheep card, get cheep support, buy a quality card, get quality
support.

Why should I continue using FreeBSD when the project never delivers on
it promises?

Why do you blame FreeBSD for other project's problems?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: natd not starting on boot-up

2006-06-08 Thread Peter Giessel
On 6/6/2006 21:13, Roger Merritt seems to have typed:
 Everything
 starts on boot-up as it should -- except natd. I can start it manually from
 the command line after booting up and logging in and it works fine, but I
 can't tell what's going on that it's failing to start.

Try adding:
natd_flags=-dynamic

to rc.conf

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


Re: Cheap FreeBSD hosting?

2006-03-24 Thread Peter Giessel
On Friday, March 24, 2006, at 02:30AM, Pete Slagle [EMAIL PROTECTED] wrote:

Although I have goggled and have been keeping an eye out, I have not 
seen any prices at the $50 level. Can you provide links to sub-$100 
dedicated offerings?

I haven't seen anything with that much disk space that cheep.  I host
one of the sites I work with at:
http://www.quadrahosting.com/hosting/unix.html

They have been very good for us, but their plans offer way less disk
space than you are looking for.

$8/month for what you were getting was a steal.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: favorite ATA/SATA hard disk brand?

2006-03-23 Thread Peter Giessel
 
On Thursday, March 23, 2006, at 04:28AM, Nathan Vidican [EMAIL PROTECTED] 
wrote:

Hands down, WD or Maxtor for S-ATA drives.

Out of 6 Maxtor SATA drives we've had, 6 have failed in the first 6 months.
Yeah, we love Maxtor

I would check their warranties, and go with whoever gives the longest.

Maxtor: 2 years
Western Digital: 3 or 5 years (depending on model)
Seagate: 5 years.

If the company that made them has enough confidence in them to give a longer
warranty than anybody else, that says something to me.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Motherboard for new Socket 939 fileserver

2006-03-14 Thread Peter Giessel
On Tuesday, March 14, 2006, at 11:43AM, Andrew Fremantle [EMAIL PROTECTED] 
wrote:

Here are my requirements
Socket 939
At least four SATA headers
(preferably) At least two PATA headers
PCIe Gigabit Ethernet

You didn't mention what brand of processor, but if you are going AMD64, there
is a pretty good list of tested motherboards here:
http://www.freebsd.org/platforms/amd64/motherboards.html

I used Socket 940 Tyan myself, and am a big fan of Tyan, but not as many tested
Socket 939 Tyan boards on the list.  You should be able to find something that
works for you on the list though.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: unable to install horde

2006-03-10 Thread Peter Giessel
On Friday, March 10, 2006, at 02:17AM, Imran Imtiaz [EMAIL PROTECTED] wrote:

I am trying to install horde but it is giving me the following error

[EMAIL PROTECTED] www]# cd horde
[EMAIL PROTECTED] horde]# make
Unknown extension domxml for PHP 5.
*** Error code 1

Stop in /usr/ports/www/horde.

http://www.google.com/search?q=%22Unknown+extension+domxml+for+PHP+5%22+horde

Clicking on the first search result and scrolling down
to the bottom of the page, I see the following suggestion:

*** QUOTE ***
make -DWITH_PHP5 install
*** END QUOTE ***

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


Re: dovecot-1.0.alpha5 + mysql

2006-02-24 Thread Peter Giessel
On Friday, February 24, 2006, at 10:21AM, fa [EMAIL PROTECTED] wrote:

Hi. Sorry if this is a wrong place to ask. I've just compiled 
dovecot-1.0.alpha5 with mysql support.from freebsd
ports (FreeBSD 6.0-RELEASE). It looks like dovecot has problems connecting
to mysql.

What version of MySQL are you using?  I've had problems with 4.1
and dovecot.

See this thread for more details:
http://lists.freebsd.org/pipermail/freebsd-questions/2005-October/100452.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 3Ware Escalade Issues

2006-02-22 Thread Peter Giessel
On Wednesday, February 22, 2006, at 10:04AM, Robin Vley [EMAIL PROTECTED] 
wrote:

I swapped the broken Maxtors with Seagate disks.

I too am a big fan of Seagate disks.  So it Seagate it seems.

Maxtor and Western Digital give 1 year on the low end and 3 year
warranty on their Special Edition drives, whereas Seagate does
a 5 year warranty on all their drives.  This says something to me.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Cracking MySQL Passwords

2006-02-02 Thread Peter Giessel
On Thursday, February 02, 2006, at 03:24PM, Drew Tomlinson [EMAIL PROTECTED] 
wrote:

I'm frantically trying to recreate 3 users in the mysql.user table after 
accidentally deleting them.  I have the names and the password hashes 
but don't know the password.

Recreate then users with a different password then login to mysql as root and:

use mysql;

update user set Password=password hash where User=recreated user;

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


Re: Summary of CD (ISO) contents

2006-01-23 Thread Peter Giessel
On Monday, January 23, 2006, at 09:41AM, Eric Schultz [EMAIL PROTECTED] wrote:

I have not been able to find a summary of what is on the 
ISO images (CD's) for FreeBSD (various versions).

How can find out what I'm downloading before I download five images only 
to find out that the fifth one was all I needed?

ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/5.4/README.TXT
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: How and where to download the DVD version of FreeBSD ?

2005-12-21 Thread Peter Giessel
 
On Wednesday, December 21, 2005, at 08:25AM, fbsd_user [EMAIL PROTECTED] 
wrote:

There are NO DVD versions. You can download the .ISO file of the
FBSD install CD and then burn the .iso file to a blank cd on your pc
and then use that cd to install from.

There is no downloaded version of the FreeBSD DVD, but FreeBSD Mall
put one together, and you can buy it here:
http://www.freebsdmall.com/cgi-bin/fm/bsddvd6.0?id=AXxtnJIvmv_pc=23
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Reading roots mail when connected remotely

2005-12-21 Thread Peter Giessel
 On Wednesday, December 21, 2005, at 10:38AM, Daniel A. [EMAIL PROTECTED] 
wrote:

Also, is it possible to make sendmail send the daily status mails to a
*real* email address, like this one?

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


RE: Detect hardware changes

2005-12-08 Thread Peter Giessel
On 12/8/2005 11:51, Keith Bottner seems to have typed:
 [EMAIL PROTECTED]:9:0:  class=0x02 card=0x00241737 chip=0x10321737 
 rev=0x10
 hdr=0x00
 vendor   = 'Linksys'
 device   = 'EG1032 Gigabit Ethernet'
 class= network
 subclass = ethernet

Looks like this should be supported using the nge driver.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Waaaaay OT, sorry.

2005-11-29 Thread Peter Giessel
Gary Kline wrote:
 This is one of my more obscure questions and involves scanning
 not paper but something they used to store books, magazines,
 and newspapers--before the computer age.  It is called a
 microfiche (or fiche).  A friend got a copy of a rare
 out-of-print, not-for-sale book on microfiche.  We're looking
 for some means of scanning this film into a scanner with
 OCR.

You need a scanner that can scan film negatives.  We have an
epson flatbed at work that does, but there are others.  You need
to set up the scanner the same as you would to scan a black and
white film negative, then it should all work.  The better the
scanner, the better the resolution you'll have.  Depending on
the microfiche size (ours at work are fairly small), maybe
even a dedicated (film) negative scanner would work.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Which MySQL version best to use and with/without linux threads?

2005-10-06 Thread Peter Giessel
On Thursday, October 06, 2005, at 07:22AM, Greg 'groggy' Lehey [EMAIL 
PROTECTED] wrote:
 *** MySQL Log 4.1.14 ***
 051002 17:41:47   1 Connect Access denied for user 
 'abbc'@'localhost' (using password: YES)

This is the same authentication problem seen from the other side.

 051002 17:42:08   2 Connect [EMAIL PROTECTED] on

And this
 *** End Log Snipet ***

 *** MySQL Log after downgrading (4.0.26) ***
 051003  8:53:56   5 Connect [EMAIL PROTECTED] on aukebay

And this is the next day.  It looks as if it worked.

Yes, it worked after the downgrade was complete, but the 051002 17:42:08 
connection
was the same day, the same time frame (21 seconds later).  It worked from the
command line, but not from Dovecot.

 *** End Log Snipet ***

 The 17:42:08 connection is when I:
 # mysql -u abbc -p
 logged in from the command line using the password in the dovecot config 
 file.

 I didn't touch the dovecot config file after downgrading, and I used the same
 .sql file to populate the database with both version of MySQL, so the 
 password
 was unchanged.

So you're saying that the authentication problem was despite proven
good user name and password?

Yes.  That is exactly what I'm saying.

It's not clear that there was anything wrong on the morning of 3
October.  Did you give up or continue?

I deinstalled 4.1.14 later on the 2nd and started recompiling 4.0.26.
I finished installing and fixing downgrade issues on the 3rd, at which
time dovecot connected successfully.

There have been some changes to authentication (in particular,
password hashing) between 4.0 and 4.1.  It's possible that you need to
do something to your Dovecot configuration, but unfortunately I don't
know Dovecot at all.

I'm not saying anything is wrong with 4.1, I was just trying to point
out that there *may* in some cases be compatibility issues with 4.1.

It doesn't *always* play nice with others, as the OP claimed, and as
you say, its probably a dovecot issue, but downgrading solved it
nicely.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Which MySQL version best to use and with/without linux threads?

2005-10-05 Thread Peter Giessel
 On Wednesday, October 05, 2005, at 07:31AM, Greg 'groggy' Lehey [EMAIL 
PROTECTED] wrote:

On Monday,  3 October 2005 at 10:37:21 -0800, Peter A. Giessel wrote:
 On 10/3/2005 09:41, Jared Kuolt seems to have typed:
 There really isn't any reason not to
 anymore since everything is backwards compatible.

 I've found that Dovecot 1.0a3 has a problem with 4.1.x,

Can you give more details?

Sure, FreeBSD 4.11, I upgraded Dovecot to 1.0a3 from the ports collection
using Portmanager (portmanager -u), fixed the configuration files
(as they had changed from Dovecot 0.99), and Dovecot couldn't login to
MySQL anymore.  I turned on logging on MySQL and Dovecot:

*** Dovecot Log ***
dovecot: Oct 02 17:21:50 Error: auth-worker(default): mysql: Connect failed to 
localhost (aukebay): Can't connect to local MySQL server through socket 
'/tmp/mysql.sock' (2) - waiting for 1 seconds before retry
dovecot: Oct 02 17:24:34 Error: auth-worker(default): mysql: Connect failed to 
localhost (aukebay): Can't connect to local MySQL server through socket 
'/tmp/mysql.sock' (2) - waiting for 5 seconds before retry
dovecot: Oct 02 17:24:34 Error: auth-worker(default): sql(user,192.168.0.16): 
Password query failed: Not connected to database
dovecot: Oct 02 17:41:41 Warning: Killed with signal 15
dovecot: Oct 02 17:41:47 Error: auth-worker(default): mysql: Connect failed to 
localhost (aukebay): Access denied for user 'abbc'@'localhost' (using password: 
YES) - waiting for 1 seconds before retry
dovecot: Oct 02 17:43:13 Warning: Killed with signal 15
dovecot: Oct 02 17:43:19 Error: auth-worker(default): mysql: Connect failed to 
localhost (aukebay): Access denied for user 'abbc'@'localhost' (using password: 
YES) - waiting for 1 seconds before retry
*** End Log Snipet ***

*** dovecot_info log ***
dovecot: Oct 02 17:21:48 Info: Dovecot v1.0.alpha3 starting up
dovecot: Oct 02 17:24:47 Info: imap-login: Disconnected: user=user, 
method=PLAIN, rip=192.168.0.16, lip=192.168.0.16, TLS
dovecot: Oct 02 17:41:45 Info: Dovecot v1.0.alpha3 starting up
dovecot: Oct 02 17:43:18 Info: Dovecot v1.0.alpha3 starting up
dovecot: Oct 03 08:53:55 Info: Dovecot v1.0.alpha3 starting up
dovecot: Oct 03 08:53:56 Info: auth-worker(default): mysql: Connected to 
localhost (aukebay)
*** end dovecot_info Snipet ***

*** MySQL Log 4.1.14 ***
051002 17:41:47   1 Connect Access denied for user 'abbc'@'localhost' 
(using password: YES)
051002 17:42:08   2 Connect [EMAIL PROTECTED] on
051002 17:42:10   2 Quit
051002 17:43:19   3 Connect Access denied for user 'abbc'@'localhost' 
(using password: YES)
*** End Log Snipet ***

*** MySQL Log after downgrading (4.0.26) ***
051003  8:53:56   5 Connect [EMAIL PROTECTED] on aukebay
051003  9:03:59   5 Quit
*** End Log Snipet ***

The 17:42:08 connection is when I:
# mysql -u abbc -p
logged in from the command line using the password in the dovecot config file.

I didn't touch the dovecot config file after downgrading, and I used the same
.sql file to populate the database with both version of MySQL, so the password
was unchanged.

If there are any details that you need that I'm leaving out that I can provide,
please let me know.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Long Uptime

2005-08-11 Thread Peter Giessel
There are uptimes greater than 4 years listed here:
http://uptime.netcraft.com/up/today/top.avg.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Vinum

2005-04-22 Thread Peter Giessel
On Friday, April 22, 2005, at 08:37AM, Timothy Radigan [EMAIL PROTECTED] 
wrote:


I also tried to add vinum_load=YES to
/boot/loader.conf


See page 239 of The Complete FreeBSD (page 19 of the PDF)
http://www.vinumvm.org/cfbsd/vinum.pdf

also add vinum.autostart=YES to /boot/loader.conf

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


Re: df question

2005-04-19 Thread Peter Giessel
On Tuesday, April 19, 2005, at 08:36AM, Osmany Guirola Cruz [EMAIL PROTECTED] 
wrote:

50G+9.5G=60.5G   but the partition size is 65G ... where are my ~5G,?

http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html#MANUFACTURER-DISK-SIZE
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: date change

2005-03-22 Thread Peter Giessel
On 3/22/2005 14:23, Chris Knipe seems to have typed:
 How / what do I change (I presume this is kernel level) in order to
 allow root AND normal users to be able to set the system date via
 the 'date' command?  I would actually prefer to juse allow uid 0
 (root) plus one additional uid to be able to change it.

sounds like a perfect job for
/usr/ports/security/sudo
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache from the ports - default httpd.conf deleted

2005-03-18 Thread Peter Giessel
On Friday, March 18, 2005, at 11:18AM, Danny [EMAIL PROTECTED] wrote:

Could someone please help by supplying their httpd.conf for 1.3.33 or
direct me to a place to download a full default httpd.conf?

if you just cd /usr/ports/www/apache13
then make (not make install), you can find the default httpd.conf in
./work/apache_1.3.33/conf/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Dell CERC SATA 2S question -- software RAID instead?

2004-12-21 Thread Peter Giessel
On Tuesday, December 21, 2004, at 07:15AM, Roger. O. Svenning [EMAIL 
PROTECTED] wrote:

Jonathan Reeder wrote:

Since the SATA RAID controller in the Dell PE SC420 isn't supported yet, is
there anything I can do with atacontrol to run my two drives as a software
RAID instead of relying on the controller?

I've never used SATA before, so any advice anyone can offer is greatly
appreciated.

AFAIK you cant use software RAID on your system drives as the system has 
to boot before software RAID can be loaded.
Thus you would need a dedicated system drive which the system can boot 
from in order to load software raid on the other two disks.

Not true.  Vinum is your friend (starting on the 16th page of the PDF):
http://www.vinumvm.org/cfbsd/vinum.pdf

If you are using 5.3, you probably want to look into gvinum...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Two faced FreeBSD - or is that two headed?

2004-10-20 Thread Peter Giessel
On Wednesday, October 20, 2004, at 11:09AM, Peter Risdon [EMAIL PROTECTED] wrote:
[snip]
Section Device
 Identifier  Card0
[snip]
 BusID   pci:1:0:0
 Screen  0
EndSection

Section Device
 Identifier  Card1
[snip]
 BusId   pci:1:0:0
 Screen  1
EndSection

Notice both cards are using one PCI slot.  Its the same card.

All you need is one of these:
http://eshop.macsales.com/AddToBasket.cfm?ID=5313Item=MICDVIVGA

You should then be able to use the card you already have, just
plug both monitors into it.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Multifunction printer/scanner/copier recommendation needed

2004-10-05 Thread Peter Giessel
On Tuesday, October 05, 2004, at 00:51AM, ALeine [EMAIL PROTECTED] wrote:

Hello,

I'm shopping for a new printer and I want to get a multifunction
printer/scanner/copier that is proven to work well under FreeBSD
for both printing and scanning.

The Canon MP360 looks like a good choice for my needs in terms of
quality and price range, so if you have any experience using this
or some other device along those lines under FreeBSD please let me
know, any feedback will be greatly appreciated.

We just got an Canon imageRUNNER C3200 at work and have been
severely disappointed by the color print speed.  On average,
it takes about two minutes to process each page.  Our old
Xerox Phaser 860N is much faster.

On the other hand, it does have CUPS support and can scan
to an ftp server (FreeBSD 5.2.1 here), and the scans
(scan to PDF) are clear and compact.

However, we mainly got it to do black and white copying and
color printing, so the abysmal color print processing speed
is problematic at best.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Internet 2

2004-04-08 Thread Peter Giessel
There is one way to tell for sure.  Unplug your lan then run ifconfig -a
again and see which one is no longer active.  status on whichever
interface is plugged into the lan should change from active to no carrier.
 
On Thursday, April 08, 2004, at 04:58AM, RazorOnFreeBSD [EMAIL PROTECTED] wrote:

Are you sure about that ?
Because Windows XP recognize my LAN as a 10MBits/s and the Internet WAN as
100MBits/s.
I don't know why but it works with Windows.

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