Re: fdisk -B

2009-01-20 Thread Robert Marella
On Tue, 20 Jan 2009 22:48:52 +0100 (CET)
Wojciech Puchar woj...@wojtek.tensor.gdynia.pl wrote:

  and use the standard FreeBSD MBR ...without messing anything up.
 
  Can I perform the fdisk -B /dev/ad4 followed by fdisk -B /dev/ad6
  from a livefs disk? Maybe fdisk -B /dev/mirror/gm0?
 
 definitely /dev/mirror/gm0 not /dev/ad6
 
I was figuring that I would have to boot to single user and do this but
I wanted some assurance. Thanks Wojciech for providing the
confidence. All is well in the world again.

Robert
___
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: USB printer

2008-03-12 Thread Robert Marella
On Wed, 12 Mar 2008 15:14:20 -0400
Chuck Robey [EMAIL PROTECTED] wrote:

 
 You know, while there are printing utils that actually work on
 FreeBSD, I can't personally recommend CUPS.  I keep on trying to get
 it to work on FreeBSD efvery year or so, then I need to go over to
 one of my other systems.  Last one I tried was an Epson Stylus C84,
 but I've also tried HP officejets, and I just can't get locally
 attached printers to work with cups.  I can get them to work with
 things like apsfilter very well, but either someone is going to have
 to fix the Cups port (it builds, but nothing locally runs) or stop
 recommending it.
 
 Or, does anyone else have it working on FreeBSD?  Sure would like to
 hear about it, but I've been trying for a long time now, with no
 success.
 
FWIW I had cups working (2 USB and 1 parellel)  forever on three
separate FreeBSD systems until last fall sometime. It had stopped
working on each of them after an upgrade that I have long since forgot.
After going through all of the removals and reinstalls, I compared what
was installed on these systems with a Linux box that cups worked on.

I found that I needed the /print/foomatic-db
and  /print/foomatic-de-engine ports. After I installed these two ports
cups is working fine on my FreeBSD systems. 

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


Gnash crash

2008-02-13 Thread Robert Marella
Aloha

With all the noise on this list with regards to Flash and others, I
decided to try gnash once again. Previously gnash would cause the
processor occupancy to max out on whichever machine I tried it on.

I don not care to run any Linux emulation on my systems. It is just a
personal thing. I run FreeBSD and feel that is being polluted if I have
to emulate any other OS. I have just ignored sites that required the
use of flash.

So, on to today's problem.

FreeBSD asus64.konav201.local 7.0-PRERELEASE FreeBSD 7.0-PRERELEASE #0:
Fri Jan 18 10:01:42 HST 2008
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/ULE-GENERIC  amd64

All ports updated today. XFCE4 is my desktop and Firefox is my browser.
Gnash installed by ports.

Access a site that required flash. All seemed to work fairly well, i.e.
mouse was jerky and top showed firefox WCPU steadily climbing...and
then X crashed and I was back at the command line with this as the
final log data.

13867] 10:59:17: ERROR: FIXME: DefineFontAlignZoneTag unfinished
13867] 10:59:17: ERROR: *** no tag loader for type 88 (movie)
13867] 10:59:17: ERROR: FIXME: DefineFontAlignZoneTag unfinished
13867] 10:59:17: ERROR: *** no tag loader for type 88 (movie)
13867] 10:59:17: ERROR: FIXME: DefineFontAlignZoneTag unfinished
13867] 10:59:17: ERROR: *** no tag loader for type 88 (movie)
13867] 10:59:17: ERROR: Unimplemented:   FIXME: tagtype = 74
The application 'gtk-gnash' lost its connection to the display :0.0;
most likely the X server was shut down or you killed/destroyed
the application.

Firefox is basically unusable so I will need to remove gnash if I am
unable to find a solution.

Cheers

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


Re: Paging Matthew Seaman

2008-01-04 Thread Robert Marella
On Fri, 04 Jan 2008 13:30:00 -0600
Paul Schmehl [EMAIL PROTECTED] wrote:

 --On Friday, January 04, 2008 13:35:56 -0500 Jerry McAllister
 [EMAIL PROTECTED] wrote:
 
  On Fri, Jan 04, 2008 at 12:03:51PM -0600, Paul Schmehl wrote:
 
  --On Friday, January 04, 2008 17:18:51 + Matthew Seaman
  [EMAIL PROTECTED] wrote:
 
   -BEGIN PGP SIGNED MESSAGE-
   Hash: SHA256
  
   Paul Schmehl wrote:
   I figure if anyone knows the answer to this off the top of
   their head, Matthew will.
  
   Fame at last!
  
 
  Oh, you've been famous for a while here.  :-)
 
   I've been reading the man pages for du and df, but I can't find
   the right combination.  I'd like to get the type of output that
   df -h gives you but only for one mount point or even one
   directory.  Is there a tool that can do that? (IOW, I'd like to
   run du -h but only get the totals for directories.)
  
   Well, for a mount point, the command that will give you output
   like 'df -h' for a specific partition is (*ta da*) 'df -h' --
   tell it a file or directory and it will tell you all about the
   partition that lives on:
  
   % df -h /tmp
   FilesystemSizeUsed   Avail Capacity  Mounted on
   /dev/md0  248M 22K228M 0%/tmp
  
 
  This only returns the totals for mount points, however.  Not what
  I was looking for.
 
   For an arbitrary directory, I assume you want the du(1) style
   total space usage figures but in the 'human readable' style?
   'du -hs' does that if you tell it the directory name:
  
   % du -hs /tmp
   22K/tmp
  
 
  You are more adept at understanding man pages than I.  I didn't
  get the -s switch.  However, it only returns the single file or
  directory that I specify. It's closer to what I wanted than df but
  not quite there.
 
   As others have suggested else thread, there are a variety of
   cunning find + xargs combinations for generating a list of
   directories and feeding the list into du(1) automatically.
  
 
  Yes, and I've concluded that's probably the only way I'm going to
  get what I want.
 
   But all this seems to me to be pretty clearly explained in the
   du(1) and df(1) man pages so I've probably completely
   misunderstood what you are actually asking for.
  
 
  Nope.  You understood.
 
  Thanks to everyone that responded.  I'll tweak the suggestions
  until I get what I want or some near equivalent of it.
 
  I may be missing what you want, but I try CDing to the directory
  and then doing the du -hs *eg
cd /tmp
du -hs *
 
  It seems to get it when naming the directory doesn't.
 
 
 Thanks, Jerry.  This turns out to be quite useful - actually a better
 solution than what I had in mind.
 
No need to cd. 

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


Re: CD/DVD writer no longer works

2007-12-06 Thread Robert Marella
On Thu, 06 Dec 2007 15:34:01 -0600
Paul Schmehl [EMAIL PROTECTED] wrote:


 The result of this command doesn't change if there's a known good CD
 in the drive.  And are you saying that the *device* appears to be
 bad?  Or the *driver* appears to be bad?  Is there a way to confirm
 this (utility?  test process?)
 
FWIW, I had similar problems with a DVD burner a couple of weeks ago. I
went ahead and replaced it and the troubles went away. You could try
and see if you could boot a live file system with it. Or, boot from
another optical drive (if you have one) on the system with something
like freesbie/ubuntu and see if it works with the live file system.

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


Re: Basically: why such troubles with KDE audio?

2007-11-23 Thread Robert Marella
: 
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

On Fri, 23 Nov 2007 14:36:40 -0800
Gary Kline [EMAIL PROTECTED] wrote:

 On Fri, Nov 23, 2007 at 03:47:45PM +, RW wrote:
  On Thu, 22 Nov 2007 23:34:31 -0800
  Gary Kline [EMAIL PROTECTED] wrote:
  
  
 Thanks for your input, but it was ignorance that KsCD is
   not for playback  of audio CD's on FBSD.  
  
  I'm not sure what that means, since it's a CD player. Are you saying
  that some part of it is broken on FreeBSD?
 
 
   I don't know. It thinks it is playing, but I'm not hearing
   anything.  gnome-cd yeilds audio, KsCD doesnt.  

If your CD player has an audio jack on the front you can check it with
a set of ear phones. If you have music coming out of that jack then it
sounds like it is m=not wired to the audio input of your audio card. 

I understand that some software can use digital audio but I always run
the connector cable.

HTH

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


Re: One Laptop Per Child

2007-11-12 Thread Robert Marella
On Mon, 12 Nov 2007 14:04:04 +0700 (ICT)
Olivier Nicole [EMAIL PROTECTED] wrote:

  I am usually not the one to bring up these things but I feel very
  strongly about this. Starting Monday, November 12 this website is
  offering a give one get one deal. I believe the money will be well
  invested. YMMV
  
  http://xogiving.org/
 
 That is a difficult issue, while this is an opportunity, I doubt this
 is the most needed thing to provide education. We are talking giving
 laptop to people who do not even have electricity in some cases...
 
 Olivier

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


Re: One Laptop Per Child

2007-11-12 Thread Robert Marella
On Mon, 12 Nov 2007 15:56:34 -0500
Robert Huff [EMAIL PROTECTED] wrote:


   The problem I have always had with this is computer use does
 not exist in a vacuum; it changes, and is changed by, the society in
 which it happens.
   If I look at the countries of the first world, I see places
 that have walked the path from the written word to the telegraph to
 the telephone to the computer.  At each step they've tested the new
 technology, learning what it can and cannot do, discovering stuff
 the inventors never even imagined, discarding ideas that are
 techically problematic or culturally unpalatable, and adapting to it
 as it adapted to them.
   Now consider dropping 100,000 OLPC on a country where the
 (median and mode) hardware layer is paper and ink, the government -
 often autocratic and kleptocratic - cannot manage to install and run
 a 1950's era phone system, and religious leaders fulminate against
 imunization as a foreign plot.  Even under the best of
 circumstaces exactly what do people reasoaly expect to happen?
 
 
In my opinion you underestimate the abilities of people. There is no
need for the people of the third world countries to evolve as we did.
One only needs to look at the progress made in China over the last few
decades. People who never had a telephone, facsimile, radio or in some
cases even books are now using cell phones, computers and televisions.

China is becoming more capitalistic, if not democratic, not because the
government wants it to but because it has to. The people are more
knowledgeable about the rest of the world because of the new ways of
communication.

If only one percent of the 100,000 laptops in your above example were
to fall into hands of some child who is awakened to a new world then
that is 1,000 children who will grow up and help change that country.

As someone else stated, It's my money. I have completed the give
one, get one order form. I hope my laptop is sent to a worthy child
but if not so be it. I have not decided what to do with the one that I
receive. My grand daughter is only 3 and I think that is a little to
young. I will probably give the laptop to one of my great nieces.

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


One Laptop Per Child

2007-11-11 Thread Robert Marella
Aloha FreeBSD Users

I am usually not the one to bring up these things but I feel very
strongly about this. Starting Monday, November 12 this website is
offering a give one get one deal. I believe the money will be well
invested. YMMV

http://xogiving.org/

Have a very good day

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


Re: extracting 7_bit_ascii from ms_word files

2007-10-31 Thread Robert Marella
On Thu, 01 Nov 2007 00:29:21 +
spellberg_robert [EMAIL PROTECTED] wrote:

 greetings ---
 
 i finally ran into a situation where
my existing approaces are no longer satisfactory.

clip
 
 is this abiword one of them or do i seek something else ?
 
Aloha Rob

I have been using abiword for the past 5 years and have been able to
read every .doc file sent to me. It also will save your letters as .doc
if you want.

HTH

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


Re: canceling all jobs in cups

2007-10-11 Thread Robert Marella
On Thu, 11 Oct 2007 11:58:33 +
Aryeh M. Friedman [EMAIL PROTECTED] wrote:

 I am used to using cups via the web interface... well a user
 accidentally printed 1000 jobs and I have had to shut the printer down
 until they are all canceled... the question is how can I do this 
 without clicking cancel job 1000 times

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


Re: xmms crashing at startup

2007-10-04 Thread Robert Marella
On Sat, 22 Sep 2007 09:46:36 -0400
Robert Huff [EMAIL PROTECTED] wrote:

 Manolis Kiagias writes:
 
   I believe this started after upgrading to Xorg-7.3:
   
   [EMAIL PROTECTED]:~$ xmms
   Gdk-ERROR **: BadMatch (invalid parameter attributes)
 serial 1492 error_code 8 request_code 72 minor_code 0
   Gdk-ERROR **: BadMatch (invalid parameter attributes)
 serial 1493 error_code 8 request_code 72 minor_code 0
   
   I tried uninstalling and recompiling the port, nothing changed.
   I also can't find anything meaningful about this in Google. Any
  ideas?
 
   Same here, with slight variation:
 
 Gdk-ERROR **: BadMatch (invalid parameter attributes)
   serial 2435 error_code 8 request_code 72 minor_code 0
 
 
   Robert Huff

Has anything been done to correct this? I am still experiencing this on
two separate machines. One of which is running i386 and the other
amd64. Both are running Stable and xorg 7.3

[EMAIL PROTECTED] ~ xmms
Gdk-ERROR **: BadMatch (invalid parameter attributes)
  serial 1463 error_code 8 request_code 72 minor_code 0

All ports are up to date as of today.

Thanks

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


Re: xmms crashing at startup (Solved)

2007-10-04 Thread Robert Marella
On Thu, 4 Oct 2007 10:52:41 -1000
Robert Marella [EMAIL PROTECTED] wrote:

 On Sat, 22 Sep 2007 09:46:36 -0400
 Robert Huff [EMAIL PROTECTED] wrote:
 
  Manolis Kiagias writes:
  
I believe this started after upgrading to Xorg-7.3:

[EMAIL PROTECTED]:~$ xmms
Gdk-ERROR **: BadMatch (invalid parameter attributes)
  serial 1492 error_code 8 request_code 72 minor_code 0
Gdk-ERROR **: BadMatch (invalid parameter attributes)
  serial 1493 error_code 8 request_code 72 minor_code 0

I tried uninstalling and recompiling the port, nothing changed.
I also can't find anything meaningful about this in Google. Any
   ideas?
  
  Same here, with slight variation:
  
  Gdk-ERROR **: BadMatch (invalid parameter attributes)
serial 2435 error_code 8 request_code 72 minor_code 0
  
  
  Robert Huff
 
 Has anything been done to correct this? I am still experiencing this
 on two separate machines. One of which is running i386 and the other
 amd64. Both are running Stable and xorg 7.3
 
 [EMAIL PROTECTED] ~ xmms
 Gdk-ERROR **: BadMatch (invalid parameter attributes)
   serial 1463 error_code 8 request_code 72 minor_code 0
 
 All ports are up to date as of today.
 
 Thanks
 
 Robert

In the time honored FreeBSD tradition of answering my own email, I have
XMMS working again.

I moved the .xmms directory in my home directory to old.xmms and
started XMMS again. Low and behold it created a new .xmms directory and
XMMS started. The only problem that I have is I can no longer douvle
the size of the graphic player. 

I didn't mention before but I am using xfce4.4.1_1

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


Re: xmms crashing at startup (Solved)

2007-10-04 Thread Robert Marella
On Thu, 4 Oct 2007 23:35:10 -0400
Robert Huff [EMAIL PROTECTED] wrote:

 
 
   In the time honored FreeBSD tradition of answering my own email,
   I have XMMS working again.
   
   I moved the .xmms directory in my home directory to old.xmms and
   started XMMS again. Low and behold it created a new .xmms
   directory and XMMS started. The only problem that I have is I can
   no longer douvle the size of the graphic player.
 
   You're lucky.
   Mine now starts - good.
   Attempts to double the size result in a) window going wierd
 and freezing and b) process attempting to consume 100% of CPU.  (The
 process is killable.)
 
 
 
Well, this is what I meant. When I attempt  to double the size I lose
the graphic. It actually give me a double size rectangle with random
pixels (i.e. different pattern depending on which skin I am using).
There is no response to any mouse click anywhere in the window. I did
not check 'top' but yes it can be killed. 

At least I have music while slaving away :)

Thank you everyone who has responded.

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


Re: locking down scsi device id's in 6.2

2007-04-14 Thread Robert Marella
On Sat, 14 Apr 2007 01:51:12 -0400
Dave [EMAIL PROTECTED] wrote:

 Hi,
 Thanks. Still no good, basically it just brought me back to where
 i was. Do you know anyone else who might have an idea on this?
 Thanks for all your help.
 Dave.

Perhaps I have been leading you on a wild goose chase. I have re-read
all of your posts and I now understand that you want to wire down bus,
target and unit. 

