FreeBSD-questions

2006-04-15 Thread Anthony M. Agelastos

Hello all,

For whatever reason, I am not receiving my usual emails from this  
mailing list to my Gmail account. I checked my account settings on  
both ends and neither has changed and both look correct. Then, I  
emailed [EMAIL PROTECTED] and have not heard a  
reply back. Has any other Gmail'er had these problems? Does anyone  
have any other ideas? Thank you for your help.


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


ipfw and ssh

2006-04-05 Thread Anthony M . Agelastos

Hello everyone,

Allow me to preface my problem by saying that I am very ignorant when  
it comes to networking. I do apologize if this is trivial. In any  
event, I enabled the client ifpw firewall located in /etc/ 
rc.firewall. This appears to work well for my needs... except for one  
additional item. I need someone outside of my network to have SSH  
access to my machine. I know his/her IP address. So, I have added  
some additional items to rc.firewall for this. Here is what I added.


# Allow person SSH access
mip=xxx.xxx.xxx.xxx
${fwcmd} allow tcp from any to any 22 out setup keep-state
${fwcmd} add pass tcp from ${mip} to me 22 setup limit src- 
addr 2


I have tried many, many differing variations of this from items I  
have found online. I cannot get any of them to work. My network setup  
is as follows


internet - cable modem - netgear router - freebsd 6.1-prerelease

This user can SSH into my machine when I set the firewall to open.  
Any ideas? 
___

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


Re: ipfw and ssh

2006-04-05 Thread Anthony M. Agelastos
Thank you for your very prompt reply. I tried your suggestion and it  
didn't work. I do not know why. Is the location where I place this in  
the client profile important?


I have also tried the person's actual IP address as well as the IP  
address of the router (just in case it is not doing something weird)  
to no avail.


What is the easiest way of making changes to the firewall rules and  
applying them so I do not have to reboot each time? I assume a  
kldunload ipfw.ko and then a kldload ipfw.ko should do it, but I  
don't want to risk doing something incorrect while I am trying to  
debug my current problem.



On Apr 5, 2006, at 10:08 PM, Ean Kingston wrote:


You neglected to include the 'add' in your first fwcmd.

You may want to try something simple to start with. I haven't used  
ipfw in a
while so hopefully my syntax is still good. Here is a simple  
starting point:


# Allow person SSH access
mip=xxx.xxx.xxx.xxx # IP Address of person
${fwcmd} add allow tcp from ${mip} to me 22 in	# allow connection  
to ssh

${fwcmd} add allow tcp from me 22 to ${mip} out # allow me to respond

I think all you really need is this:

# Allow setup of incoming ssh
${fwcmd} add pass tcp from ${mip} to ${ip} 22 setup

Since the rest of it should be taken care of by the rest of the  
'client' ipfw

setup.

On Wednesday 05 April 2006 21:50, Anthony M.Agelastos wrote:

Hello everyone,

Allow me to preface my problem by saying that I am very ignorant when
it comes to networking. I do apologize if this is trivial. In any
event, I enabled the client ifpw firewall located in /etc/
rc.firewall. This appears to work well for my needs... except for one
additional item. I need someone outside of my network to have SSH
access to my machine. I know his/her IP address. So, I have added
some additional items to rc.firewall for this. Here is what I added.

 # Allow person SSH access
 mip=xxx.xxx.xxx.xxx
 ${fwcmd} allow tcp from any to any 22 out setup keep-state
 ${fwcmd} add pass tcp from ${mip} to me 22 setup limit src-
addr 2

I have tried many, many differing variations of this from items I
have found online. I cannot get any of them to work. My network setup
is as follows

internet - cable modem - netgear router - freebsd 6.1-prerelease

This user can SSH into my machine when I set the firewall to open.
Any ideas?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]


--
Ean Kingston, BSc, CISSP, ARO
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions- 
[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: ipfw and ssh

2006-04-05 Thread Anthony M. Agelastos
Not just that, but it doesn't appear to be logging the events, even  
after I added

net.inet.ip.fw.verbose=1
net.inet.ip.fw.verbose_limit=5
to /etc/sysctl.conf and
firewall_logging=YES
into /etc/rc.conf, i see no updates to /var/log/security after the  
ssh attempt failed. What am I doing wrong here? Thanks again everyone  
for all of your help.



On Apr 5, 2006, at 10:08 PM, Ean Kingston wrote:


You neglected to include the 'add' in your first fwcmd.

You may want to try something simple to start with. I haven't used  
ipfw in a
while so hopefully my syntax is still good. Here is a simple  
starting point:


# Allow person SSH access
mip=xxx.xxx.xxx.xxx # IP Address of person
${fwcmd} add allow tcp from ${mip} to me 22 in	# allow connection  
to ssh

${fwcmd} add allow tcp from me 22 to ${mip} out # allow me to respond

I think all you really need is this:

# Allow setup of incoming ssh
${fwcmd} add pass tcp from ${mip} to ${ip} 22 setup

Since the rest of it should be taken care of by the rest of the  
'client' ipfw

setup.

On Wednesday 05 April 2006 21:50, Anthony M.Agelastos wrote:

Hello everyone,

Allow me to preface my problem by saying that I am very ignorant when
it comes to networking. I do apologize if this is trivial. In any
event, I enabled the client ifpw firewall located in /etc/
rc.firewall. This appears to work well for my needs... except for one
additional item. I need someone outside of my network to have SSH
access to my machine. I know his/her IP address. So, I have added
some additional items to rc.firewall for this. Here is what I added.

 # Allow person SSH access
 mip=xxx.xxx.xxx.xxx
 ${fwcmd} allow tcp from any to any 22 out setup keep-state
 ${fwcmd} add pass tcp from ${mip} to me 22 setup limit src-
addr 2

I have tried many, many differing variations of this from items I
have found online. I cannot get any of them to work. My network setup
is as follows

internet - cable modem - netgear router - freebsd 6.1-prerelease

This user can SSH into my machine when I set the firewall to open.
Any ideas?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]


--
Ean Kingston, BSc, CISSP, ARO
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions- 
[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: aureal-kmod woes

2006-03-15 Thread Anthony M. Agelastos


On Mar 15, 2006, at 1:11 AM, Ariff Abdullah wrote:


On Tue, 14 Mar 2006 21:56:24 -0500
Anthony M. Agelastos [EMAIL PROTECTED] wrote:

Hello everyone,

I am running a 6-STABLE machine that I updated several days ago.
When   the aureal-kmod port is shut down, it tells me about a memory
leak   (see below). Being paranoid, I removed aureal-kmod from my
system,   reinstalled the OS, and then installed aureal-kmod and the
problem   persists. Any ideas?

dell# ./aureal.sh stop
pcm0: detached
Warning: memory type PCMaucore leaked memory on destroy (3
allocations, 144 byte
s leaked).
aureal-kmod

%uname -a
FreeBSD dell.home.iq 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #0: Mon
Mar 13 07:44:55 EST 2006 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/

IQKERNEL  i386



So.. does it cause anything bad *especially during runtime* ?

It appears to work normally. I have no idea if it is leaking memory  
while in use, nor do I even know how to monitor that. Does anyone  
have any pointers for this, or any ideas as to what could be causing  
this? Could it be due to the 6.0 - 6.1 upgrade? Does anyone out  
there have this working with their 6.0-STABLE that is in 6.1-PRERELEASE?


Thanks again for all of your help.


--
Ariff Abdullah
FreeBSD


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


aureal-kmod woes

2006-03-14 Thread Anthony M. Agelastos

Hello everyone,

I am running a 6-STABLE machine that I updated several days ago. When  
the aureal-kmod port is shut down, it tells me about a memory leak  
(see below). Being paranoid, I removed aureal-kmod from my system,  
reinstalled the OS, and then installed aureal-kmod and the problem  
persists. Any ideas?


dell# ./aureal.sh stop
pcm0: detached
Warning: memory type PCMaucore leaked memory on destroy (3  
allocations, 144 byte

s leaked).
aureal-kmod

%uname -a
FreeBSD dell.home.iq 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #0: Mon  
Mar 13 07:44:55 EST 2006 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/ 
IQKERNEL  i386



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


OpenOffice.org 2.0.1 JDK issue

2006-02-09 Thread Anthony M. Agelastos

Hello all,

I know there has been a lot of activity on the mailing lists these  
days regarding JDK and OOo. From what I could gather, most of it is  
regarding keeping it working after the update of JDK14. In any event,  
I was installing OOo-2.0 for the first time, and the build failed.  
The error message is below and involves JDK-1.4. I figured that this  
would either be fixable or it would give additional information that  
could lead to solving some of the previously mentioned problems on  
the list. Thank you all for your assistance. I am running FreeBSD 6.0- 
STABLE. A part of my script nuked the output after it failed, so I  
only have the output from script.


0x3508  /usr/ports/editors/openoffice.org-2.0/work/OOA680_m1/ 
solver/680/unxfbsd.pro/lib/uriproc.uno.so

0x2805b000  /libexec/ld-elf.so.1

Heap at VM Abort:
Heap
def new generation   total 576K, used 122K [0x2d00, 0x2d0a,  
0x2d4e)

  eden space 512K,  24% used [0x2d00, 0x2d01ebc8, 0x2d08)
  from space 64K,   0% used [0x2d08, 0x2d08, 0x2d09)
  to   space 64K,   0% used [0x2d09, 0x2d09, 0x2d0a)
tenured generation   total 1408K, used 0K [0x2d4e, 0x2d64,  
0x3100)
   the space 1408K,   0% used [0x2d4e, 0x2d4e, 0x2d4e0200,  
0x2d64)
compacting perm gen  total 4096K, used 895K [0x3100, 0x3140,  
0x3500)
   the space 4096K,  21% used [0x3100, 0x310dfdc0, 0x310dfe00,  
0x3140)


Local Time = Thu Feb  9 03:49:17 2006
Elapsed Time = 0
#
# The exception above was detected in native code outside the VM
#
# Java VM: Java HotSpot(TM) Client VM (1.4.2-p8- 
root_04_feb_2006_18_49 mixed mode)

#
# An error report file has been saved as hs_err_pid51946.log.
# Please refer to the file for further information.
#
Abort (core dumped)
dmake:  Error code 134, while making '../../unxfbsd.pro/lib/ 
uno_services.rdb'

dmake:  '../../unxfbsd.pro/lib/uno_services.rdb' removed.
'---* tg_merge.mk *---'

ERROR: Error 65280 occurred while making /usr/ports/editors/ 
openoffice.org-2.0/work/OOA680_m1/testtools/source/bridgetest

dmake:  Error code 1, while making 'build_instsetoo_native'
'---* tg_merge.mk *---'
*** Error code 255

Stop in /usr/ports/editors/openoffice.org-2.0.
You have new mail.
dell# exit
exit

Script done on Thu Feb  9 06:21:27 2006
%

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


bison and bison2 conflict

2006-02-07 Thread Anthony M. Agelastos

Hello,

Basically, I want to have bison and bison2 coexist peacefully on the  
same machine. I installed math/opendx and it requires bison. Then, I  
try to install editors/openoffice.org-2.0 and it requires bison2. I  
get the message:


=== bison-2.1_1 conflicts with installed package(s):
  bison-1.75_2,1

  They install files into the same place.
  Please remove them first with pkg_delete(1).
*** Error code 1

Ideas? Workarounds? Would something like

make install PREFIX=/usr/local/bison2 work?

If so, how do I ensure in pkgtools.conf that upgrades to bison2 will  
always do that? Thank you all for your assistance.


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


Aureal Kernel Sound Drivers

2006-01-29 Thread Anthony M. Agelastos

Hello all,

