Linksys router and ssh time outs ...

2006-07-08 Thread User Freebsd


I just put a linksys router in place, so that we could use our wireless 
laptop, well, wireless ... now, I seem to be getting timeouts on my ssh 
connections when they are idle, but timeouts that I never received when I 
had my desktop directly connected to the cable modem ...


I've looked at the settings for the Linksys, and can't find anything that 
might be related ... is there some keepalive that the linksys might be 
blocking, or something else that I can do to keep the connection from 
dropping?


Thanks ...


Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Linksys router and ssh time outs ...

2006-07-08 Thread Eric

User Freebsd wrote:


I just put a linksys router in place, so that we could use our 
wireless laptop, well, wireless ... now, I seem to be getting timeouts 
on my ssh connections when they are idle, but timeouts that I never 
received when I had my desktop directly connected to the cable modem ...


I've looked at the settings for the Linksys, and can't find anything 
that might be related ... is there some keepalive that the linksys 
might be blocking, or something else that I can do to keep the 
connection from dropping?


Thanks ...


Putty has an option to send keep alives every few seconds as does 
SecureCRT.  are you using that? More than likely the firewall in the 
linksys is killing the connection after 5 minutes of inactivity. My 
sonicwall was doing the same until i started using the keepalive. set it 
to like 30 seconds to start and go from there

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


usb storage device mounting problems

2006-07-08 Thread Bram Kuijper

Hi all,

I got some problems with mounting my usb device. I did all the stuff 
according to point 9.22 in the FreeBSD FAQ, but I still cannot mount my 
usb storage key (a sandisk cruzer mini 256 MB) as an ordinary user, 
without having to change the group owner as a root. Adding the needed 
lines to devfs.conf doesn't seem to help in retaining the settings 
across multiple reboots. I run FreeBSD-stable 6.1


in /etc/sysctl.conf I added:
vfs.usermount=1

I added to my etc/devfs.conf the following lines:
own /dev/da0s1  root:usb
perm/dev/da0s1  0666

I added myself, the ordinary user to the group usb and checked if that 
worked out by doing id $myusername:

uid=1002($myusername) gid=0(wheel) groups=0(wheel), 1002(usb), 1004(cvs)

so I am in the group usb, and if everything went allright, also the 
folder /dev/da0s1 should now owned by the group usb. So I'll reboot and 
plugin the device.


I reboot and plugin my usb key. Check if things are recognized using 
usbdevs:

$ devfs
addr 1: UHCI root hub, Intel
addr 2: product 0x3108, vendor 0x04b3
addr 1: UHCI root hub, Intel
addr 2: Cruzer Mini, SanDisk Corporation
seems it has been recognized. Now I check the user rights on dev/da0s1

$ su
$ ls -aln /dev | grep da0
crw-r-   1 0 5   0, 107 Jul  8 15:17 da0
crw-r-   1 0 5   0, 108 Jul  8 15:17 da0s1
crw-r-   1 0 5   0, 108 Jul  8 15:17 da0s1

alas, despite the changes made in devfs.conf, the group in which da0s1 
is in, is still another one than the usb-group (which has 1002) as a 
group identifier. So still not able to mount the device as an ordinary user.


anybody advice on how to tweak my devfs.conf, so that it works?

thanks,

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


Re: HD Errors

2006-07-08 Thread Robert McIntosh

OK,

It's a Maxtor DiamondMax Plus 9 120GB ATA/133 hard drive (EIDE).  It's 
in a Dell Dimension P133v.  I also have a Dell Optiplex GX1 which only 
supports a hard drive of 80 GB max.  This machine is at least as old as 
the optiplex, so it's likely to support at most 80 GB as well, not 120 GB.


I ran Maxtor's HD Diagnostic tools on the drive and the test, with the 
exception of the long, full test, came back as passed.  So, I have 
reasonable confidence that the problem isn't the drive.


FreeBSD says during drive formatting that there may be weird errors for 
drives misreporting size.  Are the errors that I'm seeing likely 
reflective of this?  What should my concern level be?


Thanks again,
Robert

Tamouh H. wrote:

Hi,

I'm seeing the following messages in /var/log/messages and am 
concerned about the integrity of the hard drive:



ad0: WRITE command timeout tag=0 serv=0 - resetting
cd9660: RockRidge Extension
ad0: READ command timeout tag=0 serv=0 - resetting
ad0: READ command timeout tag=0 serv=0 - resetting
ad0: READ command timeout tag=0 serv=0 - resetting
cd9660: RockRidge Extension
ad0: READ command timeout tag=0 serv=0 - resetting
cd9660: RockRidge Extension
ad0: WRITE command timeout tag=0 serv=0 - resetting
ad0: READ command timeout tag=0 serv=0 - resetting
ata0: resetting devices .. done
ad0: READ command timeout tag=0 serv=0 - resetting
ata0: resetting devices .. done
swap_pager: indefinite wait buffer: device: #ad/0x20001, 
blkno: 5488, 

size: 4096
ad0: WRITE command timeout tag=0 serv=0 - resetting
Are the ad0 messages showing the hard drive is having 
hardware problems?


Many thanks,
Robert


Very likely, backup your important date, grab a HD manufacturer disk and test 
out the drive then post results here with the hard drive manufacture name/model.

Tamouh


___
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: usb storage device mounting problems

2006-07-08 Thread Micah

Bram Kuijper wrote:

Hi all,

I got some problems with mounting my usb device. I did all the stuff 
according to point 9.22 in the FreeBSD FAQ, but I still cannot mount my 
usb storage key (a sandisk cruzer mini 256 MB) as an ordinary user, 
without having to change the group owner as a root. Adding the needed 
lines to devfs.conf doesn't seem to help in retaining the settings 
across multiple reboots. I run FreeBSD-stable 6.1


in /etc/sysctl.conf I added:
vfs.usermount=1

I added to my etc/devfs.conf the following lines:
own /dev/da0s1  root:usb
perm/dev/da0s1  0666

I added myself, the ordinary user to the group usb and checked if that 
worked out by doing id $myusername:

uid=1002($myusername) gid=0(wheel) groups=0(wheel), 1002(usb), 1004(cvs)