It is my understanding that the device.hints will wire down the device
(i.e. /dev/sa# or in my case /dev/da#). I played around with my system
with the external firewire drive and as long as I have the lines in
device.hints the 0-0-0 is reserved for the drive whether it is plugged
in or not. The optical drives remained at 2-0-0 and 2-1-0.

I then plugged in a USB thumb drive and rebooted. This forced the
optical drives from 2-0-0 and 2-1-0 to 3-0-0 3-1-0 respectively.

I then plugged in a USD card reader and rebooted. This forced the
optical drives to 4-0-0 and 4-1-0.

I thought about this for awhile and looked at dmesg again. I then
edited /boot/device.hints as follows

### Wire down external hd to da0###
hint.scbus.0.at=sbp0
hint.da.0.at=scbus0
hint.da.0.target=0
hint.da.0.unit=0

hint.scbus.1.at=ata1   #optical drives on the second ata cable.
hint.cd.0.at=scbus1
hint.cd.0.target=0
hint.cd.0.unit=0

hint.cd.1.at=scbus1
hint.cd.1.target=1
hint.cd.1.unit=0

this forced the optical drives back to 1-0-0 and 1-1-0 no matter what
other devices are plugged in.


[EMAIL PROTECTED] ~ camcontrol devlist
WD External HDD Dev 0100 at scbus0 target 0 lun 0 (da0,pass0)
SONY DVD RW DW-Q120A PYS1at scbus1 target 0 lun 0 (cd0,pass1)
TOSHIBA ODD-DVD SD-M1802 1030at scbus1 target 1 lun 0 (cd1,pass2)
USB2.0 CardReader CF RW 0814 at scbus2 target 0 lun 0 (da1,pass3)
USB2.0 CardReader SD RW 0814 at scbus2 target 0 lun 1 (da2,pass4)
USB2.0 CardReader SM RW 0814 at scbus2 target 0 lun 2 (da3,pass5)
USB2.0 CardReader MS RW 0814 at scbus2 target 0 lun 3 (da4,pass6)
SanDisk Cruzer Mini 0.1  at scbus3 target 0 lun 0 (da5,pass7)

This may be what you want.

I hope this helps.

Robert

P.S. I am adding the list back in.


  On Fri, 13 Apr 2007 21:39:42 -0400
  Dave [EMAIL PROTECTED] wrote:
 
  Hello,
  Thanks for your reply. Please see below for responses.
 
 
  Here is my add-ons to /boot/device.hints:
 
  # custom devices
  hint.scbus.0.at=ahc0   #find this with dmesg
  hint.sa.0.at=scbus0
  hint.sa.0.target=5
  hint.sa.0.unit=0
  hint.cd.0.at=scbus0
  hint.cd.0.target=0
  hint.cd.0.unit=0
  hint.cd.1.at=scbus0
  hint.cd.1.target=1
  int.cd.1.unit=0
 
 
  Dave
 
  I would try commenting out or removing the hints referencing the
  cd's so that you are only wiring down the scsi tape.
 
  The only other thing that comes to mind is the options master/slave
  on the optical drives themselves. Both drives should be on the same
  ATA cable and I always set master on the drive at the far end of
  the cable and slave on the other.
 
  If this does not help I am afraid that I can be of no further help.
  perhaps someone else on the list can give some additional advice.
 
  Robert 
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: locking down scsi device id's in 6.2

2007-04-13 Thread Robert Marella
On Fri, 13 Apr 2007 13:49:43 -0400
Dave [EMAIL PROTECTED] wrote:

 Hi,
 Either i've got a syntax error or my devices aren't wiring
 obeying /boot/device.hints. I've added:
 
 hint.scbus.0.at=ahc0
 
 to my config. The tape drive is consistent on scbus0, target5, lun0,
 if i change it's target to say 3 it still shows up as scbus0,
 target5, lun0, but the sa driver is now at sa1 vs. sa0 and pass2 i
 think instead of pass0 not sure if this is important. The burner and
 the rom device never moved, they're still on scbus 2 and 3.
 Thanks.
 Dave. 
 

Please keep freebsd-questions included in your responses by replying
to all. I have added the list back in to this message.

Please copy and paste what you now have edited in /boot/device.hints
to your next reply.

Also, the ahc0 id for an adaptec scsi controller. Is that what you
have. What I mean is, does ahc0 show up in dmesg or did you just
include it from my previous email?

Oh yeah, show me again what you have in camcontrol devlist

Thanks

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


Re: locking down scsi device id's in 6.2

2007-04-13 Thread Robert Marella
On Fri, 13 Apr 2007 21:39:42 -0400
Dave [EMAIL PROTECTED] wrote:

 Hello,
 Thanks for your reply. Please see below for responses.
 

 Here is my add-ons to /boot/device.hints:
 
 # custom devices
 hint.scbus.0.at=ahc0   #find this with dmesg
 hint.sa.0.at=scbus0
 hint.sa.0.target=5
 hint.sa.0.unit=0
 hint.cd.0.at=scbus0
 hint.cd.0.target=0
 hint.cd.0.unit=0
 hint.cd.1.at=scbus0
 hint.cd.1.target=1
 int.cd.1.unit=0
 

Dave

I would try commenting out or removing the hints referencing the cd's
so that you are only wiring down the scsi tape. 

The only other thing that comes to mind is the options master/slave on
the optical drives themselves. Both drives should be on the same ATA
cable and I always set master on the drive at the far end of the
cable and slave on the other. 

If this does not help I am afraid that I can be of no further help.
perhaps someone else on the list can give some additional advice.

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


Re: locking down scsi device id's in 6.2

2007-04-12 Thread Robert Marella
On Thu, 12 Apr 2007 21:15:22 -0400
Dave [EMAIL PROTECTED] wrote:

 Hello,
 My thanks to everyone who has helped thus far with this
 situation. I've gone over scsi(4) and have added the below to
 device.hints:
 
 hint.sa.0.at=scbus0
 hint.sa.0.target=5
 hint.sa.0.unit=0
 hint.cd.0.at=scbus0
 hint.cd.0.target=0
 hint.cd.0.unit=0
 hint.cd.1.at=scbus0
 hint.cd.1.target=1
 hint.cd.1.unit=0
 
 camcontrol devlist shows:
 Quantum DLT4000 D996 at scbus0 target 5 lun 0
 (sa0,pass0) LITE-ON LTR-48246S SS06  at scbus2 target 0 lun
 0 (cd2,pass1) LITE-ON DVDRW SOHW-1633S BS0Kat scbus2 target 1
 lun 0 (cd3,pass2)
 
 I used the wired example, but my device didn't wire. Any suggestions
 as to what i missed?
 Thanks.
 Dave.
 

Dave

I still think you are missing the scsi controller.

I used to use a scsi hard drive in one of my computers and here is what
I had

hint.scbus.0.at=ahc0   #find this with dmesg
hint.da.0.at=scbus0
hint.da.0.target=0
hint.da.0.unit=0

I do not think you have to do anything with the Cd devices. At least I
never did. At this time I have an external hard drive on firewire that
I have wired down with the following.

### Wire down external hd to da0###
hint.scbus.0.at=sbp0#find this with dmesg
hint.da.0.at=scbus0
hint.da.0.target=0
hint.da.0.unit=0

I hope this helps

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


Re: locking down scsi device id's in 6.2

2007-04-09 Thread Robert Marella
On Sat, 7 Apr 2007 21:16:50 -0400
Dave [EMAIL PROTECTED] wrote:

(Format recovered: Please do not top post)

 
  On Fri, 6 Apr 2007 19:15:27 -0400
  Dave [EMAIL PROTECTED] wrote:
 
  Hello,
  I've got a situation where three devices, one a scsi tape drive and
  the other two ide burners under scsi emulation with atapicam are
  fighting for scsi id's and i'd like to lock them down to specific
  id's. When the tape drive isn't plugged in the burners get 000 and
  010 scsi ids, but when the tape goes in it takes 050 and the
  burners are on bus2 200 and 210 respectively. I hope this makes
  sense. I've been over loader and device.hints as well and i'm
  lost. I'd appreciate any info on this. Thanks.
  Dave.
 
 
  Hello Dave
 
  Have you looked at man scsi (4) for the correct way to
  edit /boot/device.hints to wire down devices?
 
 
  HTH
 
  Robert 
 
 Hello,
 Yes i have. I am confused as to bus, target, and the values i'm
 suppose to use.
 Dave.

Dave,

Not only is top posting frowned upon on the FreeBSD lists you also
removed -questions from your reply. I didn't even check my email
over the weekend. Had you kept -questions in the loop you might have
received an answer a lot sooner. Also, since I am wrong about as often
as I am right you would probably received a better answer.

That said, I will try to help.

IMHO the easiest way to find the values is to boot with your SCSI tape
drive connected. When you are up you can run camcontrol devlist
without the quotes. This will show you the values. Example:

SONY DVD RW DW-Q120A PYS1at scbus1 target 0 lun 0 (cd1,pass1)
SONY DVD-ROM DDU1612 DYS1at scbus1 target 1 lun 0 (cd0,pass0)

You should use dmesg to find the controller for the SCSI. It will be
something like AHC0. you can then use all of these values in
/boot/device.hints as shown in man scsi.

I hope this helps. 

Remember to keep the list in the email. The archives will then have the
final solution for the next person who needs it or when I forget :-)

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


Re: locking down scsi device id's in 6.2

2007-04-07 Thread Robert Marella
On Fri, 6 Apr 2007 19:15:27 -0400
Dave [EMAIL PROTECTED] wrote:

 Hello,
 I've got a situation where three devices, one a scsi tape drive and
 the other two ide burners under scsi emulation with atapicam are
 fighting for scsi id's and i'd like to lock them down to specific
 id's. When the tape drive isn't plugged in the burners get 000 and
 010 scsi ids, but when the tape goes in it takes 050 and the burners
 are on bus2 200 and 210 respectively. I hope this makes sense. I've
 been over loader and device.hints as well and i'm lost. I'd
 appreciate any info on this. Thanks.
 Dave.
 

Hello Dave

Have you looked at man scsi (4) for the correct way to
edit /boot/device.hints to wire down devices? 


HTH

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


Re: Diagnosing fan problem

2007-02-16 Thread Robert Marella
On Thu, 15 Feb 2007 12:19:50 -0500
Jesse Sheidlower [EMAIL PROTECTED] wrote:

 
 I have a ThinkPad T41p that has had a variety of fan problems
 for some time. After my most recent repair things seemed to be
 working fine, but the other day I was compiling some ports and
 the machine just shut down in the middle; after some
 experimentation it seemed clear that it was just overheating
 under load and shutting itself off. (Looking at the
 temperature sysctl showed that it was getting increasingly hot
 until it crashed.)
 
 How can I monitor what is happening? Are there any ways I can
 find out from FreeBSD if the fan is even on, or how it thinks
 it is working? systcl -a | grep fan didn't return anything.
 Can I control the fan?
 
 I don't want to make yet another warranty call if they're
 gonna say, It's working fine, it's your OS or something.
 
 Thanks.
 
 Jesse Sheidlower


Aloha Jesse

I know this is not what you are asking but my daughter had a problem
with her laptop overheating and shutting down and this fixed it.

http://www.sundialmicro.com/Note-Book-Coolers_1731.html

Of course hers was not under any warranty.

I hope this helps.

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


Re: Install error - MOD_LOAD (amr_linux, 0xffffffff806205d0, 0) error 6

2006-11-08 Thread Robert Marella
On Thu, 9 Nov 2006 09:45:56 +1100
Norberto Meijome [EMAIL PROTECTED] wrote:

 On Wed, 08 Nov 2006 07:26:11 -0600
 tecol [EMAIL PROTECTED] wrote:
 
  I disabled SATA in BIOS and I disabled the nVidia RAID setup in
  BIOS and got stuck at the same place, except that I don't see the
  MOD_LOAD error 6 message. The last message I see is the
  timecounters message.
 
 then maybe amr isn't at fault (even if it's showing an error...)
  
  If I exit to the boot prompt (option 6), then load amr_linux it
  gets loaded. Module name is amr_linux.ko. I also set acpi_load=no
  to get around the bad character in the ACPI table issue. Then
  boot. Now I see message saying amr_linux is already loaded. boot
  sequence continues and I still hang after the timecounters message.
 
 have you tried disabling apic? not good to do this if you have SMP,
 but on UMP is has helped me move past locks like yours.
 

HAve you upgrade your bios? There are updates available for your
motherboard.

HTH

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


Re: can't find my hard drive

2006-09-21 Thread Robert Marella
On Thu, 21 Sep 2006 01:17:29 -0600 (CST)
Brett McLain [EMAIL PROTECTED] wrote:

 
 Hmm they're both SATA drives set as masters.  I tried some more today 
 and i'm still unable to do it.  There seems no way to make it
 recognize it.  It would SEEM that it doesn't recognize the drive when
 the cd begins its setup.  I'm not 100% sure on thatalthough i
 know for sure its in the BIOS and working properly and fine.  Its
 already set up with a partition in fat 32anyone have some ideas?
 
 -Brett
 


Hello Brett

I had this problem last week when I added a second SATA to my Asus
A8N-VM. 

I had to make a change in the bios setup. In my setup I had an
expandable menu named IDE Configuration. In that menu I enabled
nVidia Raid Function and that expanded to allow me to enable both
SATA devices.

HTH

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


Re: Poutupgrade unsafe

2006-09-18 Thread Robert Marella
On Sat, 16 Sep 2006 01:51:06 -0300
Henry Lenzi [EMAIL PROTECTED] wrote:

  A nice portupgrade feature would be to grok UPDATING, and present
  you with any such notes before the upgrade occurs.
 
  Mike
 
 I fully agree. It's not the best solution to have an UPDATE file that
 is very large and that is not integrated in the updating process.
 UPDATE should be machine-readable, for starters.
 
 Henry

I do not see a problem. A script updates my port tree every night and
the last line of the script is:

head -n 50 /usr/ports/UPDATING

When I read my mail in the morning with my first cup of coffee...well,
I read my mail.

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


Re: how to make fixed Direct Access device (da) ID

2006-09-18 Thread Robert Marella
On Sat, 16 Sep 2006 13:05:11 -0700
Jin Guojun [VFFS] [EMAIL PROTECTED] wrote:

 It is awkward that dynamically and/or statically attaching SCSI hard 
 drive and
 USB hard drive to the system will have different da IDs.
 For example, boot system with a SCSI drive (SCSI = 1), will have a
 da0 for this
 SCSI drive. Then plugging in a USB hard drive, which will be
 configured as da1.
 
 If boot system with both drives online, system will boot from SCSI
 drive fine till
 mounting root point. It fails because USB drive has da0 and SCSI
 drive has da1.
 
 Is there anyway to configure the system to have fixed da ID for SCSI 
 drive or
 even for USB drive regardless if they are dynamically/statically 
 attached to the
 system?
 
 -Jin

Hello Jin

Try man (4) scsi:

 All devices and the SCSI busses support boot time allocation so that an
 upper number of devices and controllers does not need to be
configured; device da0 will suffice for any number of disk drivers.

 The devices are either wired so they appear as a particular device
unit or counted so that they appear as the next available unused unit.

 Units are wired down by setting kernel environment hints.  This is
usu- ally done either interactively from the loader(8), or
automatically via the /boot/device.hints file.  The basic syntax is:

   hint.device.unit.property=value

 Individual SCSI bus numbers can be wired down to specific
controllers with a config line similar to the following:

   hint.scbus.0.at=ahd1

 This assigns SCSI bus number 0 to the ahd1 driver instance.  For
con- trollers supporting more than one bus, a particular bus can be
assigned as follows:

   hint.scbus.0.at=ahc1
   hint.scbus.0.bus=1

 This assigns SCSI bus 0 to the bus 1 instance on ahc0.  Peripheral
driv- ers can be wired to a specific bus, target, and lun as so:

   hint.da.0.at=scbus0
   hint.da.0.target=0
   hint.da.0.unit=0

 This assigns da0 to target 0, unit (lun) 0 of scbus 0.  Omitting
the tar- get or unit hints will instruct CAM to treat them as wildcards
and use the first respective counted instances.  These examples can be
combined together to allow a peripheral device to be wired to any
particular con- troller, bus, target, and/or unit instance.

 When you have a mixture of wired down and counted devices then the
count- ing begins with the first non-wired down unit for a particular
type. That is, if you have a disk wired down as device da1, then the
first non- wired disk shall come on line as da2.


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


ndis error

2006-03-29 Thread Robert Marella
Hello All

I recently received a D-Link DWL-G510 network card. I ran ndisgen as I
have done before with other cards and all seemed to go well. A kernel
module, MRV8K51_sys.ko was generated.

When manually loading the module I received the following:

# kldload MRV8K51_sys
no match for _except_handler3
no match for ObfReferenceObject
no match for MmProbeAndLockPages
no match for MmUnlockPages
ndis0: D-Link AirPlus G DWL-G510 Wireless PCI Card mem
0xf401-0xf401,0 xf400-0xf400 irq 11 at device 18.0 on
pci0 ndis0: NDIS API version: 5.1
ndis0: Ethernet address: 00:11:95:17:12:55