I am the not-quite-proud owner of a Dell system that comes with an  
aureal sound card inside of it. In any event, I found the aureal-kmod  
kernel module and have gotten it to work on my machine (following  
directions on http://www.matey.org/au88x0/). In the process of doing  
this I have found that in the directory


/usr/src/sys/dev/sound/pci

there are the files

au88x0.[ch]
aureal.[ch]

When I tried getting sound to work prior to aureal-kmod, it did not  
figure out about my card. What is the purpose of these files and does  
6.0-STABLE have native support for these class of cards? Thank you  
all for your information.


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


linux_base-8 fetch # of ports errors

2006-01-22 Thread Anthony M. Agelastos

Hello everyone,

Several hours ago, I tried to upgrade linux_base-8 on my 6.0-STABLE  
box and it ran into many fetch problems, which can be seen below.  
Prior to this upgrading, I upgraded xorg without problems and after  
the failed troubleshooting, I had the machine install Firefox and it  
fetched it and built it without problems. Does anyone have any  
suggestions? I checked the archives and did not find anything. I  
CVSup'd from cvsup13.us if that has anything to do with it. While on  
the topic, I noticed earlier today that when I first issued the  
portupgrade command, it rebuilt the package database and it mentioned  
that there were 13,3xx packages... last time I checked the website it  
listed over 14,000 and I have my cvsup file set to d/l all groups.  
Any ideas? Thank you all for your continued assistance.


Script started on Sun Jan 22 23:06:36 2006
dell# portupgrade -arR

---  Upgrading 'linux_base-8-8.0_6' to  
'linux_base-8-8.0_11' (emulators/linux_base-8)

---  Building '/usr/ports/emulators/linux_base-8'
===  Cleaning for rpm-3.0.6_10
===  Cleaning for gmake-3.80_2
===  Cleaning for automake-1.4.6_2
===  Cleaning for autoconf-2.13.000227_5
===  Cleaning for libtool-1.3.5_2
===  Cleaning for popt-1.7
===  Cleaning for gettext-0.14.5
===  Cleaning for perl-5.8.7_2
===  Cleaning for m4-1.4.4
===  Cleaning for libtool-1.5.22_1
===  Cleaning for libiconv-1.9.2_1
===  Cleaning for linux_base-8-8.0_11
= bash-2.05b-5.1.i386.rpm doesn't seem to exist in /usr/ports/ 
distfiles/rpm/i386/8.0.
= Attempting to fetch from http://mirrors.usc.edu/pub/linux/ 
distributions/redhat/redhat/linux/8.0/os/i386/.
fetch: http://mirrors.usc.edu/pub/linux/distributions/redhat/redhat/ 
linux/8.0/os/i386/bash-2.05b-5.1.i386.rpm: Not Found
= Attempting to fetch from http://mirrors.usc.edu/pub/linux/ 
distributions/redhat/redhat/linux/8.0/updates/i386/.
fetch: http://mirrors.usc.edu/pub/linux/distributions/redhat/redhat/ 
linux/8.0/updates/i386/bash-2.05b-5.1.i386.rpm: Not Found
= Attempting to fetch from http://mirrors.usc.edu/pub/linux/ 
distributions/redhat/redhat/linux/8.0/os/SRPMS/.
fetch: http://mirrors.usc.edu/pub/linux/distributions/redhat/redhat/ 
linux/8.0/os/SRPMS/bash-2.05b-5.1.i386.rpm: Not Found
= Attempting to fetch from http://mirrors.usc.edu/pub/linux/ 
distributions/redhat/redhat/linux/8.0/updates/SRPMS/.
fetch: http://mirrors.usc.edu/pub/linux/distributions/redhat/redhat/ 
linux/8.0/updates/SRPMS/bash-2.05b-5.1.i386.rpm: Not Found
= Attempting to fetch from http://www.gtlib.cc.gatech.edu/pub/redhat/ 
linux/8.0/os/i386/.
fetch: http://www.gtlib.cc.gatech.edu/pub/redhat/linux/8.0/os/i386/ 
bash-2.05b-5.1.i386.rpm: Not Found
= Attempting to fetch from http://www.gtlib.cc.gatech.edu/pub/redhat/ 
linux/8.0/updates/i386/.
fetch: http://www.gtlib.cc.gatech.edu/pub/redhat/linux/8.0/updates/ 
i386/bash-2.05b-5.1.i386.rpm: Not Found
= Attempting to fetch from http://www.gtlib.cc.gatech.edu/pub/redhat/ 
linux/8.0/os/SRPMS/.
fetch: http://www.gtlib.cc.gatech.edu/pub/redhat/linux/8.0/os/SRPMS/ 
bash-2.05b-5.1.i386.rpm: Not Found
= Attempting to fetch from http://www.gtlib.cc.gatech.edu/pub/redhat/ 
linux/8.0/updates/SRPMS/.
fetch: http://www.gtlib.cc.gatech.edu/pub/redhat/linux/8.0/updates/ 
SRPMS/bash-2.05b-5.1.i386.rpm: Not Found
= Attempting to fetch from ftp://mirror.cs.wisc.edu/pub/mirrors/ 
linux/redhat/8.0/os/i386/.
fetch: ftp://mirror.cs.wisc.edu/pub/mirrors/linux/redhat/8.0/os/i386/ 
bash-2.05b-5.1.i386.rpm: File unavailable (e.g., file not found, no  
access)
= Attempting to fetch from ftp://mirror.cs.wisc.edu/pub/mirrors/ 
linux/redhat/8.0/updates/i386/.
fetch: ftp://mirror.cs.wisc.edu/pub/mirrors/linux/redhat/8.0/updates/ 
i386/bash-2.05b-5.1.i386.rpm: File unavailable (e.g., file not found,  
no access)
= Attempting to fetch from ftp://mirror.cs.wisc.edu/pub/mirrors/ 
linux/redhat/8.0/os/SRPMS/.
fetch: ftp://mirror.cs.wisc.edu/pub/mirrors/linux/redhat/8.0/os/SRPMS/ 
bash-2.05b-5.1.i386.rpm: File unavailable (e.g., file not found, no  
access)
= Attempting to fetch from ftp://mirror.cs.wisc.edu/pub/mirrors/ 
linux/redhat/8.0/updates/SRPMS/.
fetch: ftp://mirror.cs.wisc.edu/pub/mirrors/linux/redhat/8.0/updates/ 
SRPMS/bash-2.05b-5.1.i386.rpm: File unavailable (e.g., file not  
found, no access)
= Attempting to fetch from ftp://ftp.nluug.nl/site/ftp.redhat.com/ 
redhat/linux/8.0/os/i386/.
fetch: ftp://ftp.nluug.nl/site/ftp.redhat.com/redhat/linux/8.0/os/ 
i386/bash-2.05b-5.1.i386.rpm: File unavailable (e.g., file not found,  
no access)
= Attempting to fetch from ftp://ftp.nluug.nl/site/ftp.redhat.com/ 
redhat/linux/8.0/updates/i386/.
fetch: ftp://ftp.nluug.nl/site/ftp.redhat.com/redhat/linux/8.0/ 
updates/i386/bash-2.05b-5.1.i386.rpm: File unavailable (e.g., file  
not found, no access)
= Attempting to fetch from ftp://ftp.nluug.nl/site/ftp.redhat.com/ 
redhat/linux/8.0/os/SRPMS/.
fetch: ftp://ftp.nluug.nl/site/ftp.redhat.com/redhat/linux/8.0/os/ 
SRPMS/bash-2.05b-5.1.i386.rpm: File unavailable 

Re: Help! Hard disk problems

2006-01-02 Thread Anthony M . Agelastos


On Jan 1, 2006, at 11:28 PM, Anthony M. Agelastos wrote:


Hello all,

In doing some routine items on my FreeBSD box, it started behaving  
oddly. I rebooted and to my surprise, I started receiving many  
messages displaying information regarding that /usr has issues. It  
puts me directly into single user mode and tells me to run fsck  
manually. When I run fsck all by itself, here is what it tells me:


** /dev/ad0s1f
** Last Mounted on /usr
** Phase 1 - Check Blocks and Sizes
UNKNOWN FILE TYPE I=496000
UNEXPECTED SOFT UPDATE INCONSISTENCY

CLEAR? [yn]

This is the first time that I have ever run fsck and I have no idea  
what this message means or what the best course of action on CLEAR  
to take. Any input at all would be greatly appreciated (FreeBSD 6.0- 
STABLE if it helps). Thank you all so much for your assistance.


-Anthony



After not getting any feedback, I decided to do

fsck -y

This returned my machine to usable. Before doing this while I was  
just hitting y to the questions I did not understand, one of them  
mentioned that it had to create a lost+found directory and after a  
while that the directory was out of space. It asked me the question  
to expand. So, I hit yes. Anyways, after all is said and done, that  
filesystem has 500MB of more free space than it did before (it  
doesn't take into account the fact that /usr/src is now empty and the  
size of lost+found). What does the expand option do? Can I safely  
delete lost+found? Like I mentioned before, this is my first time in  
going through these types of issues and I have not found any  
documentation that I can fully understand on fsck and what it does.  
In any event, thank you all for your assistance.


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


Re: Help! Hard disk problems

2006-01-02 Thread Anthony M . Agelastos


On Jan 2, 2006, at 10:31 AM, Anthony M. Agelastos wrote:



On Jan 1, 2006, at 11:28 PM, Anthony M. Agelastos wrote:


Hello all,

In doing some routine items on my FreeBSD box, it started behaving  
oddly. I rebooted and to my surprise, I started receiving many  
messages displaying information regarding that /usr has issues. It  
puts me directly into single user mode and tells me to run fsck  
manually. When I run fsck all by itself, here is what it tells me:


** /dev/ad0s1f
** Last Mounted on /usr
** Phase 1 - Check Blocks and Sizes
UNKNOWN FILE TYPE I=496000
UNEXPECTED SOFT UPDATE INCONSISTENCY

CLEAR? [yn]

This is the first time that I have ever run fsck and I have no  
idea what this message means or what the best course of action on  
CLEAR to take. Any input at all would be greatly appreciated  
(FreeBSD 6.0-STABLE if it helps). Thank you all so much for your  
assistance.


-Anthony



After not getting any feedback, I decided to do

fsck -y

This returned my machine to usable. Before doing this while I was  
just hitting y to the questions I did not understand, one of them  
mentioned that it had to create a lost+found directory and after a  
while that the directory was out of space. It asked me the question  
to expand. So, I hit yes. Anyways, after all is said and done, that  
filesystem has 500MB of more free space than it did before (it  
doesn't take into account the fact that /usr/src is now empty and  
the size of lost+found). What does the expand option do? Can I  
safely delete lost+found? Like I mentioned before, this is my first  
time in going through these types of issues and I have not found  
any documentation that I can fully understand on fsck and what it  
does. In any event, thank you all for your assistance.


Also, what methods are there in backtracking what the cause of the  
errors could have been? How can I tell if there is something wrong  
with the hard disk (bad blocks that cannot be used anymore, etc.)? I  
suppose what I intend to gather by these questions is if this drive  
can still be trusted, or if I should start looking at getting a new  
one. Any insight would be appreciated.

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


Help! Hard disk problems

2006-01-01 Thread Anthony M. Agelastos

Hello all,

In doing some routine items on my FreeBSD box, it started behaving  
oddly. I rebooted and to my surprise, I started receiving many  
messages displaying information regarding that /usr has issues. It  
puts me directly into single user mode and tells me to run fsck  
manually. When I run fsck all by itself, here is what it tells me:


** /dev/ad0s1f
** Last Mounted on /usr
** Phase 1 - Check Blocks and Sizes
UNKNOWN FILE TYPE I=496000
UNEXPECTED SOFT UPDATE INCONSISTENCY

CLEAR? [yn]

This is the first time that I have ever run fsck and I have no idea  
what this message means or what the best course of action on CLEAR to  
take. Any input at all would be greatly appreciated (FreeBSD 6.0- 
STABLE if it helps). Thank you all so much for your assistance.


-Anthony


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


Re: moused hanging

2005-12-13 Thread Anthony M. Agelastos


On Dec 12, 2005, at 10:02 AM, Lowell Gilbert wrote:


Anthony Agelastos [EMAIL PROTECTED] writes:


Hello everyone,

For an unknown reason, my mouse lately has been hanging. It has  
hung with
X11 running and without X11 running. To fix it, I get to a prompt  
(usually
via Ctrl+Alt+F1 as it tends to happen primarily when in X) and, as  
root, I

execute

% kill mousedPID
% moused -p /dev/psm0
% vidcontrol -m on

and, if there is music playing, it slurs for several seconds when I
initially move the mouse, and then it is back to working along  
with the
mouse. If memory serves, this problem started occurring when I  
configured
the mouse to use the scrollwheel. To do this, I followed the  
instructions

per the FreeBSD FAQ.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/x.html#X-AND- 
WHEEL


What the FAQ mentions is only related to X11. It has failed on me  
once when
I booted up FBSD prior to any startx-type of command being run. I  
have been
running the same version of 6.0-STABLE for over a month now and  
this problem
has started noticeably occurring a couple of weeks ago. Does  
anyone have any
ideas? Some additional pertinent information is below. Thank you  
to everyone

who helps and has helped make FreeBSD a great community.


It sounds like it might be an interrupt issue.
Is the mouse sharing an interrupt with anything?

How could I check that? I do apologize for my ignorance with this.



uname -a
FreeBSD ast.home.iq 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Nov  5  
21:29:34

EST 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL  i386

moused -p /dev/psm0 -i type

sysmouse

cat /etc/rc.conf | grep moused

moused_enable=YES
moused_type='auto'
moused_port='/dev/psm0'

I wanted to mention here that when I change moused_type from auto  
to ps/2,
it appears to behave more stable. However, in doing this, the  
scrollwheel
ceases to work in X11. I wanted to also mention that I checked out  
the FAQ,

Google, and the Handbook and came up empty with all of them .


I'm not surprised; I don't think I've heard of this behaviour before.


Prior to your email, I decided to update my 6.0-STABLE box to a newer  
version of 6.0-STABLE and, so far anyways, it seems to have fixed the  
problem. Thank you for your reply. I would still like to know the  
question I asked above regarding the interrupts if at all possible. 
___

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


Upgrading xorg-server

2005-12-04 Thread Anthony M . Agelastos

Hello everyone,

Today, I tried updating xorg-server and it failed. Here is the  
primary error message:


make: don't know how to make /diskad3/portsBuild/Usr/ports/x11- 
servers/xorg-server/work/xc/extras/Mesa/src/mesa/glapi/glapi.h. Stop

*** Error code 2

I tried updating it via portupgrade -arR, portupgrade xorg-server,  
and portmanager -u -l. I have the full session recorded via script so  
I can send that file compressed to whomever wants it (or additional  
information from it).


I am running 6.0-STABLE. Has anyone had any problems doing the recent  
update? My make.conf is comprised of:


CPUTYPE?=p3
CFLAGS= -Os -pipe
NO_BLUETOOTH=true
CUPS_OVERWRITE_BASE=yes
NO_LPR=true
NO_PROFILE=true
PERL_VER=5.8.7
PERL_VERSION=5.8.7

I also tried building it with
CFLAGS= -O -pipe
CFLAGS= -pipe
instead of what is shown above. Each time, it fails at a different  
spot. The error message above was with -O in CFLAGS. With -Os, it is:


panoramiX.c:1162: warning: unused variable `pScreen'
rm -f panoramiXSwap.o
cc -c -Os -pipe -march=pentium3 -ansi -pedantic -Wno-system-headers - 
Dasm=__asm 	-Wall -Wpointer-arith -Wundef-fno-merge-constants -I.  
-I../include -I/diskad3/portsBuild/usr/ports/x11-servers/xorg-server/ 
work/xc/exports/include/X11 -I/diskad3/portsBuild/usr/ports/x11- 
servers/xorg-server/work/xc/include/extensions 		-I/diskad3/ 
portsBuild/usr/ports/x11-servers/xorg-server/work/xc/include/fonts - 
I../mi -I../render -I/diskad3/portsBuild/usr/ports/x11-servers/xorg- 
server/work/xc/programs/Xserver/hw/xfree86/common -I/diskad3/ 
portsBuild/usr/ports/x11-servers/xorg-server/work/xc/include/fonts  
		   -I/diskad3/portsBuild/usr/ports/x11-servers/xorg-server/work/xc - 
I/diskad3/portsBuild/usr/ports/x11-servers/xorg-server/work/xc/ 
exports/include -I/usr/X11R6/include -I/usr/X11R6/include - 
DCSRG_BASED -DSHAPE -DXINPUT -DXKB  -DXAPPGROUP 	-DXCSECURITY - 
DTOGCUP  	-DXF86BIGFONT -DDPMSExtension 	  -DPANORAMIX 	 -DRENDER - 
DRANDR 	-DXFIXES -DDAMAGE -DCOMPOSITE -DXEVIE 	 -DGCCUSESGAS - 
DAVOID_GLYPHBLT -DPIXPRIV -DSINGLEDEPTH -DXFreeXDGA -DXvExtension  
-DXFree86LOADER  -DXFree86Server -DXF86VIDMODE - 
DXvMCExtension -DSMART_SCHEDULE -DBUILDDEBUG -DXResExtension  
-DX_BYTE_ORDER=X_LITTLE_ENDIAN -DXORG_VERSION_CURRENT=(((6)  
* 1000) + ((8) * 10) + ((2) * 1000) + 0) -DNDEBUG   - 
DFUNCPROTO=15 -DNARROWPROTO   -DMITMISC -DXTEST -DXTRAP 	-DXSYNC - 
DXCMISC -DXRECORD 	-DMITSHM -DBIGREQS -DXF86VIDMODE 	-DXF86MISC -DDBE  
-DDPMSExtension -DEVI 	-DSCREENSAVER -DXV -DXVMC 	-DGLXEXT -DXF86DRI - 
DGLX_DIRECT_RENDERING -DGLX_USE_DLOPEN -DGLX_USE_MESA- 
DRES   panoramiXSwap.c

make: don't know how to make ../include/scRnintstr.h. Stop
*** Error code 2

With only -pipe in CFLAGS, it is

cc -pipe -march=pentium3 -ansi -pedantic -Wno-system-headers - 
Dasm=__asm 	-Wall -Wpointer-arith -Wundef-fno-merge-constants -I.  
-I/diskad3/portsBuild/usr/ports/x11-servers/xorg-server/work/xc/ 
programs/Xserver/hw/xfree86/common -I/diskad3/portsBuild/usr/ports/ 
x11-servers/xorg-server/work/xc/programs/Xserver/hw/xfree86/os- 
support-I/diskad3/portsBuild/usr/ports/x11-servers/xorg- 
server/work/xc/programs/Xserver/mfb -I/diskad3/portsBuild/usr/ports/ 
x11-servers/xorg-server/work/xc/programs/Xserver/mi 	   -I/diskad3/ 
portsBuild/usr/ports/x11-servers/xorg-server/work/xc/programs/Xserver/ 
hw/xfree86/xaa -I/diskad3/portsBuild/usr/ports/x11-servers/xorg- 
server/work/xc/programs/Xserver/hw/xfree86/rac-I/diskad3/ 
portsBuild/usr/ports/x11-servers/xorg-server/work/xc/programs/Xserver/ 
cfb -I/diskad3/portsBuild/usr/ports/x11-servers/xorg-server/work/xc/ 
programs/Xserver/hw/xfree86/xaa -I/diskad3/portsBuild/usr/ports/x11- 
servers/xorg-server/work/xc/programs/Xserver/hw/xfree86/ramdac 	   -I/ 
diskad3/portsBuild/usr/ports/x11-servers/xorg-server/work/xc/programs/ 
Xserver/hw/xfree86/vgahw -I/diskad3/portsBuild/usr/ports/x11-servers/ 
xorg-server/work/xc/programs/Xserver/hw/xfree86/ddc -I/diskad3/ 
portsBuild/usr/ports/x11-servers/xorg-server/work/xc/programs/Xserver/ 
hw/xfree86/i2c 	   -I/diskad3/portsBuild/usr/ports/x11-servers/xorg- 
server/work/xc/programs/Xserver/Xext -I/diskad3/portsBuild/usr/ports/ 
x11-servers/xorg-server/work/xc/programs/Xserver/hw/xfree86/vbe -I/ 
diskad3/portsBuild/usr/ports/x11-servers/xorg-server/work/xc/programs/ 
Xserver/fb   -I/diskad3/portsBuild/usr/ports/x11-servers/xorg- 
server/work/xc/include/fonts -I/diskad3/portsBuild/usr/ports/x11- 
servers/xorg-server/work/xc/programs/Xserver/include -I/diskad3/ 
portsBuild/usr/ports/x11-servers/xorg-server/work/xc/exports/include/ 
X11 	   -I/diskad3/portsBuild/usr/ports/x11-servers/xorg-server/work/ 
xc/include/extensions -I/diskad3/portsBuild/usr/ports/x11-servers/ 
xorg-server/work/xc/programs/Xserver/hw/xfree86/int10 -I/diskad3/ 
portsBuild/usr/ports/x11-servers/xorg-server/work/xc/programs/Xserver/ 
render  

Re: _dhcp user problems

2005-12-01 Thread Anthony M. Agelastos


On Nov 30, 2005, at 11:42 PM, N. Raghavendra wrote:


At 2005-11-30T21:28:40-05:00, Anthony M. Agelastos wrote:


Out of curiosity, to make sure nothing else is non-optimal, what
other user accounts were added from 5.4 to 6.0?  I cannot recall,
did not save anything from 5.4, and never saw anything related to
this on any of the documentation on the website.  I only knew to do
this for DHCP because I strictly followed the Handbook in updating
and diff'd the master.passwd files and figured things out for
myself.


Did you `mergemaster -p' before building world?  I did that when I
upgraded from 5.4-STABLE to 6.0-STABLE, and noticed that it added the
`_dhcp' record to `/etc/passwd' and `/etc/group', and did `pwd_mkdb'
as well.  As far as I remember, those were the only changes made by
`mergemaster -p'.
Hello and thank you for the reply. Yes, I did run mergemaster -p  
prior to building world. Perhaps when it showed me the diffs and  
asked me what to do, that is what prompted me to add the user myself  
so I knew that all of my custom users and groups would be saved. I  
assume you opted for the choice of merging the two files?




Raghavendra.

--
N. Raghavendra [EMAIL PROTECTED] | See message headers for contact
Harish-Chandra Research Institute   | and OpenPGP details.



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


Re: _dhcp user problems

2005-11-30 Thread Anthony M. Agelastos


On Nov 29, 2005, at 8:46 AM, Lowell Gilbert wrote:


Anthony M. Agelastos [EMAIL PROTECTED] writes:


Hello and thank you for your reply. I tried the following and here is
where it got me:

ast# pwd_mkdb -u _dhcp /etc/master.passwd
ast# pwd_mkdb -u _dhcp /etc/passwd
pwd_mkdb: corrupted entry
pwd_mkdb: at line #3
pwd_mkdb: /etc/passwd: Inappropriate file type or format
ast# pwd_mkdb -u -p _dhcp /etc/passwd
usage: pwd_mkdb [-BCiLNp] [-d directory] [-s cachesize] [-u username]
file
ast# pwd_mkdb -p -u _dhcp /etc/passwd
pwd_mkdb: corrupted entry
pwd_mkdb: at line #3
pwd_mkdb: /etc/passwd: Inappropriate file type or format
ast# pw userdel _dhcp
pw: no such user `_dhcp'
ast# pw useradd _dhcp -u 65 -c dhcp programs -d /var/empty -s /usr/
sbin/nologin
pw: user '_dhcp' already exists

Should I be doing something else? How can I wipe the slate clean with
users, groups, and accounts? I tried going through sysinstall and
when I try to add _dhcp as a user, it gives me an error code (The
`pw' command exited with unexpected status 74) after it mentions that
the requested shell /usr/sbin/nologin is not a valid user shell.
Any help would be greatly appreciated.


Just the normal pwd_mkdb /etc/master.passwd and see if _dhcp is in
/etc/passwd afterwards.
That worked. Thank you. Out of curiosity, to make sure nothing else  
is non-optimal, what other user accounts were added from 5.4 to 6.0?  
I cannot recall, did not save anything from 5.4, and never saw  
anything related to this on any of the documentation on the website.  
I only knew to do this for DHCP because I strictly followed the  
Handbook in updating and diff'd the master.passwd files and figured  
things out for myself. Thank you so much.

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


Re: _dhcp user problems

2005-11-28 Thread Anthony M. Agelastos


On Nov 28, 2005, at 9:06 AM, Lowell Gilbert wrote:


Anthony M. Agelastos [EMAIL PROTECTED] writes:


Hello all,

During the upgrade to 6.0, I may have created the user _dhcp
incorrectly. I was made aware of the problem when I noticed the
message during boot:

Setting hostname: ast.home.iq.
rl0: link state changed to DOWN
rl0: no link rl0: link state changed to UP
got link
no such user: _dhcp, falling back to nobody
DHCPREQUEST on rl0 to 255.255.255.255 port 67
DHCPACK from 192.168.0.1
bound to 192.168.0.4 -- renewal in 129600 seconds.

So, as root, I tried to create them and delete them. This is proving
unsuccessful. See below.

ast# pw userdel _dhcp
pw: no such user `_dhcp'
ast# pw useradd _dhcp -u 65 -c dhcp programs -d /var/empty -s /usr/
sbin/nologin
pw: user '_dhcp' already exists

Are there any recommendations? I am running FreeBSD 6.0-STABLE. Some
additional information is below. Thank you so much for your
assistance. I checked the mailing list as well as Google and did not
find a fix for this particular problem. I found someone mentioning
that the database may need to be rebuilt (however I have no idea how
to do this).

ast# cat master.passwd | grep dhcp
_dhcp:*:65:65::0:0:dhcp programs:/var/empty:/usr/sbin/nologin
ast# cat passwd | grep dhcp
_dhcp:*:65:65:dhcp programs:/var/empty:/usr/sbin/nologin
ast# cat group | grep dhcp
_dhcp:*:65:
ast# uname -a
FreeBSD ast.home.iq 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Nov  5
21:29:34 EST 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL
i386


pwd_mkdb(8)?


Hello and thank you for your reply. I tried the following and here is  
where it got me:


ast# pwd_mkdb -u _dhcp /etc/master.passwd
ast# pwd_mkdb -u _dhcp /etc/passwd
pwd_mkdb: corrupted entry
pwd_mkdb: at line #3
pwd_mkdb: /etc/passwd: Inappropriate file type or format
ast# pwd_mkdb -u -p _dhcp /etc/passwd
usage: pwd_mkdb [-BCiLNp] [-d directory] [-s cachesize] [-u username]  
file

ast# pwd_mkdb -p -u _dhcp /etc/passwd
pwd_mkdb: corrupted entry
pwd_mkdb: at line #3
pwd_mkdb: /etc/passwd: Inappropriate file type or format
ast# pw userdel _dhcp
pw: no such user `_dhcp'
ast# pw useradd _dhcp -u 65 -c dhcp programs -d /var/empty -s /usr/ 
sbin/nologin

pw: user '_dhcp' already exists

Should I be doing something else? How can I wipe the slate clean with  
users, groups, and accounts? I tried going through sysinstall and  
when I try to add _dhcp as a user, it gives me an error code (The  
`pw' command exited with unexpected status 74) after it mentions that  
the requested shell /usr/sbin/nologin is not a valid user shell.  
Any help would be greatly appreciated.


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


_dhcp user problems

2005-11-27 Thread Anthony M. Agelastos

Hello all,

During the upgrade to 6.0, I may have created the user _dhcp  
incorrectly. I was made aware of the problem when I noticed the  
message during boot:


Setting hostname: ast.home.iq.
rl0: link state changed to DOWN
rl0: no link rl0: link state changed to UP
got link
no such user: _dhcp, falling back to nobody
DHCPREQUEST on rl0 to 255.255.255.255 port 67
DHCPACK from 192.168.0.1
bound to 192.168.0.4 -- renewal in 129600 seconds.

So, as root, I tried to create them and delete them. This is proving  
unsuccessful. See below.


ast# pw userdel _dhcp
pw: no such user `_dhcp'
ast# pw useradd _dhcp -u 65 -c dhcp programs -d /var/empty -s /usr/ 
sbin/nologin

pw: user '_dhcp' already exists

Are there any recommendations? I am running FreeBSD 6.0-STABLE. Some  
additional information is below. Thank you so much for your  
assistance. I checked the mailing list as well as Google and did not  
find a fix for this particular problem. I found someone mentioning  
that the database may need to be rebuilt (however I have no idea how  
to do this).


ast# cat master.passwd | grep dhcp
_dhcp:*:65:65::0:0:dhcp programs:/var/empty:/usr/sbin/nologin
ast# cat passwd | grep dhcp
_dhcp:*:65:65:dhcp programs:/var/empty:/usr/sbin/nologin
ast# cat group | grep dhcp
_dhcp:*:65:
ast# uname -a
FreeBSD ast.home.iq 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Nov  5  
21:29:34 EST 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL   
i386



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


Updating from 5.4-STABLE to 6.0-STABLE

2005-11-05 Thread Anthony M. Agelastos

Hello everyone,

I am preparing my system for syncing with 6.0-STABLE and updating it  
from 5.4-STABLE. In preparation, on the 6.0-RELEASE Announcement  
page, it lists that some of the changes since 5.4 include:


Significant performance improvements to the filesystem and direct  
disk access layers of the OS. The filesystem is now multithreaded and  
can take full advantage of multiple CPU systems.


This makes it sound as if UFS2 has been updated from 5.4 to 6.0. If  
this is true, will updating from 5.4 to 6.0 give me these changes or  
will I have to reformat the drives with the updated UFS2? When  
FreeBSD 7.0 comes out, I expect it to have the UFS2+Journalling  
extension that someone worked on for the Google Summer of Code. When  
this occurs, is there an easy way of updating the filesystems? If  
there is no easy formatter that leaves the files in-place, what is  
the recommended method of relocating the files, then reformatting  
with the updated filesystem, then putting them back (I don't know if  
tar archives are appropriate for this, or what is recommended). Thank  
you all for your assistance in answering these questions. If I can  
get the exact same system from reinstalling 6.0 from scratch or  
updating from 5.4-STABLE, it would save me a lot of time in  
recompiling the ~400 Ports I have built for this system to just  
update. Any commentary on the issue is welcome. I have searched all  
of the relevant documentation I could find to no avail. If there is  
information posted somewhere on these topics, referencing me to them  
would be greatly appreciated.


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


Re: Updating from 5.4-STABLE to 6.0-STABLE

2005-11-05 Thread Anthony M. Agelastos

On Nov 5, 2005, at 9:46 AM, RW wrote:


On Saturday 05 November 2005 13:48, Anthony M. Agelastos wrote:



will updating from 5.4 to 6.0 give me these changes or
will I have to reformat the drives with the updated UFS2?


This was asked and answer yesterday - only 11 threads ago.

I apologize for not finding the new filesystem improvements in 6.0- 
RELEASE, require newfs? thread when I did my search. It did answer  
my questions, so thank you for referring me to it.

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


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


wrkdirprefix default?

2005-10-29 Thread Anthony M. Agelastos

Hello.

Sometime back, I posted a message mentioning that I planned on  
installing OpenOffice once it reached 2.0 status on my FreeBSD  
machine using a nonstandard wrkdirprefix path (original email is  
shown via the below link).


http://www.freebsd.org/cgi/getmsg.cgi?fetch=184696+187981+/usr/local/ 
www/db/text/2005/freebsd-questions/20050918.freebsd-questions


One reply was that I can use

env WRKDIRPREFIX=/myotherlocation make install

This is fine for installing it, but I was wondering was there a good  
way of modifying WRKDIRPREFIX to always point to this location only  
for OpenOffice.org, that way I can use portupgrade in the future and  
not have to worry about it? I am assuming the best way of dealing  
with this is with the file /usr/local/etc/pkgtools.conf.  assume that  
I could put it inside of the MAKE_ARGS section. What is the most  
optimal way of modifying this file for what I have mentioned above? I  
have read the pkgtools.conf and ports manpages (and am still slightly  
confused) and am running FreeBSD 5.4-STABLE.


If the only way to do this is by modifying the variable on the whole  
so everything is built elsewhere, I suppose that is alright as well.  
If this is the only way, what is the preferred way of handling this?  
Thank you all for your assistance.


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


make flag to build on a separate disk

2005-09-11 Thread Anthony M. Agelastos

Hello all,

Once OpenOffice.org 2.0 is released, I plan on building it from Ports  
on my machine (currently 5.4-STABLE... will be 6.0-STABLE after 6.0's  
release). There may be one problem, though, which is my /usr/  
partition only has about 2.4 GB free space available. If memory  
serves, OOo takes up more than that to build. I do have another hard  
drive (mounted at /diskad3) that has over 20 GB of free space  
available. Is it possible to have it use /diskad3 for its temporary  
build directory? I checked the FAQ, Google, and the Handbook and  
didn't find anything. I am reading the make manpage and it  
mentions .OBJDIR, but I am not sure how to use it or if that is  
indeed what I am looking for. Does anyone have any suggestions? Thank  
you for your assistance. 
___

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


portsdb question

2005-09-03 Thread Anthony M. Agelastos

Hello all,

Is it normal for portsdb -uU to require 2 hours to complete (Pentium  
III // 450 MHz // FreeBSD 5.4-STABLE from 07/27 and KERNEL = GENERIC  
with very, very slight modifications primarily for architecture and  
Mplayer)? I found out about this because many have recommended using  
portversion because of its speed over pkg_version, however when I  
sync my Ports tree, pkg_version will report to me updated information  
whereas portversion will not, and the only way I have found to have  
it report updated information is to run portsdb -uU (the big U is  
what takes forever and is the crucial one of those flags), which  
takes two hours and, consequently, kills the overall speed claim  
mentioned above. Considering what I can build (from source) or  
scientifically compute in two hours, I think my machine is doing  
something it shouldn't be. Does anyone have any ideas?


I should note here that I did Google this, check the FAQ, and check  
the documentation. I have been known to accidentally miss items in  
these areas, so if I did, I do apologize.

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


py24-numeric upgrade woes

2005-07-23 Thread Anthony M. Agelastos

Hello everyone,

I CVSup'd my tree and did a portupgrade -arR and noticed that 
py24-numeric failed to update. To make a long story short, it unpacks 
Numeric into /usr/ports/math/py-numeric/work/Numeric-23.8, where the 
Makefile (or something) expects the first letter in Numeric to be 
lowercase (there is a file inside of the work directory named 
numeric-23.8 that is 1234555 bytes). See below for my output. I checked 
the mailing list and the bug reports to see if this had been previously 
mentioned and I could not find any evidence supporting that, so if it 
has been mentioned, I do apologize.


ast# uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Mon Jun 20 
19:20:50 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL  i386
ast# pwd 
/usr/ports/math/py-numeric
ast# make 
= Numeric-23.8.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from 
http://heanet.dl.sourceforge.net/sourceforge/numpy/.

Numeric-23.8.tar.gz   100% of  708 kB  339 kBps
= numpy.pdf doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from http://numeric.scipy.org/.
numpy.pdf 100% of 1205 kB  169 kBps
===  Extracting for py24-numeric-23.8
= Checksum OK for Numeric-23.8.tar.gz.
= Checksum OK for numpy.pdf.
===  Patching for py24-numeric-23.8
===  Applying FreeBSD patches for py24-numeric-23.8
patch:  can't cd to /usr/ports/math/py-numeric/work/numeric-23.8: 
Not a directory

= Patch patch-Src_umathmodule.c failed to apply cleanly.
*** Error code 1

Stop in /usr/ports/math/py-numeric.

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


py24-numeric upgrade woes

2005-07-23 Thread Anthony M. Agelastos

Hello everyone,

I CVSup'd my tree and did a portupgrade -arR and noticed that 
py24-numeric failed to update. To make a long story short, it unpacks 
Numeric into /usr/ports/math/py-numeric/work/Numeric-23.8, where the 
Makefile (or something) expects the first letter in Numeric to be 
lowercase (there is a file inside of the work directory named 
numeric-23.8 that is 1234555 bytes). See below for my output. I checked 
the mailing list and the bug reports to see if this had been previously 
mentioned and I could not find any evidence supporting that, so if it 
has been mentioned, I do apologize.


ast# uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Mon Jun 20 
19:20:50 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL  i386
ast# pwd 
/usr/ports/math/py-numeric
ast# make 
= Numeric-23.8.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from 
http://heanet.dl.sourceforge.net/sourceforge/numpy/.

Numeric-23.8.tar.gz   100% of  708 kB  339 kBps
= numpy.pdf doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from http://numeric.scipy.org/.
numpy.pdf 100% of 1205 kB  169 kBps
===  Extracting for py24-numeric-23.8
= Checksum OK for Numeric-23.8.tar.gz.
= Checksum OK for numpy.pdf.
===  Patching for py24-numeric-23.8
===  Applying FreeBSD patches for py24-numeric-23.8
patch:  can't cd to /usr/ports/math/py-numeric/work/numeric-23.8: 
Not a directory

= Patch patch-Src_umathmodule.c failed to apply cleanly.
*** Error code 1

Stop in /usr/ports/math/py-numeric.

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


py24-numeric upgrade woes

2005-07-23 Thread Anthony M. Agelastos

Hello everyone,

I CVSup'd my tree and did a portupgrade -arR and noticed that 
py24-numeric failed to update. To make a long story short, it unpacks 
Numeric into /usr/ports/math/py-numeric/work/Numeric-23.8, where the 
Makefile (or something) expects the first letter in Numeric to be 
lowercase (there is a file inside of the work directory named 
numeric-23.8 that is 1234555 bytes). See below for my output. I checked 
the mailing list and the bug reports to see if this had been previously 
mentioned and I could not find any evidence supporting that, so if it 
has been mentioned, I do apologize.


ast# uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Mon Jun 20 
19:20:50 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL  i386
ast# pwd 
/usr/ports/math/py-numeric
ast# make 
= Numeric-23.8.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from 
http://heanet.dl.sourceforge.net/sourceforge/numpy/.

Numeric-23.8.tar.gz   100% of  708 kB  339 kBps
= numpy.pdf doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from http://numeric.scipy.org/.
numpy.pdf 100% of 1205 kB  169 kBps
===  Extracting for py24-numeric-23.8
= Checksum OK for Numeric-23.8.tar.gz.
= Checksum OK for numpy.pdf.
===  Patching for py24-numeric-23.8
===  Applying FreeBSD patches for py24-numeric-23.8
patch:  can't cd to /usr/ports/math/py-numeric/work/numeric-23.8: 
Not a directory

= Patch patch-Src_umathmodule.c failed to apply cleanly.
*** Error code 1

Stop in /usr/ports/math/py-numeric.

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


py24-numeric upgrade woes

2005-07-23 Thread Anthony M. Agelastos

Hello everyone,

I CVSup'd my tree and did a portupgrade -arR and noticed that 
py24-numeric failed to update. To make a long story short, it unpacks 
Numeric into /usr/ports/math/py-numeric/work/Numeric-23.8, where the 
Makefile (or something) expects the first letter in Numeric to be 
lowercase (there is a file inside of the work directory named 
numeric-23.8 that is 1234555 bytes). See below for my output. I checked 
the mailing list and the bug reports to see if this had been previously 
mentioned and I could not find any evidence supporting that, so if it 
has been mentioned, I do apologize.


ast# uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Mon Jun 20 
19:20:50 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL  i386
ast# pwd 
/usr/ports/math/py-numeric
ast# make 
= Numeric-23.8.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from 
http://heanet.dl.sourceforge.net/sourceforge/numpy/.

Numeric-23.8.tar.gz   100% of  708 kB  339 kBps
= numpy.pdf doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from http://numeric.scipy.org/.
numpy.pdf 100% of 1205 kB  169 kBps
===  Extracting for py24-numeric-23.8
= Checksum OK for Numeric-23.8.tar.gz.
= Checksum OK for numpy.pdf.
===  Patching for py24-numeric-23.8
===  Applying FreeBSD patches for py24-numeric-23.8
patch:  can't cd to /usr/ports/math/py-numeric/work/numeric-23.8: 
Not a directory

= Patch patch-Src_umathmodule.c failed to apply cleanly.
*** Error code 1

Stop in /usr/ports/math/py-numeric.

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


Re: py24-numeric upgrade woes

2005-07-23 Thread Anthony M. Agelastos
I have no idea why this was sent 3 times to the list. Sorry for the  
email clog.


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


Re: NVIDIA TNT2 woes

2005-07-05 Thread Anthony M. Agelastos

On Jul 5, 2005, at 2:19 AM, Igor Robul wrote:


Anthony M. Agelastos wrote:





As my xorg.conf looks just about identical, does anyone on the  
list  have a nvidia RIVA TNT where their OpenGL works through the  
nv  driver? If so, I would like to figure out what makes it work  
for you  and not for me.




Have you installed graphics/dri port?



Somehow for some reason, I have. It must have been a dependency for  
some other program. In any event, attached below is a copy of my  
xorg.conf. If OpenGL should somewhat work with dri (which I had never  
heard of before this post), then I am wondering what is not  
configured properly (my xorg.conf has it enabling dri in the Module  
section). Thank you all for your help.



 pkg_info | grep -i dri | grep -i OpenGL
dri-6.2.1,2 OpenGL hardware acceleration drivers for the DRI

 cat xorg.conf
Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /usr/X11R6/lib/X11/rgb
ModulePath   /usr/X11R6/lib/modules
FontPath /usr/X11R6/lib/X11/fonts/misc/
FontPath /usr/X11R6/lib/X11/fonts/TTF/
FontPath /usr/X11R6/lib/X11/fonts/Type1/
FontPath /usr/X11R6/lib/X11/fonts/CID/
FontPath /usr/X11R6/lib/X11/fonts/75dpi/
FontPath /usr/X11R6/lib/X11/fonts/100dpi/
EndSection

Section Module
Load  extmod
Load  glx
Load  dri
Load  dbe
Load  record
Load  xtrap
Load  type1
Load  freetype
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  kbd
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
Option  Device /dev/sysmouse
EndSection

Section Monitor
#DisplaySize  330   240 # mm
Identifier   Monitor0
VendorName   DEL
ModelNameDELL D1025TM
### Uncomment if you don't want to default to DDC:
#   HorizSync30.0 - 85.0
#   VertRefresh  50.0 - 120.0
Option  DPMS
EndSection

Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option SWcursor  # [bool]
#Option HWcursor  # [bool]
#Option NoAccel   # [bool]
#Option ShadowFB  # [bool]
#Option UseFBDev  # [bool]
#Option Rotate# [str]
#Option VideoKey  # i
#Option FlatPanel # [bool]
#Option FPDither  # [bool]
#Option CrtcNumber# i
#Option FPScale   # [bool]
#Option FPTweak   # i
Identifier  Card0
Driver  nv
VendorName  nVidia Corporation
BoardName   NV4 [RIVA TNT]
BusID   PCI:1:0:0
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
DefaultDepth 16
SubSection Display
Viewport   0 0
Depth 1
EndSubSection
SubSection Display
Viewport   0 0
Depth 4
EndSubSection
SubSection Display
Viewport   0 0
Depth 8
EndSubSection
SubSection Display
Viewport   0 0
Depth 15
EndSubSection
SubSection Display
Viewport   0 0
Depth 16
Modes 1024x768
EndSubSection
SubSection Display
Viewport   0 0
Depth 24
EndSubSection
EndSection


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


Re: NVIDIA TNT2 woes

2005-07-04 Thread Anthony M. Agelastos


On Jul 3, 2005, at 2:22 PM, markzero wrote:


(WW) The NVIDIA RIVA TNT2 Model 64/Model 64 Pro GPU installed in
(WW)  this system is supported through the NVIDIA Legacy
(WW)  drivers. Please visit
(WW)  http://www.nvidia.com/object/unix.html for more
(WW)  information.  The 1.0-7667 NVIDIA driver will ignore this
(WW)  GPU.  Continuing probe... (EE) No devices detected.

The NVIDIA Legacy drivers magically fail to exist on the NVIDIA
site and there appears no be no port for them either.




I was exploring the latest nvidia driver and came across this page.
http://www.nvidia.com/object/freebsd_archive.html
Isn't 7174 or 6113 the legacy driver you are after?

--Alex




Well, yes they are the older drivers that would work, but the above
message gave me the impression that NVIDIA were going to be  
maintaining

a seperate set of legacy drivers.

Not that it really matters now, the nv driver seems to be more solid
and allows me to run my monitor at the resolution I'm actually  
supposed
to be able to run it at (the proprietary drivers had a long unfixed  
bug

that limited my maximum resolution). I get no apparent performance
decrease on glxgears either (which is about the limit of my GL usage
nowadays!).
glxgears works for you with the nv driver? I cannot get it to work  
for me (I have a RIVA TNT as opposed to your RIVA TNT 2). Could you  
post your xorg.conf? I have the line Load glx in the Module  
Section. Perhaps the nv driver works much better than for the TNT 2  
as opposed to the TNT? Thank you for your help and thank you to the  
whole list for the support and replies.


Cheers,
M

--
pgp: http://www.darklogik.org/pub/pgp/pgp.txt
B776 43DC 8A5D EAF9 2126 9A67 A7DA 390F DEFF 9dD1



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


Re: NVIDIA TNT2 woes

2005-07-04 Thread Anthony M. Agelastos

On Jul 3, 2005, at 11:24 PM, markzero wrote:


On Sun, Jul 03, 2005 at 10:53:43PM -0400, Anthony M. Agelastos wrote:



glxgears works for you with the nv driver? I cannot get it to work
for me (I have a RIVA TNT as opposed to your RIVA TNT 2). Could you
post your xorg.conf? I have the line Load glx in the Module
Section. Perhaps the nv driver works much better than for the TNT 2
as opposed to the TNT? Thank you for your help and thank you to the
whole list for the support and replies.




$ uname -smr
FreeBSD 5.4-RELEASE-p2 i386

$ X -version
X Window System Version 6.8.2
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: FreeBSD 5.4 i386 [ELF]
Current Operating System: FreeBSD xxx.xxx.xxx 5.4-RELEASE-p2
FreeBSD 5.4-RELEASE-p2 #1: Sun Jun 12 16:17:58 BST 2005
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/LOGIK006 i386
Build Date: 30 June 2005
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present

$ glxgears -info
GL_MAX_VIEWPORT_DIMS=4096/4096
GL_RENDERER   = Mesa GLX Indirect
GL_VERSION= 1.2 (1.5 Mesa 6.1)
GL_VENDOR = Mesa project: www.mesa3d.org
much data snipped
858 frames in 5.0 seconds = 171.600 FPS

Xorg.conf follows...

---
Section ServerLayout
Identifier x1
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /usr/X11R6/lib/X11/rgb
ModulePath   /usr/X11R6/lib/modules
FontPath /usr/X11R6/lib/X11/fonts/misc/
FontPath /usr/X11R6/lib/X11/fonts/TTF/
FontPath /usr/X11R6/lib/X11/fonts/Type1/
FontPath /usr/X11R6/lib/X11/fonts/CID/
FontPath /usr/X11R6/lib/X11/fonts/75dpi/
FontPath /usr/X11R6/lib/X11/fonts/100dpi/
EndSection

Section Module
Load  extmod
Load  glx
Load  dri
Load  dbe
Load  record
Load  xtrap
Load  type1
Load  freetype
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol Auto
Option  Device /dev/sysmouse
  Option  Buttons 5
  Option  ZAxisMapping 4 5
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  keyboard
Option  XkbRules xorg
Option  XkbModel pc101
Option  XkbLayout gb
EndSection

Section Monitor

#DisplaySize  320   240 # mm
Identifier   Monitor0
VendorName   MAX
ModelNamebe0
Option  DPMS
EndSection

Section Device

### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option SWcursor  # [bool]
#Option HWcursor  # [bool]
#Option NoAccel   # [bool]
#Option ShadowFB  # [bool]
#Option UseFBDev  # [bool]
#Option Rotate# [str]
#Option VideoKey  # i
#Option FlatPanel # [bool]
#Option FPDither  # [bool]
#Option CrtcNumber# i
#Option FPScale   # [bool]
#Option FPTweak   # i
Identifier  Card0
Driver  nv
VendorName  nVidia Corporation
BoardName   NV5M64 [RIVA TNT2 Model 64/Model 64 Pro]
BusID   PCI:2:0:0
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
SubSection Display
Viewport   0 0
Depth 1
EndSubSection
SubSection Display
Viewport   0 0
Depth 4
EndSubSection
SubSection Display
Viewport   0 0
Depth 8
EndSubSection
SubSection Display
Viewport   0 0
Depth 15
EndSubSection
SubSection Display
Viewport   0 0
Depth 16
EndSubSection
SubSection Display
Viewport   0 0
Depth 24
EndSubSection
EndSection

As my xorg.conf looks just about identical, does anyone on the list  
have a nvidia RIVA TNT where their OpenGL works through the nv  
driver? If so, I would like to figure out what makes it work for you  
and not for me.

---

M

--
pgp: http://www.darklogik.org/pub/pgp/pgp.txt
B776 43DC 8A5D EAF9 2126 9A67 A7DA 390F DEFF 9dD1



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


Re: NVIDIA TNT2 woes

2005-06-30 Thread Anthony M. Agelastos


On Jun 30, 2005, at 5:29 AM, Alex Zbyslaw wrote:



markzero wrote:




Oh the joys of binary drivers.

I awake from a peaceful slumber after a portupgrade to find that
I suddenly no longer have X. The playful and exciting words
dance across my colourless and tormented screen:

(WW) The NVIDIA RIVA TNT2 Model 64/Model 64 Pro GPU installed in
(WW)  this system is supported through the NVIDIA Legacy
(WW)  drivers. Please visit
(WW)  http://www.nvidia.com/object/unix.html for more
(WW)  information.  The 1.0-7667 NVIDIA driver will ignore this
(WW)  GPU.  Continuing probe... (EE) No devices detected.

The NVIDIA Legacy drivers magically fail to exist on the NVIDIA
site and there appears no be no port for them either.



Can you use the x.org nv driver instead?  I've never really  
figured out what the binary driver buys you over the standard one,  
but then all I do is run X with fvwm2, mainly for software  
development, so I have never needed any fancy features.  (I've  
never had a TNT2, but I believe it's supported).


Man nv says under supported cards:

 RIVA TNT2 NV5

I am having the same problem with a RIVA TNT card. Changing the  
driver from nvidia to nv in /etc/X11/xorg.conf allows me to enter  
X11. This is all unfortunate, however. These binary drivers provide  
GLX extensions to X11 for NVIDIA cards (so I could type glxgears at  
the prompt and have it actually do something). I hope this site  
exists soon and someone makes a port for it; I enjoyed knowing that  
if I needed to play an OpenGL game that wasn't too hardcore, I could  
do it with this computer (I could actually play Quake 3 pretty well  
with those drivers).




Alternatively, can you just spring for a newer video card?  (I  
know, that feels like giving in, but if you don't need the latest,  
fanciest thing then there should be something cheapish out there.   
Ge4 cards seem to be about £20, assuming *they* are supported by  
nvidia of course).


Final alternative, downgrade your driver back to what you had.  I  
believe there is a portdowngrade but have never used it.  You can  
tell portugrade never to upgrade that port (see HOLD_PKGS or  
similar in /etc/pkgtools.conf) and probably keep a copy of the port  
directory and driver around just in case.


--Alex


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions- 
[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: NVIDIA TNT2 woes

2005-06-30 Thread Anthony M. Agelastos


On Jun 30, 2005, at 5:29 AM, Alex Zbyslaw wrote:




markzero wrote:





Oh the joys of binary drivers.

I awake from a peaceful slumber after a portupgrade to find that
I suddenly no longer have X. The playful and exciting words
dance across my colourless and tormented screen:

(WW) The NVIDIA RIVA TNT2 Model 64/Model 64 Pro GPU installed in
(WW)  this system is supported through the NVIDIA Legacy
(WW)  drivers. Please visit
(WW)  http://www.nvidia.com/object/unix.html for more
(WW)  information.  The 1.0-7667 NVIDIA driver will ignore this
(WW)  GPU.  Continuing probe... (EE) No devices detected.

The NVIDIA Legacy drivers magically fail to exist on the NVIDIA
site and there appears no be no port for them either.




Can you use the x.org nv driver instead?  I've never really  
figured out what the binary driver buys you over the standard one,  
but then all I do is run X with fvwm2, mainly for software  
development, so I have never needed any fancy features.  (I've  
never had a TNT2, but I believe it's supported).


Man nv says under supported cards:

 RIVA TNT2 NV5


I am having the same problem with a RIVA TNT card. Changing the  
driver from nvidia to nv in /etc/X11/xorg.conf allows me to enter  
X11. This is all unfortunate, however. These binary drivers provide  
GLX extensions to X11 for NVIDIA cards (so I could type glxgears at  
the prompt and have it actually do something). I hope this site  
exists soon and someone makes a port for it; I enjoyed knowing that  
if I needed to play an OpenGL game that wasn't too hardcore, I could  
do it with this computer (I could actually play Quake 3 pretty well  
with those drivers).





Alternatively, can you just spring for a newer video card?  (I  
know, that feels like giving in, but if you don't need the latest,  
fanciest thing then there should be something cheapish out there.   
Ge4 cards seem to be about £20, assuming *they* are supported by  
nvidia of course).


Final alternative, downgrade your driver back to what you had.  I  
believe there is a portdowngrade but have never used it.  You can  
tell portugrade never to upgrade that port (see HOLD_PKGS or  
similar in /etc/pkgtools.conf) and probably keep a copy of the port  
directory and driver around just in case.


--Alex


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions- 
[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: gnome_upgrade.sh Firefox

2005-06-18 Thread Anthony M. Agelastos

Hello everyone,

When modifying my make.conf file did not help me fix the problems  
outlined below in the root of this Thread, I decided to re-CVSup the  
tree and reinstall (since many items had not been re-built yet) the  
items from scratch. The first on the list was Firefox... the one that  
did not work with gnome_upgrade.sh. It built with my standard  
make.conf below without any problems. Does anyone have any idea why  
gnome_upgrade.sh would choke on Firefox?


On Jun 16, 2005, at 7:31 PM, Anthony M. Agelastos wrote:


Hello all,

A few days ago, I noticed that some Gnome-related items were ready  
to be updated (I CVSup'd the Ports tree) (such as gnomehier), so I  
thought why not use gnome_upgrade.sh and update everything. It did  
without any problems. It finished this morning. After finishing, I  
updated the Ports tree again and noticed that some new Gnome- 
related items were ready to be updated as well (gtk for example).  
So, I figured why not run it again. I did and it bombed on Firefox.  
Any ideas? I checked /usr/ports/UPDATING as well as the Mailing  
Lists. I figured there is an incompatibility with one of the items  
updated in Ports during the last 2 days (since Firefox built just  
fine 2 days ago). The last 100 lines of the error that  
gnome_upgrade told me to print as well as uname are below. Thanks  
for your help.


ast# uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Sun May 29  
10:30:27 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/ 
IQKERNEL  i386


ast# cat /etc/make.conf
CPUTYPE?=p3
CFLAGS= -O -pipe
NO_BLUETOOTH=true
CUPS_OVERWRITE_BASE=yes
NO_LPR=true
NOPROFILE=true

# added by use.perl 2005-03-24 18:07:16
PERL_VER=5.8.6
PERL_VERSION=5.8.6

ast# tail -n 100 error.txt
cc -o jsopcode.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js - 
I../../dist/include -I/usr/ports/www/firefox/work/mozilla/dist/ 
include/nspr  -I/usr/local/include -I/usr/local/include  -I. -I/usr/ 
X11R6/include   -fPIC -I/usr/X11R6/include -I/usr/local/include  -I/ 
usr/X11R6/include  -I/usr/X11R6/include -Wall -W -Wno-unused - 
Wpointer-arith -Wcast-align -Wno-long-long -O2 -fno-strict-aliasing  
-pipe -march=pentium3 -pipe  -DNDEBUG -DTRIMMED -O  -I/usr/X11R6/ 
include -I/usr/local/include  -I/usr/X11R6/include  -I/usr/X11R6/ 
include -include ../../mozilla-config.h -DMOZILLA_CLIENT jsopcode.c

jsparse.c
cc -o jsparse.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js - 
I../../dist/include -I/usr/ports/www/firefox/work/mozilla/dist/ 
include/nspr  -I/usr/local/include -I/usr/local/include  -I. -I/usr/ 
X11R6/include   -fPIC -I/usr/X11R6/include -I/usr/local/include  -I/ 
usr/X11R6/include  -I/usr/X11R6/include -Wall -W -Wno-unused - 
Wpointer-arith -Wcast-align -Wno-long-long -O2 -fno-strict-aliasing  
-pipe -march=pentium3 -pipe  -DNDEBUG -DTRIMMED -O  -I/usr/X11R6/ 
include -I/usr/local/include  -I/usr/X11R6/include  -I/usr/X11R6/ 
include -include ../../mozilla-config.h -DMOZILLA_CLIENT jsparse.c

jsprf.c
cc -o jsprf.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js - 
I../../dist/include -I/usr/ports/www/firefox/work/mozilla/dist/ 
include/nspr  -I/usr/local/include -I/usr/local/include  -I. -I/usr/ 
X11R6/include   -fPIC -I/usr/X11R6/include -I/usr/local/include  -I/ 
usr/X11R6/include  -I/usr/X11R6/include -Wall -W -Wno-unused - 
Wpointer-arith -Wcast-align -Wno-long-long -O2 -fno-strict-aliasing  
-pipe -march=pentium3 -pipe  -DNDEBUG -DTRIMMED -O  -I/usr/X11R6/ 
include -I/usr/local/include  -I/usr/X11R6/include  -I/usr/X11R6/ 
include -include ../../mozilla-config.h -DMOZILLA_CLIENT jsprf.c

jsregexp.c
cc -o jsregexp.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js - 
I../../dist/include -I/usr/ports/www/firefox/work/mozilla/dist/ 
include/nspr  -I/usr/local/include -I/usr/local/include  -I. -I/usr/ 
X11R6/include   -fPIC -I/usr/X11R6/include -I/usr/local/include  -I/ 
usr/X11R6/include  -I/usr/X11R6/include -Wall -W -Wno-unused - 
Wpointer-arith -Wcast-align -Wno-long-long -O2 -fno-strict-aliasing  
-pipe -march=pentium3 -pipe  -DNDEBUG -DTRIMMED -O  -I/usr/X11R6/ 
include -I/usr/local/include  -I/usr/X11R6/include  -I/usr/X11R6/ 
include -include ../../mozilla-config.h -DMOZILLA_CLIENT jsregexp.c

jsscan.c
cc -o jsscan.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js - 
I../../dist/include -I/usr/ports/www/firefox/work/mozilla/dist/ 
include/nspr  -I/usr/local/include -I/usr/local/include  -I. -I/usr/ 
X11R6/include   -fPIC -I/usr/X11R6/include -I/usr/local/include  -I/ 
usr/X11R6/include  -I/usr/X11R6/include -Wall -W -Wno-unused - 
Wpointer-arith -Wcast-align -Wno-long-long -O2 -fno-strict-aliasing  
-pipe -march=pentium3 -pipe  -DNDEBUG -DTRIMMED -O  -I/usr/X11R6

Re: gnome_upgrade.sh Firefox

2005-06-17 Thread Anthony M. Agelastos

On Jun 16, 2005, at 7:45 PM, Bjrn Knig wrote:


Hello Anthony,

I suggest to try it without optimizations first. I had problems  
with many ports using -march=pentium3 or even -mtune=pentium3.


Bjrn


Hello all,

I tried 2 separate cases... one with optimizing for i686 and one for  
no cputype optimization... neither of them worked (I used the - 
restart option so I didn't have to wait a day for each of these). Did  
I do something wrong? Should I have restarted it from scratch? Should  
I have manually cleaned Firefox? Thank you for your help.


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


gnome_upgrade.sh Firefox

2005-06-16 Thread Anthony M. Agelastos

Hello all,

A few days ago, I noticed that some Gnome-related items were ready to  
be updated (I CVSup'd the Ports tree) (such as gnomehier), so I  
thought why not use gnome_upgrade.sh and update everything. It did  
without any problems. It finished this morning. After finishing, I  
updated the Ports tree again and noticed that some new Gnome-related  
items were ready to be updated as well (gtk for example). So, I  
figured why not run it again. I did and it bombed on Firefox. Any  
ideas? I checked /usr/ports/UPDATING as well as the Mailing Lists. I  
figured there is an incompatibility with one of the items updated in  
Ports during the last 2 days (since Firefox built just fine 2 days  
ago). The last 100 lines of the error that gnome_upgrade told me to  
print as well as uname are below. Thanks for your help.


ast# uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Sun May 29  
10:30:27 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL   
i386


ast# cat /etc/make.conf
CPUTYPE?=p3
CFLAGS= -O -pipe
NO_BLUETOOTH=true
CUPS_OVERWRITE_BASE=yes
NO_LPR=true
NOPROFILE=true

# added by use.perl 2005-03-24 18:07:16
PERL_VER=5.8.6
PERL_VERSION=5.8.6

ast# tail -n 100 error.txt
cc -o jsopcode.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js -I../../ 
dist/include -I/usr/ports/www/firefox/work/mozilla/dist/include/nspr   
-I/usr/local/include -I/usr/local/include  -I. -I/usr/X11R6/include
-fPIC -I/usr/X11R6/include -I/usr/local/include  -I/usr/X11R6/ 
include  -I/usr/X11R6/include -Wall -W -Wno-unused -Wpointer-arith - 
Wcast-align -Wno-long-long -O2 -fno-strict-aliasing -pipe - 
march=pentium3 -pipe  -DNDEBUG -DTRIMMED -O  -I/usr/X11R6/include -I/ 
usr/local/include  -I/usr/X11R6/include  -I/usr/X11R6/include - 
include ../../mozilla-config.h -DMOZILLA_CLIENT jsopcode.c

jsparse.c
cc -o jsparse.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js -I../../ 
dist/include -I/usr/ports/www/firefox/work/mozilla/dist/include/nspr   
-I/usr/local/include -I/usr/local/include  -I. -I/usr/X11R6/include
-fPIC -I/usr/X11R6/include -I/usr/local/include  -I/usr/X11R6/ 
include  -I/usr/X11R6/include -Wall -W -Wno-unused -Wpointer-arith - 
Wcast-align -Wno-long-long -O2 -fno-strict-aliasing -pipe - 
march=pentium3 -pipe  -DNDEBUG -DTRIMMED -O  -I/usr/X11R6/include -I/ 
usr/local/include  -I/usr/X11R6/include  -I/usr/X11R6/include - 
include ../../mozilla-config.h -DMOZILLA_CLIENT jsparse.c

jsprf.c
cc -o jsprf.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js -I../../ 
dist/include -I/usr/ports/www/firefox/work/mozilla/dist/include/nspr   
-I/usr/local/include -I/usr/local/include  -I. -I/usr/X11R6/include
-fPIC -I/usr/X11R6/include -I/usr/local/include  -I/usr/X11R6/ 
include  -I/usr/X11R6/include -Wall -W -Wno-unused -Wpointer-arith - 
Wcast-align -Wno-long-long -O2 -fno-strict-aliasing -pipe - 
march=pentium3 -pipe  -DNDEBUG -DTRIMMED -O  -I/usr/X11R6/include -I/ 
usr/local/include  -I/usr/X11R6/include  -I/usr/X11R6/include - 
include ../../mozilla-config.h -DMOZILLA_CLIENT jsprf.c

jsregexp.c
cc -o jsregexp.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js -I../../ 
dist/include -I/usr/ports/www/firefox/work/mozilla/dist/include/nspr   
-I/usr/local/include -I/usr/local/include  -I. -I/usr/X11R6/include
-fPIC -I/usr/X11R6/include -I/usr/local/include  -I/usr/X11R6/ 
include  -I/usr/X11R6/include -Wall -W -Wno-unused -Wpointer-arith - 
Wcast-align -Wno-long-long -O2 -fno-strict-aliasing -pipe - 
march=pentium3 -pipe  -DNDEBUG -DTRIMMED -O  -I/usr/X11R6/include -I/ 
usr/local/include  -I/usr/X11R6/include  -I/usr/X11R6/include - 
include ../../mozilla-config.h -DMOZILLA_CLIENT jsregexp.c

jsscan.c
cc -o jsscan.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js -I../../ 
dist/include -I/usr/ports/www/firefox/work/mozilla/dist/include/nspr   
-I/usr/local/include -I/usr/local/include  -I. -I/usr/X11R6/include
-fPIC -I/usr/X11R6/include -I/usr/local/include  -I/usr/X11R6/ 
include  -I/usr/X11R6/include -Wall -W -Wno-unused -Wpointer-arith - 
Wcast-align -Wno-long-long -O2 -fno-strict-aliasing -pipe - 
march=pentium3 -pipe  -DNDEBUG -DTRIMMED -O  -I/usr/X11R6/include -I/ 
usr/local/include  -I/usr/X11R6/include  -I/usr/X11R6/include - 
include ../../mozilla-config.h -DMOZILLA_CLIENT jsscan.c

jsscope.c
cc -o jsscope.o -c -DOSTYPE=\FreeBSD5\ -DOSARCH=\FreeBSD\ - 
DEXPORT_JS_API  -DJS_USE_SAFE_ARENA   -I../../dist/include/js -I../../ 
dist/include -I/usr/ports/www/firefox/work/mozilla/dist/include/nspr   
-I/usr/local/include -I/usr/local/include  -I. -I/usr/X11R6/include
-fPIC -I/usr/X11R6/include -I/usr/local/include  -I/usr/X11R6/ 
include  -I/usr/X11R6/include -Wall -W -Wno-unused 

Re: gnome_upgrade.sh Firefox

2005-06-16 Thread Anthony M. Agelastos

On Jun 16, 2005, at 7:45 PM, Bjrn Knig wrote:


Hello Anthony,

I suggest to try it without optimizations first. I had problems  
with many ports using -march=pentium3 or even -mtune=pentium3.


Bjrn


Hello,

Thank you for the reply. Out of curiosity, if I were to optimize for  
i686 as opposed to Pentium 3, would that help fix the problem (and if  
so, what kind of speed difference would there be)? Is there even much  
of a speed bump using this march setting or is it just not worth  
having at all? I noticed that several compiles in there used the -O2  
optimization which I did not specify, so I know that the Port uses  
some custom optimization; could these also be a culprit? What  
optimization settings do you all recommend for such a system:


Pentium III 450 MHz // 320 MB RAM

Thank you again for your help.

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


Re: Very slow printing on 5.4 with cups anh HP LaserJet 4L

2005-06-15 Thread Anthony M. Agelastos

[EMAIL PROTECTED] wrote:


I have a problem with very slow printing after replacing 4.1 instalation
with new 5.4 instalation (clean install, not upgrade). The printer is HP
4L, and i use it with up to date CUPS (all packages + gimp-print). With
both CUPS ang gimp-print drivers and default port settings the dokument
printing speed is about 8k each 1 minute (acording to CUPS web interface).
There are no error messages from the kernel. With hint.ppc.0.falgs=0x20
or 0x80 there is the same effect.

With hint.ppc.0.falgs=0x20, 0x40, 0x48 and 0x88 CUPS web interface
shows taht first 32k are sent instantly. Then 'Interrupt storm detected on
irq5: lpt0; throttling interrupt source' kernel error message apears and
the rest of the document prints slow, as in the first example.

I tried this with several standard and HP bidirectional cables. I also
tried all possible BIOS settings for the port.

The old 4.1 instalation prints without problems.


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

 

Hello. I am new to FreeBSD, so if anyone else has better advice on this 
matter, please chime in. The only things I can think of are:


1. hint.ppc.0.falgs= is what you typed above twice. Make sure that this 
is not misspelled in the device.hints file (it should be flags... not 
falgs).

2. Try 0x28.
3. Read a thread from the archives in April 2005 entitled Very slow 
printing with stock FreeBSD5.3 + CUPS + Gimp-Print + HPDeskJet612C ( 
http://lists.freebsd.org/mailman/htdig/freebsd-questions/2005-April/thread.html#84258 
). In there, they mention having to possibly remove a line and possibly 
adding another one. They also mention some other drivers that might work 
better for you.
4. Try going through lptcontrol. Chapter 9 of the FreeBSD Handbook goes 
over this a bit. 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/printing-intro-setup.html


I hope this helps. And, if anyone else has any ideas, please add 'em. 
Good luck.


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


Re: 'Interrupt storm' results non-stopable noise

2005-06-13 Thread Anthony M. Agelastos

Kostas Blekos wrote:


Hi,

In some cases, when two audio events coincide (usually in gaim),
I get the following message:

Interrupt storm detected on irq9: pcm0 uhci2; throttling interrupt source

and then there is a continuous noise that I can not stop in anyway.
Does anybody knows how to resolve this (*stop* the noise)?

Thanks.
(please cc: me any replies)

 

Hello. I had a similar problem with interrupt storms when I was setting 
up my printer. The fix for this involved me modifying /boot/device.hints 
. To see what I did and if it can help you or not, please read the 
entire thread entitled

Very slow printing with stock FreeBSD5.3 + CUPS + Gimp-Print + HPDeskJet612C
from the archives shown
http://lists.freebsd.org/mailman/htdig/freebsd-questions/2005-April/thread.html#84195
I hope this helps.

-Anthony

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


Abiword, Gnumeric, and LyX printing woes

2005-06-08 Thread Anthony M. Agelastos

Hello all,

I am not able to print from Abiword or Gnumeric (now that I think about 
it, I cannot print from LyX either... but that gives me no error 
messages and, thusly, is hard to fix). I can print fine from, say 
Firefox, or with the lpr command (on a PS file which is how I print 
items in LyX... exporting them to LaTeX and then getting PS myself), or 
from other computers (I configured this as a network printer as well 
with CUPS). For Abiword, see below for a typical string of error 
messages (the Gnumeric errors are similar so I will omit them for 
brevity). Here's what I have done thus far for this problem.


1) Downloaded gnome_update.sh and let that cook for just about 24 hours 
until it finished.
2) pkg_delete abiword  cd editors/abiword  make clean  make  
make install.

3) Searched FreeBSD Handbook, FAQ, and Mailing Lists.
4) Google.

I found some related items on 4), but with no real solution or answer as 
to how to fix it. One person, for instance, just had to use portupgrade 
on wxpython (I think that is what it was) and that fixed the problem. I 
did portupgrade -arR and that did not fix the problem. In case it is 
helpful, below the error message I put a listing of all installed ports. 
Any and all info will be greatly appreciated. Thank you all again.


# WARNING/ERROR MESSAGES FROM AbiWord #
** (AbiWord-2.2:626): WARNING **: failed request with status 200

(AbiWord-2.2:626): GnomePrintCupsPlugin-WARNING **: iconv does not 
support ppd c

haracter encoding: ISOLatin1, trying CSISOLatin1

** (AbiWord-2.2:626): WARNING **: Could not find child for option 
PhysicalSize

with id Letter

** (AbiWord-2.2:626): WARNING **: rebuild_menu_cb, could not set value 
of Physic

alSize to Letter

(AbiWord-2.2:626): GLib-GObject-WARNING **: invalid (NULL) pointer instance

(AbiWord-2.2:626): GLib-GObject-CRITICAL **: g_signal_connect_data: 
assertion `G

_TYPE_CHECK_INSTANCE (instance)' failed

** (AbiWord-2.2:626): CRITICAL **: gpa_spinbutton_load: assertion 
`gpa_spinbutto

n_is_connected (s)' failed

(AbiWord-2.2:626): GLib-GObject-WARNING **: invalid (NULL) pointer instance

(AbiWord-2.2:626): GLib-GObject-CRITICAL **: g_signal_connect_data: 
assertion `G

_TYPE_CHECK_INSTANCE (instance)' failed

** (AbiWord-2.2:626): CRITICAL **: gpa_spinbutton_load: assertion 
`gpa_spinbutto

n_is_connected (s)' failed

# INSTALLED PACKAGES #
 pkg_info -a | grep Information | grep -v T.82 | awk '{print $3}' (I 
didn't see a better way)

Hermes-1.3.3_1:
ImageMagick-6.2.2.1:
ORBit-0.5.17_2:
ORBit2-2.12.2:
OpenSP-1.5_6:
Sablot-1.0.1:
Xaw3d-1.5_1:
Xbae-4.50.91:
XmHTML-1.1.7_2:
a2ps-a4-4.13b_3:
aalib-1.4.r5_1:
abiword-gnome-2.2.8:
amspsfnt-1.0_3:
aspell-0.60.2_1:
atk-1.9.1:
atlas-3.6.0,1:
auctex-11.55:
autoconf-2.13.000227_5:
autoconf-2.53_3:
autoconf-2.59_2:
automake-1.4.6_2:
automake-1.5_2,1:
bash-2.05b.007_4:
bison-1.75_2:
bitstream-vera-1.10_1:
bonobo-1.0.22_1:
cdrtools-2.01:
cmpsfont-1.0_4:
cmucl-19a:
compat4x-i386-5.3:
cups-1.1.23.0:
cups-base-1.1.23.0_4:
cups-lpr-1.1.23.0:
cups-pstoraster-7.07_3:
curl-7.14.0:
cvsup-without-gui-16.1h_2:
db4-4.0.14_1,1:
dbh-1.0.24:
desktop-file-utils-0.10_2:
docbook-sk-4.1.2_3:
docbook-xml-4.2_1:
docbook-xsl-1.68.1:
dri-6.2.1,2:
dvipsk-tetex-5.95a_1:
emacs-21.3_7:
enchant-1.1.5_1:
esound-0.2.36:
expat-1.95.8_2:
ezm3-1.2:
fam-2.6.9_6:
fftw-2.1.5_2:
firefox-1.0.4,1:
fontconfig-2.2.3,1:
freetype2-2.1.9:
fribidi-0.10.4_1:
g-wrap-1.3.4_7:
gaim-1.3.0_1:
gal-0.24_1:
gcc-3.2.3_3:
gconf-1.0.9_7:
gconf2-2.10.0:
gd-2.0.33_1,1:
gdbm-1.8.3_1:
gdk-pixbuf-0.22.0_3:
gettext-0.14.4_1:
gftp-2.0.18:
ghostscript-gnu-7.07_12:
gimp-2.2.6,1:
gimp-print-4.2.7_1:
glib-1.2.10_11:
glib-2.6.4:
glibwww-0.2_2:
gmake-3.80_2:
gnome-icon-theme-2.10.1_1:
gnomecanvas-0.22.0_3:
gnomedb-0.2.96_2:
gnomehier-2.0_6:
gnomekeyring-0.4.2_1:
gnomelibs-1.4.2_3:
gnomemimedata-2.4.2:
gnomeprint-0.37_1:
gnomevfs-1.0.5_6:
gnomevfs2-2.10.1:
gnucash-1.8.11:
gnucash-docs-1.8.4:
gnumeric-1.4.3_1:
gnuplot-4.0.0_3:
gnutls-1.0.24_1:
grace-5.1.18:
gsfonts-8.11_2:
gsl-1.6:
gtk-1.2.10_13:
gtk-2.6.7:
gtk-engines2-2.6.3_3:
gtk-xfce-engine-2.2.7:
gtkhtml-1.1.10_4:
gtksourceview-1.2.0_1:
gtkspell2-2.0.10_1:
guile-1.6.5:
guile-gtk-0.31_1:
guppi-0.40.3_4:
gv-3.6.1:
help2man-1.35.1:
hicolor-icon-theme-0.5:
imake-6.8.2:
imlib-1.9.15_2:
intltool-0.33:
jasper-1.701.0:
jbigkit-1.6:
jpeg-6b_3:
ksh93-20050202:
lame-3.96.1:
lapack-3.0:
lcms-1.14,1:
libIDL-0.8.5_1:
libXft-2.1.6_1:
libao-0.8.5:
libart_lgpl2-2.3.17:
libaudiofile-0.2.6:
libbonobo-2.8.1_1:
libbonoboui-2.8.1_2:
libcapplet-1.4.0.5_2:
libcroco-0.6.0_1:
libexif-0.6.12_1:
libfpx-1.2.0.12:
libgcrypt-1.2.1_1:
libgda-0.2.96_2:
libgda2-1.2.1_1:
libghttp-1.0.9:
libglade-0.17_3:
libglade2-2.5.1_2:
libgnome-2.10.0_1:
libgnomecanvas-2.10.2_1:
libgnomecups-0.2.0_1,1:
libgnomedb-1.2.1:
libgnomeprint-2.10.3_1:
libgnomeprintui-2.10.2:
libgnomeui-2.10.0_1:
libgpg-error-1.0_1:
libgsf-1.11.1:
libgsf-gnome-1.11.1:
libiconv-1.9.2_1:
libijs-0.35:
libltdl-1.5.10:
libmikmod-3.1.11:
libmng-1.0.8:

Re: Abiword, Gnumeric, and LyX printing woes

2005-06-08 Thread Anthony M. Agelastos

Oops... I forgot to mention my uname and machine information.

 uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Sun May 29 
10:30:27 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL  i386

(IQKERNEL = GENERIC + SSE optimized for P3)

Pentium III // 450 MHz // 320 MB RAM

Anthony M. Agelastos wrote:


Hello all,

I am not able to print from Abiword or Gnumeric (now that I think 
about it, I cannot print from LyX either... but that gives me no error 
messages and, thusly, is hard to fix). I can print fine from, say 
Firefox, or with the lpr command (on a PS file which is how I print 
items in LyX... exporting them to LaTeX and then getting PS myself), 
or from other computers (I configured this as a network printer as 
well with CUPS). For Abiword, see below for a typical string of error 
messages (the Gnumeric errors are similar so I will omit them for 
brevity). Here's what I have done thus far for this problem.


1) Downloaded gnome_update.sh and let that cook for just about 24 
hours until it finished.
2) pkg_delete abiword  cd editors/abiword  make clean  make  
make install.

3) Searched FreeBSD Handbook, FAQ, and Mailing Lists.
4) Google.

I found some related items on 4), but with no real solution or answer 
as to how to fix it. One person, for instance, just had to use 
portupgrade on wxpython (I think that is what it was) and that fixed 
the problem. I did portupgrade -arR and that did not fix the problem. 
In case it is helpful, below the error message I put a listing of all 
installed ports. Any and all info will be greatly appreciated. Thank 
you all again.