so I am in the group usb, and if everything went allright, also the 
folder /dev/da0s1 should now owned by the group usb. So I'll reboot and 
plugin the device.


I reboot and plugin my usb key. Check if things are recognized using 
usbdevs:

$ devfs
addr 1: UHCI root hub, Intel
addr 2: product 0x3108, vendor 0x04b3
addr 1: UHCI root hub, Intel
addr 2: Cruzer Mini, SanDisk Corporation
seems it has been recognized. Now I check the user rights on dev/da0s1

$ su
$ ls -aln /dev | grep da0
crw-r-   1 0 5   0, 107 Jul  8 15:17 da0
crw-r-   1 0 5   0, 108 Jul  8 15:17 da0s1
crw-r-   1 0 5   0, 108 Jul  8 15:17 da0s1

alas, despite the changes made in devfs.conf, the group in which da0s1 
is in, is still another one than the usb-group (which has 1002) as a 
group identifier. So still not able to mount the device as an ordinary 
user.


anybody advice on how to tweak my devfs.conf, so that it works?

thanks,

Bram


devfs.conf is only consulted on boot. You need to play with devfs.rules 
instead.


Put something like this in devfs.rules:
[system=10]
add path 'da*' mode 0660 group usb

and add this to rc.conf:
devfs_system_ruleset=system

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


Re: Linksys router and ssh time outs ...

2006-07-08 Thread User Freebsd

On Sat, 8 Jul 2006, Eric wrote:


User Freebsd wrote:


I just put a linksys router in place, so that we could use our wireless 
laptop, well, wireless ... now, I seem to be getting timeouts on my ssh 
connections when they are idle, but timeouts that I never received when I 
had my desktop directly connected to the cable modem ...


I've looked at the settings for the Linksys, and can't find anything that 
might be related ... is there some keepalive that the linksys might be 
blocking, or something else that I can do to keep the connection from 
dropping?


Thanks ...


Putty has an option to send keep alives every few seconds as does SecureCRT.


Those are, ummm, Windows clients, right? :)

I'm using OpenSSH on a FreeBSD desktop ... does it have similar? :)


Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Linksys router and ssh time outs ...

2006-07-08 Thread Eric

User Freebsd wrote:


Putty has an option to send keep alives every few seconds as does 
SecureCRT.


Those are, ummm, Windows clients, right? :)

I'm using OpenSSH on a FreeBSD desktop ... does it have similar? :)



it should, but i havent played with it. i found this tho:

For ssh2, you can choose the time in sshd_config by setting the
ClientAlive* options.  For ssh1, you need to tweak the system timers
on either the server or client system; this is of course system-dependent.

ClientAlive* are ssh protocol keepalives: the server and the client
exchange encrypted messages to test and maintain the connection. This
is more useful than tcp keepalives in some applications.

Checkout man 5 sshd_config and look for ClientAliveInterval and  
ClientAliveCountMax.


might be worth playing with.


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


Re: unable to mount VCD's

2006-07-08 Thread steveb
On Fri, Jul 07, 2006 at 01:16:03PM +0200, Fabian Keil wrote:

 Like Audio CDs Video CDs have no file system and can't be mounted.

This is incorrect. VCDs have an ISO9660 file system with a specific
ordering of files within.
The VCD may be copy protected. But I wouldn't think that would stop
the original poster from mounting it.

Steve
-- 
Sed omnia praeclara tam difficilia, quam rara sunt.
06 12 09 0E 0B 12 15 0C 05 13

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


RE: HD Errors

2006-07-08 Thread Gayn Winters
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Robert McIntosh
 Sent: Saturday, July 08, 2006 7:53 AM
 To: freebsd-questions@freebsd.org
 Subject: Re: HD Errors
 
 
 OK,
 
 It's a Maxtor DiamondMax Plus 9 120GB ATA/133 hard drive 
 (EIDE).  It's 
 in a Dell Dimension P133v.  I also have a Dell Optiplex GX1 
 which only 
 supports a hard drive of 80 GB max.  This machine is at least 
 as old as 
 the optiplex, so it's likely to support at most 80 GB as 
 well, not 120 GB.
 
 I ran Maxtor's HD Diagnostic tools on the drive and the test, 
 with the 
 exception of the long, full test, came back as passed.  So, I have 
 reasonable confidence that the problem isn't the drive.
 
 FreeBSD says during drive formatting that there may be weird 
 errors for 
 drives misreporting size.  Are the errors that I'm seeing likely 
 reflective of this?  What should my concern level be?
 
 Thanks again,
 Robert
 
 Tamouh H. wrote:
  Hi,
 
  I'm seeing the following messages in /var/log/messages and am 
  concerned about the integrity of the hard drive:
 
  ad0: WRITE command timeout tag=0 serv=0 - resetting
  cd9660: RockRidge Extension
  ad0: READ command timeout tag=0 serv=0 - resetting
  ad0: READ command timeout tag=0 serv=0 - resetting
  ad0: READ command timeout tag=0 serv=0 - resetting
  cd9660: RockRidge Extension
  ad0: READ command timeout tag=0 serv=0 - resetting
  cd9660: RockRidge Extension
  ad0: WRITE command timeout tag=0 serv=0 - resetting
  ad0: READ command timeout tag=0 serv=0 - resetting
  ata0: resetting devices .. done
  ad0: READ command timeout tag=0 serv=0 - resetting
  ata0: resetting devices .. done
  swap_pager: indefinite wait buffer: device: #ad/0x20001, 
  blkno: 5488, 
  size: 4096
  ad0: WRITE command timeout tag=0 serv=0 - resetting
  Are the ad0 messages showing the hard drive is having 
  hardware problems?
 
  Many thanks,
  Robert
  
  Very likely, backup your important date, grab a HD 
 manufacturer disk and test out the drive then post results 
 here with the hard drive manufacture name/model.
  
  Tamouh
  
Hello Robert,

Please don't top post.  It is difficult for someone joining the
conversation to understand what is going on and to help.

Have you taken Tamouh's advice and backed up your data?  If not, do it
now!

Regarding size:  What size differences do you see?  Maxtor's
diagnostics, BIOS, dmesg, fdisk, etc?  I doubt this is your problem.