The module loads but does not function.

I then added the module to /boot/loader.conf and rebooted. The
following are from dmesg and pciconf

# dmesg | grep ndis
ndis0: D-Link AirPlus G DWL-G510 Wireless PCI Card mem
0xf401-0xf401,0xf400-0xf400 irq 11 at device 18.0 on
pci0 ndis0: NDIS API version: 5.1 ndis0: init handler failed
device_attach: ndis0 attach returned 6

# pciconv -lv | grep -A4 ndis
[EMAIL PROTECTED]:18:0:class=0x02 card=0x3b091186 chip=0x1fa611ab
rev=0x07 hdr=0x00 vendor   = 'Marvell Semiconductor (Was: Galileo
Technology Ltd)' device   = '88W8310 The Libertas\x99 WLAN 80211bg'
class= network
subclass = ethernet

This is a fresh install of 6.1 Beta 4 with a generic kernel. Any advice or 
pointers will be appreciated. 

Thank you

Robert
___
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-15 Thread Robert Marella
On Tue, 14 Mar 2006 12:42:45 -0800
Andrew Fremantle [EMAIL PROTECTED] wrote:

 Hi all,
 
 I've been tasked with setting up a new FreeBSD network file server.
 I've been spending the last day fighting an ASUS A8N-VM CSM
 motherboard, and I've given up on that hopeless battle. The ACPI is
 horribly broken, the ethernet and PATA/SATA aren't supported on
 FreeBSD 6.0-RELEASE, FreeBSD 6-STABLE recognises the disk controllers
 but then hits a bug that prevents it from using one of the disks,
 I've had enough. I was prepared to tough it out with the ATA/33 limit
 on the generic controller support, until a future release properly
 supports them, but this morning the machine started throwing DANGER
 Will Robinson messages regarding the SATA drives.
 
 I have a preference for nVidia chipsets, but if there's something
 else that will work and has decent FreeBSD support I'll take it.
 
 Here are my requirements
 Socket 939
 At least four SATA headers
 (preferably) At least two PATA headers
 PCIe Gigabit Ethernet

snip

 
 Any feedback would be much appreciated. I'm desperate to avoid
 jumping to Linux on this one, because I know that will turn into a
 huge pain in the ass later on.
 
 - Andrew

Hello Andrew

I am not sure if I can be of help but here goes. I purchased an A8N-VM
in December and have been playing around with since then. 

I disabled APIC in bios and then ACPI performed somewhat better. Taking
the system up to 6-Stable took the ATA hard drive from ATA/33 to
ATA/100 and I was then able to install FreeBSD on them. Before that I
had to use an old SCSI controller and disk. 

I only had one SATA drive to test with and it was the same story as the
ATA. It showed up as /33 and would not perform. It now can be operated
at /150.

My user guide does not show the CSM designation so I am not sure of our
differences. This system is not in production and if you would like me
to perform any tests/experiments, contact me direct and I will be happy
to oblige.

I am dual booting at this time. I have AMD64 on the SCSI and i386 on a
120G  Western Digital ATA drive.

I hope I can be of some help.

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


Re: 10 years of The Complete FreeBSD

2006-02-23 Thread Robert Marella
On Fri, 24 Feb 2006 11:30:27 +1030
Greg 'groggy' Lehey [EMAIL PROTECTED] wrote:

 Ten years ago today, on 24 February 1996, I submitted for publication
 the final version of the first ever book on FreeBSD, Installing and
 Using FreeBSD.  It was later renamed to The Complete FreeBSD.
 
 I have always retained full rights to the book, and for today I've
 decided to release it for download under the Creative Commons
 license.  See more at http://www.lemis.com/grog/Documentation/CFBSD/.
 
 Greg

You sir are a real gentleman.

If you are ever on The Big Island of Hawai`i, the beer is on me.

Mahalo

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


portmanager core dumps

2006-01-08 Thread Robert Marella
Good Afternoon

At times when in a hurry or not thinking as fast as my fingers, I try
to run portupgrade -s | grep OLD from a regular user account instead
of sudo portupgrade -s | grep OLD. 

I would expect portupgrade to insult my intelligence and question my
heritage  or is that question my intelligence and insult my
heritage. Well, it doesn't do either. It core dumps. This will happen
on more than one system running 6 Stable and the updated portmanager.

[EMAIL PROTECTED] ~ pkg_info | grep portmanager
portmanager-0.4.1_4 FreeBSD installed ports status and safe update
utility

Thanks

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


Re: Off-Topic

2005-12-13 Thread Robert Marella
On Tue, 13 Dec 2005 22:56:47 +0100
Roland Smith [EMAIL PROTECTED] wrote:

 On Tue, Dec 13, 2005 at 09:35:18PM +, Uncle Deejy-Pooh wrote:
  We've another contender for the 'Signature-of-the-Forum' award.
  This one spotted from Jayesh Jayan:
 The box said Requires Windows 95, NT, or better, so I
  installed Linux.
  Although I'm SURE it should read . FreeBSD !
  
  But, still in No1 spot:
  Windows: Where do you want to go today?
  Linux: Where do you want to go tomorrow?
  FreeBSD: Are you guys coming or what?
 
 A few choicy ones:
 
 I sense much NT in you.
 NT leads to Bluescreen.
 Bluescreen leads to downtime.
 Downtime leads to suffering.
 NT is the path to the darkside.
 Powerful Unix is.
 
 C:\WINDOWS C:\WINDOWS\GO C:\PC\CRAWL
 
 Microsoft spel chekar vor sail, worgs grate!
 
 For a new monitor, nail here: [x]
 
 Unix was not designed to stop people from doing stupid things, because
 that would also stop them from doing clever things.
  -- Doug Gwyn
 
 Windows caters to everyone as though they are idiots. UNIX makes no
 such assumption. It assumes you know what you are doing, and presents
 the challenge of figuring it out for yourself if you don't.
 
 MCSE: Must Consult Someone Experienced
 
 The No. 1 remote administration tool for Windows NT is a car.
 
 The best way to accellerate a computer running Windows is at 9.81
 m/s^2
 
 Unix _is_ user-friendly. It's just a little picky about who it's
 friends are.
 
 When in doubt, use brute force
  -- Ken Thompson
 
 
 Roland

FreeBSD is as easy as 1 + 1 = 10
___
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-12 Thread Robert Marella
On Mon, 12 Dec 2005 08:27:06 -0600
Keith Bottner [EMAIL PROTECTED] wrote:

  
  On Thu, Dec 08, 2005 at 12:02:25PM -0900, Peter Giessel wrote:
   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
   

 
 Ifconfig does not show skc0 but here is the output for completeness:
 
 xl0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
   options=9RXCSUM,VLAN_MTU
   inet 192.168.1.217 netmask 0xff00 broadcast 192.168.1.255
   inet6 fe80::2b0:d0ff:fe16:3d30%xl0 prefixlen 64 scopeid 0x1 
   ether 00:b0:d0:16:3d:30
   media: Ethernet autoselect (100baseTX full-duplex)
   status: active
 lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
   inet 127.0.0.1 netmask 0xff00 
   inet6 ::1 prefixlen 128 
   inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2 
 
 And rc.conf is:
 
 defaultrouter=192.168.1.1
 hostname=gsdev.bltmobile.com
 ifconfig_xl0=inet 192.168.1.217  netmask 255.255.255.0
 ifconfig_skc0=inet 10.0.130.204  netmask 255.255.255.0
 linux_enable=YES
 moused_enable=YES
 sshd_enable=YES
 usbd_enable=YES
 postgresql_enable=YES
 
 Anything else that I can send that will help?
 
 Keith

Hello Keith

I'm not sure I can be of any help. I have an older Asus board (2years)
that uses an onboard sk card. Here is the output from my machine

[EMAIL PROTECTED]:5:0:  class=0x02 card=0x80eb1043 chip=0x170010b7 rev=0x12
hdr=0x00 vendor   = '3COM Corp, Networking Division'
device   = '3C940 and 3C2000 Gigabit Ethernet PCI CODEC?'
class= network
subclass = ethernet

Mine is 3COM while yours is Linksys.

[EMAIL PROTECTED] ~ grep sk /var/run/dmesg.boot
skc0: 3Com 3C940 Gigabit Ethernet port 0xd800-0xd8ff mem
0xfeafc000-0xfeaf irq 22 at device 5.0 on pci2 skc0: 3Com Gigabit
LOM (3C940) rev. (0x1) sk0: Marvell Semiconductor, Inc. Yukon on skc0
sk0: Ethernet address: 00:0c:6e:91:de:a6
miibus0: MII bus on sk0

The mii bus is shown here and unless you have removed it from your
kernel it would be automatic.

From rc.conf

defaultrouter=10.0.0.1
hostname=p4.konav201.local
ifconfig_sk0=inet 10.0.0.103  media 100baseTX mediaopt full-duplex
netmask 255.255.255.0

Notice that it is sk0 _not_ skc0. AFAIK this is not your problem but it
should be changed in your rc.conf file. Except for an occasional
watchdog it is working fine.

I google'd for your error rid 0x10 is ioport but didn't see any
solutions. There was some reference to ACPI so it might be something to
try. 

BTW I am running 6 Stable.

I hope this helps. Good luck
Robert


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


Re: Slices

2005-12-12 Thread Robert Marella
On Mon, 12 Dec 2005 12:40:40 -0600
Kevin Kinsey [EMAIL PROTECTED] wrote:

 Sasa Stupar wrote:
 
  You can also do the same as I did. I have just configured one slice 
  named / which
  takes all the space on hdd and now I don't need to worry about
  space shortage.
 
 
 OK then, but suppose we have some runaway process 

clip many possible scenarios

 
 My $0.02,

Worth every penny! :-)

Thank you Kevin

Robert
 
___
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-09 Thread Robert Marella
: 
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

On Fri, 9 Dec 2005 15:54:27 -0600
Keith Bottner [EMAIL PROTECTED] wrote:

Please do not top post!

 
 -Original Message-
 From: Loren M. Lang [mailto:[EMAIL PROTECTED] 
 Sent: Friday, December 09, 2005 9:06 AM
 To: Peter Giessel
 Cc: Keith Bottner; 'FreeBSD Questions'
 Subject: Re: Detect hardware changes
 
 On Thu, Dec 08, 2005 at 12:02:25PM -0900, Peter Giessel wrote:
  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.
 
 No, actually the sk driver, look at the first line of pciconfig
 output. ifconfig -a should list a network card called skc0 which you
 just need to configure.  If all you need is dhcp then just run
 dhclient skc0.  Add the device to rc.conf for it to work on boot.
 Use man rc.conf for help or copy the line for the xl0 network card
 you already have.
 
  ___
  freebsd-questions@freebsd.org mailing list 
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
 [EMAIL PROTECTED]
  
 
 ipconfig -a doesn't show the skc0 device which I believe is my
 ultimate problem. Can I infer from your earlier message that this
 means the sk module is not being loaded or is not available? How can
 I check to see if the loadable module is installed?
 
 Thanks,
 
 Keith

Hello Keith

skc0 is the controller. You should see sk0 in ifconfig -a.

Can you please show us the output of ifconfig -a and rc.conf. 

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


Re: make buildworld fails from 5.4-6.0

2005-12-05 Thread Robert Marella
On Mon, 5 Dec 2005 03:11:46 -0600
Anthony Philipp [EMAIL PROTECTED] wrote:

 Hello,
 
 I am trying to upgrade from 5.4 to 6.0. I ran cvsup and tried a make
 buildworld, but it failed. So I checked out the handbook and noticed
 that it mentioned I should run a mergemaster -p first. So I did that
 and I still failed. Here are the last few lines:
 
 : undefined reference to `Buf_AddByte'
 var.o(.text+0x2b5e): In function `Var_Dump':
 : undefined reference to `Buf_Data'
 var.o(.text+0x2ba2): In function `Var_Dump':
 : undefined reference to `Buf_Data'
 var.o(.text+0x2c31): In function `Var_Print':
 : undefined reference to `Buf_Peel'
 *** Error code 1
 
 Stop in /usr/src/usr.bin/make.
 *** Error code 1
 
 Stop in /usr/src.
 *** Error code 1
 
 Stop in /usr/src.
 
 I've searched the archives and couldn't find anything relating to
 this, but hopefully someone knows the answer. Also I have have done
 minor version changes before, but never a major one, so maybe I am
 just missing a key step.
 
 Thanks in advance!
 
 Anthony Philipp
Hello Anthony

Did you remove everything under the /usr/obj directory before make
buildworld?

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


Re: Status of 6.0 for production systems

2005-11-22 Thread Robert Marella
On Tue, 22 Nov 2005 10:37:04 +0100
Freminlins [EMAIL PROTECTED] wrote:

 Ted,
 
 On 11/22/05, Ted Mittelstaedt [EMAIL PROTECTED] wrote:
 [snipped a massive load of nonsense]
 
 Why don't you do us all a favour and shut up. Your posts are off-topic
 and a waste of storage bytes. AFAIK this mailing list is not your
 personal soap box.
 
 Frem.

Ooooh! I bet that one hurt him.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: enable smp / hyperthreading

2005-11-07 Thread Robert Marella
On Mon, 7 Nov 2005 20:05:24 +0100
Roland Smith [EMAIL PROTECTED] wrote:

 On Mon, Nov 07, 2005 at 07:53:20PM +0100, [EMAIL PROTECTED] wrote:
  Hi
  
  I've just installed 6.0-RELASE and am trying to get SMP to work (I
  have af Pentium 4 with HT). So I've compiled the kernel with
  'options SMP' and according to dmesg the two CPUs are found:
  
  FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
   cpu0 (BSP): APIC ID:  0
   cpu1 (AP): APIC ID:  1
  
  But I'm not sure that both are enabled, because at this is at the
  end of dmesg and I dont see the other CPU being enabled somewhere:
  
  SMP: AP CPU #1 Launched!
 
 I think it is referring to the Auxiliary Processor (AP), because the
 BSP (don't know what that stands for, though) is obviously already
 active. 
  According to 'sysctl -a' there are 2 CPUs, but only 1 active and SMP
  doesnt seem to be disabled:
  
  kern.smp.cpus: 2
  kern.smp.disabled: 0
  kern.smp.active: 1
 
   sysctl -d kern.smp.active
   kern.smp.active: Number of Auxillary Processors (APs) that were
   successfully started
 
 This is the number of _extra_ CPUs, which chould be 1.
  
 Roland

If hyperthreading is working the ouput of 'top' should have a C column
and will show either a 0 or a 1.

AFAIK HTT is still disabled because of a security risk. See:

ftp://ftp.freebsd.org/pub/FreeBSD/CERT/advisories/FreeBSD-SA-05:09.htt.asc

If you do not believe you are at risk, there is a work around included
in the above site.

YMMV. I have been known to be wrong before. :-)

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


Re: enable smp / hyperthreading

2005-11-07 Thread Robert Marella
On Mon, 7 Nov 2005 11:16:19 -1000
Robert Marella [EMAIL PROTECTED] wrote:

 On Mon, 7 Nov 2005 20:05:24 +0100
 Roland Smith [EMAIL PROTECTED] wrote:
 
  On Mon, Nov 07, 2005 at 07:53:20PM +0100, [EMAIL PROTECTED] wrote:
   Hi
   
   I've just installed 6.0-RELASE and am trying to get SMP to work (I
   have af Pentium 4 with HT). So I've compiled the kernel with
   'options SMP' and according to dmesg the two CPUs are found:
   
   FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
cpu0 (BSP): APIC ID:  0
cpu1 (AP): APIC ID:  1
   
   But I'm not sure that both are enabled, because at this is at the
   end of dmesg and I dont see the other CPU being enabled somewhere:
   
   SMP: AP CPU #1 Launched!
  
  I think it is referring to the Auxiliary Processor (AP), because the
  BSP (don't know what that stands for, though) is obviously already
  active. 
   According to 'sysctl -a' there are 2 CPUs, but only 1 active and
   SMP doesnt seem to be disabled:
   
   kern.smp.cpus: 2
   kern.smp.disabled: 0
   kern.smp.active: 1
  
sysctl -d kern.smp.active
kern.smp.active: Number of Auxillary Processors (APs) that were
successfully started
  
  This is the number of _extra_ CPUs, which chould be 1.
   
  Roland
 
 If hyperthreading is working the ouput of 'top' should have a C column
 and will show either a 0 or a 1.
 
 AFAIK HTT is still disabled because of a security risk. See:
 
 ftp://ftp.freebsd.org/pub/FreeBSD/CERT/advisories/FreeBSD-SA-05:09.htt.asc
 
 If you do not believe you are at risk, there is a work around included
 in the above site.
 
 YMMV. I have been known to be wrong before. :-)
 
 Robert


Replying to myself. It seems that once again I am wrong. 