# WARNING/ERROR MESSAGES FROM AbiWord #
** (AbiWord-2.2:626): WARNING **: failed request with status 200

(AbiWord-2.2:626): GnomePrintCupsPlugin-WARNING **: iconv does not 
support ppd c

haracter encoding: ISOLatin1, trying CSISOLatin1

** (AbiWord-2.2:626): WARNING **: Could not find child for option 
PhysicalSize

with id Letter

** (AbiWord-2.2:626): WARNING **: rebuild_menu_cb, could not set value 
of Physic

alSize to Letter

(AbiWord-2.2:626): GLib-GObject-WARNING **: invalid (NULL) pointer 
instance


(AbiWord-2.2:626): GLib-GObject-CRITICAL **: g_signal_connect_data: 
assertion `G

_TYPE_CHECK_INSTANCE (instance)' failed

** (AbiWord-2.2:626): CRITICAL **: gpa_spinbutton_load: assertion 
`gpa_spinbutto

n_is_connected (s)' failed

(AbiWord-2.2:626): GLib-GObject-WARNING **: invalid (NULL) pointer 
instance


(AbiWord-2.2:626): GLib-GObject-CRITICAL **: g_signal_connect_data: 
assertion `G

_TYPE_CHECK_INSTANCE (instance)' failed

** (AbiWord-2.2:626): CRITICAL **: gpa_spinbutton_load: assertion 
`gpa_spinbutto