Cables:  Be sure you've got good and proper cables, that the drive's
jumper is set appropriately to master or slave (and not to Auto), that
both ends are tight as is the power cable.

Heat:  Does the drive feel extraordinarily hot?  If so, replace it now!

Does FreeBSD eventually boot and run?  I.e., does it get past resettings
of the hard drive ad0?  If so, then you should definitely run the more
exhaustive diagnostics.  (Do this AFTER you are sure of your cabling and
AFTER your backup.)  Given your problem, I wouldn't put too much faith
in the quick diagnostics.  

You could try refreshing your drive:  
dd if=/dev/ad0 of=/dev/ad0 bs=1m

I notice the whole bus ata0 reset a couple times.  Do you have another
drive that you can put into that machine and see if you get the same
errors?  If so, you may just need to give up on that board.  You could
see if Dell has diagnostics for your P133v, and if they do, run them.

Most likely the errors you see in dmesg are occuring on most reads and
writes, and hence your performance is going to be bad.  It will also get
worse whether it is the bus or the drive.  If you can't find and fix
your problem, make sure your backups are frequent...

Do you have a small slice on your 120G drive that you could devote to
Red Hat (or Fedora)?  If so, and if it gives similar error messages,
then Dell support would help you.

Good luck,

-gayn



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


RE: HD Errors

2006-07-08 Thread Tamouh H.
 
 
 Tamouh H. wrote:
  Hi,
 
  I'm seeing the following messages in /var/log/messages and am 
  concerned about the integrity of the hard drive:
 
  ad0: WRITE command timeout tag=0 serv=0 - resetting
  cd9660: RockRidge Extension
  ad0: READ command timeout tag=0 serv=0 - resetting
  ad0: READ command timeout tag=0 serv=0 - resetting
  ad0: READ command timeout tag=0 serv=0 - resetting
  cd9660: RockRidge Extension
  ad0: READ command timeout tag=0 serv=0 - resetting
  cd9660: RockRidge Extension
  ad0: WRITE command timeout tag=0 serv=0 - resetting
  ad0: READ command timeout tag=0 serv=0 - resetting
  ata0: resetting devices .. done
  ad0: READ command timeout tag=0 serv=0 - resetting
  ata0: resetting devices .. done
  swap_pager: indefinite wait buffer: device: #ad/0x20001,
  blkno: 5488,
  size: 4096
  ad0: WRITE command timeout tag=0 serv=0 - resetting
  Are the ad0 messages showing the hard drive is having hardware 
  problems?
 
  Many thanks,
  Robert
  
  Very likely, backup your important date, grab a HD 
 manufacturer disk and test out the drive then post results 
 here with the hard drive manufacture name/model.
  
  Tamouh
  
  
 
 OK,
 
 It's a Maxtor DiamondMax Plus 9 120GB ATA/133 hard drive 
 (EIDE).  It's in a Dell Dimension P133v.  I also have a Dell 
 Optiplex GX1 which only supports a hard drive of 80 GB max.  
 This machine is at least as old as the optiplex, so it's 
 likely to support at most 80 GB as well, not 120 GB.
 
 I ran Maxtor's HD Diagnostic tools on the drive and the test, 
 with the exception of the long, full test, came back as 
 passed.  So, I have reasonable confidence that the problem 
 isn't the drive.
 
 FreeBSD says during drive formatting that there may be weird 
 errors for drives misreporting size.  Are the errors that I'm 
 seeing likely reflective of this?  What should my concern level be?
 
 Thanks again,
 Robert

Robert, I've seen bad drives passing the quick test but fail the long test. Do 
a long test , it could be couple of bad sectors on the drive failing, and this 
usually causes the short test to Pass.

Also, take Gayn suggestions, check the cables...etc. Try another good drive, if 
that gives the same problem then most likely something incomatible with the ATA 
controller! 

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


portupgrade core dumps

2006-07-08 Thread Neil Short
Suddenly, portupgrade (and it's associated tools)
instantly core dumps.

any insight? Is my ports database boned?

here is some sample output:

bright# portupgrade portupgrade
Segmentation fault (core dumped)
bright# dmesg | tail
pid 15403 (ruby18), uid 0: exited on signal 11 (core
dumped)
pid 15579 (ruby18), uid 0: exited on signal 11 (core
dumped)
pid 15770 (ruby18), uid 0: exited on signal 11 (core
dumped)
pid 15826 (ruby18), uid 0: exited on signal 11 (core
dumped)
pid 16045 (ruby18), uid 0: exited on signal 11 (core
dumped)
pid 16658 (gst-register-0.8), uid 0: exited on signal
11 (core dumped)
pid 16711 (gtk-update-icon-cac), uid 0: exited on
signal 11 (core dumped)
pid 17069 (ruby18), uid 0: exited on signal 11 (core
dumped)
pid 17070 (ruby18), uid 0: exited on signal 11 (core
dumped)
pid 17081 (ruby18), uid 0: exited on signal 11 (core
dumped)
bright# cd /usr/ports/sysutils/portupgrade
bright# make clean
===  Cleaning for ruby-1.8.4_8,1
===  Cleaning for ruby18-bdb-0.5.9
===  Cleaning for perl-5.8.8
===  Cleaning for db41-4.1.25_3
===  Cleaning for portupgrade-2.1.3.2,2
bright# make
===  Vulnerability check disabled, database not found
===  Extracting for portupgrade-2.1.3.2,2
= MD5 Checksum OK for pkgtools-2.1.3.2.tar.bz2.
= SHA256 Checksum OK for pkgtools-2.1.3.2.tar.bz2.
===   portupgrade-2.1.3.2,2 depends on file:
/usr/local/bin/ruby18 - found
===  Patching for portupgrade-2.1.3.2,2
===   portupgrade-2.1.3.2,2 depends on file:
/usr/local/bin/ruby18 - found
===   portupgrade-2.1.3.2,2 depends on file:
/usr/local/bin/ruby18 - found
===  Configuring for portupgrade-2.1.3.2,2
===  Building for portupgrade-2.1.3.2,2
=== bin (all)
Warning: Object directory not changed from original
/usr/ports/sysutils/portupgrade/work/pkgtools-2.1.3.2/bin
/usr/local/bin/ruby18 -wc pkg_fetch
*** Signal 11

Stop in
/usr/ports/sysutils/portupgrade/work/pkgtools-2.1.3.2/bin.
*** Error code 1

Stop in
/usr/ports/sysutils/portupgrade/work/pkgtools-2.1.3.2.
*** Error code 1

Stop in /usr/ports/sysutils/portupgrade.
bright# uname -a
FreeBSD bright.sunset 7.0-CURRENT FreeBSD 7.0-CURRENT
#2: Fri Jul  7 21:35:41 MST 2006
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/BRIGHT  i386


==
Now I, Nebuchadnezzar, praise and extol and honor the King of heaven, for all 
his works are truth, and his ways are justice; and he is able to bring low 
those who walk in pride.
Daniel 4:37

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: CUPS, USB printers Permission Denied

2006-07-08 Thread Anthony Agelastos

On Jun 29, 2006, at 6:51 PM, Jan-Espen Pettersen wrote:





I just tried /dev/unltp0 and I have the same issues. Basically, I
killed all of the jobs, made your change, submitted a test page,
watched as nothing happened (it didn't display any messages in the  
web

interface), did a /usr/local/etc/rc.d/cupsd restart, killed the test
page, then resubmitted one, and then it mentioned the USB busy will
retry in 30 seconds line. I reattached my error_log for today's
activities.

I will be on the road for the better part of a week, so I will try to
help out as much as I can given the circumstances. Thank you everyone
for your assistance with this.




I found that the usb backend stalled here before actually doing any
work. Before I've done any actual debugging of the backend, I suspect
that it is being blocked on a status read attempt, though this is only
my current guess.

Here is a workaround:

In printers.conf () you will probably find a line like this:

DeviceURI usb:/dev/ulpt0

change usb: to file:, so that it looks something like this:

DeviceURI file:/dev/ulpt0

Then restart cups. Cups will not read any status information from the
printer, but at least it can print. Be warned about unknown side  
effects. :)