I commented out the  machdep.hyperthreading_allowed=1
in /boot/loader.conf on my 6.0 system and I still have the C column and
showing 2 processors.

Sorry about the noise.

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


Re: creating gnome desktop shortcuts for floppy, DVD rom and compact flash card reader

2005-11-03 Thread Robert Marella
On Fri, 4 Nov 2005 02:41:24 +1100
paul thodiyil [EMAIL PROTECTED] wrote:

 Does anyone know how to create shortcut icons to the gnome desktop for
 commonly used devices such as floppy drive; cd/DVD rom drive and USB
 compact flash card reader.
 FreeBSD 6.0 RC1; AMD64
  Many thanks

mkdir ~/Desktop/floppy
mkdir ~/Desktop/dvdrom
mkdir ~/Desktop/flash

Speak the magic incantation Beastie is better than any stinking logo

The icons will appear on your desktop as folders. Right click the
folder and choose properties and you can change the icon.

Good Luck

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


Re: creating gnome desktop shortcuts for floppy, DVD rom and compact flash card reader

2005-11-03 Thread Robert Marella
On Thu, 3 Nov 2005 19:15:21 -0500
paul thodiyil [EMAIL PROTECTED] wrote:


Format Recovered...Please do not top post.


 On 11/3/05, Robert Marella [EMAIL PROTECTED] wrote:
 
  On Fri, 4 Nov 2005 02:41:24 +1100
  paul thodiyil [EMAIL PROTECTED] wrote:
 
   Does anyone know how to create shortcut icons to the gnome
   desktop for commonly used devices such as floppy drive; cd/DVD
   rom drive and USB compact flash card reader.
   FreeBSD 6.0 RC1; AMD64
   Many thanks
 
  mkdir ~/Desktop/floppy
  mkdir ~/Desktop/dvdrom
  mkdir ~/Desktop/flash
 
  Speak the magic incantation Beastie is better than any stinking
  logo
 
  The icons will appear on your desktop as folders. Right click the
  folder and choose properties and you can change the icon.
 
  Good Luck
 
  Robert
 
 Robert,
 thanks. I chanted ten times, but I was only able to create desktop
 folders with these names (floppy, dvdrom, ...). I could not get get
 them to 'mount' the device. For. eg i placed DVD in the drive,
 clicked on the newly created DVDROM folder on the desktop - but did
 not reveal the DVD contents.
 
 I must have done it wromg. Any more help?
 
 PT
 
The folders/icons will only display contents after mounting. i.e.
mount_msdosfs /dev/da0s1 ~/Desktop/flash or some such CLI, depending on
the device and fs type.

man mount.

Some on this list use automount. I prefer to manually mount all
removeable devices and can not give any help for automounting. 

For dvd's or cd's they must be data discs. Music cd's can not be
mounted. Movies on dvd's can be mounted using mount_cd9660. I am not
sure but I believe that is for dvd ripping. Others on this list are
more knowlegeable than I. 

The last sentence may qualify for the understatement of the year. :)

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


Re: Flash drive device name difficulties.

2005-10-17 Thread Robert Marella
On Mon, 17 Oct 2005 22:34:43 +0930
Malcolm Kay [EMAIL PROTECTED] wrote:

 On Mon, 17 Oct 2005 02:29 pm, Robert Marella wrote:
  On Sun, 16 Oct 2005 15:54:23 +0930
 
  Malcolm Kay [EMAIL PROTECTED] wrote:
   I am running FreeBSD 5.4 RELEASE.
   I recently aquired a 256M USB flash drive
   which the system recognises when plugged in;
   and I can mount and use it -- all working well.
  
   But now I'd like to make it available to a user
   or group of users through mtools. To do this I need
   to change the permissions on /dev/da0s1 where the
   flash drive msdos partition appears. This I can make happen
   automatically using /etc/usbd.conf by adding the lines:
  
   device RunDisk
   vendor  0x0ef5
   product 0x2366
   attach sleep 1; /bin/chmod g+rw /dev/da[0-9]*
  
   giving members of the operator group access.
   But this changes permissions on all da[0-9] devices.
   I know the man pages suggest ${DEVICENAME} to obtain the
   particular device but this doesn't work here because usbd
   sees the device as umass0 which doesn't appear in /dev/*.
  
   For the moment this is the only device I have appearing
   in the da* group so the problem is not immediate/urgent.
   But is there some way I can extract the specific da*
   device name to use in the attach statement or is there some
   way I can make the flash drive always pop up at a specific
   da name.
  
   I've also taken a look at devd.conf but the documentation
   here seems somewhat sparse.
  
   You consideration is appreciated,
  
   Malcolm Kay
 
  Hello Malcolm
 
  I don't know anything about mtools but you can check this link
  regarding user mounting of 'da*' devices. Also have a look at
  'man devfs.rules' and 'man devfs.conf'
 
 I don't actally find devfs.rules or devfs.conf in the man pages;
 (perhaps these are an addition in STABLE or 6.0) however 
 devfs(5) and devfs(8) and the files themselves shed some light 
 on the matter. While the information seems a bit sketchy in parts 
 I think it will get me somewhere near where I want to be.

Mea Culpa. I have 2 boxes running 6 RC1 and 2 running 5.4 P7. The man
pages are only on the 6 RC1 systems. 

I also could not get a display from the man pages on the web site.

 
 Thanks for your time and assistance,

You are welcome.

Robert

 Malcolm Kay
 
  http://lists.freebsd.org/mailman/htdig/freebsd-questions/2004-
 November/064237.html
 
  Good luck
 
  Robert
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Flash drive device name difficulties.

2005-10-16 Thread Robert Marella
On Sun, 16 Oct 2005 15:54:23 +0930
Malcolm Kay [EMAIL PROTECTED] wrote:

 I am running FreeBSD 5.4 RELEASE.
 I recently aquired a 256M USB flash drive
 which the system recognises when plugged in;
 and I can mount and use it -- all working well.
 
 But now I'd like to make it available to a user
 or group of users through mtools. To do this I need
 to change the permissions on /dev/da0s1 where the 
 flash drive msdos partition appears. This I can make happen 
 automatically using /etc/usbd.conf by adding the lines:
 
 device RunDisk
 vendor  0x0ef5
 product 0x2366   
 attach sleep 1; /bin/chmod g+rw /dev/da[0-9]*
 
 giving members of the operator group access.
 But this changes permissions on all da[0-9] devices.
 I know the man pages suggest ${DEVICENAME} to obtain the 
 particular device but this doesn't work here because usbd
 sees the device as umass0 which doesn't appear in /dev/*.
 
 For the moment this is the only device I have appearing 
 in the da* group so the problem is not immediate/urgent.
 But is there some way I can extract the specific da* device
 name to use in the attach statement or is there some way I can 
 make the flash drive always pop up at a specific da name.
 
 I've also taken a look at devd.conf but the documentation here 
 seems somewhat sparse.
 
 You consideration is appreciated,
 
 Malcolm Kay 

Hello Malcolm

I don't know anything about mtools but you can check this link
regarding user mounting of 'da*' devices. Also have a look at 'man
devfs.rules' and 'man devfs.conf'

http://lists.freebsd.org/mailman/htdig/freebsd-questions/2004-November/064237.html

Good luck

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


Re: Burning DVDs

2005-10-14 Thread Robert Marella
On Fri, 14 Oct 2005 23:50:34 +0200
edward [EMAIL PROTECTED] wrote:

 Hi all,
 My DVD drive read and mounts CDs and DVDs properly, but K3B refuses to
 burn : K3B did not find a suitable writer. You will only be able to 
 create an image. Gut feeling is that there probably is something
 wrong in the drive's read/write permission. I checked the /etc/fstab
 file for read/write status and I got the following :
 
 # Device   Mountpoint  FStype  Options Dump
 Pass# /dev/ad0s3bnoneswapsw
 0   0 /dev/ad0s3a/   ufs rw
 1   1 /dev/acd0  /cdrom  cd9660  ro,noauto
 0   0
 
 This was the default set up that I haven't altered (yet...). Is there
 a reason why the DVD drive would be set in read only mode, as a
 default ? Should I just launch vi and edit the line from ro,noauto to
 rw,noauto or is there another way ?
 Thanks,
 Edward
 
 

less /usr/ports/sysutils/k3b/pkg-message

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


Re: Sharing /usr/ports

2005-09-29 Thread Robert Marella
: 
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

On Thu, 29 Sep 2005 13:35:38 +0400
Andrew P. [EMAIL PROTECTED] wrote:

 On 9/28/05, Robert Marella [EMAIL PROTECTED] wrote:
clip

  I have one question. Is there an easy way to keep
  the /usr/ports/packages/All directory clean?
 
clip
 
  The old packages can start to take up a lot of space.
 
  Thanks
 
  Robert
 
 
 Glad to be helpful, Robert!
 
 Sure, there's an easy way, just run
 # portsclean -P
 and all your outdated packages are gone. man
 portsclean for details.
 
 Cheerz,
 Andrew P.

Hi Andrew,

I could while away the hours
Conferrin' with the flowers
Consultin' with the rain
And my head, I'd be scratchin'
While my thoughts were busy hatchin'
If I only had a brain.

In my nightly cvsup I actually do a portsclean -CD.

Mea Culpa

Thanks again

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


Re: Sharing /usr/ports

2005-09-27 Thread Robert Marella
On Tue, 27 Sep 2005 12:46:49 +0400
Andrew P. [EMAIL PROTECTED] wrote:

 On 9/24/05, Gordon Ross [EMAIL PROTECTED] wrote:
  I've got two FreeBSD 5.4 machines. One is a server, the other is a
  desktop.
 
snip
 
 Like others have already told you here, the best solution
 is packaging. There is a problem though - you can't make
 a package without installing the port first.
 
 If you're using portupgrade the whole thing is very simple.
 You mount /usr/ports from your file server on every client
 machine, and 'setenv WRKDIRPREFIX /usr/local/mywrk'.
 
 Then you just always run portupgrade with the -p switch
 on your fast machines, and use -PP (double P) switch
 on your slow machines. If they are all of single architecture
 and you don't put some very custom stuff in /etc/make.conf,
 it'll all work completely hassle-free.
 
 You'll also want to ensure that portupgrade uses the same
 ports db driver on all machines. dbm_hash is probably the
 most portable one, so you can place
 ENV['PORTS_DBDRIVER'] = 'dbm_hash'
 in /usr/local/etc/pkgtools.conf on every machine.
 
 From then on you can portsnap fetch  portsnap update \
  portsdb -uUF  portupgrade -arRF every morning,
 portupgrade -aprR on your build boxes, portupgrade -arRPP
 on your other boxes - and then just relax sit back and enjoy
 the magical feeling of being up-to-date.
 
 
 Cheerz,
 Andrew P.

Thank you for posting this Andrew. I have been messing with keeping my
slower systems updated for awhile. This will make it quicker.

I have one question. Is there an easy way to keep
the /usr/ports/packages/All directory clean?

This is an example of what I mean:

p4# cd /usr/ports/packages/All
p4# ls -l xfce*
-rw-r--r--  1 root  wheel 2886 Mar 18  2005 xfce-4.2.0_1.tbz
-rw-r--r--  1 root  wheel 2893 Apr  7 18:33 xfce-4.2.1.1.tbz
-rw-r--r--  1 root  wheel 2246 Sep 27 08:41 xfce-4.2.2.tbz
-rw-r--r--  1 root  wheel94955 Mar 18  2005 xfce4-appfinder-4.2.0_1.tbz
-rw-r--r--  1 root  wheel95435 Apr  7 17:42 xfce4-appfinder-4.2.1.tbz
-rw-r--r--  1 root  wheel   203207 Sep 27 08:43 xfce4-appfinder-4.2.2.tbz
-rw-r--r--  1 root  wheel  2100621 Mar 18  2005 xfce4-desktop-4.2.0_1.tbz
-rw-r--r--  1 root  wheel  2125020 Apr  7 17:52 xfce4-desktop-4.2.1.tbz
-rw-r--r--  1 root  wheel  2344995 Sep 27 08:47 xfce4-desktop-4.2.2.tbz
-rw-r--r--  1 root  wheel  1962410 Mar 18  2005 xfce4-fm-4.2.0_1.tbz
-rw-r--r--  1 root  wheel  1966223 Apr  7 17:38 xfce4-fm-4.2.1.tbz
-rw-r--r--  1 root  wheel  3162381 Sep 27 08:45 xfce4-fm-4.2.2.tbz

etcetera, etcetera, etcetera.

The old packages can start to take up a lot of space.

Thanks

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


OT: moving address book from mozilla-mail to sylpheed-claws

2005-09-27 Thread Robert Marella
Good Morning

As the subject states I am moving from Mozilla-mail to Sylpheed-Claws.
I can't seem to find a way to convert the mozilla.mab file to anything
that Sylpheed will import.

Anybody have experience or clues on this problem?

Thanks

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


OT: Who's on first?

2005-09-23 Thread Robert Marella
I have installed FreeBSD 6.0 Beta 5 on my notebook computer. Am I
going to have the same trouble you had?

Oh no, That problem was just B4.

Before what?

What?

You said the problem was just before.

Exactly!

Isn't the English language marvelous.

Have a good day.

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


Re: OT: re AbiWord and margins

2005-09-20 Thread Robert Marella

Gary Kline wrote:
	Apologies up front for this genral question; this time I 
	*have* searched for a solution, but to no avail.


With OpenOffice's WP I can change typeface, margin, c
by dragging mouse over read-in file.  Once entire file is
	highlighted, altering fonts and margin is easy.  With 
	Abiword, mousing the file is extremely slow.  Is there 
	an easier way of resetting the margin to be much narrower?

This would save paper and handling in my early drafts.

OO is outstanding++, but takes too long to build/rebuild.
Be nice to have a lighter-weight WP on my servers.  So if
there is a magic answer, I'd be much obliged for some
clues!

gary




Hi Gay

You can always click edit then select all.

I'm really not sure if this is what you are asking about.

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


Re: i8xx drm support

2005-08-10 Thread Robert Marella

Jean-Francois wrote:


why the hell dont FreeBSD have drm suopport for the intel graphic
cards ???. its been in linux for a long time. cant you guys port it.

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

 


If it is important to you then it should be worth some effort on your part.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/

Thank you in advance for your contribution.

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


Re: Test messages to -questions

2005-07-01 Thread Robert Marella

Jerry McAllister wrote:

I say burn 'em on the cross.  Why do you need to test to see if you can post
before you actually post a question?  If your first question/comment doesn't
go through, you know it's not working.  And subsequent tests can be the same
question/comment with a datestamp.

Just my 2 cents.



Now figure in inflation and that make it

Anyway, it is a little silly, but it is, by far, one of the least
annoying unnecessary messages we see on the list and much less
bothersome than some of the long diatribes about MS or GUIs or
other troll bait or some psuedo-legal jargon by amateur bar jockeys
that get dragged on and on and on and on and on and 


jerry


I agree. I am much more annoyed by top posters.

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


Re: ssh delays 40 seconds (revisited)

2005-06-11 Thread Robert Marella

luke wrote:

also, you might want to look into the UseDNS option in the sshd_config
file. this will cause the server to not perform dns lookups on
connecting hosts.



Curious and more curious. I updated one of my systems to 5.4 p2 today 
and just for grins I changed the UseDNS option back to yes. Then I 
restarted sshd and there was no delay.


I then changed the UseDNS option on all of the other boxes (5.4 REL) to 
yes and restarted sshd and they all work without delay.


So, I am back to where I was before I went to where I got. And 
everything works like it always did. Any idea why this happened to so 
many people last weekend. Or should we just smile and go about our merry 
way.


Thanks to all who responded last weekend.

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


Re: ssh delays 40 seconds (revisited)

2005-06-11 Thread Robert Marella

Kevin Kinsey wrote:

Robert Marella wrote:


luke wrote:


also, you might want to look into the UseDNS option in the sshd_config
file. this will cause the server to not perform dns lookups on
connecting hosts.



Curious and more curious. I updated one of my systems to 5.4 p2 today 
and just for grins I changed the UseDNS option back to yes. Then I 
restarted sshd and there was no delay.


I then changed the UseDNS option on all of the other boxes (5.4 REL) 
to yes and restarted sshd and they all work without delay.


So, I am back to where I was before I went to where I got. And 
everything works like it always did. Any idea why this happened to so 
many people last weekend. Or should we just smile and go about our 
merry way.


Thanks to all who responded last weekend.

Robert




Did you get reverse DNS set up in the interceding few days, as you
said you thought you might look into when you typed:

] The consensus was
] that I need DNS/named working on my gateway/firewall so I will be
] reading and studying to have that working in the near future.
]

 just curious, as you are curious and more curious :-D

Kevin Kinsey


Ummm .. no. It was on my list of things to do that I didn't do.

You know what they say about curious. :)

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


Re: What is 5.4 p2 ?