n_is_connected (s)' failed

# INSTALLED PACKAGES #
 pkg_info -a | grep Information | grep -v T.82 | awk '{print $3}' 
(I didn't see a better way)

Hermes-1.3.3_1:
ImageMagick-6.2.2.1:
ORBit-0.5.17_2:
ORBit2-2.12.2:
OpenSP-1.5_6:
Sablot-1.0.1:
Xaw3d-1.5_1:
Xbae-4.50.91:
XmHTML-1.1.7_2:
a2ps-a4-4.13b_3:
aalib-1.4.r5_1:
abiword-gnome-2.2.8:
amspsfnt-1.0_3:
aspell-0.60.2_1:
atk-1.9.1:
atlas-3.6.0,1:
auctex-11.55:
autoconf-2.13.000227_5:
autoconf-2.53_3:
autoconf-2.59_2:
automake-1.4.6_2:
automake-1.5_2,1:
bash-2.05b.007_4:
bison-1.75_2:
bitstream-vera-1.10_1:
bonobo-1.0.22_1:
cdrtools-2.01:
cmpsfont-1.0_4:
cmucl-19a:
compat4x-i386-5.3:
cups-1.1.23.0:
cups-base-1.1.23.0_4:
cups-lpr-1.1.23.0:
cups-pstoraster-7.07_3:
curl-7.14.0:
cvsup-without-gui-16.1h_2:
db4-4.0.14_1,1:
dbh-1.0.24:
desktop-file-utils-0.10_2:
docbook-sk-4.1.2_3:
docbook-xml-4.2_1:
docbook-xsl-1.68.1:
dri-6.2.1,2:
dvipsk-tetex-5.95a_1:
emacs-21.3_7:
enchant-1.1.5_1:
esound-0.2.36:
expat-1.95.8_2:
ezm3-1.2:
fam-2.6.9_6:
fftw-2.1.5_2:
firefox-1.0.4,1:
fontconfig-2.2.3,1:
freetype2-2.1.9:
fribidi-0.10.4_1:
g-wrap-1.3.4_7:
gaim-1.3.0_1:
gal-0.24_1:
gcc-3.2.3_3:
gconf-1.0.9_7:
gconf2-2.10.0:
gd-2.0.33_1,1:
gdbm-1.8.3_1:
gdk-pixbuf-0.22.0_3:
gettext-0.14.4_1:
gftp-2.0.18:
ghostscript-gnu-7.07_12:
gimp-2.2.6,1:
gimp-print-4.2.7_1:
glib-1.2.10_11:
glib-2.6.4:
glibwww-0.2_2:
gmake-3.80_2:
gnome-icon-theme-2.10.1_1:
gnomecanvas-0.22.0_3:
gnomedb-0.2.96_2:
gnomehier-2.0_6:
gnomekeyring-0.4.2_1:
gnomelibs-1.4.2_3:
gnomemimedata-2.4.2:
gnomeprint-0.37_1:
gnomevfs-1.0.5_6:
gnomevfs2-2.10.1:
gnucash-1.8.11:
gnucash-docs-1.8.4:
gnumeric-1.4.3_1:
gnuplot-4.0.0_3:
gnutls-1.0.24_1:
grace-5.1.18:
gsfonts-8.11_2:
gsl-1.6:
gtk-1.2.10_13:
gtk-2.6.7:
gtk-engines2-2.6.3_3:
gtk-xfce-engine-2.2.7:
gtkhtml-1.1.10_4:
gtksourceview-1.2.0_1:
gtkspell2-2.0.10_1:
guile-1.6.5:
guile-gtk-0.31_1:
guppi-0.40.3_4:
gv-3.6.1:
help2man-1.35.1:
hicolor-icon-theme-0.5:
imake-6.8.2:
imlib-1.9.15_2:
intltool-0.33:
jasper-1.701.0:
jbigkit-1.6:
jpeg-6b_3:
ksh93-20050202:
lame-3.96.1:
lapack-3.0:
lcms-1.14,1:
libIDL-0.8.5_1:
libXft-2.1.6_1:
libao-0.8.5:
libart_lgpl2-2.3.17:
libaudiofile-0.2.6:
libbonobo-2.8.1_1:
libbonoboui-2.8.1_2:
libcapplet-1.4.0.5_2:
libcroco-0.6.0_1:
libexif-0.6.12_1:
libfpx-1.2.0.12:
libgcrypt-1.2.1_1:
libgda-0.2.96_2:
libgda2-1.2.1_1:
libghttp

RE: Abiword, Gnumeric, and LyX printing woes

2005-06-08 Thread Anthony M. Agelastos
Sorry again, but I just realized I forgot to mention one other  
thing... when I tell AbiWord to print, those errors pop up, and the  
printer feeds paper through and doesn't print anything, i.e. it  
prints a blank page. I did find some others with that similar problem.


http://lists.freebsd.org/pipermail/freebsd-ports/2005-February/ 
020796.html


They did not find a solution as far as I know.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Stray IRQ 7 on 5.4-STABLE

2005-06-07 Thread Anthony M. Agelastos

Hi,

You can find some information about it on
http://lists.freebsd.org/pipermail/freebsd-questions/2003-May/ 
005828.html
Hello and thank you for the reply and the information. I am surprised  
my search did not unearth this page as well. In any event, what I  
pull from that site is that this is not a problem with the software  
(namely FreeBSD), but with the hardware? If this is true, I can live  
with the warnings, esp. since after 5 they are suppressed. Part of me  
still thinks back to when I first installed it on 5.3-RELEASE... I  
did not get these errors then. Is it possible that from 5.3-RELEASE  
to 5.4-STABLE, the system becomes more receptive to the stray irqs?


Hope this helps,
Vinicius

Thanks again for your help. I look forward to a possibly reply.


Anthony M. Agelastos wrote:



Hello all,

I am encountering the following message on my root window:

Jun 6 14:18:53 ast kernel: stray irq7
Jun 6 14:43:42 ast kernel: stray irq7
Jun 6 18:18:47 ast kernel: stray irq7
Jun 6 19:29:47 ast kernel: stray irq7

I have noticed these stray irq messages periodically, but cannot
isolate what is causing them (the only mention of irq7 in dmesg
relates to my printer (parallel printer port)). In the past, they
popped up quickly prompting the message that there were too many  
stray

irq7 and that it wouldn't log them anymore (I forget the exact
wording). This appears to be a new problem (it hasn't happened that I
know of since one of the last 2 times I have re-built world (I  
tend to

update thrice every two months)). In case it is needed, I am running
CUPS and have the appropriate (or so I've been told) options in my
make.conf file (see it below). Does anyone have any ideas? I did some
searching and came up with nada. Below I show my uname as well as
dmesg and make.conf. Any help would be greatly appreciated. Thanks.



uname -a


FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Sun May 29
10:30:27 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL
i386
(IQKERNEL is GENERIC + SSE (movie playback) + i686 optimized)



cat make.conf


CPUTYPE?=p3
CFLAGS= -O -pipe
NO_BLUETOOTH=true
CUPS_OVERWRITE_BASE=yes
NO_LPR=true
NOPROFILE=true

# added by use.perl 2005-03-24 18:07:16
PERL_VER=5.8.6
PERL_VERSION=5.8.6



dmesg


Copyright (c) 1992-2005 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992,  
1993, 1994
   The Regents of the University of California. All rights  
reserved.

FreeBSD 5.4-STABLE #0: Sun May 29 10:30:27 EDT 2005
   [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Pentium III/Pentium III Xeon/Celeron (448.80-MHz 686-class CPU)
 Origin = GenuineIntel  Id = 0x673  Stepping = 3

Features=0x387f9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MC 
A,CMOV,PAT,PSE36,PN,MMX,FXSR,SSE


real memory  = 335413248 (319 MB)
avail memory = 314388480 (299 MB)
npx0: math processor on motherboard
npx0: INT 16 interface
acpi0: INTEL SR44010A on motherboard
acpi0: Power Button (fixed)
Timecounter ACPI-safe frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x408-0x40b on acpi0
cpu0: ACPI CPU (3 Cx states) on acpi0
acpi_throttle0: ACPI CPU Throttling on cpu0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pcib1: PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
nvidia0: RIVA TNT mem 0xf300-0xf3ff,0xfd00-0xfdff
irq 11 at device 0.0 on pci1
isab0: PCI-ISA bridge at device 7.0 on pci0
isa0: ISA bus on isab0
atapci0: Intel PIIX4 UDMA33 controller port
0xffa0-0xffaf,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 7.1 on  
pci0

ata0: channel #0 on atapci0
ata1: channel #1 on atapci0
uhci0: Intel 82371AB/EB (PIIX4) USB controller port 0xef80-0xef9f
irq 10 at device 7.2 on pci0
usb0: Intel 82371AB/EB (PIIX4) USB controller on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
pci0: bridge at device 7.3 (no driver attached)
pcm0: AudioPCI ES1373-B port 0xef00-0xef3f irq 9 at device 12.0  
on pci0

pcm0: Cirrus Logic CS4297 AC97 Codec
rl0: RealTek 8139 10/100BaseTX port 0xe800-0xe8ff mem
0xfebffc00-0xfebffcff irq 11 at device 13.0 on pci0
miibus0: MII bus on rl0
rlphy0: RealTek internal media interface on miibus0
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
rl0: Ethernet address: 00:02:e3:0f:8b:a0
pci0: simple comms at device 14.0 (no driver attached)
acpi_button0: Sleep Button on acpi0
atkbdc0: Keyboard controller (i8042) port 0x64,0x60 irq 1 on acpi0
atkbd0: AT Keyboard irq 1 on atkbdc0
kbd0 at atkbd0
psm0: PS/2 Mouse irq 12 on atkbdc0
psm0: model MouseMan+, device ID 0
sio0: 16550A-compatible COM port port 0x3f8-0x3ff irq 4 flags 0x10
on acpi0
sio0: type 16550A
ppc0: ECP parallel printer port port 0x778-0x77b,0x378-0x37f irq 7
drq 3 flags 0x28 on acpi0
ppc0: SMC-like chipset (ECP-only) in ECP mode
ppc0: FIFO with 16/16/8 bytes

Re: Gnumeric warnings

2005-06-07 Thread Anthony M. Agelastos

On Jun 6, 2005, at 10:03 PM, Joe Marcus Clarke wrote:


On Sun, 2005-06-05 at 00:39 -0400, Anthony M. Agelastos wrote:


Hello all,

I wanted to start out by saying thank you to everyone who has  
given me
help and has contributed to making this a good OS and community.  
Down to
business... I just installed Gnumeric from Ports and when I invoke  
it,
it appears to work fine, but I do see warnings printed (see  
below). Is
this normal? Is it a bug; I searched around and the closest thing  
I found is


http://mail.gnome.org/archives/gnumeric-list/2004-September/ 
msg00032.html


However, the author of that post gave directions to fix it for  
Debian.
Will this fix work for FBSD 5.4-STABLE? Is there anything else I  
should

know about it? Why is there a problem in the first place? Any insight
and information on the matter would be greatly appreciated. Thank you
for your help and time.



It should be a simple matter of reinstalling math/gnumeric.  The port
should handle updating all of the GConf schemas automatically.  All of
my schema definitions have been properly loaded here.
That fixed the problem (I did a pkg_delete gnumeric and a make   
make install); the errors are gone. Thanks for the info!!


-Anthony


Joe

--
PGP Key : http://www.marcuscom.com/pgp.asc



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


Re: Stray IRQ 7 on 5.4-STABLE

2005-06-07 Thread Anthony M. Agelastos
What I meant to say earlier was after I fixed a similar problem (or,  
more appropriately, was shown how to fix it) ( http:// 
lists.freebsd.org/mailman/htdig/freebsd-questions/2005-April/ 
084211.html ), these messages went away.


On Jun 6, 2005, at 11:58 PM, Vinicius Pavanelli Vianna wrote:


Hi,

You can find some information about it on
http://lists.freebsd.org/pipermail/freebsd-questions/2003-May/ 
005828.html


Hope this helps,
Vinicius

Anthony M. Agelastos wrote:



Hello all,

I am encountering the following message on my root window:

Jun 6 14:18:53 ast kernel: stray irq7
Jun 6 14:43:42 ast kernel: stray irq7
Jun 6 18:18:47 ast kernel: stray irq7
Jun 6 19:29:47 ast kernel: stray irq7

I have noticed these stray irq messages periodically, but cannot
isolate what is causing them (the only mention of irq7 in dmesg
relates to my printer (parallel printer port)). In the past, they
popped up quickly prompting the message that there were too many  
stray

irq7 and that it wouldn't log them anymore (I forget the exact
wording). This appears to be a new problem (it hasn't happened that I
know of since one of the last 2 times I have re-built world (I  
tend to

update thrice every two months)). In case it is needed, I am running
CUPS and have the appropriate (or so I've been told) options in my
make.conf file (see it below). Does anyone have any ideas? I did some
searching and came up with nada. Below I show my uname as well as
dmesg and make.conf. Any help would be greatly appreciated. Thanks.



uname -a


FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Sun May 29
10:30:27 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL
i386
(IQKERNEL is GENERIC + SSE (movie playback) + i686 optimized)



cat make.conf


CPUTYPE?=p3
CFLAGS= -O -pipe
NO_BLUETOOTH=true
CUPS_OVERWRITE_BASE=yes
NO_LPR=true
NOPROFILE=true

# added by use.perl 2005-03-24 18:07:16
PERL_VER=5.8.6
PERL_VERSION=5.8.6



dmesg


Copyright (c) 1992-2005 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992,  
1993, 1994
   The Regents of the University of California. All rights  
reserved.

FreeBSD 5.4-STABLE #0: Sun May 29 10:30:27 EDT 2005
   [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Pentium III/Pentium III Xeon/Celeron (448.80-MHz 686-class CPU)
 Origin = GenuineIntel  Id = 0x673  Stepping = 3

Features=0x387f9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MC 
A,CMOV,PAT,PSE36,PN,MMX,FXSR,SSE


real memory  = 335413248 (319 MB)
avail memory = 314388480 (299 MB)
npx0: math processor on motherboard
npx0: INT 16 interface
acpi0: INTEL SR44010A on motherboard
acpi0: Power Button (fixed)
Timecounter ACPI-safe frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x408-0x40b on acpi0
cpu0: ACPI CPU (3 Cx states) on acpi0
acpi_throttle0: ACPI CPU Throttling on cpu0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pcib1: PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
nvidia0: RIVA TNT mem 0xf300-0xf3ff,0xfd00-0xfdff
irq 11 at device 0.0 on pci1
isab0: PCI-ISA bridge at device 7.0 on pci0
isa0: ISA bus on isab0
atapci0: Intel PIIX4 UDMA33 controller port
0xffa0-0xffaf,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 7.1 on  
pci0

ata0: channel #0 on atapci0
ata1: channel #1 on atapci0
uhci0: Intel 82371AB/EB (PIIX4) USB controller port 0xef80-0xef9f
irq 10 at device 7.2 on pci0
usb0: Intel 82371AB/EB (PIIX4) USB controller on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
pci0: bridge at device 7.3 (no driver attached)
pcm0: AudioPCI ES1373-B port 0xef00-0xef3f irq 9 at device 12.0  
on pci0

pcm0: Cirrus Logic CS4297 AC97 Codec
rl0: RealTek 8139 10/100BaseTX port 0xe800-0xe8ff mem
0xfebffc00-0xfebffcff irq 11 at device 13.0 on pci0
miibus0: MII bus on rl0
rlphy0: RealTek internal media interface on miibus0
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
rl0: Ethernet address: 00:02:e3:0f:8b:a0
pci0: simple comms at device 14.0 (no driver attached)
acpi_button0: Sleep Button on acpi0
atkbdc0: Keyboard controller (i8042) port 0x64,0x60 irq 1 on acpi0
atkbd0: AT Keyboard irq 1 on atkbdc0
kbd0 at atkbd0
psm0: PS/2 Mouse irq 12 on atkbdc0
psm0: model MouseMan+, device ID 0
sio0: 16550A-compatible COM port port 0x3f8-0x3ff irq 4 flags 0x10
on acpi0
sio0: type 16550A
ppc0: ECP parallel printer port port 0x778-0x77b,0x378-0x37f irq 7
drq 3 flags 0x28 on acpi0
ppc0: SMC-like chipset (ECP-only) in ECP mode
ppc0: FIFO with 16/16/8 bytes threshold
ppbus0: Parallel port bus on ppc0
ppbus0: IEEE1284 device found /NIBBLE/ECP
Probing for PnP devices on ppbus0:
ppbus0: HEWLETT-PACKARD DESKJET 610C MLC,PCL,PML
plip0: PLIP network interface on ppbus0
lpt0: Printer on ppbus0
lpt0: Polled port
ppi0: Parallel I/O on ppbus0
orm0: ISA Option ROM at iomem 0xc-0xc7fff on isa0

Re: Stray IRQ 7 on 5.4-STABLE

2005-06-07 Thread Anthony M. Agelastos


On Jun 7, 2005, at 6:33 AM, Andreas Davour wrote:


On Mon, 6 Jun 2005, Anthony M. Agelastos wrote:



Hello all,

I am encountering the following message on my root window:

Jun 6 14:18:53 ast kernel: stray irq7
Jun 6 14:43:42 ast kernel: stray irq7
Jun 6 18:18:47 ast kernel: stray irq7
Jun 6 19:29:47 ast kernel: stray irq7

I have noticed these stray irq messages periodically, but cannot  
isolate what is causing them (the only mention of irq7 in dmesg  
relates to my printer (parallel printer port)). In the past, they  
popped up quickly prompting the message that there were too many  
stray irq7 and that it wouldn't log them anymore (I forget the  
exact wording). This appears to be a new problem (it hasn't  
happened that I know of since one of the last 2 times I have re- 
built world (I tend to update thrice every two months)). In case  
it is needed, I am running CUPS and have the appropriate (or so  
I've been told) options in my make.conf file (see it below). Does  
anyone have any ideas? I did some searching and came up with nada.  
Below I show my uname as well as dmesg and make.conf. Any help  
would be greatly appreciated. Thanks.




I don't know much about this, but I have recently added a printer  
on my own machine, with the parallell port. I've had some problems  
getting my printer to work, and have gotten many odd messages on  
the console about IRQ problems. Using polled or interrupted mode  
for the port seemed to make a major difference for me.



This is something that I encountered some time back.

http://lists.freebsd.org/mailman/htdig/freebsd-questions/2005-April/ 
084211.html


That fix made a big difference to me. I am going to try a suggestion  
on there (after having re-read it ) and rather than use 0x28, I am  
going to give 0x20 a try (this seems highly related to your  
suggestion). If this does not work, I am going to read up on  
lptcontrol per your suggestion and see if there is anything that I am  
missing. Thanks for the info. If the 0x20 does work, I will re-post  
to this list, but since the messages I was receiving took hours for  
each one to appear, I will have to let it sit there for a while.
So, do you get any new messages, or less, from using polled/ 
interrupted mode? Check the man page for lptcontrol for details on  
changing the mode.
At first, I received no messages after doing the fix mentioned above.  
Perhaps as 5-STABLE matures, things are changing prompting a few more  
of these messages to come out.


It's just a thought, but might provide more hints on what's wrong.  
Maybe.


Note that it doesn't matter if you write it in a device.hints file  
or compile a kernel with polled settings, since the acpi setting  
will hijack it anyhow! You'll have to use lptcontrol.


/Andreas

--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?



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


Re: Stray IRQ 7 on 5.4-STABLE

2005-06-07 Thread Anthony M. Agelastos

On Jun 7, 2005, at 7:23 AM, fbsd_user wrote:



http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/troubleshoot.ht
ml#STRAY-IRQ
I do apologize to everyone on this list for not thoroughly checking  
the FAQ.




5.22. What does stray IRQ mean?

Stray IRQs are indications of hardware IRQ glitches, mostly from
hardware that removes its interrupt request in the middle of the
interrupt request acknowledge cycle.

One has three options for dealing with this:

Live with the warnings. All except the first 5 per irq are
suppressed anyway.
I opt to live with the warnings and not bother modifying code. My  
only hangup is that this problem is a new one since having fixed the  
code with the fix from


http://lists.freebsd.org/mailman/htdig/freebsd-questions/2005-April/ 
084211.html


That fix was in April. I had a solid whole month without any of these  
messages, and then they appear right around when I updated my 5.4- 
STABLE installation. I suppose the older installs could have  
suppressed these messages completely while the new one defaults to 5.  
Does anyone have any idea if this is true? I imagine it is highly  
possible that it has had the hardware glitches all along and the only  
thing that has changed is how -STABLE deals with it.


Thanks for the assistance.


Break the warnings by changing 5 to 0 in isa_strayintr() so that all
the warnings are suppressed.

Break the warnings by installing parallel port hardware that uses
irq 7 and the PPP driver for it (this happens on most systems), and
install an ide drive or other hardware that uses irq 15 and a
suitable driver for it.


IN the 4.x versions of Freebsd
isa_strayintr lived in  /usr/src/sys/i386/isa/intr_machdep.c

It was my understanding this code was fixed in 5.x so that this
meaningless
message would not happen again.

In 5.4 there is no intr_machdep.c file any longer.

Does anyone know where the source of this message is located in
5.4???





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


Stray IRQ 7 on 5.4-STABLE

2005-06-06 Thread Anthony M. Agelastos

Hello all,

I am encountering the following message on my root window:

Jun 6 14:18:53 ast kernel: stray irq7
Jun 6 14:43:42 ast kernel: stray irq7
Jun 6 18:18:47 ast kernel: stray irq7
Jun 6 19:29:47 ast kernel: stray irq7

I have noticed these stray irq messages periodically, but cannot isolate 
what is causing them (the only mention of irq7 in dmesg relates to my 
printer (parallel printer port)). In the past, they popped up quickly 
prompting the message that there were too many stray irq7 and that it 
wouldn't log them anymore (I forget the exact wording). This appears to 
be a new problem (it hasn't happened that I know of since one of the 
last 2 times I have re-built world (I tend to update thrice every two 
months)). In case it is needed, I am running CUPS and have the 
appropriate (or so I've been told) options in my make.conf file (see it 
below). Does anyone have any ideas? I did some searching and came up 
with nada. Below I show my uname as well as dmesg and make.conf. Any 
help would be greatly appreciated. Thanks.


 uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Sun May 29 
10:30:27 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL  i386

(IQKERNEL is GENERIC + SSE (movie playback) + i686 optimized)

 cat make.conf
CPUTYPE?=p3
CFLAGS= -O -pipe
NO_BLUETOOTH=true
CUPS_OVERWRITE_BASE=yes
NO_LPR=true
NOPROFILE=true

# added by use.perl 2005-03-24 18:07:16
PERL_VER=5.8.6
PERL_VERSION=5.8.6

 dmesg
Copyright (c) 1992-2005 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
   The Regents of the University of California. All rights reserved.
FreeBSD 5.4-STABLE #0: Sun May 29 10:30:27 EDT 2005
   [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Pentium III/Pentium III Xeon/Celeron (448.80-MHz 686-class CPU)
 Origin = GenuineIntel  Id = 0x673  Stepping = 3
 
Features=0x387f9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,PN,MMX,FXSR,SSE

real memory  = 335413248 (319 MB)
avail memory = 314388480 (299 MB)
npx0: math processor on motherboard
npx0: INT 16 interface
acpi0: INTEL SR44010A on motherboard
acpi0: Power Button (fixed)
Timecounter ACPI-safe frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x408-0x40b on acpi0
cpu0: ACPI CPU (3 Cx states) on acpi0
acpi_throttle0: ACPI CPU Throttling on cpu0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pcib1: PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
nvidia0: RIVA TNT mem 0xf300-0xf3ff,0xfd00-0xfdff irq 
11 at device 0.0 on pci1

isab0: PCI-ISA bridge at device 7.0 on pci0
isa0: ISA bus on isab0
atapci0: Intel PIIX4 UDMA33 controller port 
0xffa0-0xffaf,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 7.1 on pci0

ata0: channel #0 on atapci0
ata1: channel #1 on atapci0
uhci0: Intel 82371AB/EB (PIIX4) USB controller port 0xef80-0xef9f irq 
10 at device 7.2 on pci0

usb0: Intel 82371AB/EB (PIIX4) USB controller on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
pci0: bridge at device 7.3 (no driver attached)
pcm0: AudioPCI ES1373-B port 0xef00-0xef3f irq 9 at device 12.0 on pci0
pcm0: Cirrus Logic CS4297 AC97 Codec
rl0: RealTek 8139 10/100BaseTX port 0xe800-0xe8ff mem 
0xfebffc00-0xfebffcff irq 11 at device 13.0 on pci0

miibus0: MII bus on rl0
rlphy0: RealTek internal media interface on miibus0
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
rl0: Ethernet address: 00:02:e3:0f:8b:a0
pci0: simple comms at device 14.0 (no driver attached)
acpi_button0: Sleep Button on acpi0
atkbdc0: Keyboard controller (i8042) port 0x64,0x60 irq 1 on acpi0
atkbd0: AT Keyboard irq 1 on atkbdc0
kbd0 at atkbd0
psm0: PS/2 Mouse irq 12 on atkbdc0
psm0: model MouseMan+, device ID 0
sio0: 16550A-compatible COM port port 0x3f8-0x3ff irq 4 flags 0x10 on 
acpi0

sio0: type 16550A
ppc0: ECP parallel printer port port 0x778-0x77b,0x378-0x37f irq 7 drq 
3 flags 0x28 on acpi0

ppc0: SMC-like chipset (ECP-only) in ECP mode
ppc0: FIFO with 16/16/8 bytes threshold
ppbus0: Parallel port bus on ppc0
ppbus0: IEEE1284 device found /NIBBLE/ECP
Probing for PnP devices on ppbus0:
ppbus0: HEWLETT-PACKARD DESKJET 610C MLC,PCL,PML
plip0: PLIP network interface on ppbus0
lpt0: Printer on ppbus0
lpt0: Polled port
ppi0: Parallel I/O on ppbus0
orm0: ISA Option ROM at iomem 0xc-0xc7fff on isa0
pmtimer0 on isa0
sc0: System console at flags 0x100 on isa0
sc0: VGA 16 virtual consoles, flags=0x300
sio1: configured irq 3 not in bitmap of probed irqs 0
sio1: port may not be enabled
vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
uscanner0: Hewlett-Packard HP ScanJet 3300C, rev 1.00/0.00, addr 2
Timecounter TSC frequency 448802339 Hz quality 800
Timecounters tick every 10.000 msec
ad0: 8063MB FUJITSU MPD3084AT/DD-03-47 [16383/16/63] at ata0-master 

Re: Maxima 5.9.1 problems

2005-06-04 Thread Anthony M. Agelastos


On Jun 3, 2005, at 6:17 AM, Craig Kleski wrote:


On Friday 03 June 2005 11:46 am, Anthony M. Agelastos wrote:


Hello all,

I am experiencing some problems with Maxima, namely with the plotting
and with some of the self tests. For the former, it only creates the
plots in an external Gnuplot window, even if I go to [Options] /
[Plot Windows] / [Embedded]. I am primarily familiar with embedded
plots and their ability to rotate with the mouse (left or middle
click I do believe), but I also assumed the same could be done with
the [Separate] plot windows but on this version it cannot. Then, to
satisfy my own curiosity, I did [Maxima] / [Run Tests] and there were
multiple problems. In case it is desired, I am running FreeBSD
5.4-STABLE (see uname output below) with a kernel that is
GENERIC+SSE. Any assistance would be greatly appreciated. Thank you.
Oh, just in case it is also needed, Maxima 5.9.1 is using LIsp CMU
Common Lisp 19a (should be the default because I didn't change any
settings).

ast# uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Sun May 29
10:30:27 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL
i386

## Test Output ##
Running tests in rtest1.mac: 28/28 tests passed.
Running tests in rtest1a.mac: 23/23 tests passed.
Running tests in rtest2.mac: 47/47 tests passed.
Running tests in rtest4.mac: 82/82 tests passed.
Running tests in rtest5.mac: 51/51 tests passed.
Running tests in rtest6.mac: 4/4 tests passed.
Running tests in rtest6a.mac: 56/56 tests passed.
Running tests in rtest6b.mac: 16/16 tests passed.
Running tests in rtest7.mac: 41/41 tests passed.
Running tests in rtest9.mac: 77/77 tests passed.
Running tests in rtest9a.mac: 18/18 tests passed.
Running tests in rtest10.mac: 38/38 tests passed.
Running tests in rtest11.mac: 86/86 tests passed.
Running tests in rtest13.mac: 24/24 tests passed.
Running tests in rtest13s.mac: 16/16 tests passed.
Running tests in rtest14.mac: 64/64 tests passed.
Running tests in rtest15.mac: ;

; Warning: This variable is undefined:
;   |$i|
; ;

; Warning: This variable is undefined:
;   |$i|
; 142/142 tests passed.
Running tests in rtestode.mac: 64/64 tests passed.
Running tests in rtestode_zp.mac: 30/30 tests passed.
Running tests in rtestflatten.mac: 32/32 tests passed.
Running tests in rtest3.mac:
** Problem 94 ***
Input:
TRIGSIMP(%)


Result:
42  3
SINH (X) + (COSH (X) + 1) SINH (X)
--
 5
 COSH (X)

This differed from the expected result:
  3 45
2 SINH (X) + SINH (X) + SINH (X)

5
COSH (X)

93/94 tests passed.
The following 1 problem failed: (94)
Running tests in rtest8.mac: 50/50 tests passed.
Running tests in rtest12.mac: 74/74 tests passed.
Running tests in rexamples.mac: 136/136 tests passed.
Error summary:
Error found in /usr/local/share/maxima/5.9.1/tests/rtest3.mac,
problem: (94) ## End Test Output ##


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



I don't have a solution to your problem, but I have also noticed that
embedded plotting does not seem to work.  I glanced quickly at the
Makefile but noticed nothing pertinent; however I haven't spent any
time looking for a solution.

When I run the tests, I do not get the same error as you.  I also run
CMUCL.  If you run the test several times, do you always get that
error?

Nope. Actually, I ran the test a few times (see output to follow).  
The first time, there were no errors. Then, when I exited the  
command, I noticed that there were some additional error messages  
(see those below the test errors). Any insight?


# TEST ERRORS #
(%i1)

Running tests in rtest1.mac: 28/28 tests passed.
Running tests in rtest1a.mac: 23/23 tests passed.
Running tests in rtest2.mac: 47/47 tests passed.
Running tests in rtest4.mac: 82/82 tests passed.
Running tests in rtest5.mac: 51/51 tests passed.
Running tests in rtest6.mac: 4/4 tests passed.
Running tests in rtest6a.mac: 56/56 tests passed.
Running tests in rtest6b.mac: 16/16 tests passed.
Running tests in rtest7.mac: 41/41 tests passed.
Running tests in rtest9.mac: 77/77 tests passed.
Running tests in rtest9a.mac: 18/18 tests passed.
Running tests in rtest10.mac: 38/38 tests passed.
Running tests in rtest11.mac: 86/86 tests passed.
Running tests in rtest13.mac: 24/24 tests passed.
Running tests in rtest13s.mac: 16/16 tests passed.
Running tests in rtest14.mac: 64/64 tests passed.
Running tests in rtest15.mac: ;

; Warning: This variable is undefined:
;   |$i|
; ;

; Warning: This variable is undefined:
;   |$i|
; 142/142 tests passed.
Running tests in rtestode.mac: 64/64 tests passed.
Running tests in rtestode_zp.mac: 30/30 tests passed.
Running tests in rtestflatten.mac: 32/32 tests

Gnumeric warnings

2005-06-04 Thread Anthony M. Agelastos

Hello all,

I wanted to start out by saying thank you to everyone who has given me 
help and has contributed to making this a good OS and community. Down to 
business... I just installed Gnumeric from Ports and when I invoke it, 
it appears to work fine, but I do see warnings printed (see below). Is 
this normal? Is it a bug; I searched around and the closest thing I found is


http://mail.gnome.org/archives/gnumeric-list/2004-September/msg00032.html

However, the author of that post gave directions to fix it for Debian. 
Will this fix work for FBSD 5.4-STABLE? Is there anything else I should 
know about it? Why is there a problem in the first place? Any insight 
and information on the matter would be greatly appreciated. Thank you 
for your help and time.


 uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Sun May 29 
10:30:27 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL  i386


 gnumeric 
[1] 48517

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/defaultfont/size'


** (gnumeric:48517): WARNING **: Using default value '10'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/defaultfont/bold'


** (gnumeric:48517): WARNING **: Using default value 'false'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/defaultfont/italic'


** (gnumeric:48517): WARNING **: Using default value 'false'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/file/hi

story/n'

** (gnumeric:48517): WARNING **: Using default value '4'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/plugins/activate-new'


** (gnumeric:48517): WARNING **: Using default value 'true'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/gui/screen/horizontaldpi'


** (gnumeric:48517): WARNING **: Using default value '96'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/gui/screen/verticaldpi'


** (gnumeric:48517): WARNING **: Using default value '96'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/workbook/n-sheet'


** (gnumeric:48517): WARNING **: Using default value '3'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/gui/window/x'


** (gnumeric:48517): WARNING **: Using default value '0.6'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/gui/window/y'


** (gnumeric:48517): WARNING **: Using default value '0.6'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/gui/window/zoom'


** (gnumeric:48517): WARNING **: Using default value '1'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/center-horizontally'


** (gnumeric:48517): WARNING **: Using default value 'false'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/center-vertically'


** (gnumeric:48517): WARNING **: Using default value 'false'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/print-grid-lines'


** (gnumeric:48517): WARNING **: Using default value 'false'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/print-even-if-only-styles'


** (gnumeric:48517): WARNING **: Using default value 'false'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/print-black-n-white'


** (gnumeric:48517): WARNING **: Using default value 'false'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/print-titles'


** (gnumeric:48517): WARNING **: Using default value 'false'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/r

ight-then-down'

** (gnumeric:48517): WARNING **: Using default value 'false'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/scale-percentage'


** (gnumeric:48517): WARNING **: Using default value 'true'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/scale-percentage-value'


** (gnumeric:48517): WARNING **: Using default value '100'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/scale-width'


** (gnumeric:48517): WARNING **: Using default value '1'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/scale-height'


** (gnumeric:48517): WARNING **: Using default value '1'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/margin-top'


** (gnumeric:48517): WARNING **: Using default value '120'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/margin-bottom'


** (gnumeric:48517): WARNING **: Using default value '120'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/printsetup/all-sheets'


** (gnumeric:48517): WARNING **: Using default value 'true'

** (gnumeric:48517): WARNING **: Unable to load key 
'/apps/gnumeric/core/gui/editing/autocomplete'


** 

Maxima 5.9.1 problems

2005-06-03 Thread Anthony M. Agelastos

Hello all,

I am experiencing some problems with Maxima, namely with the plotting 
and with some of the self tests. For the former, it only creates the 
plots in an external Gnuplot window, even if I go to [Options] / [Plot 
Windows] / [Embedded]. I am primarily familiar with embedded plots and 
their ability to rotate with the mouse (left or middle click I do 
believe), but I also assumed the same could be done with the [Separate] 
plot windows but on this version it cannot. Then, to satisfy my own 
curiosity, I did [Maxima] / [Run Tests] and there were multiple 
problems. In case it is desired, I am running FreeBSD 5.4-STABLE (see 
uname output below) with a kernel that is GENERIC+SSE. Any assistance 
would be greatly appreciated. Thank you. Oh, just in case it is also 
needed, Maxima 5.9.1 is using LIsp CMU Common Lisp 19a (should be the 
default because I didn't change any settings).


ast# uname -a
FreeBSD ast.home.iq 5.4-STABLE FreeBSD 5.4-STABLE #0: Sun May 29 
10:30:27 EDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IQKERNEL  i386


## Test Output ##
Running tests in rtest1.mac: 28/28 tests passed.
Running tests in rtest1a.mac: 23/23 tests passed.
Running tests in rtest2.mac: 47/47 tests passed.
Running tests in rtest4.mac: 82/82 tests passed.
Running tests in rtest5.mac: 51/51 tests passed.
Running tests in rtest6.mac: 4/4 tests passed.
Running tests in rtest6a.mac: 56/56 tests passed.
Running tests in rtest6b.mac: 16/16 tests passed.
Running tests in rtest7.mac: 41/41 tests passed.
Running tests in rtest9.mac: 77/77 tests passed.
Running tests in rtest9a.mac: 18/18 tests passed.
Running tests in rtest10.mac: 38/38 tests passed.
Running tests in rtest11.mac: 86/86 tests passed.
Running tests in rtest13.mac: 24/24 tests passed.
Running tests in rtest13s.mac: 16/16 tests passed.
Running tests in rtest14.mac: 64/64 tests passed.
Running tests in rtest15.mac: ;

; Warning: This variable is undefined:
;   |$i|
; ;

; Warning: This variable is undefined:
;   |$i|
; 142/142 tests passed.
Running tests in rtestode.mac: 64/64 tests passed.
Running tests in rtestode_zp.mac: 30/30 tests passed.
Running tests in rtestflatten.mac: 32/32 tests passed.
Running tests in rtest3.mac:
** Problem 94 ***
Input:
TRIGSIMP(%)


Result:
   42  3
SINH (X) + (COSH (X) + 1) SINH (X)
--
5
COSH (X)

This differed from the expected result:
 3 45
2 SINH (X) + SINH (X) + SINH (X)

   5
   COSH (X)

93/94 tests passed.
The following 1 problem failed: (94)
Running tests in rtest8.mac: 50/50 tests passed.
Running tests in rtest12.mac: 74/74 tests passed.
Running tests in rexamples.mac: 136/136 tests passed.
Error summary:
Error found in /usr/local/share/maxima/5.9.1/tests/rtest3.mac, problem: (94)
## End Test Output ##


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


portupgrade make options

2005-06-01 Thread Anthony M. Agelastos

Hello all,

After issuing many make options to mplayer when installing, I noticed  
today that it can be updated. If I were to do a portupgrade -arR,  
would it remember the various options? I am sure this is a common  
question, but I could not find a resolute solution after reading the  
handbook and doing some searching online. I found that the primary  
answer is that portupgrade cannot deal with this. What I have found  
is that one can configure the MAKE_ARGS in pkgtools.conf somehow. I  
have also found that there is some other tool (penv) that is used to  
help out with this as well. What way is recommended? I know some  
ports save this configuration information in /var/db/ports/ (I am  
pretty sure that's the directory)... how can one force a port to save  
such information? Or, is mimicking those files one other way of doing  
what it is I wish? Any and all information on this would be greatly  
appreciated. I checked the man page with pkgtools.conf and did not  
see anything helpful. Thank you all for your assistance with this.


-Anthony

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


FreeBSD's MPlayer not using GTK2

2005-05-30 Thread Anthony M. Agelastos
Hello and thank you for your assistance. I am in the process of building 
MPlayer right now and I used the following statement:


make WITH_OPTIMIZED_CFLAGS=yes WITH_GTK2=yes 
WITH_DVD_DEVICE=/dev/acd1 WITH_CDROM_DEVICE=/dev/acd0


and while watching it build, I am noticing that it is using GTK1, not 
GTK2. I was just wondering if I did something incorrectly? I am running 
FreeBSD 5.4-STABLE (GENERIC+SSE) on a Pentium III 450MHz machine. Thanks 
for your help.


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


Kernel Optimizations Regarding SSE

2005-05-29 Thread Anthony M. Agelastos

Hello all,

I am, as we converse, rebuilding world to 5-STABLE (from 5.4-STABLE 3  
weeks ago). This is the first time that I am building a custom kernel  
and it only deviates from GENERIC in that I only have


cpu I686_CPU (without the I586 and I486 that were there from  
GENERIC)


and I added

optionCPU_ENABLE_SSE (per the Handbook's suggestion for Video  
Playback)


That is it. In watching the compile of the new kernel, I notice that  
just about every cc command has the options:


-mno-mmx -mno-3dnow -mno-sse -mno-sse2

Is it me, or does those flags appear to be turning off the very thing  
I wanted turned on (to turn it on, wouldn't it be -mmmx -m3dnow -msse  
-msse2)? My machine, since it is busy right now compiling in Single  
User Mode and I can't get to dmesg, is running 5.4-STABLE synced from  
3 weeks ago, compiling 5-STABLE synced from yesterday evening (EDT).  
My machine's specs are as follows:


Pentium III // 450 MHz
320 MB RAM
Nvidia Riva TNT / 8 MB VRAM

Back when I had Gentoo on this machine, I had to enable sse and sse2  
when I compiled things like MPlayer so the machine could handle  
playing back DVDs (and not drop half of the frames). After reading  
through make.conf's example and its manpage, I was also wondering if  
these (sse) were options that I should put in there (and if so, how  
do I do it)? Any and all guidance on the matter would be greatly  
appreciated. Thank you.


-Anthony

PS - In case it is relevant, and I am forced to go off of memory  
since my machine is still compiling, my make.conf file has the flags  
required so that when things compile, they have the options


-O -pipe -march=pentium3

(there are only about 3 lines in there... I can list them if needed  
once this is done compiling).


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


Re: Starting applications automaticaly

2005-04-16 Thread Anthony M. Agelastos
As far as the xhost command goes, have you tried putting a  at the 
end, i.e.
xhost +, su, xbattbar 
That backgrounds the job, which should allow you to close the xterm 
from which it sprang (I could be wrong as I'm a newbie as well).

On Apr 16, 2005, at 7:16 PM, Brian Kinsey wrote:
I am using xfce on FreeBSD 5.3. How do I make an application start up
automatically when xfce starts up? I am trying to learn on a laptop 
and I
would like to have xbattbar start up automatically. Right now, I open a
terminal window and type xhost +, su, xbattbar and then I have to 
leave the
terminal window open.


I know this is probably in the handbook (which I admittedly have not 
read in
its entirety), but I can not find anything in the ToC, the index, or 
from
searching Google. Maybe I'm searching for the wrong thing? Any help, 
even if
it is just a reference to the proper place to look in the handbook, 
would be
greatly appreciated.


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

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


Scanning in FreeBSD 5.3-RELEASE, niash, and a busy signal

2005-04-15 Thread Anthony M. Agelastos
Hello all,
My HP ScanJet 3300C will not scan due to being busy. I followed the 
steps of the FreeBSD manual and will show its output below in the event 
that it may help. I should note that the configuration is as follows:

FreeBSD 5.3-RELEASE // GENERIC KERNEL
Pentium III, 450 MHz
If I had to guess the problem, I would say that it is possible that the 
niash driver (that is the sane-backend for this scanner) does not work 
well with FreeBSD's kernel driver, the kernel driver and libusb do not 
coexist well, or scanimage is only trying to use libusb and the kernel 
driver is not allowing it to. I know when I installed sane-backends 
(make  make install  make clean with a fully-updated Ports tree), 
it installed libusb as well, and I know this scanner works with libusb 
(I have gotten it to work on Mac OS X this way), hence my above 
conclusion. Does anyone have any other input on this? I should also 
note that I am root running these commands and that I have rebooted 
since plugging it in just in case.

sane-find-scanner -q
found USB scanner (vendor=0x03f0, product=0x0205) at /dev/uscanner0
scanimage -L
device `niash:/dev/uscanner0' is a Hewlett-Packard ScanJet 3300C 
flatbed scanner

scanimage  image.pnm
scanimage: open of device niash:/dev/uscanner0 failed: Device busy
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Very slow printing with stock FreeBSD5.3 + CUPS + Gimp-Print + HPDeskJet612C

2005-04-11 Thread Anthony M. Agelastos
It appears that 0x28 fixed the problem. Thank you to all who have 
contributed to this thread.

Out of curiosity, now that the solution is known, what was the problem 
and what is the fix doing to solve it?

On Apr 11, 2005, at 2:57 AM, Roland Smith wrote:
On Mon, Apr 11, 2005 at 07:36:32AM +0100, Glyn Millington wrote:
Anthony M. Agelastos [EMAIL PROTECTED] writes:
Interrupt storm detected on irq7: lpt0; throttling interrupt source

1. Back up /boot/device.hints
2. In device hints add a line
hint.ppc.0.flags=0x20
Flags=0x20 means disabling IRQ and use polling instead. If you add 0x08
it also puts the port in enhanced capability mode. So try flag=0x28, 
and
use 0x20 if that doesn't work.

AFTER the line which says
hint.ppc.0.irq=7
You can remove this line, because flags=0x20 instructs the driver to 
use
polling instead of an interrupt line.

Roland
--
R.F. Smith   /\ASCII Ribbon Campaign
r s m i t h @ x s 4 a l l . n l  \ /No HTML/RTF in e-mail
http://www.xs4all.nl/~rsmith/ X No Word docs in e-mail
public key: http://www.keyserver.net / \Respect for open standards
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Very slow printing with stock FreeBSD5.3 + CUPS + Gimp-Print + HPDeskJet612C

2005-04-10 Thread Anthony M. Agelastos
Hello all,
My HP DeskJet 612C printer is printing unbearably slow (0.033 PPM). I 
have a stock installation (GENERIC KERNEL) of FreeBSD 5.3 straight off 
of the install CDs, and I have installed very little software thus far. 
I have mainly followed the installation instructions from

http://www.csua.berkeley.edu/~ranga/notes/freebsd_cups.html
It basically prints one line at a time, then pauses for a while, and 
makes some noises, and then repeats. The whole single test page took 
over 30 minutes to print. Does anyone have any insight/info that they 
can give me to solve this problem or point me in the right direction of 
solving it? I have Googled and done some searching and did not come up 
with anything. I checked the CUPS documentation and forums and did not 
see anything either. 

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


Re: Very slow printing with stock FreeBSD5.3 + CUPS + Gimp-Print + HPDeskJet612C

2005-04-10 Thread Anthony M. Agelastos
After trying some various ideas, I ran dmesg and noticed the following 
message

Interrupt storm detected on irq7: lpt0; throttling interrupt source
This appears to be inline with what you are speaking of. Having said 
this, however, I played around with my BIOS settings and still could 
not get it to work. Here are the available options given.

Parallel Port:
Disabled
Enabled
Auto
Mode:
Output only
Bi-directional
EPP
ECP
Base I/O Address:
378
278
228
Interrupt:
5
7
DMA:
1
3
I am still playing around with combinations. Any suggestions?
On Apr 10, 2005, at 9:31 PM, Anish Mistry wrote:
On Sunday 10 April 2005 08:34 pm, Anthony M. Agelastos wrote:
Hello all,
My HP DeskJet 612C printer is printing unbearably slow (0.033 PPM).
I have a stock installation (GENERIC KERNEL) of FreeBSD 5.3
straight off of the install CDs, and I have installed very little
software thus far. I have mainly followed the installation
instructions from
http://www.csua.berkeley.edu/~ranga/notes/freebsd_cups.html
It basically prints one line at a time, then pauses for a while,
and makes some noises, and then repeats. The whole single test page
took over 30 minutes to print. Does anyone have any insight/info
that they can give me to solve this problem or point me in the
right direction of solving it? I have Googled and done some
searching and did not come up with anything. I checked the CUPS
documentation and forums and did not see anything either.
If you are using the parallel port it sounds like an interrupt
problem.  Check you settings in the BIOS and try different ECP/EPP
settings for the port.
--
Anish Mistry
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Very slow printing with stock FreeBSD5.3 + CUPS + Gimp-Print + HPDeskJet612C

2005-04-10 Thread Anthony M. Agelastos
Thank you for your reply,
When I installed CUPS (make  make install), it defaulted to 
ghostscript-gnu-7.07_12. After that, I installed Gimp-print. To get the 
printer working, I used the web-based admin system 
(http://localhost:631) and chose the 600/600c series printer drivers 
(CUPS+Gimp-Print). This resulted in retardedly-slow prints. After 
posting the email, I then tried the HP DeskJet 600/600C - 
CUPS+Gimp-Print drivers and it has the same problem. I do not see any 
other options to choose for this printer in the dialogue I am given.

Are you suggesting that CUPS should use ESP Ghostscript as opposed to 
the one it defaults to? If so, how do I go about doing this? I have not 
installed any PPDs manually (I relied on Gimp-Print).


Maybe, make sure you installed the correct driver-there are two; a
high resolution, (something like 3K dots per inch, and it will only do
3K dots per inch, which makes it very slow,) and a driver that uses
the CUPS specific version of ghostscript, ESP ghostscript, (the other
drivers require all of gimp-print to be installed.)
The ESP ghostscript drivers end with a -ijs extension, and that's
probably the one you want.
Look at the ppd file you installed in probably /usr/share/cups/model/
for something like:
*cupsFilter: application/vnd.cups-postscript 0 foomatic-rip
and see if there is anything in the file ending with -ijs.
John
BTW, this solved the same thing on my Epson Photo Stylus 780. Maybe
your problem, too.
--
John Conover, [EMAIL PROTECTED], http://www.johncon.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

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


Re: Very slow printing with stock FreeBSD5.3 + CUPS + Gimp-Print + HPDeskJet612C

2005-04-10 Thread Anthony M. Agelastos
I forgot to mention that after the first reply to my thread by John, I 
turned the resolution down to 150x150 (the lowest it would go) and 
black and white (not even grayscale). Putting the interrupt at 5 as 
opposed to 7 allowed for one whole test page to print straight through. 
Turning the quality to 300x300 grayscale promoted the same problem with 
the dmesg message:

Interrupt storm detected on irq5: lpt0; throttling interrupt source
On Apr 10, 2005, at 9:31 PM, Anish Mistry wrote:
On Sunday 10 April 2005 08:34 pm, Anthony M. Agelastos wrote:
Hello all,
My HP DeskJet 612C printer is printing unbearably slow (0.033 PPM).
I have a stock installation (GENERIC KERNEL) of FreeBSD 5.3
straight off of the install CDs, and I have installed very little
software thus far. I have mainly followed the installation
instructions from
http://www.csua.berkeley.edu/~ranga/notes/freebsd_cups.html
It basically prints one line at a time, then pauses for a while,
and makes some noises, and then repeats. The whole single test page
took over 30 minutes to print. Does anyone have any insight/info
that they can give me to solve this problem or point me in the
right direction of solving it? I have Googled and done some
searching and did not come up with anything. I checked the CUPS
documentation and forums and did not see anything either.
If you are using the parallel port it sounds like an interrupt
problem.  Check you settings in the BIOS and try different ECP/EPP
settings for the port.
--
Anish Mistry
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Setting up network

2005-03-31 Thread Anthony M. Agelastos
Hello all,
While we are on the topic, after the hostname and domain have been 
setup from the initial installation, how can they be changed? I went 
through the FreeBSD manual and some Google searching and did not come 
up with anything that made any sense. I assume there are files to be 
edited, probably under /etc. I am just not sure what all of them are. 
Any assistance (or reference to a site that will explain this to me) 
will be greatly appreciated (I am a newbie to UNIX and especially 
FreeBSD).

Regards,
Anthony
On Mar 31, 2005, at 5:13 PM, Tomas Quintero wrote:
Essentially, the host is the 'name of the machine' if you will. So if
you want, you can name it betty, or uberserver1. It doesn't matter.
For that fact, as far as I really know, nor does the domain matter.
However commonly when naming servers and such, they have corresponding
names and domains so that they can be labeled and people who need to
know, know what these machines do.
In short, no, the names do not matter for your internal home network.
On Thu, 31 Mar 2005 16:52:52 -0500, Jonathan Arnold
[EMAIL PROTECTED] wrote:
Something I've never been able to figure out. When installing a
new machine, and you come to the Network Configuration dialog,
what do you put in for the Host: and Domain: if it is a machine
on an internal network (ie., 192.168.1.149)?  Does it matter?
Just give it a simple hostname and be done with it? Make something
up?
--
Jonathan Arnold (mailto:[EMAIL PROTECTED])
Daemon Dancing in the Dark, a FreeBSD weblog:
http://freebsd.amazingdev.com/blog/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]


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

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


Xorg warning initial installation modifications

2005-03-25 Thread Anthony M. Agelastos
Hello all and thank you for your help.
I have FreeBSD 5.3-RELEASE with the Minimal pre-configure install and I 
have installed X.org 6.8.2. Anyways, I notice when I do a startx, that 
I get the following output:

xauth: (argv):1:  bad display name iqast.hsd1.ga.comcast.net:0 in 
remove command

X still works, however I want things to run as smoothly as possible. In 
addition to this problem, I was wondering what the best way of 
installing the base documentation (like manpages for the system 
commands such as tar) would be?

Thank you all for your help. For some further insight into the system, 
I wanted to mention that when I installed it and it asked me to 
configure my network via DHCP, I did and it came up with 
hsd1.ga.comcast.net. as the domain (including the trailing period) and 
I named the computer iqast. Anyways, before I clicked OK, I deleted the 
trailing period just because it did not look correct. I have no idea if 
this little tidbit of information is beneficial or not. I am new to the 
FreeBSD world (this is my first time playing with it) and I am 
horrendous at configuring networks, so I apologize now if the problem 
above is trivial. 

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


xfce4 networking

2005-03-20 Thread Anthony M. Agelastos
Hello all,
###
## Synopsis:
###
I just installed FreeBSD 5.3-RELEASE doing the prepackaged User+X11 
option, I updated everything (minus the RELEASE Security updates) with 
portupgrade, and then I installed xfce4 (cd /usr/ports/x11-wm/xfce4 ; 
make install clean). When I run xfce4 with the startxfce4 command, it 
displays an error message (in X11, not on the terminal) that says, 

Could not look up internet address for
iqast.hsd1.ga.comcast.net.,
This will prevent Xfce from operating correctly.
It may be possible to correct the problem by adding
iqast.hsd1.ga.comcast.net. to the file /etc/hosts on your
system.
[ Continue anyway ] [Try again]
If I hit [Try again], it keeps repeating the message and when I hit 
[Continue Anyway], it ends up killing X11 sending me back to my 
terminal. X11 (X.org 6.8.2) is configured and works properly with the 
wonderful Twm window manager. The internet works, at least enough that 
I was running links in another virtual terminal searching for answers 
to my problem and that it was able to update the system downloading 
programs.

###
## Additional Information:
###
uname -a gives (note that I am typing it as I see it, so if there are a 
few space mistakes, please forgive (I cannot login to my email acct. 
via links))...
FreeBSD iqast.hsd1.ga.comcast.net. 5.3-RELEASE FreeBSD 5.3-RELEASE #0: 
Fri Nov 5 04:19:18 UTC 2004
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC i386

I am running an Intel Pentium III 450 MHz // nvidia RIVA TNT w/ 8MB 
RAM. I go through Comcast for high speed internet and the line of sight 
from Comcast to me is,

Comcast -- Cable Modem -- Netgear Wifi Router -- Computer. During 
installation, it asked me if I wanted to configure my network settings, 
so I did. It asked for the computer name so I typed in iqast and it 
filled in the rest automatically (including the odd . after the net, 
i.e. iqast.hsd1.ga.comcast.net. ).

###
## What I have done.
###
I took the error messages advice and started playing with /etc/hosts on 
one virtual terminal (making changes as root) whilst seeing if the 
changes would work on another one (I would run startxfce4 as my normal 
user account, not my root account). I have tried a plethora of 
configurations and they will either produce the same result or bypass 
the error and just kill X11 in place of the error.

This is my first time using/installing FreeBSD, so I am definitely in 
the newbie bunch. I searched Google, the FreeBSD FAQ, Documentation 
(where I did find some info on /etc/hosts, but not enough to help me 
fix my problem), Xfce.org, and the mailing list archives. If I have 
missed something, I do apologize. If this message is meant for a 
different mailing list, I do apologize for that as well; if this is the 
case, could you point me in the direction I am to ask? Anyways, thank 
you for your assistance in this matter and for reading this overlong 
email. Any assistance would be greatly appreciated.

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