Jan-Espen Pettersen



I did this fix and it enabled the local server that has the printer  
connected to it to print (a test page anyways) however, when I try to  
print to the printer through the network via my MacBook Pro (which  
worked before), I get the message in the CUPS Web Interface:


/usr/local/libexec/cups/filter/foomatic-rip failed

Basically, I have the same problem reported in the one-message-thread  
Can't print to CUPS from Macintosh.


Does anyone have any ideas? The FreeBSD community has my appreciation  
for all of its help on this matter.


Based on the number of problems associated with this issue (there's  
this thread, the aforementioned Mac thread, and the cups 1.2 - no  
output thread), would it be worthwhile to create a new Port named  
cups-devel (keeping the 1.2.x codebase) and downgrade the existing  
cups to the latest 1.1.x version until the bugs have been ironed out  
on the 1.2.x branch (or at least adding an entry to /usr/ports/ 
UPDATING to warn those updating)? Would 1.2.1 fix these issues (that  
is the current stable version whereas FreeBSD's CUPS is at 1.2.0), or  
perhaps the 1.3svn branch? I am unsure where the current problems lay  
(on the CUPS side, on how it is installed in the FreeBSD environment,  
or on the FreeBSD environment itself). Earlier in this thread, the  
issues were primarily related with permissions (since, it was  
mentioned, CUPS is trying to run with a more reasonable set of  
permissions instead of via 'root'), but now they appear to be  
configuration specific. I am willing to try whatever is proposed to  
help the developers get past these issues.


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


PHP Binary on Freebsd 5.4

2006-07-08 Thread Elijah Savage

All,

I am running freebsd 5.4 with all the patches for it. I have apache13- 
modssl install along with mod_php4-4.4.2 but now I need the php  
binary to run cati. Any advise on the best way to get the php binary  
installed? All of the previous was installed from ports.


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


can iostat _really_ behave like top ?

2006-07-08 Thread Ensel Sharon

When I run `top`, I get a single screen (ncurses ?) that refreshes itself
_in place_.

However, when I run iostat in top mode:

iostat -h -w 1

it does not refresh in place, rather it creates line after line,
eventually scrolling off the screen, etc.

Is there any way to use iostat like top, so I can have a single,
constantly refreshing screen to look at once in a while ?

Thanks.

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


Re: portupgrade core dumps

2006-07-08 Thread Neil Short


--- Neil Short [EMAIL PROTECTED] wrote:

 Suddenly, portupgrade (and it's associated tools)
 instantly core dumps.
 

followup:
force reinstall/reregister of /usr/ports/lang/ruby18
did the trick.

==
Now I, Nebuchadnezzar, praise and extol and honor the King of heaven, for all 
his works are truth, and his ways are justice; and he is able to bring low 
those who walk in pride.
Daniel 4:37

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


bootup error msg

2006-07-08 Thread amg


 Questions:

  Rel:  4.11 stable

  I just started seeing the following msg
  in dmesg at bootup:

module_register init: MOD_LOAD (logo_saver, c4c7fa44, 0) error 19

  Additionally,, I just added 1 GB of memory,
  upping the total memory to 2 GB.  I don't
  see why an increase in memory would cause
  the above error msg, but it seems like too
  much of a coincidence.

  Is there anyone out there with an idea of
  what is happening and how to get kernel to
  stop complaining, without re-installing the
  OS?

  Thanks.

 August
 [EMAIL PROTECTED]

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


Finding CPAN Modules in ports

2006-07-08 Thread Gerard Seibert
I am unable to locate the following three CPAN modules in the ports
tree:

Bundle::libnet
Net::SMTP::SSL
Mail::Verp

They are probably there, but I just cannot locate them. It would be nice
if the ports system used the identical names that CPAN does for its
modules, but I guess that is not going to happen.


-- 
Gerard Seibert
[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: can iostat _really_ behave like top ?

2006-07-08 Thread Dan Nelson
In the last episode (Jul 08), Ensel Sharon said:
 When I run `top`, I get a single screen (ncurses ?) that refreshes itself
 _in place_.
 
 However, when I run iostat in top mode:
 
 iostat -h -w 1
 
 it does not refresh in place, rather it creates line after line,
 eventually scrolling off the screen, etc.
 
 Is there any way to use iostat like top, so I can have a single,
 constantly refreshing screen to look at once in a while ?

How about something like:

iostat -h -w 1 | sed -e /tty/s/^/$(echotc cl)/

to insert a clearscreen whenever the header is printed (i.e. the device
ordering changes or 20 lines are printed)

Then again, what do you have against scrolling?  With your original
command, not only do you see the last screenful of stats even when
devices change order, but you can scroll back and see farther back if
you want to.

-- 
Dan Nelson
[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: CUPS, USB printers Permission Denied

2006-07-08 Thread Rico Secada
On Sat, 8 Jul 2006 12:43:45 -0400
Anthony Agelastos [EMAIL PROTECTED] wrote:

Hi, I just installed cups from ports and had a similar problem with printing. 
Normally I haven't got any problems. 

The printer is a HL-1430 connected to USB and the error I got was: 'Unable to 
open USB device usb:/dev/unlpt0 Permission Denied.'

Now I don't know if this is relevant in any way. After trying all kinds of 
solutions I finally decided to simply do chmod 777 /dev/unlpt0, and that 
solved the problem.

Best and kind regards,
Rico

 On Jun 29, 2006, at 6:51 PM, Jan-Espen Pettersen wrote:
 
 
 
  I just tried /dev/unltp0 and I have the same issues. Basically, I
  killed all of the jobs, made your change, submitted a test page,
  watched as nothing happened (it didn't display any messages in the  
  web
  interface), did a /usr/local/etc/rc.d/cupsd restart, killed the test
  page, then resubmitted one, and then it mentioned the USB busy will
  retry in 30 seconds line. I reattached my error_log for today's
  activities.
 
  I will be on the road for the better part of a week, so I will try to
  help out as much as I can given the circumstances. Thank you everyone
  for your assistance with this.
 
 
 
  I found that the usb backend stalled here before actually doing any
  work. Before I've done any actual debugging of the backend, I suspect
  that it is being blocked on a status read attempt, though this is only
  my current guess.
 
  Here is a workaround:
 
  In printers.conf () you will probably find a line like this:
 
  DeviceURI usb:/dev/ulpt0
 
  change usb: to file:, so that it looks something like this:
 
  DeviceURI file:/dev/ulpt0
 
  Then restart cups. Cups will not read any status information from the
  printer, but at least it can print. Be warned about unknown side  
  effects. :)
 
  Jan-Espen Pettersen
 
 
 
 I did this fix and it enabled the local server that has the printer  
 connected to it to print (a test page anyways) however, when I try to  
 print to the printer through the network via my MacBook Pro (which  
 worked before), I get the message in the CUPS Web Interface:
 
 /usr/local/libexec/cups/filter/foomatic-rip failed
 
 Basically, I have the same problem reported in the one-message-thread  
 Can't print to CUPS from Macintosh.
 
 Does anyone have any ideas? The FreeBSD community has my appreciation  
 for all of its help on this matter.
 
 Based on the number of problems associated with this issue (there's  
 this thread, the aforementioned Mac thread, and the cups 1.2 - no  
 output thread), would it be worthwhile to create a new Port named  
 cups-devel (keeping the 1.2.x codebase) and downgrade the existing  
 cups to the latest 1.1.x version until the bugs have been ironed out  
 on the 1.2.x branch (or at least adding an entry to /usr/ports/ 
 UPDATING to warn those updating)? Would 1.2.1 fix these issues (that  
 is the current stable version whereas FreeBSD's CUPS is at 1.2.0), or  
 perhaps the 1.3svn branch? I am unsure where the current problems lay  
 (on the CUPS side, on how it is installed in the FreeBSD environment,  
 or on the FreeBSD environment itself). Earlier in this thread, the  
 issues were primarily related with permissions (since, it was  
 mentioned, CUPS is trying to run with a more reasonable set of  
 permissions instead of via 'root'), but now they appear to be  
 configuration specific. I am willing to try whatever is proposed to  
 help the developers get past these issues.
 
 ___
 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: CUPS, USB printers Permission Denied

2006-07-08 Thread Anthony Agelastos


On Jul 8, 2006, at 2:19 PM, Rico Secada wrote:


On Sat, 8 Jul 2006 12:43:45 -0400
Anthony Agelastos [EMAIL PROTECTED] wrote:

Hi, I just installed cups from ports and had a similar problem with  
printing. Normally I haven't got any problems.


The printer is a HL-1430 connected to USB and the error I got was:  
'Unable to open USB device usb:/dev/unlpt0 Permission Denied.'


Now I don't know if this is relevant in any way. After trying all  
kinds of solutions I finally decided to simply do chmod 777 /dev/ 
unlpt0, and that solved the problem.

Hello Rico,

Thank you for your reply. Your workaround may only work until you  
reboot your machine and /dev/unlpt0 is re-permission'd. To make that  
fix more permanent, you will need to add the following to your /etc/ 
devfs.rules file (feel free to modify the 0660 to something more of  
your liking).


[system=10]
add path 'unlpt*' mode 0660 group cups
add path 'ulpt*' mode 0660 group cups

And, add the following to your /etc/rc.conf file.

devfs_system_ruleset=system

These were outlined earlier on in this thread. Do you have other  
computers that network print to your printer (and if so, does network  
printing work for you)?


Thank you for your reply.



Best and kind regards,
Rico


On Jun 29, 2006, at 6:51 PM, Jan-Espen Pettersen wrote:





I just tried /dev/unltp0 and I have the same issues. Basically, I
killed all of the jobs, made your change, submitted a test page,
watched as nothing happened (it didn't display any messages in the
web
interface), did a /usr/local/etc/rc.d/cupsd restart, killed the  
test

page, then resubmitted one, and then it mentioned the USB busy will
retry in 30 seconds line. I reattached my error_log for today's
activities.

I will be on the road for the better part of a week, so I will  
try to
help out as much as I can given the circumstances. Thank you  
everyone

for your assistance with this.




I found that the usb backend stalled here before actually doing any
work. Before I've done any actual debugging of the backend, I  
suspect
that it is being blocked on a status read attempt, though this is  
only

my current guess.

Here is a workaround:

In printers.conf () you will probably find a line like this:

DeviceURI usb:/dev/ulpt0

change usb: to file:, so that it looks something like this:

DeviceURI file:/dev/ulpt0

Then restart cups. Cups will not read any status information from  
the

printer, but at least it can print. Be warned about unknown side
effects. :)

Jan-Espen Pettersen




I did this fix and it enabled the local server that has the printer
connected to it to print (a test page anyways) however, when I try to
print to the printer through the network via my MacBook Pro (which
worked before), I get the message in the CUPS Web Interface:

/usr/local/libexec/cups/filter/foomatic-rip failed

Basically, I have the same problem reported in the one-message-thread
Can't print to CUPS from Macintosh.

Does anyone have any ideas? The FreeBSD community has my appreciation
for all of its help on this matter.

Based on the number of problems associated with this issue (there's
this thread, the aforementioned Mac thread, and the cups 1.2 - no
output thread), would it be worthwhile to create a new Port named
cups-devel (keeping the 1.2.x codebase) and downgrade the existing
cups to the latest 1.1.x version until the bugs have been ironed out
on the 1.2.x branch (or at least adding an entry to /usr/ports/
UPDATING to warn those updating)? Would 1.2.1 fix these issues (that
is the current stable version whereas FreeBSD's CUPS is at 1.2.0), or
perhaps the 1.3svn branch? I am unsure where the current problems lay
(on the CUPS side, on how it is installed in the FreeBSD environment,
or on the FreeBSD environment itself). Earlier in this thread, the
issues were primarily related with permissions (since, it was
mentioned, CUPS is trying to run with a more reasonable set of
permissions instead of via 'root'), but now they appear to be
configuration specific. I am willing to try whatever is proposed to
help the developers get past these issues.

___
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 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: mplayer fails to build

2006-07-08 Thread NgD Vulto

2006/7/7, Luchezar Petkov [EMAIL PROTECTED]:


* Garrett Cooper ([EMAIL PROTECTED]) wrote:
 On Jul 7, 2006, at 2:24 PM, Luchezar Petkov wrote:

 Hey all,
 multimedia/mplayer fails to build with this error message, while
 compilling:
 
 cc  -I. -g codec-cfg.c mp_msg.c -o codec-cfg -DCODECS2HTML -L/usr/
 local/lib -L/usr/local/lib -I/usr/local/include/freetype2 -I/usr/
 local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/
 glib12 -I/usr/local/include -I/usr/X11R6/include
 /var/tmp//ccjt849w.o(.text+0x14): In function `mp_msg_init':
 /usr/ports/multimedia/mplayer/work/MPlayer-1.0pre7try2/mp_msg.c:39:
 undefined reference to `libintl_bindtextdomain'
 /var/tmp//ccjt849w.o(.text+0x24):/usr/ports/multimedia/mplayer/work/
 MPlayer-1.0pre7try2/mp_msg.c:40: undefined reference to
 `libintl_textdomain'
 /var/tmp//ccjt849w.o(.text+0xb1): In function `mp_msg_c':
 /usr/ports/multimedia/mplayer/work/MPlayer-1.0pre7try2/mp_msg.c:68:
 undefined reference to `libintl_gettext'
 gmake: *** [codec-cfg] Error 1
 *** Error code 2
 
 Stop in /usr/ports/multimedia/mplayer.
 
 --
 Any ideas?
 Thank you.

 Either libintl or the libintl gettext tie-in isn't compiled/installed
 yet.
 -Garrett

#locate libintl
/usr/local/include/libintl.h
/usr/local/lib/libintl.a
/usr/local/lib/libintl.la
/usr/local/lib/libintl.so
/usr/local/lib/libintl.so.6

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






Did you update your ports lately?

--
Hugo Pessoa/NgD Vulto.

[Freebsd User Group]

Fug-Br/BsD-Ce proud active member.

There will be a day machines will reign, and only the ones able to
understand them will survive.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: freebsd help

2006-07-08 Thread NgD Vulto

2006/7/4, Goran Sabo [EMAIL PROTECTED]:



   Hi!

   I have c:/ (no partition) with Windows sistem,

   d:/ partition - NTFS and unformated partition for second sistem -
   FreeBSD.

   When I put instalation CD and boot computer from cd freebsd I get
   error masage BTX HALTED. Before this is all ok.

   Cant i have two sistems Window and FreeBSD?



   Thank you

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






It is possible, yet i don't get your problem at all, we need more details.

--
Hugo Pessoa/NgD Vulto.

[Freebsd User Group]

Fug-Br/BsD-Ce proud active member.

There will be a day machines will reign, and only the ones able to
understand them will survive.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: (no subject)

2006-07-08 Thread NgD Vulto

2006/7/3, jan polomsky [EMAIL PROTECTED]:


I want to be a programmer, but i have not any good-to-understand form of
learning.
(i like DOS, but i want to build my own OS too.) can you help me?

--
Krasne fotografie, rady a inspiracie.
Pre skusenych aj zacinajucich fotografov knihy Zoner Press!
Preklady aj publikacie domacich autorov najdete na www.zonerpress.cz.
Vyuzite akcne ceny!



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




You want to be a programmer, but you don't know any computer languages...and
you claim you are not good at learning stuff?

I think you should start of studying then man, i don't think anybody is bad
at learning, it is all about pay attention, google some computer languages
and pick the one you prefer, make your own OS from zero will be a bit hard,
but I give you a good luck.

--
Hugo Pessoa/NgD Vulto.

[Freebsd User Group]

Fug-Br/BsD-Ce proud active member.

There will be a day machines will reign, and only the ones able to
understand them will survive.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD Installation CD Creation

2006-07-08 Thread Walt Haynes
I'm having a tough time creating the two 6.1-release
installation CD's. I was told that it was best to go to

ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.1/

and download the 6.1 RELEASE disc1 and disc2 ISO images in Windows, 
and use your favorite toaster to rip CDs. (My CD 'toaster' is Nero OEM
6.6.0.13.)
Then boot from disc1 to install. When I attempt to do this, it's like
the CD is either empty or unreadable. I'd love to know what I'm doing
wrong. I've tried this 4 times now and it's a bit frustrating. I have
the .ISO files in my recycle bin. Is there a way for me to convert them
to CD images from which I can boot my Windows XP system and install
FreeBSD in my available 20 GB primary partition?

Sincerely,
Walt Haynes

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


Re: sudo and LDAP

2006-07-08 Thread NgD Vulto

2006/7/3, ACM Staff [EMAIL PROTECTED]:


Ok, so its working but I realized a slight problem today when went
back to check on things. Its not prompting for a password.

Sudoers isn't on NOPASSWD so I am assuming its my pam.d/sudo



It is on nopasswd, check it I got from you:

notroot ALL=(ALL) NOPASSWD: ALL

Or you mean you edited it then huh?

NgD.

--
Hugo Pessoa/NgD Vulto.

[Freebsd User Group]

Fug-Br/BsD-Ce proud active member.

There will be a day machines will reign, and only the ones able to
understand them will survive.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


k3b package

2006-07-08 Thread Karl Hammerschmidt
Hi,

I was planning to install k3b from a package, but I wasn't
able to find it in packages-6-stable or packages-6.0-release
on any of the ftp mirrors.

Am I missing something?

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


Re: FreeBSD Installation CD Creation

2006-07-08 Thread Robert C Wittig

Walt Haynes wrote:

I'm having a tough time creating the two 6.1-release
installation CD's. I was told that it was best to go to

ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.1/

and download the 6.1 RELEASE disc1 and disc2 ISO images in Windows, 
and use your favorite toaster to rip CDs. (My CD 'toaster' is Nero OEM

6.6.0.13.)
Then boot from disc1 to install. When I attempt to do this, it's like
the CD is either empty or unreadable. I'd love to know what I'm doing
wrong. I've tried this 4 times now and it's a bit frustrating. I have
the .ISO files in my recycle bin. Is there a way for me to convert them
to CD images from which I can boot my Windows XP system and install
FreeBSD in my available 20 GB primary partition?


Yes. In Nero, select the 'Copy and Backup' function, and then, in the 
choices (icons) that this brings up, select 'Burn Image to Disk'.


Then, you will have to change 'File Types' to 'Image Files' to browse 
for the *.iso image, because Nero defaults to 'Nero native' image files.




--
-wittig http://www.robertwittig.com/
.   http://robertwittig.net/

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


Re: mplayer fails to build

2006-07-08 Thread Luchezar Petkov
* NgD Vulto ([EMAIL PROTECTED]) wrote:
 2006/7/7, Luchezar Petkov [EMAIL PROTECTED]:
 
 * Garrett Cooper ([EMAIL PROTECTED]) wrote:
  On Jul 7, 2006, at 2:24 PM, Luchezar Petkov wrote:
 
  Hey all,
  multimedia/mplayer fails to build with this error message, while
  compilling:
  
  cc  -I. -g codec-cfg.c mp_msg.c -o codec-cfg -DCODECS2HTML -L/usr/
  local/lib -L/usr/local/lib -I/usr/local/include/freetype2 -I/usr/
  local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/
  glib12 -I/usr/local/include -I/usr/X11R6/include
  /var/tmp//ccjt849w.o(.text+0x14): In function `mp_msg_init':
  /usr/ports/multimedia/mplayer/work/MPlayer-1.0pre7try2/mp_msg.c:39:
  undefined reference to `libintl_bindtextdomain'
  /var/tmp//ccjt849w.o(.text+0x24):/usr/ports/multimedia/mplayer/work/
  MPlayer-1.0pre7try2/mp_msg.c:40: undefined reference to
  `libintl_textdomain'
  /var/tmp//ccjt849w.o(.text+0xb1): In function `mp_msg_c':
  /usr/ports/multimedia/mplayer/work/MPlayer-1.0pre7try2/mp_msg.c:68:
  undefined reference to `libintl_gettext'
  gmake: *** [codec-cfg] Error 1
  *** Error code 2
  
  Stop in /usr/ports/multimedia/mplayer.
  
  --
  Any ideas?
  Thank you.
 
  Either libintl or the libintl gettext tie-in isn't compiled/installed
  yet.
  -Garrett
 
 #locate libintl
 /usr/local/include/libintl.h
 /usr/local/lib/libintl.a
 /usr/local/lib/libintl.la
 /usr/local/lib/libintl.so
 /usr/local/lib/libintl.so.6
 
 They are.
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 [EMAIL PROTECTED]
 
 
 
 
 
 Did you update your ports lately?
 
Yes, today. The same thing. I've installed Xine temporarly, will wait for the 
1.0pre8 port.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


SO Woes

2006-07-08 Thread Sean M.
1. I use to have the GCC 4.2 port installed, but since it perpetually
failed to compile anything, I removed it. But now, some of the ports
that it did compile now complain about a missing libgcc_s.so.1. How
can I find all these ports (I know I can change them with make install
clean FORCE_PKG_VERSION)?

2. When I try to change my screensaver in KDE, I get the message

Shared object libm.so.3 not found, required by libGL.so.1

And some other KDE programs like Krita and KPovModeler won't start,
which I guess is due to the same problem. ldconfig -s lists only
libm.so.4. How do I fix this?

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD 6.1 rl interface

2006-07-08 Thread Rob Hurle
Dear People,

I'm hoping to upgrade from FreeBSD 4.6.1 on a Pentium II to
FreeBSD 6.1 on a P5 3.2GHz.  Of course, I'm doing a fresh install on
the new system.  There's been some annoyances - Openoffice.org is
still at 1.1.5 rather than 2.0 on the release, and KDE desn't seem to
want to run screen savers, sound does not work, etc, etc.  I am
working through these.

But the killer is that I want to run 2 ethernet interfaces.
The on-board one is fxp0 (Intel) and comes up fine.  The other is a
PCI card with the RealTek 8139D chipset, so I'm expecting a rl0
interface.  I've put if_rl_load=YES into the /boot/loader.conf filem
but the system does not seem to like it, giving me the message failed
to register: 17 at module load time, and then no driver attached
at bring-up-interface time.  /var/log/messages extract is as follows:

-
Jul  9 09:14:08 grandpa kernel: FreeBSD 6.1-RELEASE #0: Sun May  7 04:42:56 UTC 
2006
Jul  9 09:14:08 grandpa kernel: [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SMP
Jul  9 09:14:08 grandpa kernel: module_register: module pci/rl already exists!
Jul  9 09:14:08 grandpa kernel: Module pci/rl failed to register: 17
Jul  9 09:14:08 grandpa kernel: module_register: module cardbus/rl already 
exists!
Jul  9 09:14:08 grandpa kernel: Module cardbus/rl failed to register: 17
Jul  9 09:14:08 grandpa kernel: module_register: module rl/miibus already 
exists!
Jul  9 09:14:08 grandpa kernel: Module rl/miibus failed to register: 17

.

Jul  9 09:14:08 grandpa kernel: pcib5: ACPI PCI-PCI bridge at device 30.0 on 
pci0
Jul  9 09:14:08 grandpa kernel: pci5: ACPI PCI bus on pcib5
Jul  9 09:14:08 grandpa kernel: pci5: network, ethernet at device 2.0 (no 
driver attached)
Jul  9 09:14:08 grandpa kernel: fxp0: Intel 82801GB (ICH7) 10/100 Ethernet 
port 0x1100-0x113f mem 0x5200-0x52000fff i
rq 20 at device 8.0 on pci5
Jul  9 09:14:08 grandpa kernel: miibus0: MII bus on fxp0
Jul  9 09:14:08 grandpa kernel: inphy0: i82562ET 10/100 media interface on 
miibus0
Jul  9 09:14:08 grandpa kernel: inphy0:  10baseT, 10baseT-FDX, 100baseTX, 
100baseTX-FDX, auto
Jul  9 09:14:08 grandpa kernel: fxp0: Ethernet address: 00:16:76:75:db:28
Jul  9 09:14:08 grandpa kernel: isab0: PCI-ISA bridge at device 31.0 on pci0
Jul  9 09:14:08 grandpa kernel: isa0: ISA bus on isab0
-

`ifconfig` gives the result:

fxp0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet6 fe80::216:76ff:fe75:db28%fxp0 prefixlen 64 scopeid 0x1
inet 192.168.87.7 netmask 0xfff0 broadcast 192.168.87.15
ether 00:16:76:75:db:28
media: Ethernet autoselect (10baseT/UTP)
status: active
plip0: flags=108810POINTOPOINT,SIMPLEX,MULTICAST,NEEDSGIANT mtu 1500
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3
inet 127.0.0.1 netmask 0xff00

(what is plip0 - did not occur on FreeBSD 4.6?)

The system is very much a straight out of the box, FreeBSD 6.1
release, as can be seen from the above extract, and the chip has
RTL8139D printed on it (maybe rl is wrong, but re is the only
other 8139 option, and it doesn't work either).  Any clues would be
most welcome.  Thank you all very much.

Cheers,

Rob Hurle
-
Rob Hurle   Faculty of Asian Studies, ANU
Home address and contacts:   Tel: +61 2 6247 2397
  PO Box 4013Fax: +61 2 6247 2397
  AinslieCell phone: 0417 293 603
  Australia e-mail: [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: FreeBSD Installation CD Creation

2006-07-08 Thread doug
If the FreeBSD CD is formated properly you should be able to see the CD's 
directory structure using windows explorer. If you can not do that, you did not 
choose the option to burn the CD from an ISO image. Burning from an ISO image is 
directly writing each track.




On Sat, 8 Jul 2006, Walt Haynes wrote:


I'm having a tough time creating the two 6.1-release
installation CD's. I was told that it was best to go to

ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.1/

and download the 6.1 RELEASE disc1 and disc2 ISO images in Windows,
and use your favorite toaster to rip CDs. (My CD 'toaster' is Nero OEM
6.6.0.13.)
Then boot from disc1 to install. When I attempt to do this, it's like
the CD is either empty or unreadable. I'd love to know what I'm doing
wrong. I've tried this 4 times now and it's a bit frustrating. I have
the .ISO files in my recycle bin. Is there a way for me to convert them
to CD images from which I can boot my Windows XP system and install
FreeBSD in my available 20 GB primary partition?

Sincerely,
Walt Haynes


___
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: FreeBSD Installation CD Creation

2006-07-08 Thread Jason McAlpine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


 On Sat, 8 Jul 2006, Walt Haynes wrote:


 I'm having a tough time creating the two 6.1-release
 installation CD's. I was told that it was best to go to

 ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.1/


 and download the 6.1 RELEASE disc1 and disc2 ISO images in Windows, and
 use your favorite toaster to rip CDs. (My CD 'toaster' is Nero OEM
 6.6.0.13.)
 Then boot from disc1 to install. When I attempt to do this, it's like
 the CD is either empty or unreadable. I'd love to know what I'm doing
 wrong. I've tried this 4 times now and it's a bit frustrating. I have
 the .ISO files in my recycle bin. Is there a way for me to convert them
  to CD images from which I can boot my Windows XP system and install
 FreeBSD in my available 20 GB primary partition?


 Sincerely,
 Walt Haynes



On Sun, July 9, 2006 2:51 pm, doug wrote:
 If the FreeBSD CD is formated properly you should be able to see the CD's
  directory structure using windows explorer. If you can not do that, you
 did not choose the option to burn the CD from an ISO image. Burning from
 an ISO image is directly writing each track.




If you use nero choose BURN IMAGE or CREATE CD FROM IMAGE this will burn
the ISO image correctly
other tools such as alzip winrar and many other free applications can
extract and edit ISO images.

Best of luck

Regards Jason




- 

Notice: This e-mail and any attachments are confidential and may be subject to 
legal
or professional privileges. This email is intended solely for the attention and 
use
of the named addressee(s). Richard Flanagan  Company take no responsibility 
for any
virus or malicious application sent via this electronic mail.

X-Virus-Scanned: amavisd-new (Clam-AV) at richardflanagan.com.au

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.4 (FreeBSD)

iD8DBQFEsJWSRkFl9ZIxSw4RApG+AJ9RRzewvRe+N+ViuOjh1ouTgUBNHQCdF9kC
R6/jfdleRrSUkQQQaw3gRHw=
=Mi0j
-END PGP SIGNATURE-

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