2005-06-11 Thread Robert Marella

Paul Dufresne wrote:

and more curious. I updated one of my systems to 5.4 p2 today



Being a newcomer to FreeBSD, I understand about Release version,
STABLE version and CURRENT one. But I don't understand this
p2 you are refering to.
I could guess it means point release 2, so I checked:
http://www.freebsd.org/where.html
But files seems to be for 5.4-RELEASe still from May 8.

So what is 5.4 p2 ?



[EMAIL PROTECTED]:~ uname -a
FreeBSD p4.konav201.local 5.4-RELEASE-p2 FreeBSD 5.4-RELEASE-p2 #1: Fri 
Jun 10 11:45:43 HST 2005 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/P4-5_4REL  i386


It is my understanding that the p# stands for the second patch to 5.4 
Release. Correct me if I am wrong.


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


Re: ssh delays 40 seconds (SOLVED???)

2005-06-06 Thread Robert Marella

luke wrote:

also, you might want to look into the UseDNS option in the sshd_config
file. this will cause the server to not perform dns lookups on
connecting hosts.


Luke

Okay, that takes care of the delay. I had to change it to no on all 
boxes that I ssh into. Does this have any negative ramifications? My 
firewall excludes all incoming (at this time) so I am not too worried 
about being compromised.


It still leaves the question in my pea brain as to why it has worked for 
6 months and just started this nonsense in the last week or so. Did 
something change with 5.4?


Thanks for responding.

I want to thank everyone else for responding also. The consensus was 
that I need DNS/named working on my gateway/firewall so I will be 
reading and studying to have that working in the near future.


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


Re: ssh delays 40 seconds (SOLVED???)

2005-06-06 Thread Robert Marella
Resending because I did not see it come in ti -questions and I keep 
having mail bounced sending to Jonathan Chen [EMAIL PROTECTED].


luke wrote:

also, you might want to look into the UseDNS option in the sshd_config
file. this will cause the server to not perform dns lookups on
connecting hosts.


Luke

Okay, that takes care of the delay. I had to change it to no on all
boxes that I ssh into. Does this have any negative ramifications? My
firewall excludes all incoming (at this time) so I am not too worried
about being compromised.

It still leaves the question in my pea brain as to why it has worked for
6 months and just started this nonsense in the last week or so. Did
something change with 5.4?

Thanks for responding.

I want to thank everyone else for responding also. The consensus was
that I need DNS/named working on my gateway/firewall so I will be
reading and studying to have that working in the near future.

Robert

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


Re: ssh delays 40 seconds (SOLVED???)

2005-06-06 Thread Robert Marella

Kevin Kinsey wrote:

Robert Marella wrote:


luke wrote:


also, you might want to look into the UseDNS option in the sshd_config
file. this will cause the server to not perform dns lookups on
connecting hosts.




Did something change with 5.4?




I don't think so; I've had the problem appear a long time ago
from some locations.  Looking at the CVS web, it appears
that *maybe* this came on when OpenSSH 3.7.1p2 was
imported in January, 2004.

So maybe you were a little behind on mergemaster ...


Hello Kevin

I built this gateway in January 2005 with 5.3 CDs. All worked fine so 
(IIRC) I waited until 5.4 was released to update. There is also a good 
chance that I did some incremental 5.3 updates but I can't be for sure 
because all was well on the gateway and I was doing the incremental 
thing on other boxes. Either way, OpenSSH 3.7.1p2 would have been on the CD.


I'm pretty anal about doing the mergemaster dance when updating :)

Thanks for the $0.02. Always appreciated.

Robert

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


Re: FreeBSD 5.4 Xwindows

2005-06-05 Thread Robert Marella

Robert Slade wrote:

Hiya,

I've been trying to figure this out. I've tried googling for an answer
but only got confused.

I have a P4 machine with an ATI Radeon 9200 with 128Mbyte of memory 
built into the motherboard. I have not been able to get Xwindows to run

at any greater resolution than basic VGA. All I seam to get is no driver
or no screen defined.


Goggle troughs up some info but for linux. Can anybody help please.

Rob



Hello Rob

Sorry that I'm getting in this late. I have the 9200SE card in two of my 
computers. Both are running 5.4


I added the following line to my kernel:

device  radeondrm

And then my card is recognized by dmesg

drm0: ATI Radeon RV280 9200 SE port 0xc000-0xc0ff mem 
0xe500-0xe500,0xd000-0xd7ff irq 11 at device 0.0 on pci1

info: [drm] AGP at 0xe000 64MB
info: [drm] Initialized radeon 1.11.0 20020828 on minor 0

Here are the important bits from xorg.conf

Identifier  Card0
Driver  ati
VendorName  ATI Technologies Inc
BoardName   Unknown Board
BusID   PCI:1:0:0

I hope this helps

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


ssh delays 40 seconds

2005-06-05 Thread Robert Marella
A little nudge is needed. All of a sudden, my attempts to ssh any of the 
other computers in my SOHO take 40 seconds before I am prompted for a 
password or pass-phrase. At that time I can log in and all is well. It 
is consistent in all directions.


I have made NO changes to ssh or any other config file. I don't believe 
it is dns because I can ping and connect quickly to inside and outside 
locations using x.x.x.x or www.blah.org from all computers.


I have attached the output of ssh -vvv with comments as to were the 
delay occurs. I need some help or direction as to what it all means.


I thank you

Robert

P.S I have also attached a network map.
[frankie] ~ ssh -vvv gateway
OpenSSH_3.8.1p1 FreeBSD-20040419, OpenSSL 0.9.7e 25 Oct 2004
debug1: Reading configuration data /etc/ssh/ssh_config
debug2: ssh_connect: needpriv 0
debug1: Connecting to gateway [10.0.0.1] port 22.
debug1: Connection established.
debug1: identity file /home/robert/.ssh/identity type -1
debug3: Not a RSA1 key file /home/robert/.ssh/id_rsa.
debug2: key_type_from_name: unknown key type '-BEGIN'
debug3: key_read: missing keytype
debug2: key_type_from_name: unknown key type 'Proc-Type:'
debug3: key_read: missing keytype
debug2: key_type_from_name: unknown key type 'DEK-Info:'
debug3: key_read: missing keytype
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug2: key_type_from_name: unknown key type '-END'
debug3: key_read: missing keytype
debug1: identity file /home/robert/.ssh/id_rsa type 1
debug1: identity file /home/robert/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_3.8.1p1 
FreeBSD-20040419
debug1: match: OpenSSH_3.8.1p1 FreeBSD-20040419 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_3.8.1p1 FreeBSD-20040419
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug2: kex_parse_kexinit: 
diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1
debug2: kex_parse_kexinit: ssh-dss,ssh-rsa
debug2: kex_parse_kexinit: 
aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc,[EMAIL
 PROTECTED],aes128-ctr,aes192-ctr,aes256-ctr
debug2: kex_parse_kexinit: 
aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc,[EMAIL
 PROTECTED],aes128-ctr,aes192-ctr,aes256-ctr
debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,[EMAIL 
PROTECTED],hmac-sha1-96,hmac-md5-96
debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,[EMAIL 
PROTECTED],hmac-sha1-96,hmac-md5-96
debug2: kex_parse_kexinit: none,zlib
debug2: kex_parse_kexinit: none,zlib
debug2: kex_parse_kexinit:
debug2: kex_parse_kexinit:
debug2: kex_parse_kexinit: first_kex_follows 0
debug2: kex_parse_kexinit: reserved 0
debug2: kex_parse_kexinit: 
diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1
debug2: kex_parse_kexinit: ssh-dss
debug2: kex_parse_kexinit: 
aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc,[EMAIL
 PROTECTED],aes128-ctr,aes192-ctr,aes256-ctr
debug2: kex_parse_kexinit: 
aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc,[EMAIL
 PROTECTED],aes128-ctr,aes192-ctr,aes256-ctr
debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,[EMAIL 
PROTECTED],hmac-sha1-96,hmac-md5-96
debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,[EMAIL 
PROTECTED],hmac-sha1-96,hmac-md5-96
debug2: kex_parse_kexinit: none,zlib
debug2: kex_parse_kexinit: none,zlib
debug2: kex_parse_kexinit:
debug2: kex_parse_kexinit:
debug2: kex_parse_kexinit: first_kex_follows 0
debug2: kex_parse_kexinit: reserved 0
debug2: mac_init: found hmac-md5
debug1: kex: server-client aes128-cbc hmac-md5 none
debug2: mac_init: found hmac-md5
debug1: kex: client-server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(102410248192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug2: dh_gen_key: priv key bits set: 129/256
debug2: bits set: 519/1024
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug3: check_host_in_hostfile: filename /home/robert/.ssh/known_hosts
debug3: check_host_in_hostfile: match line 1
debug1: Host 'gateway' is known and matches the DSA host key.
debug1: Found key in /home/robert/.ssh/known_hosts:1
debug2: bits set: 505/1024
debug1: ssh_dss_verify: signature correct
debug2: kex_derive_keys
debug2: set_newkeys: mode 1
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug2: set_newkeys: mode 0
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent

Re: ssh delays 40 seconds

2005-06-05 Thread Robert Marella

Robert Huff wrote:

Richard J. Valenta writes:



I had this problem in the past, and it was due to DNS problems where my
IP from the client machine was unable to be resolved... but I think it
took longer than 40 seconds.  I mentioned this in this list before, a
search of the list may help.



Affirmed for the general case.  30 second delay, then normal
network activity _screams_ DNS misconfiguration, usually but not
always in the client side.


Robert Huff


Forgive me if I am dense. According to the readout of ssh -vvv gateway 
the connection is made immediately. Does that not indicate that it knew 
where to go?


The contents of /etc/resolv.conf on all of my systems is the same:

[frankie] ~ cat /etc/resolv.conf
search hawaii.rr.com
nameserver 24.25.227.33
nameserver 24.25.227.66
nameserver 24.25.227.64

I even commented out the other 2 and tried each nameserver one at a time 
and it was able to resolve www.freebsd.org


Am I looking in the wrong place?

Again, if I am ignorant, please excuse me. Perhaps, point me to a document.

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


Re: ssh delays 40 seconds

2005-06-05 Thread Robert Marella

Jonathan Chen wrote:

On Sun, Jun 05, 2005 at 03:25:08PM -1000, Robert Marella wrote:


Robert Huff wrote:


Richard J. Valenta writes:




I had this problem in the past, and it was due to DNS problems where my
IP from the client machine was unable to be resolved... but I think it
took longer than 40 seconds.  I mentioned this in this list before, a
search of the list may help.



Affirmed for the general case.  30 second delay, then normal
network activity _screams_ DNS misconfiguration, usually but not
always in the client side.


Robert Huff


Forgive me if I am dense. According to the readout of ssh -vvv gateway 
the connection is made immediately. Does that not indicate that it knew 
where to go?



It's not the forward case that's the problem. The sshd daemon on the
server side attempts to find out where the connection is from by doing
a reverse-lookup. If the incoming IP hasn't got a DNS entry, the failing
DNS ip-lookup will time out in ~30s.

Cheers.

Jonathan

Thanks for responding. In all of my systems /etc/hosts is populated with 
the name and LAN IP address of all other boxes. My gateway/firewall is a 
5.4 Rel computer. I can ping that box it's called gateway with ping 
gateway or ping 10.0.0.1 no problem.


I ssh there and it takes 40 seconds to provide me with a request for 
passphase. Once I'm in there I can ping all other boxes with name or IP. 
If I ssh from there to any box it takes 40 seconds for that next box to 
request a password. This happens from any box to any box. It was working 
perfectly until this week. It might be realted to me updating the 
gateway box from 5.3 to 5.4 but I know I had accessed it right after 
upgrade because it is headless and I had to ssh into it to do the 
world/kernel thing.


Other than /etc/hosts and /etc/resolv.conf is there any other config 
files I should check.


Thanks again for your time.

Robert

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


Re: ssh delays 40 seconds

2005-06-05 Thread Robert Marella

Jonathan Chen wrote:

On Sun, Jun 05, 2005 at 04:49:26PM -1000, Robert Marella wrote:


Jonathan Chen wrote:



[...]


It's not the forward case that's the problem. The sshd daemon on the
server side attempts to find out where the connection is from by doing
a reverse-lookup. If the incoming IP hasn't got a DNS entry, the failing
DNS ip-lookup will time out in ~30s.



Thanks for responding. In all of my systems /etc/hosts is populated with 
the name and LAN IP address of all other boxes. My gateway/firewall is a 
5.4 Rel computer. I can ping that box it's called gateway with ping 
gateway or ping 10.0.0.1 no problem.



What does dig -x 10.0.0.1 on the ssh-server box give you? Looks like
you need to set up a internal DNS server to resolve these sort of
problems.

Cheers.


Jonathan
from my gateway box. The 24.25.227.64 is also found in resolv.conf 
placed there by dhcpd from roadrunner.


[EMAIL PROTECTED]:~ dig -x 10.0.0.1

;  DiG 9.3.1  -x 10.0.0.1
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: SERVFAIL, id: 51746
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;1.0.0.10.in-addr.arpa. IN  PTR

;; Query time: 4208 msec
;; SERVER: 24.25.227.64#53(24.25.227.64)
;; WHEN: Sun Jun  5 16:58:13 2005
;; MSG SIZE  rcvd: 39

This is from one of the clients on my lan

[frankie] ~ dig -x 10.0.0.1

;  DiG 9.3.1  -x 10.0.0.1
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: SERVFAIL, id: 34691
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;1.0.0.10.in-addr.arpa. IN  PTR

;; Query time: 3356 msec
;; SERVER: 24.25.227.64#53(24.25.227.64)
;; WHEN: Sun Jun  5 16:59:51 2005
;; MSG SIZE  rcvd: 39

I hope this helps you help me.

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


Re: USB 2.0 (ehci) and Intel ICH5 in 5.4?

2005-05-25 Thread Robert Marella

Louis LeBlanc wrote:


Anyone using this particular USB controller with FreeBSD and getting the
ehci driver to work?


Upgrade to RELENG_5. There have been a lot of bug fixes to the USB
subsystem and USB 2.0 works far better.



I'm not sure I'm ready to put RELENG_5 on this machine.  I prefer to
have a specific release and make upgrades a little more carefully.



Hello Louis

p4# uname -a
FreeBSD p4.konav201.local 5.4-RELEASE-p1 FreeBSD 5.4-RELEASE-p1 #0: Fri 
May 13 08:39:34 HST 2005 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/P4-5_4REL  i386


p4# dmesg | grep 82801
uhci0: Intel 82801EB (ICH5) USB controller USB-A port 0xeec0-0xeedf 
irq 16 at device 29.0 on pci0

usb0: Intel 82801EB (ICH5) USB controller USB-A on uhci0
uhci1: Intel 82801EB (ICH5) USB controller USB-B port 0xef00-0xef1f 
irq 19 at device 29.1 on pci0

usb1: Intel 82801EB (ICH5) USB controller USB-B on uhci1
uhci2: Intel 82801EB (ICH5) USB controller USB-C port 0xef20-0xef3f 
irq 18 at device 29.2 on pci0

usb2: Intel 82801EB (ICH5) USB controller USB-C on uhci2
uhci3: Intel 82801EB (ICH5) USB controller USB-D port 0xef40-0xef5f 
irq 16 at device 29.3 on pci0

usb3: Intel 82801EB (ICH5) USB controller USB-D on uhci3
pcm0: Intel ICH5 (82801EB) port 0xee80-0xeebf,0xe800-0xe8ff mem 
0xfebff000-0xfebff0ff,0xfebff400-0xfebff5ff irq 17 at device 31.5 on pci0


p4# dmesg |grep EHC
ehci0: EHCI (generic) USB 2.0 controller mem 0xfebff800-0xfebffbff irq 
23 at device 29.7 on pci0

usb4: EHCI version 1.0
usb4: EHCI (generic) USB 2.0 controller on ehci0
uhub4: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1

May 25 18:58:05 p4 kernel: umass0: SanDisk Corporation Cruzer Mini, rev 
2.00/0.20, addr 2

May 25 18:58:05 p4 kernel: da0 at umass-sim0 bus 0 target 0 lun 0
May 25 18:58:05 p4 kernel: da0: SanDisk Cruzer Mini 0.2 Removable 
Direct Access SCSI-2 device

May 25 18:58:05 p4 kernel: da0: 40.000MB/s transfers
May 25 18:58:05 p4 kernel: da0: 488MB (1000944 512 byte sectors: 64H 
32S/T 488C)


USB 2.0 seems to be working just fine on 5.4 for me.

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


OT: A beautiful dmesg! Maybe one day?

2005-05-11 Thread Robert Marella
Fafa Hafiz Krantz wrote:
Clifton!
I've never read a better e-mail.
Thank you for your words, wise man.
I've been inspired now.
:)
From:
 Clifton Royston  --  [EMAIL PROTECTED]
  If this matters so much to you, it should be worth your effort.

I must agree with Fafa. Wise words from a wise man. If ever a statement 
on this list should carry a copyright.. Let's not get into that :)

Would you mind if I used this statement in dealing with my 16 year old 
Grandson who is dying to get his driving license?

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


Re: PF RULES! But mine doesn't ...

2005-05-08 Thread Robert Marella
Fafa Hafiz Krantz wrote:
Hello.
My ruleset is all twisted.
Unless I disable the default deny policy, this is what happens:
*  My nameserver setup goes disfunctional.
*  My web, mail and fileserver goes disfunctional.
*  I cannot SSH and FTP into certain servers.
*  I cannot ping my IP from the outside.
Can anyone tell what's wrong?
And maybe also how I can simplify my ruleset?
int_if=ep0
ext_if=lnc0
# *** Options
#
set block-policy drop
# *** Scrub incoming packets
#
scrub   in all
# *** NAT
#
nat on $ext_if from $int_if:network to any - ($ext_if)
rdr on $int_if proto tcp from any to any \
port 21 - 127.0.0.1 port 8021
# *** Default deny policy
#
# block drop log all
# *** Pass loopback traffic
#
passquick on { lo0 $int_if }
# *** Outgoing
#
passout on $ext_if inet proto { tcp, udp, icmp } \
from ($ext_if) to any keep state
# *** Bootstrap
#
passout on $ext_if inet proto udp \
from any port 68 to any port 67 keep state
# *** DNS and NTP
#
passout on $ext_if inet proto udp \
from ($ext_if) to any port { 53, 123 } keep state
# *** SSH, HTTP and Ident
#
passin on $ext_if inet proto tcp \
from any to ($ext_if) port { 22, 80, 113 } flags S/SA keep state
# *** Active FTP
#
passin on $ext_if inet proto tcp \
from port 20 to ($ext_if) user proxy flags S/SA keep state
Thank you so much.
Keep in touch!
--
Fafa Hafiz Krantz
  Research Designer @ http://www.bleed.no
Perhaps you should check the archives. :)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PF RULES! But mine doesn't ...

2005-05-08 Thread Robert Marella
Fafa Hafiz Krantz wrote:
Perhaps you should check the archives. :)

What do you mean? There are many archives out there ...
Please tell me which one?
Thanks!
--
Fafa Hafiz Krantz
  Research Designer @ http://www.home.no/barbershop
  Enlightened @ http://www.home.no/barbershop/smart/sharon.pdf

Did you happen to notice the smile [ :) ] at the end of my post. That 
was my weak attempt at humor. Some actually found it humorous.

Perhaps you need to lighten up and work on your sense of humor. It would 
go a long way on this list and elsewhere in this world.

On that note, I think the entire world and especially the politicians 
need to lighten up and try to have some fun. If we can not laugh at 
ourselves then we have no right to laugh at all.

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


OT: light weight spreadsheet program

2005-04-30 Thread Robert Marella
Greetings
I am trying to keep my older laptop from being filled up. i.e. Trying to 
keep the number of ports to a minimum, I am using xfce4.

I like Gnumeric for my desktop system, which is a lot faster, but I 
don't want to have all of the gnome stuff that comes with it. I just 
tried it and it brought an additional 38 packages with it.

I do not need all of the functionality that comes with gnumeric. Just a 
nice compact, gui spreadsheet.

I will try all ideas and suggestions.
Thanks
Robert
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Can't remove empty directory

2005-04-12 Thread Robert Marella
Greetings
I think this problem occurred during portmanager -u but I can't be 
certain. Portmanager  did a core dump this morning. I tried a portsclean 
-CD and /usr/ports/accessibility/gail/work cannot be removed. Here is 
what I have tried.

p4# cd /usr/ports/accessibility/gail
p4# ls -l
total 14
-rw-r--r--  1 root  wheel   920 Apr 12 02:21 Makefile
-rw-r--r--  1 root  wheel   109 Apr 12 02:21 distinfo
drwxr-xr-x  2 root  wheel   512 Nov 10 20:16 files
-rw-r--r--  1 root  wheel   211 Apr  4  2004 pkg-descr
-rw-r--r--  1 root  wheel  2667 Apr 12 02:21 pkg-plist
drwxr-xr-x  3 root  wheel   512 Apr 12 10:06 work
p4# rm -r work
rm: work/gail-1.8.3/gail: Directory not empty
rm: work/gail-1.8.3: Directory not empty
rm: work: Directory not empty
p4# cd work/gail-1.8.3/gail/
p4# ls -la
total 0
p4# cd ..
p4# ls -la
total 4
drwxr-xr-x  3 root  wheel  1024 Apr 12 10:06 .
drwxr-xr-x  3 root  wheel   512 Apr 12 10:06 ..
drwxr--r--  4 root  wheel 0 Apr 12 09:51 gail
p4# chflags -R noschg gail
p4# rm -r gail
rm: gail: Directory not empty
p4# rm gail
rm: gail: is a directory
p4# rmdir gail
rmdir: gail: Directory not empty
p4#
The obvious problem is that the number of links is incorrect but I don't 
know how to make that right.

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


Re: Can't remove empty directory

2005-04-12 Thread Robert Marella
Kris Kennaway wrote:
On Tue, Apr 12, 2005 at 12:14:12PM -1000, Robert Marella wrote:
 

drwxr-xr-x  3 root  wheel  1024 Apr 12 10:06 .
drwxr-xr-x  3 root  wheel   512 Apr 12 10:06 ..
drwxr--r--  4 root  wheel 0 Apr 12 09:51 gail
p4# chflags -R noschg gail
p4# rm -r gail
rm: gail: Directory not empty
p4# rm gail
rm: gail: is a directory
p4# rmdir gail
rmdir: gail: Directory not empty
p4#
The obvious problem is that the number of links is incorrect but I don't 
know how to make that right.

Any help is greatly appreciated.
   

Unmount the filesystem and run fsck to repair the filesystem
corruption.
Kris
 

That's why you get paid the BIG BUCKS.
Thank you very much
Robert
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


ipflog entries?

2005-04-04 Thread Robert Marella
Greetings
My daily mail on my firewall (5.3-rel-p4) has always shown many ( 
1)  blocks by my blocking rule
block in quick on em0 from 10.0.0.0/8 to any. Obviously I'm using 
ipf/ipnat.

So, for education, today I enabled log for a short time on that rule. 
Within a few minutes I logged over twenty
attempts from the same address. (Sample below, text attached)

04/04/2005 11:33:41.034653 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 
PR udp len 20 337 IN
04/04/2005 11:33:41.973120 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 
PR udp len 20 344 IN
04/04/2005 11:33:57.532249 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 
PR udp len 20 337 IN
04/04/2005 11:33:58.963415 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 
PR udp len 20 344 IN

Ports 67 shows dhcps and 68 shows dhcpc in /etc/services.
em0 is connected to my roadrunner cable modem. Is the cable modem doing 
this or is someone spoofing this IP address?

Sorry if this has been answered already but I'm kind of new to the 
firewall stuff.

Thank you for your time.
Robert
04/04/2005 11:32:13.544747 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:32:22.045132 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:32:38.544230 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:33:23.043437 2x em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR 
udp len 20 337 IN
04/04/2005 11:33:25.553000 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:33:27.822447 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:33:29.962973 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 344 IN
04/04/2005 11:33:32.535749 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:33:34.952726 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 344 IN
04/04/2005 11:33:38.027073 em0 @0:6 b 218.83.155.71,55197 - 66.8.191.104,1029 
PR udp len 20 459 IN
04/04/2005 11:33:41.034653 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:33:41.973120 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 344 IN
04/04/2005 11:33:57.532249 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:33:58.963415 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 344 IN
04/04/2005 11:34:27.203702 2x em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR 
udp len 20 341 IN
04/04/2005 11:34:34.461616 em0 @0:6 b 24.90.91.53,15851 - 66.8.191.104,42 PR 
tcp len 20 48 -S IN
04/04/2005 11:34:37.463380 em0 @0:6 b 24.90.91.53,15851 - 66.8.191.104,42 PR 
tcp len 20 48 -S IN
04/04/2005 11:34:42.021349 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:34:42.804996 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:34:44.532057 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:34:46.807355 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:34:51.521685 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:35:00.022081 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:35:16.541624 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:35:36.322489 2x em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR 
udp len 20 342 IN
04/04/2005 11:35:59.813198 2x em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR 
udp len 20 353 IN
04/04/2005 11:36:01.020881 2x em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR 
udp len 20 337 IN
04/04/2005 11:36:03.510580 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:36:05.801901 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:36:10.510708 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:36:19.010118 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:36:35.511583 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:37:08.834639 em0 @0:6 b 60.34.114.40,2861 - 66.8.191.104,5554 PR 
tcp len 20 48 -S IN
04/04/2005 11:37:09.835071 em0 @0:6 b 60.34.114.40,3093 - 66.8.191.104,1023 PR 
tcp len 20 48 -S IN
04/04/2005 11:37:11.841033 em0 @0:6 b 60.34.114.40,3634 - 66.8.191.104,9898 PR 
tcp len 20 48 -S IN
04/04/2005 11:37:21.010605 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:37:21.788276 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:37:23.499794 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:37:25.791626 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:37:30.509418 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:37:38.999829 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68 PR udp 
len 20 337 IN
04/04/2005 11:37:55.499265 em0 @0:3 b 10.96.0.1,67 - 

Re: ipflog entries?

2005-04-04 Thread Robert Marella
Danny Pansters wrote:
On Tuesday 05 April 2005 00:05, Robert Marella wrote:
 

Greetings
My daily mail on my firewall (5.3-rel-p4) has always shown many (
1)  blocks by my blocking rule
block in quick on em0 from 10.0.0.0/8 to any. Obviously I'm using
ipf/ipnat.
So, for education, today I enabled log for a short time on that rule.
Within a few minutes I logged over twenty
attempts from the same address. (Sample below, text attached)
04/04/2005 11:33:41.034653 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68
PR udp len 20 337 IN
04/04/2005 11:33:41.973120 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68
PR udp len 20 344 IN
04/04/2005 11:33:57.532249 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68
PR udp len 20 337 IN
04/04/2005 11:33:58.963415 em0 @0:3 b 10.96.0.1,67 - 255.255.255.255,68
PR udp len 20 344 IN
Ports 67 shows dhcps and 68 shows dhcpc in /etc/services.
em0 is connected to my roadrunner cable modem. Is the cable modem doing
this or is someone spoofing this IP address?
Sorry if this has been answered already but I'm kind of new to the
firewall stuff.
Thank you for your time.
Robert
   

It's your cable provider insisting to send you bootps info (for broken windows 
customers I reckon). Yech that's as if you're some network appliance :) Mine 
does that too. I just drop/not log them. Whenever your dhclient needs to 
renew a lease it will connect and if your firewall keeps state on that your 
ISP's dhcp server has it's lucky moment because for once something may 
connect back in. Both of you happy.

HTH,
Dan
 

Thanks Dan.
I kinda thunk it was something like that. Just wanted someone such as 
yourself to confirm. The sheer number that was reported in the daily 
mail was what got me concerned. I was and am just dropping them. I only 
enabled the log for about 5 minutes.

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


Re: NIC won't DHCP or configure

2005-03-22 Thread Robert Marella
Charles Swiger wrote:
On Mar 21, 2005, at 9:31 PM, Kevin Kinsey wrote:
*If I'm wrong, it's Chuck's fault, heh heh ?!

It's always my fault, even when it's not my fault.
(I must have done something.  What did I do, again?  :-)
I can take the pressure off of you Chuck.
Call 1-900-BLAME-ME. Fifty cents per minute to hear sincere apologies 
and promises to do better.

Groveling at additional expense. ;)
Robert
P.S. please do not call the above number as I have no idea if it works.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Question: USB block dev, Olympus Camedia digital camera

2005-03-19 Thread Robert Marella
Peer Böhm wrote:
Hello everyone,
I am new to BSD-style operating systems, and currently reading about and
seriously considering a migration from Linux to free BSD on my home machine.
Before I do that, I would like to make sure (as far as possible) that my
critical applications will continue to work, one way or the other.
It seems that the Olympus Camedia (C-1) digital camera does have some
quirks that require a cludge for the kernel, so it can be mounted as a
block dev for my Linux kernel version, although I hear that newer
kernels do support that quirk out of the box.
I was wondering, whether anyone here is using such a camera under
freeBSD, and can tell me whether it can be mounted under 5.3 without
such a hack.
Thanks in advance,
Peer
___
Hello Peer
I have an Olympus Camedia 3000 Zoom and it will not work directly 
connected via usb with FreeBSD. Your best bet is to get a usb card 
reader and then plug your card into it. I find it quicker and easier 
doing it that way.

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


Re: If I have portmanager, do I need portupgrade?

2005-03-13 Thread Robert Marella
Michael C. Shultz wrote:
On Sunday 13 March 2005 12:40 pm, Chris wrote:
Chris Hodgins wrote:
Michael C. Shultz wrote:
On Sunday 13 March 2005 12:05 pm, Fafa Diliha Romanova wrote:
If I just do:
cvsup -g -L 2 /etc/cvsupfile  portmanager -u
Do I need portupgrade at all then?
Thanks.
Not for upgrading.  portsclean (a part of portsupgrade package) is
a nice feature of portupgrade, so is pkg_which and a few others so
I keep portupgrade around just the same.
-Mike
How long does it take to run portmanager.  Is it a similar amount
of time as portupgrade for each run?
Chris
The time is about the same (in my experiance) AND (most importantly)
portmanager seems to handle upgrading better then portupgrade does.
IE: Thunderbird, Gnome, Firefox.
Another nifty thing is that portmanager creates a package and dumps
it in /usr/ports/mail/thunderbird (for example) and at least for me,
I can pkg_add that to my laptop since they both run 5.3

Chris, check and see if you have a /usr/ports/packages directory.  If 
you do then all the packages will end up in /usr/ports/packages/All and
a tree of symlinks will be made under /usr/ports/packages for the ports 
that have packages.  

For some reason when you first set up FreeBSD/ports it does not make 
the /usr/ports/packages directory so the packages end up in the ports 
directory, this isn't a good place for them, here is why:

When a port is removed, see /usr/ports/MOVED, cvsup should be able to 
delete the directory but if a package is setting in there it can't, so 
over time you will come across port directories that have just a 
package in it and maybe a readme.html file but nothing else.  It will 
keep things leaner/cleaner if the packages directory exists.  I keep 
meaning to submit a PR about the missing packages directory but never 
seem to get around to it :(

One other thing just to let you know, I've been testing portmanager 
against this new gnome update, when its done there is a bunch of 
gstreamer-plugins-* left un-upgraded.  I just tried 
pkg_delete -f gstreamer-plugins-* on them and let portmanager -u bring 
them back in, it seems to be working but I also cvsup'ed and there is 
so many new changes it will be awhile before I know for sure.

Right now I'm telling anyone who asks to try  pkg_delete -f 
gstreamer-plugins-* first before upgrading with portmanager if they use 
gnome.

-Mike
Mike
Like Chris I have packages scattered in my ports directories. I have 
just started using Portmanager. I have now created /usr/ports/packages 
directory. Do I need to move the packages one at a time from the 
individual ports directories? Will running portmanager again find them 
and move them?

Thanks for all the positive, active maintenance of this port.
Robert
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Why in the world you should have a vote: was RE: Please don't change Beastie to another crap logo suchas NetBSD!!!

2005-02-12 Thread Robert Marella
On Fri, 2005-02-11 at 23:12 -0800, Ted Mittelstaedt wrote:
 

 
  Why in the world should I expect to be able to vote on whether a new
  logo is adopted or not?
 
 
 I will tell you exactly why and it is one of the most exciting reasons
 to use FreeBSD.
 
mucho snipo

 It is EVERYONE WHO CONTRIBUTES ANYTHING TO FREEBSD.  You, me, anyone
 who wants to be involved in the FreeBSD Project, all you need to do
 is start contributing and YOU ARE IN IT!!!
 
 Thus, FREEBSD BELONGS TO YOU!!  That's, right YOU!!  Your a member
 of the FreeBSD Project - you are one of the owners of the FreeBSD
 code.  That's it, simple as that.
 
 So, of course you should have a vote.
 
 Ted
 
Let me be the first to nominate Ted as the ballot magistrate. He will
decide who gets to vote by how they have committed to the project. 

Unless he wants to open it up to every man, woman, and child who has
access to the internet. I guess then we wouldn't need a magistrate.

Robert

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


Re: Please don't change Beastie to another crap logo such as NetBSD!!!

2005-02-11 Thread Robert Marella
On Fri, 2005-02-11 at 08:00 -0500, Bart Silverstrim wrote:

 
 Someone said people change logos all the time.  That's flat out wrong.  
 When a company spends mucho dinero on marketing their logo, they don't 
 just flip around and decide to change their logo that they spent so 
 much money and time getting mindshare with.  Have any examples of logos 
 that have constantly changed?
 
http://www.bellsystemmemorial.com/bell_logos.html



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


RE: Please don't change Beastie to another crap logo such as NetBSD!!!

2005-02-11 Thread Robert Marella
On Thu, 2005-02-10 at 21:31 -0800, Ted Mittelstaedt wrote:
 
  What if they put it
 to a vote and the userbase all votes for logos that clearly
 represent the Beastie image?  What will have been the point of
 the contest?

I am a FreeBSD user. I read and sometimes respond to several of the
lists. I have donated money and will continue to donate money to FreeBSD
no matter what the logo will be. 

I also donate money and volunteer my time to Hospice. I do not get nor
expect to be able to vote on any issues that may arise  at a board
meeting for The Hospice of Kona.

Why in the world should I expect to be able to vote on whether a new
logo is adopted or not?

Robert

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


Re: Please don't change Beastie to another crap logo such as

2005-02-11 Thread Robert Marella
On Fri, 2005-02-11 at 18:25 -0500, Jerry McAllister wrote:
  
  athony atkielski =~ /tm452\d/ ?
 
 I was beginning to suspect some such.
 Maybe worse.
 
 jerry
 
Jerry and Eric

If I can remember correctly, I have received help from both of you on
some of my previous posts. I thank you and I always enjoy reading your
view points. 

This post is no exception but I happen to find Anthony's views on this
subject both provocative and right on the money.

We have all run into a problem with a printer, NIC, scanner that is not
supported by FreeBSD because the vendor will not release the drivers or
code needed to build a driver.

The vendor could care less if our mascot is a daemon or Mount Fujiyama.
The vendor looks at the bottom line. How much engineer/programmer time
will it take and can I recover the investment. The vendor looks at the
number of installed systems and the competition for his product and
makes a _business_ decision.

Anthony's point, and I agree, is that everything will grow when our OS
is taken for its strengths. It is difficult to get to the point of our
strengths when the Suits see a representation of what they perceive as;
childish or anti-christ or cartoonish whether justified or not. First
impressions are important.

Robert

P.S. I like beastie... but I like the OS much better!

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


Re: Please don't change Beastie to another crap logo such as

2005-02-11 Thread Robert Marella
On Fri, 2005-02-11 at 18:11 -0700, Chad Leigh -- Shire.Net LLC wrote:
 On Feb 11, 2005, at 5:34 PM, Robert Marella wrote:
 
  On Fri, 2005-02-11 at 18:25 -0500, Jerry McAllister wrote:
 
  athony atkielski =~ /tm452\d/ ?
 
  I was beginning to suspect some such.
  Maybe worse.
 
  jerry
 
  Jerry and Eric
 
  If I can remember correctly, I have received help from both of you on
  some of my previous posts. I thank you and I always enjoy reading your
  view points.
 
  This post is no exception but I happen to find Anthony's views on this
  subject both provocative and right on the money.
 
 Jerry and Eric were not talking about Anthony and his views on the logo 
 issue when they wrote that.  They were talking about his trolling posts 
 about the codebase and its legality and demanding an answer in this 
 forum instead of going to the people who could best answer him.
 
 I agree that Anthony is spot on with regards the logo.
 
 Chad
 
Jerry and Eric did not include any of Anthony's post with the above
comment. They tagged him as a troll or worse they put him in with
TM-whatever. 

As far as the codebase question, he was not the one to bring it up. If I
can read between his lines, I understand that when you go in front of
the suits you can't tell them RTFM. You have to explain why FreeBSD is
head and shoulders above the leader of the pack. 

The Suits hold the purse strings. They read the newspaper. They see the
advertisements. They hear the hype. They say, We were thinking of an MS
solution. Why would we use FreeBSD? What is wrong with Linux as an
alternative.

Anthony's legal questions were a normal continuation of the flow of this
thread.

I stand by my statement. I happen to find Anthony's views on this
subject both provocative and right on the money.

Robert


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


Re: Please don't change Beastie to another crap logo such as

2005-02-11 Thread Robert Marella
On Fri, 2005-02-11 at 19:18 -0600, Eric Kjeldergaard wrote:
  If I can remember correctly, I have received help from both of you on
  some of my previous posts. I thank you and I always enjoy reading your
  view points.
 
 (speaking on behalf of Jerry as well as myself, and making some wild
 assumptions about Jerry based on his previous posts) Always glad to
 help.  That's kind of what we are here for.
 
  We have all run into a problem with a printer, NIC, scanner that is not
  supported by FreeBSD because the vendor will not release the drivers or
  code needed to build a driver.
 
 Actually, I haven't.  I know some people that have, but generally
 between using the hardware list and buying hardware that isn't
 obscure, I have no problems with support  for hardware.  The FreeBSD
 team goes way beyond my expectations again and again.

Agreed, but have you never inherited control over a system with hardware
you did not purchase?

 
  The vendor could care less if our mascot is a daemon or Mount Fujiyama.
  The vendor looks at the bottom line. How much engineer/programmer time
  will it take and can I recover the investment. The vendor looks at the
  number of installed systems and the competition for his product and
  makes a _business_ decision.
 
 Seems about right.  That is how capitalism functions..
 
  Anthony's point, and I agree, is that everything will grow when our OS
  is taken for its strengths. It is difficult to get to the point of our
  strengths when the Suits see a representation of what they perceive as;
  childish or anti-christ or cartoonish whether justified or not. First
  impressions are important.
 
 Might be true, though fBSD has come as far as it has without the aid
 of these Suits in question.  It's certainly not about to stop growth
 without them.  

Growth is a natural thing. If we have 2% of the market and we grow 5%
but the market grows 20%, we loose share. Vendors look at the market. We
need to capture a larger share to make them sit up and take notice.

 But I don't disagree that having more support from
 people that matter would be nice.
 
  P.S. I like beastie... but I like the OS much better!
 
 Same here.  Though beastie is pretty seksii.
 
 

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


Re: Please don't change Beastie to another crap logo such as

2005-02-11 Thread Robert Marella
On Fri, 2005-02-11 at 20:55 -0500, Jerry McAllister wrote:
  
  On Fri, 2005-02-11 at 18:25 -0500, Jerry McAllister wrote:

athony atkielski =~ /tm452\d/ ?
   
   I was beginning to suspect some such.
   Maybe worse.
   
   jerry
   
  Jerry and Eric
  
  If I can remember correctly, I have received help from both of you on
  some of my previous posts. I thank you and I always enjoy reading your
  view points. 
  
  This post is no exception but I happen to find Anthony's views on this
  subject both provocative and right on the money.
  
  We have all run into a problem with a printer, NIC, scanner that is not
  supported by FreeBSD because the vendor will not release the drivers or
  code needed to build a driver.
  
  The vendor could care less if our mascot is a daemon or Mount Fujiyama.
  The vendor looks at the bottom line. How much engineer/programmer time
  will it take and can I recover the investment. The vendor looks at the
  number of installed systems and the competition for his product and
  makes a _business_ decision.
  
  Anthony's point, and I agree, is that everything will grow when our OS
  is taken for its strengths. It is difficult to get to the point of our
  strengths when the Suits see a representation of what they perceive as;
  childish or anti-christ or cartoonish whether justified or not. First
  impressions are important.
 
 Well, I hope I am helpful, at least some of the time.   It seems
 to run about 50-50 that I am near the topic and am way out of touch.

You are too modest. I always find your answers concise and correct.

 
 But, on this, the comment is not because of the specific opinion, but 
 rather the tenor of the posts which seem to have begun drifting in the 
 direction of having the look and feel of some from a recent very thoroughly
 unpopular but active troll.

I respectfully disagree. I have found my frontal lobes being stimulated
from the drift of Anthony's posts. These subjects (legal and others) may
not be on topic for this thread but it seems to me to be a natural
progression.

 
 The objectionable sign is the tendancy to not just post an opinion and
 let others have theirs, but to repeatedly pound on the same thread, often
 drifting far from the thread, with successive posts escalating the
 virulence of the rhetoric until there is no semblence of exchange left,
 just a bunch of who can shout the loudest.   

He is not the only one. At least I have not seen him insult other
posters.

 
 In a posting storm from only a few days ago, it was noted that this
 goes beyond even the typical troll, and may need some other creature 
 to characterize the identity - maybe a cockatrice or something.
 
 Anyway, in the way of the old folk story, it looks like, feels like,
 smells like, tastes like - sure glad I didn't step in it.
 
 
 As for the beastie mascot, it's cute.  It is not likely to go away, just
 because someone designs some letterhead logo.  I wear my beastie T-shirt to 
 church for band practice or kids club now and then with no comment from 
 anyone.  The kids wear much more offensive stuff frequently.   
 
 But, if FreeBSD needs a logo now, maybe for letterhead, etc, who cares.  
 Make a nice logo that includes a bit of the trident peeking above the name 
 and a bit of pointy tail curling up under it - just as a teaser and reminder.
 Please do a nice job, though.  Some of the logos out there in marketing
 land really are junk - either butt ugly or totally unrecognizable as anything.
 
 I doubt that making an official logo to go along with the variations of 
 the mascot will interfere with my putting Beastie FreeBSD stickers on our 
 machines or hanging a printout of Beastie on the office door, or replacing 
 my T-shirt when it wears out.  
 
 jerry

As always, I look forward to your future posts.
Robert


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


Re: SPAM: Score 3.3: Re: Instead of freebsd.com, why not...

2005-02-11 Thread Robert Marella
On Sat, 2005-02-12 at 03:14 +0100, Matthias Buelow wrote:
 Johnson David wrote:
 
  Currently Windows rules the desktop world, even for diehard Unix shops. But
  that will not last forever. We need to start thinking about the desktop
  today. We need to stop the official discouragement of desktop FreeBSD.
 
 MacOS X is the Desktop BSD.  It is available today, and it works 
 better than anything else at being a desktop.  

Does it work on my intel hardware?

Robert

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


Re: SPAM: Score 3.3: Re: Instead of freebsd.com, why not...

2005-02-11 Thread Robert Marella
On Sat, 2005-02-12 at 04:34 +0100, Matthias Buelow wrote:
 Robert Marella wrote:
 
 MacOS X is the Desktop BSD.  It is available today, and it works 
 better than anything else at being a desktop.  
  Does it work on my intel hardware?
 
 And your point is..?
 
 mkb.
 Market share!

What percentage of the desktops are intel/AMD based? If MacOS X is _THE_
Desktop BSD, can it be ported/converted to the majority of the installed
desktops? If not, can someone/some_company/some_group do to intel/AMD
desktops what Apple did to MacOS X?

I know the driving force of FreeBSD is toward servers. Apple was able to
make it a desktop OS. I like it as a desktop OS on my intel hardware but
I have a lot of time to spend. Even with the time, I still can't get
everything to work as I would like. 

If it was a better desktop OS more people would notice it and would
recognize the name FreeBSD. 

When I tell most people that I do not use MS Windows, I get a blank look
and then they ask what I do use. I usually say I use a form of UNIX
called FreeBSD. The first thing out of their mouth is, Oh, Linux!.

I then go on to tell them about FreeBSD as their eyes glaze over.

That's my point!

Robert

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


FreeBSD Logo

2005-02-10 Thread Robert Marella
Many companies do change their logos (see link). Logos tend to evolve
over time and as the world changes. Our world (software-wise) is
definitely changing. If we want FreeBSD to exist in the future then
change is inevitable.

http://www.bellsystemmemorial.com/bell_logos.html

The open source slice of the OS pie is getting larger. For the FreeBSD
portion of that slice to grow, it must change.

My 2 seashells.
Robert

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


RE: favor

2005-02-07 Thread Robert Marella
On Sun, 2005-02-06 at 15:38 -0800, Ted Mittelstaedt wrote:

many emails :)

Sorry if I offended anyone with my previous post re: freebsd-legal mail
list. I just feel that all being discussed after the first 20 or so was
3 or 4 individuals expressing their opinions to each other. 

I _firmly_ believe that all have that right to express themselves. In
fact I have fought to protect that right.

That being said, I want to say I was wrong. There is more to discuss on
this issue and I would like to add something.

Poster 1 asks a question. Poster 2 answers with an excellent howto  that
solves the problem for multitudes. Me, thinking this is great, prints
the post. 

Poster 2 decides he wants the archive wiped clean of his howto. And
Freebsd complies.

Can I then pass the hard copy to some of my associates without being
sued?

Keep up the good work.

Robert

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


Re: Electricity bill - OT

2005-02-07 Thread Robert Marella
On Mon, 2005-02-07 at 17:01 +0100, Anthony Atkielski wrote:
   I don't know where the rest is going, but I suspect that
 an aging electric water heater is consuming more than all the computer
 equipment combined.  

I put a timer on my hot water heater and only run it a couple of hours
per day. Saved about $30 per month. Of course, YMMV, I live in Hawai`i.


Robert

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


Re: favor

2005-02-05 Thread Robert Marella
On Fri, 2005-02-04 at 23:05 +0100, Erik Norgaard wrote:

 When I search for my name, I'm in competition with a wrestler - really 
 anoying, 

Deja Vu all over again. Who is Gorilla Monsoon and why is google filled
up with him when I search my name. ;)

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


Re: favor

2005-02-05 Thread Robert Marella
On Sat, 2005-02-05 at 05:52 +0100, Anthony Atkielski wrote:
 Mike Hauber writes:

snip much legal mumbo jumbo and speculation, err mostly the latter

 The cat is being pushed back into the bag rather rapidly. The legal
 profession was slow to apply the law to the Internet, but it is learning
 fast. 

To paraphrase the Bard The first thing we do, let's kill all the
lawyers...except mine.

Am I the only one longing for a freebsd-legal mail list that I will not
subscribe to?

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


Re: Realtek RTL8100C

2005-01-27 Thread Robert Marella
On Thu, 2005-01-27 at 10:29 +0100, Gert Cuykens wrote:
 On Thu, 27 Jan 2005 09:36:35 +0100, Gert Cuykens [EMAIL PROTECTED] wrote:
   And you don't want that distorsion, right?
  
   Then I must ask you this, why do you set the volume to 75
   if you get distorsion at that level?
  
  because i thought it had nothing to do with it as long it is below 80 ?
  And i think if i set it to 1 or something i will still hear distortion.
  going to test it but i am sure it will be the same
  
 
 I HAVE SOUND 
 YAH
 
 i installed xmms and now i can play it without distortion ?


We are glad you have your problem solved. For the archives you might
want to post what actually solved the problem. This will help when
someone else encounters a similar problem.

In addition, it is customary to thank the respondents who helped solve
the problem. It is also common courtesy.

Robert

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


Re: usbd: Executing umount: Device not configured

2005-01-20 Thread Robert Marella
On Wed, 2005-01-19 at 21:41 -0500, Alexander Anderson wrote:
 Greetings all,
 
 I have a Sony DSC-P32 digital camera with a USB interface. I can't get
 usbd to unmount the camera when it's disconnected, powered off, or
 detached.
 
 I have to remember to execute umount(8) manually before the camera is
 physically disconnected, or else it stays mounted to a stale device forever
 (which makes it impossible to use the camera again until a reboot), and an
 attempt to forcibly unmount the stale device causes the kernel to panic.
 
 The relevant entry in /etc/usbd.conf:
 
 device Sony DSC
 vendor  0x054c
 product 0x0010
 attach sleep 1 ; /sbin/mount_msdosfs /dev/da0s1 /mnt/camera
 detach /sbin/umount /dev/da0s1
 
 It mounts without problems. But when I disconnect the camera, here's what
 I see (the output was obtained from usbd -dvv):
 
 umass0: at uhub1 port 1 (addr 2) disconnected
 (da0:umass-sim0:0:0:0): lost device
 umass0: detached
 usbd: processing event queue on /dev/usb
 usbd: device-detach event at 1106184871.250725000, DSC cameras, Sony:
   vndr=0x054c prdct=0x0010 rlse=0x0450 clss=0x subclss=0x prtcl=0x
 usbd: Found action 'Sony DSC' for DSC cameras, Sony
 usbd: action 0: Sony DSC
   vndr=0x054c prdct=0x0010
   attach='sleep 1 ; /sbin/mount_msdosfs /dev/da0s1 /mnt/camera'
   detach='/sbin/umount /dev/da0s1'
 usbd: Executing '/sbin/umount /dev/da0s1'
 umount: unmount of /mnt/camera failed: Device not configured
 usbd: '/sbin/umount /dev/da0s1' returned 1
 
 Not so long ago upgraded from 4.9-RELEASE to 5.3-RELEASE, and this
 configuration used to work before, but not now.
 
 I'm wondering if usbd can execute the detach command before the special
 device has disappeared, not after the fact, as it seems to be.
 
 And I'm also wondering, why does /sbin/umount -f /dev/da0s1 when
 /dev/da0s1 does not exist cause a kernel panic? Though, I wouldn't care
 about it if all worked without this hitch.

Ummm, your mount point is /mnt/camera. 

The command should be

umount /mnt/camera



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


Re: FreeBSD I LOVE YOU

2005-01-20 Thread Robert Marella
On Thu, 2005-01-20 at 16:17 +0100, Anthony Atkielski wrote:
 Assuming one doesn't have the resources to do this, what might one do to
 secure disk drives before disposal.  

I live in Kona on the Big Island of Hawai`i. One mile from shore the
water is over 4000 feet.

Send your hard drives and $5 US and I will take care of it. :-)

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


Re: FreeBSD I LOVE YOU

2005-01-20 Thread Robert Marella
On Thu, 2005-01-20 at 21:45 +0100, Erik Norgaard wrote:
 Robert Marella wrote:
  On Thu, 2005-01-20 at 16:17 +0100, Anthony Atkielski wrote:
  
 Assuming one doesn't have the resources to do this, what might one do to
 secure disk drives before disposal.  
  
  
  I live in Kona on the Big Island of Hawai`i. One mile from shore the
  water is over 4000 feet.
  
  Send your hard drives and $5 US and I will take care of it. :-)
 
 Don't you have a vulcano? :-)
 
 Erik
 

For Volcano disposal I will have to have $10 US per hard drive. :-)

http://hvo.wr.usgs.gov/kilauea/update/main.html

Hazardous duty pay!


-- 
Robert Marella [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: NFS export of evolution

2005-01-11 Thread Robert Marella
On Tue, 2005-01-11 at 10:38 +, Daniel Bye wrote:
 On Sun, Jan 09, 2005 at 06:43:05PM -1000, Robert Marella wrote:
  
  I have a SOHO set up with several computers running a mix of FreeBSD 5.3
  Release and Stable. I have an NFS server set up so that data can be
  shared at all of the computers.
  
  I would like to have the ability to retrieve mail from any of the
  computers I happen to be logged into. I have tried various permutations
  of exporting /home, /home/reg-user, and /home/reg-user/.evolution and I
  always get the same error when trying to read mail.
 
 If your main concern is being able to read/send email from any host on
 the network, why not run an IMAP server?
 
 I use use courier-imap from the ports on a machine that, among many
 other things, also exports nfs file systems.  It's easy to get working, 
 and works really well for a small setup.  If you don't run your own smtp
 server, you can retrieve mail from your ISP's pop or imap servers using
 fetchmail, passing messages to procmail, which can deliver them in a
 format that courier-imapd can understand.
 
 Just a thought.
 
 HTH
 
 Dan
 
Thanks Dan

This will be the next project I will be doing.

Robert
-- 
Robert Marella [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: NFS export of evolution

2005-01-10 Thread Robert Marella
On Mon, 2005-01-10 at 10:01 +0100, Erik Norgaard wrote:
 Robert Marella wrote:
  Hello
  
  I am not sure where this problem should go so I am posting to
  -questions. 
  
  I have a SOHO set up with several computers running a mix of FreeBSD 5.3
  Release and Stable. I have an NFS server set up so that data can be
  shared at all of the computers.
  
  I would like to have the ability to retrieve mail from any of the
  computers I happen to be logged into. I have tried various permutations
  of exporting /home, /home/reg-user, and /home/reg-user/.evolution and I
  always get the same error when trying to read mail.
  
  I am able to mount the directory(ies) on the client computers and am
  able to call up evolution and see the messages but when I try to read
  any message I get this error
  
  **
  Error while Retrieving message 1292 (this number varies of course)
  
  Failed to get lock using fcntl(2): Operation not supported.
  **
  
  I read the man page for fcntl but I didn't get any help out of it. It
  was way over my head.
  
  Here is the important bits from /etc/exports
  
  /home/reg-user/.evolution -alldirs notebook.my.local.lan
  
  I have also tried -maproot with out any luck. I would think this is
  possible but I guess I haven't set up the right conditions or options.
  Can anyone help me out?
 
 The error appears to be with filelocking not mounting. Filelocking is a
 problem on NFS as many independent systems might try to get write access
 to the same file at the same time. Do you have:
 
 rpc_lockd_enable=YES # Run NFS rpc.lockd needed for client/server.
 rpc_statd_enable=YES # Run NFS rpc.statd needed for client/server.
 
 in your rc.conf?

Eric,
No I do not have that in my rc.conf. I tried adding it and got the same
results. Should I try to change the values to =NO ??

Thanks for responding.

Robert



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


Re: NFS export of evolution-SOLVED

2005-01-10 Thread Robert Marella
On Mon, 2005-01-10 at 22:04 +0100, Erik Norgaard wrote:
 Robert Marella wrote:
  On Mon, 2005-01-10 at 10:01 +0100, Erik Norgaard wrote:
  
 Robert Marella wrote:
 
 Hello
 
 I am not sure where this problem should go so I am posting to
 -questions. 
 
 I have a SOHO set up with several computers running a mix of FreeBSD 5.3
 Release and Stable. I have an NFS server set up so that data can be
 shared at all of the computers.
 
 I would like to have the ability to retrieve mail from any of the
 computers I happen to be logged into. I have tried various permutations
 of exporting /home, /home/reg-user, and /home/reg-user/.evolution and I
 always get the same error when trying to read mail.
 
 I am able to mount the directory(ies) on the client computers and am
 able to call up evolution and see the messages but when I try to read
 any message I get this error
 
 **
 Error while Retrieving message 1292 (this number varies of course)
 
 Failed to get lock using fcntl(2): Operation not supported.
 **
 
 I read the man page for fcntl but I didn't get any help out of it. It
 was way over my head.
 
 Here is the important bits from /etc/exports
 
 /home/reg-user/.evolution -alldirs notebook.my.local.lan
 
 I have also tried -maproot with out any luck. I would think this is
 possible but I guess I haven't set up the right conditions or options.
 Can anyone help me out?
 
 The error appears to be with filelocking not mounting. Filelocking is a
 problem on NFS as many independent systems might try to get write access
 to the same file at the same time. Do you have:
 
 rpc_lockd_enable=YES # Run NFS rpc.lockd needed for client/server.
 rpc_statd_enable=YES # Run NFS rpc.statd needed for client/server.
 
 in your rc.conf?
  
  
  Eric,
  No I do not have that in my rc.conf. I tried adding it and got the same
  results. Should I try to change the values to =NO ??
 
 No, default is NO (see /etc/defaults/rc.conf for further options). I 
 don't know if you have to enable it on both client and server, and you 
 also need rpcbind if it was not enabled.

This is the solution. rpcbind, rpc_lockd, and rpc_statd have to be
enabled on both the server and the client.

I now can sit in the recliner with the laptop and read the maillists.

Thanks Erik for pulling on my collar and popping my head out of my ass.

Robert


 
 Note, these are rpc-services, so if you have a strict firewall (that is 
 any) your clients may not be able to access the lockd. Unfortunately 
 there is no way of predicting which port lockd will bind to.
 
 Btw I assume that after adding the above lines to your rc.conf you 
 succesfully started the services :-) (both statd and lockd are started 
 by /etc/rc.d/nfslocking start) you should be able to see to which ports 
 they bind using 'sockstat -4':
 
 daemon   rpc.lockd  3329  3  udp4   *:648 *:*
 root rpc.lockd  3328  3  udp4   *:648 *:*
 root rpc.statd  3323  5  udp4   *:805 *:*
 
 if you don't see it check in /var/log/messages if it registred properly 
 with rpcbind. I just tried and found that lockd wouldn't start without 
 statd.
 
 I should add that I haven't really used statd/lockd, but from what I 
 know, it appears your solution is somewhere in that direction. I hope 
 this at least works as a pointer for you... :-)
 
 Cheers, Erik
 

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


NFS export of evolution

2005-01-09 Thread Robert Marella
Hello

I am not sure where this problem should go so I am posting to
-questions. 

I have a SOHO set up with several computers running a mix of FreeBSD 5.3
Release and Stable. I have an NFS server set up so that data can be
shared at all of the computers.

I would like to have the ability to retrieve mail from any of the
computers I happen to be logged into. I have tried various permutations
of exporting /home, /home/reg-user, and /home/reg-user/.evolution and I
always get the same error when trying to read mail.

I am able to mount the directory(ies) on the client computers and am
able to call up evolution and see the messages but when I try to read
any message I get this error

**
Error while Retrieving message 1292 (this number varies of course)

Failed to get lock using fcntl(2): Operation not supported.
**

I read the man page for fcntl but I didn't get any help out of it. It
was way over my head.

Here is the important bits from /etc/exports

/home/reg-user/.evolution -alldirs notebook.my.local.lan

I have also tried -maproot with out any luck. I would think this is
possible but I guess I haven't set up the right conditions or options.
Can anyone help me out?

Thanks 
Robert

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


Re: Question about FreeBSD 5.3

2004-12-22 Thread Robert Marella
On Tue, 21 Dec 2004 09:56:11 +
Matthew Seaman [EMAIL PROTECTED] wrote:

 5.3-STABLE is a moving target from the RELENG_4 development branch. 
   It should run stably and it can be used usefully as a desktop system 
 or whatever, but tracking -STABLE is not recommended for *absolutely has 
 to be up 24x7* type applications, because new functionality and support 
 for new hardware will be introduced, which can result in problems 
 occasionally.  (In practice this very rarely happens: which is a great 
 tribute to the degree of care taken by FreeBSD developers).

If one is *tracking* 5.3-STABLE on a non-critical system and is subscribed 
to the stable mailing list, how does one know when to cvsup and build world? 
I have not seen anything on the list to indicate I should update my source.

I have seen that 5.3-RELEASE is now P2 but nothing about STABLE. Should I 
be doing it regularly (weekly, daily)? Or did I just miss something?

Thank you for this and all of your previous posts. I look forward to 
seeing your name as a poster for I know it will be another learning 
experience.

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


Re: when to use 'Portupgrade -R'

2004-12-11 Thread Robert Marella
On Friday 10 December 2004 14:54, Jonathon McKitrick wrote:
 I've run into some problems using 'portupgrade -R' so I'm wondering if just
 using 'portupgrade' is good enough in most cases.  I don't want a port to
 be upgraded without NECESSARY dependencies, but I don't want minor upgrades
 done UNNECESSARILY that might cause inconsistencies in the database.

Hi Jonathon

I am using Gnome 2.8 nad for what it is worth, here is how I do it.

cvsup all ports
pkgdb -F

#portversion -l   upgrading
#vi upgrading
using edit tools I remove all tabs '' and 'cr' 
I am fairly proficient with vi and can do this quickly (using   the D 
J).
I am sure the script gurus can do this in one fell swoop
but I am a newbie.
I also insert portupgrade in front of the list of ports.
#sh upgrading
go get a beer!
usually I try to do this once a week and there are from 10 to 20 ports that 
need updating. sometimnes I have to repeat the go get a beer step.

If we are to trust portversion then I don't think the -r or -R switch would 
be needed. Feedback from more knowledgeable members is welcome.

Also, if a script to alleviate the vi step is handy it is also welcome.

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


Firefox-1.0_3,1 core dumps

2004-11-29 Thread Robert Marella
Hello

I not sure that this should have been sent here or to freebsd-ports.

Firefox core dumps whenever I try to print, print preview or page setup
on a secure site. When I am on an unsecure site such as freebsd.org I
have no problem and printing is completed.

If I am logged into my online banking or webmail or trying to print an
order from tigerdirect.com I get a core dump.

I have this happening on 2 different systems, both running 5.3 stable.
On one I am using Gnome 2.8 and the other is KDE 3.3.1

If I use a different browser such as epiphany I can print from these
sites.

I have no plugins installed and I went over and over my configuration
and even tried changing things but the problem remains.

The core dump is  17MB so I cannot attach it.. 

TIA

Robert

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


Re: desktop-file-utils

2004-11-19 Thread Robert Marella
On Fri, 19 Nov 2004 13:32:23 +0100
Radek Kozlowski [EMAIL PROTECTED] wrote:

 On Thu, Nov 18, 2004 at 06:54:36PM -1000, Robert Marella wrote:
  Hello
  
  Am I the only one who cannot build gnome2.8 from ports? I get stopped
  because it cannot download desktop-file-utils-0.9.tar.gz.
  
  This should be found at http://freedesktop.org but the site was
  compromised and is not back up yet. 
  
  ftp.freebsd.org has 0.7 which is not what the port calls for. I google'd
  for the file but only had one hit and it did not have the file. If
  anyone who has this file send it to me i would appreciate it.
  
  I don't understand why this has not been on any of the mail lists.
  
  Is there a work-around I could do?
 
 Cvsup your ports tree and try again [1].
 
 -Radek
 
 [1] http://www.freebsd.org/cgi/getmsg.cgi?fetch=938696+0+current/cvs-ports

Thanks Radek

I did a fresh cvsup before I started but I guess I was before hte added 
location for 
the file I needed.

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


desktop-file-utils

2004-11-18 Thread Robert Marella
Hello

Am I the only one who cannot build gnome2.8 from ports? I get stopped
because it cannot download desktop-file-utils-0.9.tar.gz.

This should be found at http://freedesktop.org but the site was
compromised and is not back up yet. 

ftp.freebsd.org has 0.7 which is not what the port calls for. I google'd
for the file but only had one hit and it did not have the file. If
anyone who has this file send it to me i would appreciate it.

I don't understand why this has not been on any of the mail lists.

Is there a work-around I could do?

Robert


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


sane problems with umax astra 1220u

2004-11-17 Thread Robert Marella
Hello

I got lucky this afternoon at a thrift shop. I bought an Umax Astra
1220U for $3 US. It didn't have a USB cable (no problem) nor a power
adapter. I checked the voltage input (12V DC) and knew that I had an old
adapter that would probably work. Long story short, it was the wrong
polarity but I fixed that with a pair of pliers and some electrical
tape.

The unit powers on and is recognized by the OS. 

%uname -a
FreeBSD frankie.hawaii.rr.com 5.3-RC1 FreeBSD 5.3-RC1 #1: Fri Oct 29
19:08:41 HST 2004
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/FRANKIE5_3  i386

%dmesg | grep uscanner
uscanner0: UMAX Data Systems Astra 1220U Scanner, rev 1.00/1.00, addr 5


I then installed from ports sane-frontend and sane-backend. When I do
this

%sane-find-scanner

  # No SCSI scanners found. If you expected something different, make
sure that
  # you have loaded a SCSI driver for your SCSI adapter.

found USB scanner (vendor=0x1606, product=0x0010) at /dev/uscanner0
  # Your USB scanner was detected. It may or may not be supported by
  # SANE. Try scanimage -L and read the backend's manpage.

  # Not checking for parallel port scanners.

  # Most Scanners connected to the parallel port or other proprietary
ports
  # can't be detected by this program.

  # You may want to run this program as root to find all devices. Once
you
  # found the scanner devices, be sure to adjust access permissions as
  # necessary.

It finds my scanner which matches the vendor and product ID found at 
/usr/local/etc/sane.d/umax1220u.conf

I edited the device there so that it reads

%cat /usr/local/etc/sane.d/umax1220u.conf
# Options for the umax1220u backend

# Autodetect the UMAX Astra 1220U
usb 0x1606 0x0010

# The following line enables autodetection for the
# Astra 2000U and Astra 2100U. However, this driver
# isn't entirely compatible, so expect color problems :)
usb 0x1606 0x0030
usb 0x1606 0x0130

# device list for non-linux-systems (enable if autodetect fails):
/dev/uscanner0
#/dev/usb/scanner0


But when I try to run scanimage -L as root I get this

frankie# scanimage -L

No scanners were identified. If you were expecting something different,
check that the scanner is plugged in, turned on and detected by the
sane-find-scanner tool (if appropriate). Please read the documentation
which came with this software (README, FAQ, manpages).

The device shows up in /dev as uscanner0 as it should.

frankie# ls -l /dev/u*
lrwxr-xr-x  1 root  wheel6 Nov 17 07:25 /dev/urandom -
random
crw-rw  1 root  operator  240, 255 Nov 17 17:25 /dev/usb
crw-rw  1 root  operator  240,   0 Nov 17 17:25 /dev/usb0
crw-rw  1 root  operator  240,   1 Nov 17 17:25 /dev/usb1
crw-rw-rw-  1 root  operator  241,   0 Nov 17 17:25 /dev/uscanner0

I have read all the applicable man pages, FAQ's and README's and am at a
loss. This scanner shows as fully supported but I am stuck.

I would think that all is well with my kernel since I do get a /dev
assignment. Any help would be greatly appreciated.

I hope I didn't waste $3 :)

TIA 
Robert


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


  1   2   >