Re: PowerApp 120/1550 Install problems

2007-03-18 Thread Brian A. Seklecki
sysinstall will frequently silently fail on the physical partitioning
stage for any variety of reasons which will fail to create the
appropriate slice entries

Show us your partition and slice tables?

Send logs from the emergency VTY?

~BAS

On Sat, 2007-03-17 at 21:02 -0400, Don Munyak wrote:
 On 3/17/07, Minnesota Slinky [EMAIL PROTECTED] wrote:
  Hey list,
 
  I'm trying to install FreeBSD 6.2-RELEASE on a Dell PowerApp 120
  (1550) I just purchased.  The system claims to have an AIC 7899 SCSI
  host adapter.  I've currently got a known-good 9GB Fujitsu hard disk
  in the system, as ID 0.  During installation, the disk comes up as
  da0.  After going through all the options for install, etc, I get an
  error when it tries to write the file systems:
 
  Unable to find device node for /dev/da0s1b in /dev! and mentions
  that installation is aborting.  At first I thought it was a problem
  with the SCSI backplane, but RHEL and Window 2000 Server both install
  and operate without problems.
 
  Thanks for your advice!
 
  Eric Crist
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 
 Don't know the answer, but have a suggestion.
 
 How about getting a live cd to boot from and then query /var/log for
 hardware spec's
 
 Don
 ___
 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: puc and uart as modules with FreeBSD6.2-REL

2007-03-18 Thread Jonathan McKeown
On Sunday 18 March 2007 08:32, Brian A. Seklecki wrote:

[Jonathan wanted to use puc(4) and uart(4) as kernel modules to get a PCI 
2-port serial card working]

  Am I missing something obvious, or do I need to compile yet another
  custom kernel to get this card working?

 The man page I see says that you need sio(4) as well.

 iso* at puc? port ?

 Or in the fbsd case, the iso module or option in the kernel.

sio(4) is part of the generic kernel. It doesn't appear to have puc/sio 
compiled in - I did find a reference to this problem and the solution 
suggested was that puc(4) and sio(4) had to be either both compiled in or 
both loaded as modules - since either involves a new custom kernel, which I'm 
trying to avoid as I prefer to run as few different kernels as possible, this 
solution is not ideal.

I did see some suggestion that puc had been modified to register itself with 
uart(4) if it failed to do so with sio(4) - this may have been on 7-current, 
and I don't know whether it has been MFC'd to 6.2.

kldstat -v -n uart gives me:

Id Refs AddressSize Name
 41 0xc2568000 b000 uart.ko
Contains modules:
Id Name
377 acpi/uart
378 isa/uart
379 pccard/uart
380 cardbus/uart
381 pci/uart
382 puc/uart

and man uart tells me:

The primary support for devices that con-
tain multiple serial interfaces or that contain other functionality
besides one or more serial interfaces is provided by the puc(4) device
driver.  However, the serial interfaces of those devices that are managed
by the puc(4) driver are controlled by the uart driver.

If this is the case, how can I get the ports on my card recognised by the 
uart(4) driver? Or am I going about this wrongly?

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


Re: strange kde installation

2007-03-18 Thread Mike

freenity wrote:

Hello again.
I installed the kde3 port but something strange happened to keyboard 
layout.

It has only english layout, but I need other languages too. In control
center only US English appears. How do I add more languages? Thanks.
Open Control Center, go to Regional and Accessibility, then Keyboard 
Layout.  If it's not enabled, check the Enable keyboard layouts 
checkbox.  Click one of the available layouts and hit the Add button.  
Use the green up and down arrows to adjust the cycling order.



___
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: 'nodump' on directories: new contents still dumped

2007-03-18 Thread Bram Schoenmakers
Op vrijdag 16 maart 2007, schreef Alex Zbyslaw:
 Can you try explicitly putting a -h 0 into your incremental command
 line and see if that makes a difference?

I've done that and now dump behaves like it should. I don't understand why, 
because the man page says that -h 1 is default (and shouldn't be supplied 
then). But with -h 0 on every incremental dump it's OK now.

Thanks for the ideas.

-- 
Bram Schoenmakers

You can contact me directly with Yahoo Instant Messenger with
bramschoenmakers
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Error Compile Kernel

2007-03-18 Thread Gerard Seibert
On Sat, 17 Mar 2007 11:35:47 +0700
Toan. Bach Quang Bao [EMAIL PROTECTED] wrote:

 I have compile kernel:
 
  cd /usr/src/sys/i386/conf
 
  mkdir /root/kernels
 
  cp GENERIC /root/kernels/MYKERNEL   
 
  ln -s /root/kernels/MYKERNEL
 
  /usr/sbin/config MYKERNEL
 
  cd ../compile/MYKERNEL
 
  make depend
 
  make
 
  make install
 
 But when I make it have error:
 
 # make
 
 linking kernel.debug
 
 ip_input.o(.text+0x200): In function `ip_init':
 
 ../../../netinet/ip_input.c:312: undefined reference to
 `nf_sockopt_init'
 
 *** Error code 1

You failed to mention what version of FBSD you are employing. However,
it appears that you are using an antiquated method of building a new
kernel.

You should probably check out these URLS for further information.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html


-- 
Gerard

Living in New York City gives people real incentives
to want things that nobody else wants.

Andy Warhol


signature.asc
Description: PGP signature


Re: strange kde installation

2007-03-18 Thread freenity

Thanks. it worked.
One another question.

I cant set 1280x1024 resolution in kde, it just doesnt appear in the
options. in my xorg.conf file there are entries for thismode:

---
Section Screen
   Identifier Screen0
   Device Card0
   MonitorMonitor0
   SubSection Display
   Viewport   0 0
   Depth 16
   Modes1280x1024
   EndSubSection
   SubSection Display
   Viewport   0 0
   Depth 16
   Modes   1280x1024
   EndSubSection

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


Re: installing i386.rpm files on FBSD-6.1 amd64

2007-03-18 Thread Boris Samorodov
[top-posting reformatted, CC: to freebsd-questions@ restored]

On Sat, 17 Mar 2007 22:28:38 + Luiz A B de Campos wrote:
 On 3/11/07, Boris Samorodov [EMAIL PROTECTED] wrote:
  On Sun, 11 Mar 2007 12:44:38 + Luiz A B de Campos wrote:
 
   Is it possible to do this? I've already installed linux_base-8 and rpm
  ports
  It is recommended to use linux_base-fc4 nowadays.
   but when I try to install a i386.rpm file the system claims for some
  libs
   (libpopt, libtiff, glibc.so.6 , libxml, bash)
  All those apps are already at the ports tree. Which app do you need to
  run? If it presents at the ports tree one should use ports/packages to
  install.
 Thanks, Boris!  I need to install one i386.rpm driver for my Canon Ip1600
 printer and it's  a usb printer... and maybe flashplayer!

Well, it's not clear to me if you succeeded in installing them? ;-)


WBR
-- 
Boris Samorodov (bsam)
Research Engineer, http://www.ipt.ru Telephone  Internet SP
FreeBSD committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Hi,

2007-03-18 Thread rothlee
Hi,

I will be away from the office from March 19 to March 23. Please direct your 
requests and concerns to Raj ([EMAIL PROTECTED]) and Jay ([EMAIL PROTECTED]).

Thanks, 

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


I need help with external USB DVD writer.

2007-03-18 Thread FreeBSD User Giacomo
Hi. 
I have bought recently an external USB DVD writer Samsung Super (model 
SE-S184M/EUBN). 
I do not succeed in to burn DVD (only CD). 
The system (FreeBSD 6,1) recognizes masterizzatore like: 

umass0: TSST corp USB Mass Storage Device, rev 2.00/0.00, addr 3 cd0 at 
umass-sim0 bus 0 target 0 lun 0 
cd0: TSSTcorp CD/DVDW SH-S182M SB02 device Removable CD-ROM SCSI-0 
cd0: 40.000MB/s transfers 
cd0: Device Attempt to query size failed: NOT READY, Medium not present - tray 
close


If I use the comand whith a dvd+rw : dvd+rw- format /dev/cd0 
I obtain 

* DVD±RW/-RAM format utility by [EMAIL PROTECTED] chalmers.se, version 6.0. 
:-( (unable to GET CONFIGURATION: 
Input/output error and on the consul: umass0: 
Unsupported ATAPI command 0x46. 

With another external drive LG this is OK.
I don't know that what happens.
Some suggestions?

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


about MySQL install

2007-03-18 Thread Frank
hi,
i have questions about install MySQL in FreeBSD 6.0, after type # make it 
would be display like bottom.

make all-recursive
Making all in .
Making all in include
make all-am
Making all in Docs
Making all in cmd-line-utils
Making all in libedit
Making all in sql-common
Making all in pstack
Making all in aout
Making all in strings
Making all in mysys
Making all in dbug
/bin/sh ../libtool --preserve-dup-deps --tag=CC --mode=link gcc -O3 -DDBUG_OFF 
-o factorial my_main.o factorial.o libdbug.a
../mysys/libmysys.a ../strings/libmystrings.a -lc_r -lcrypt -lm -lc_r
gcc -O3 -DDBUG_OFF -o factorial my_main.o factorial.o  libdbug.a 
../mysys/libmysys.a ../strings/libmystrings.a -lcrypt -lm
../mysys/libmysys.a(my_thr_init.o) (.text+0x5f): In function 
'my_thread_global_end':
:undefined reference to 'pthread_cond_timedwait'
*** Error code 1

Stop in /usr/home/frank/mysql-5.0.33/dbug.
*** Error code 1

Stop in /usr/home/frank/mysql-5.0.33.
*** Error code 1

Stop in /usr/home/frank/mysql-5.0.33.


P.S I'm a new, so i don't know how to solve this problem hope you can solve for 
me easily.


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


recommend console email client?

2007-03-18 Thread Zhang Weiwu
Dear list

For years I am not yet satisfied with ANY console email client, though I
have tried quite a few. My requirement is actually very simple: a email
client must be able to:

 1. do the automatic charset conversion, so if I got an email in
GB18030 charset, it display correct on my UTF-8 console;
 2. is able to connect to IMAP server, copy sent emails to
INBOX.Sent folder and let me browse IMAP folders;
 3. is able to look up contact information (including telephone
number) by LDAP;

mutt = charset conversion is not 100% correct (e.g. cannot display
double-width ideograph correctly when it's on the edge); poor ldap
support and me not knowing how to keep sent message in INBOX/Sent
pine = no charset conversion at all and Washington University don't
seems wish to add this feature;
alpine = said to support charset conversion but cannot find any link
for downloading it.

Maybe there are good applications that I didn't try yet?

Thanks a lot in advance!
Best Regards
Zhang Weiwu

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


Re: PowerApp 120/1550 Install problems

2007-03-18 Thread Minnesota Slinky

On Mar 17, 2007, at 8:02 PM, Don Munyak wrote:


On 3/17/07, Minnesota Slinky [EMAIL PROTECTED] wrote:

Hey list,

I'm trying to install FreeBSD 6.2-RELEASE on a Dell PowerApp 120
(1550) I just purchased.  The system claims to have an AIC 7899 SCSI
host adapter.  I've currently got a known-good 9GB Fujitsu hard disk
in the system, as ID 0.  During installation, the disk comes up as
da0.  After going through all the options for install, etc, I get an
error when it tries to write the file systems:

Unable to find device node for /dev/da0s1b in /dev! and mentions
that installation is aborting.  At first I thought it was a problem
with the SCSI backplane, but RHEL and Window 2000 Server both install
and operate without problems.

Thanks for your advice!

Eric Crist


Don't know the answer, but have a suggestion.

How about getting a live cd to boot from and then query /var/log for
hardware spec's

Don


Thanks for the answer Don, but I finally figured it out.  Apparently  
the drive I had wasn't negotiating the right speed with the  
backplane.  When I manually clocked it down, everything works great.


-
Eric F Crist
Secure Computing Networks


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


Re: about MySQL install

2007-03-18 Thread Chris
Frank wrote:
 hi,
 i have questions about install MySQL in FreeBSD 6.0, after type # make it 
 would be display like bottom.
 
 make all-recursive
 Making all in .
 Making all in include
 make all-am
 Making all in Docs
 Making all in cmd-line-utils
 Making all in libedit
 Making all in sql-common
 Making all in pstack
 Making all in aout
 Making all in strings
 Making all in mysys
 Making all in dbug
 /bin/sh ../libtool --preserve-dup-deps --tag=CC --mode=link gcc -O3 
 -DDBUG_OFF -o factorial my_main.o factorial.o libdbug.a
 ../mysys/libmysys.a ../strings/libmystrings.a -lc_r -lcrypt -lm -lc_r
 gcc -O3 -DDBUG_OFF -o factorial my_main.o factorial.o  libdbug.a 
 ../mysys/libmysys.a ../strings/libmystrings.a -lcrypt -lm
 ../mysys/libmysys.a(my_thr_init.o) (.text+0x5f): In function 
 'my_thread_global_end':
 :undefined reference to 'pthread_cond_timedwait'
 *** Error code 1
 
 Stop in /usr/home/frank/mysql-5.0.33/dbug.
 *** Error code 1
 
 Stop in /usr/home/frank/mysql-5.0.33.
 *** Error code 1
 
 Stop in /usr/home/frank/mysql-5.0.33.
 
 
 P.S I'm a new, so i don't know how to solve this problem hope you can solve 
 for me easily.
 
 
From Frank

Why aren't you installing from either the ports tree or package?
If you are using a downloaded tarball (and it seems as you are) You
pretty much are on your own.

The packages and ports are there for you to use. They are proven to work
with little to no issues.

Its my philosophy (taken from the old NT 4 days) if it aint on the HAL,
you're SOL.

Translated - why recreate the wheel when you have the automobile at your
disposal.

-- 
Best regards,
Chris

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


Re: about MySQL install

2007-03-18 Thread usleepless

Frank,

On 3/18/07, Frank [EMAIL PROTECTED] wrote:

hi,
i have questions about install MySQL in FreeBSD 6.0, after type # make
it would be display like bottom.

make all-recursive
Making all in .
Making all in include
make all-am
Making all in Docs
Making all in cmd-line-utils
Making all in libedit
Making all in sql-common
Making all in pstack
Making all in aout
Making all in strings
Making all in mysys
Making all in dbug
/bin/sh ../libtool --preserve-dup-deps --tag=CC --mode=link gcc -O3
-DDBUG_OFF -o factorial my_main.o factorial.o libdbug.a
../mysys/libmysys.a ../strings/libmystrings.a -lc_r -lcrypt -lm -lc_r
gcc -O3 -DDBUG_OFF -o factorial my_main.o factorial.o  libdbug.a
../mysys/libmysys.a ../strings/libmystrings.a -lcrypt -lm
../mysys/libmysys.a(my_thr_init.o) (.text+0x5f): In function
'my_thread_global_end':
:undefined reference to 'pthread_cond_timedwait'
*** Error code 1

Stop in /usr/home/frank/mysql-5.0.33/dbug.
*** Error code 1

Stop in /usr/home/frank/mysql-5.0.33.
*** Error code 1

Stop in /usr/home/frank/mysql-5.0.33.


P.S I'm a new, so i don't know how to solve this problem hope you can solve
for me easily.


no problem.

you need to install one of the mysql-ports from /usr/ports/databases

regards,

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


Re: about MySQL install

2007-03-18 Thread Minnesota Slinky

On Mar 18, 2007, at 8:21 AM, Frank wrote:



Stop in /usr/home/frank/mysql-5.0.33.


P.S I'm a new, so i don't know how to solve this problem hope you  
can solve for me easily.




From Frank


Frank,

Install MySQL from Ports - it'll save you a lot of headache.

su root
cd /usr/ports/databases/mysql51-server
make install clean

Edit /etc/rc.conf to add:
mysql_enable=YES

execute:
/usr/local/etc/rc.d/mysql-server.sh start

Should be good to go after that!
-
Eric F Crist
Secure Computing Networks


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


Re: recommend console email client?

2007-03-18 Thread Jeffrey Goldberg

On Mar 18, 2007, at 9:21 AM, Zhang Weiwu wrote:


alpine = said to support charset conversion but cannot find any link
for downloading it.


The link for downloading alpine is deliberately not made public.   
That is because alpine is considered alpha and UW seems to want  
everyone who is testing it to be a member of the alpine alpha testers  
mailing list.  You can join the list at


  http://mailman1.u.washington.edu/mailman/listinfo/alpine-alpha

and you'll get the location of the latest alpine source, with many  
reminders that it is alpha.


Alpine has the same look and feel of pine.

-j

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


Re: recommend console email client?

2007-03-18 Thread Zhang Weiwu

Jeffrey Goldberg 写道:

On Mar 18, 2007, at 9:21 AM, Zhang Weiwu wrote:


alpine = said to support charset conversion but cannot find any link
for downloading it.


The link for downloading alpine is deliberately not made public. That 
is because alpine is considered alpha and UW seems to want everyone 
who is testing it to be a member of the alpine alpha testers mailing 
list. You can join the list at


http://mailman1.u.washington.edu/mailman/listinfo/alpine-alpha

and you'll get the location of the latest alpine source, with many 
reminders that it is alpha.


Alpine has the same look and feel of pine.

-j

Al, okay, I'll join that list and hope alpine is as many other 
opensource software that is pretty mature on its 0.8 version.


But, I'd think Washington University better take an approach like 
release early, release often. That might help. Off topic though.

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


Re: installing i386.rpm files on FBSD-6.1 amd64

2007-03-18 Thread Boris Samorodov
Please, please, don't top-post and keep freebsd-questions@ as CC
(there are a better chances you get an answer). And for questions
about linux applications there is a more relevant ML:
[EMAIL PROTECTED]

On Sun, 18 Mar 2007 14:59:15 + Luiz A B de Campos wrote:

 All Kay, Boris...where shall I download linux_base-fc4?  I've tried
 freebsd ports (latest) but there is no such file! Keeping info

FreeBSD has very good documentation. The FreeBSD Handbook is one of the
wonderful books. It has a bunch of useful information. It seems to me
that you need this chapter:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports.html

HTH

 On 3/18/07, Boris Samorodov [EMAIL PROTECTED] wrote:
 
  [top-posting reformatted, CC: to freebsd-questions@ restored]
 
  On Sat, 17 Mar 2007 22:28:38 + Luiz A B de Campos wrote:
   On 3/11/07, Boris Samorodov [EMAIL PROTECTED] wrote:
On Sun, 11 Mar 2007 12:44:38 + Luiz A B de Campos wrote:
   
 Is it possible to do this? I've already installed linux_base-8 and
  rpm
ports
It is recommended to use linux_base-fc4 nowadays.
 but when I try to install a i386.rpm file the system claims for
  some
libs
 (libpopt, libtiff, glibc.so.6 , libxml, bash)
All those apps are already at the ports tree. Which app do you need to
run? If it presents at the ports tree one should use ports/packages to
install.
   Thanks, Boris!  I need to install one i386.rpm driver for my Canon
  Ip1600
   printer and it's  a usb printer... and maybe flashplayer!
 
  Well, it's not clear to me if you succeeded in installing them? ;-)


WBR
-- 
Boris Samorodov (bsam)
Research Engineer, http://www.ipt.ru Telephone  Internet SP
FreeBSD committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


export nfs to a host with dynamic IP address

2007-03-18 Thread Zhang Weiwu
Maybe this is not possible, but can I export NFS share to a host that
have dynamic IP address?

My office server export an NFS share folder to several local desktop
computers. I often need to access these NFS share from my home computer,
which have dynamic IP address. I do have a fixed domain name,
myhome.ods.org always have a A dns record pointing to my home computer.

Having dynamic IP address never caused a problem for me because, as I
said I have fixed domain name (updated with ez-ipupdate) but when it
comes to NFS it is a problem. If I write my fixed domain name in
/etc/export I wouldn't be able to mount that share. NFS server seems to
check the IP address that wish to connect to it, reverse lookup its
domain name, and compare it with what's written in /etc/exports. For me
it doesn't work because my dynamic IP address cannot reverse resolve to
my fixed domain address.

So, is there a network file system that can work for my case? I never
tried NFS SSL authentication things because after a google search it
looks quit complex to install and configure: but if that's the only way
to go I'll start to learn it. I also know samba can provide
authentication so I don't have to rely on IP address to control access.
However I never set up samba server before: also I would do it if that's
the only way to go.

Any suggestions? Thanks a lot in advance.

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


Re: burncd makes disk that is unmountable

2007-03-18 Thread Dieter
  AMD64 running 6.0
  Drive is:
acd0: DVDR HL-DT-ST DVDRAM GSA-4160B/A301 at ata0-master UDMA66
  Media is CD-RW
  
  Burned a 6.2 disk using:
burncd data 6.2-RELEASE-amd64-disc1.iso fixate
  as suggested in

  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html
 
 I don't remember the details, but when I got to 6.1, I found that
 my old burncd parameters would not work and I had to change them.
 
 I don't remember the details, but I settled upon:
   /usr/sbin/burncd -v -f /dev/acd0 data FreeBSD62-disc1.iso fixate
 which seems to work find.  Both boots and mounts.  That doesn't look
 materially different from yours, but...

It is defaulting to the correct device.

  Seemed to go okay.  Disk boots, but I cannot mount it:
  
  fstab entry:
/dev/acd0   /cdrom  cd9660  ro,noauto   0 
0
  
  Yields:
g_vfs_done():acd0[READ(offset=32768, length=2048)]error = 5
  
  Tried it with and without fixate, neither will mount.
  
  Other iso disks (probably burned using NetBSD) mount fine.
  UFS DVD+RW disks burned under FreeBSD using growisofs mount fine.
  
  Given the error message, I assume that the block/sector at 32768 
  isn't
  getting written.

New data:  NetBSD mounts both disks (with and without fixate) just 
fine.
So perhaps the problem is with FreeBSD's mount rather than burncd?
  
   Typing in mount yields what options with NetBSD?
  
  Command is:
  
   mount /cdrom
  
  NetBSD's fstab entry:
  
  /dev/cd0a   /cdrom  cd9660  ro,noauto   0  0
  
  Identical to FreeBSD's entry, except for the device name and perhaps 
  whitespace.
  
  I now have FreeBSD 6.2 up and limping, and it fails the same way as 6.0.
  Also tried another OS, but the stupid penguin can't even find the drive.

Garrett writes:

 I hate to slam burncd because it does the job, but I've always found
 cdrecord / mkisofs to be a better set of software for burning CDs than
 burncd..

I installed cdrecord on FreeBSD 6.2.  Result:

  cdrecord dev=/dev/acd0 -data 6.2-RELEASE-amd64-disc1.iso

  cdrecord: No write mode specified.
  cdrecord: Asuming -tao mode.
  cdrecord: Future versions of cdrecord may have different drive dependent 
defaults.
  cdrecord: Continuing in 5 seconds...
  Cdrecord-Clone 2.01 (amd64-unknown-freebsd6.2) Copyright (C) 1995-2004 J on 
this OS. Cannot open SCSI driver.

Then I installed cdrecord on NetBSD 3.0.1.  It happily burned
6.2-RELEASE-amd64-disc1.iso and 6.2-RELEASE-amd64-disc2.iso.
NetBSD will mount both.  FreeBSD 6.2 will mount both.

So:
There is something different on a CD burned by cdrecord and
a CD burned by burncd.

There is something different between FreeBSD mounting a CD
containing an ISO and NetBSD mounting the same CD.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


libstdc++6 dependency?

2007-03-18 Thread Milan Knizek
Hello List!

enblend-3.0 (program for seamless stitching of pre-aligned pictures, supported 
by hugin) requires libstdc++6 for large file support.

I have searched ports and sources (/usr/src/) and have not found anything else 
than libstdc++.

Is there a way how to get libstdc++6 on FreeBSD-6.2 STABLE?

Thanks,
-- 
Milan Knížek
http://milan-knizek.net/
e-mail knizek {na} volny {v} cz
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: libstdc++6 dependency?

2007-03-18 Thread Kris Kennaway
On Sun, Mar 18, 2007 at 07:40:15PM +0100, Milan Knizek wrote:
 Hello List!
 
 enblend-3.0 (program for seamless stitching of pre-aligned pictures, 
 supported 
 by hugin) requires libstdc++6 for large file support.
 
 I have searched ports and sources (/usr/src/) and have not found anything 
 else 
 than libstdc++.
 
 Is there a way how to get libstdc++6 on FreeBSD-6.2 STABLE?

What exactly is libstdc++6 and why do you think your software needs
it?

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


Re: libstdc++6 dependency?

2007-03-18 Thread Dan Nelson
In the last episode (Mar 18), Milan Knizek said:
 enblend-3.0 (program for seamless stitching of pre-aligned pictures,
 supported by hugin) requires libstdc++6 for large file support.

libstdc++ is a support library for gcc, and doesn't have anything to do
with large files.

Are you trying to run a Linux binary, maybe?  If so, try installing the
linux_base-fc4 port, which installs a
/usr/compat/linux/usr/lib/libstdc++.so.6 file.

 I have searched ports and sources (/usr/src/) and have not found
 anything else than libstdc++.
 
 Is there a way how to get libstdc++6 on FreeBSD-6.2 STABLE?

-- 
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: libstdc++6 dependency?

2007-03-18 Thread Milan Knizek
On Sunday 18 March 2007 20:39, Dan Nelson wrote:
 In the last episode (Mar 18), Milan Knizek said:
  enblend-3.0 (program for seamless stitching of pre-aligned pictures,
  supported by hugin) requires libstdc++6 for large file support.

 libstdc++ is a support library for gcc, and doesn't have anything to do
 with large files.

You are right, I mixed that with another requirement (..for 300Mpx and more, 
enblend requires libtiff-devel with large file support and libstdc++6...)


 Are you trying to run a Linux binary, maybe?  If so, try installing the
 linux_base-fc4 port, which installs a
 /usr/compat/linux/usr/lib/libstdc++.so.6 file.

I googled a bit and found that gcc-4.1 has this version of library (it is part 
of the ports, so I may try to link with it).

Thanks,
Milan

-- 
Milan Knížek
http://milan-knizek.net/
e-mail knizek {na} volny {v} cz
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: recommend console email client?

2007-03-18 Thread Giorgos Keramidas
On 2007-03-18 22:21, Zhang Weiwu [EMAIL PROTECTED] wrote:
 Dear list
 For years I am not yet satisfied with ANY console email client, though
 I have tried quite a few. My requirement is actually very simple: a
 email client must be able to:
 
  1. do the automatic charset conversion, so if I got an email in
 GB18030 charset, it display correct on my UTF-8 console;
  2. is able to connect to IMAP server, copy sent emails to
 INBOX.Sent folder and let me browse IMAP folders;
  3. is able to look up contact information (including telephone
 number) by LDAP;
 
 mutt = charset conversion is not 100% correct (e.g. cannot display
 double-width ideograph correctly when it's on the edge); poor ldap
 support and me not knowing how to keep sent message in INBOX/Sent
 pine = no charset conversion at all and Washington University don't
 seems wish to add this feature;
 alpine = said to support charset conversion but cannot find any link
 for downloading it.
 
 Maybe there are good applications that I didn't try yet?

Bearing in mind that you have relatively strict requirements
(but, nevertheless, quite reasonable) for multibyte support, it
may be worth considering one of the email clients bundled with or
supported by GNU Emacs.

I have used the Gnus news and email reader with varying levels of
success to read and post multibyte, UTF-8 and internationalized
messages.  My impression from using Gnus to read and post
multibyte text was that it works quite fine for my own needs.

Running Emacs in an X11 desktop, with proper UTF-8 enabled fonts,
will take care automatically of the display issues you may be
having.  The display support of Emacs is, to the best of my
knowledge, simply *excellent* for UTF-8 text.

Connecting to an IMAP server can be done for Emacs-based mailers
in a number of ways:

  a) Through Gnus itself.  Gnus supports various access modes for
 reaching out and pulling your email messages.  IMAP is just
 one of them.

  b) Using fetchmail.  You can pull email messages with
 fetchmail, store them in local mailboxes and point Gnus to
 the local folders.  This is my preferred method, because I'm
 not always connected online.  I even use the off-line mode
 of Gnus for NNTP reading  posting.

I am not sure how well Gnus and Emacs can support your third
requirement, about database lookup through LDAP.  There are
various plug-ins for database lookups with Emacs and Gnus, but I
haven't used them.  The Emacs Wiki[1] may help you here.  The
friendly folks at the #emacs IRC channel on FreeNode are a good
bunch of people to ask too.

[1] http://www.emacswiki.org/cgi-bin/wiki

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


Re: recommend console email client?

2007-03-18 Thread Giorgos Keramidas
On 2007-03-18 22:29, Giorgos Keramidas [EMAIL PROTECTED] wrote:
 On 2007-03-18 22:21, Zhang Weiwu [EMAIL PROTECTED] wrote:
  For years I am not yet satisfied with ANY console email client, [...]
 [...]
 Running Emacs in an X11 desktop, with proper UTF-8 enabled fonts,
 will take care automatically of the display issues you may be
 having.  The display support of Emacs is, to the best of my
 knowledge, simply *excellent* for UTF-8 text.

Minor correction above, because you explicitly mentioned 'console mode'.
By 'in an X11 desktop', I meant in an xterm window with UTF-8 fonts and
in UTF-8 mode, of course [...]

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


Re: Can't see ATA drives with new install

2007-03-18 Thread jlc415

My kernel config already includes all that.

Just installed OpenBSD, and the other drives work just fine. I guess
that's my OS.

Quite disappointing that FreeBSD is actually behind in terms of
hardware support, particularly for a relatively popular motherboard.

On 3/18/07, Garrett Cooper [EMAIL PROTECTED] wrote:

[EMAIL PROTECTED] wrote:
 It's an Intel DG965WH; Core 2 Duo CPU.

 On 3/17/07, Garrett Cooper [EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:
  I've just installed 6.2/amd64 on a system with standard IDE as well as
  SATA; I've got three drives: an old linux IDE hard drive (that I can't
  modify), a CD/DVD drive on the IDE bus, and a new SATA drive where
  I've just installed/am installing FreeBSD.
 
  I can boot from any of the drives: the linux install doesn't have the
  right drivers so it's not usable, but the MB definitely sees the
  drive. I can boot from the FreeBSD boot CD, as well, and that's what I
  used to install onto the SATA drive.
 
  The trouble is that when I boot from the SATA drive I can't see either
  of the other two drives. /dev contains the entries for the main SATA
  drive, but nothing for anything else: no /dev/acd or /dev/cd; no other
  hard drives; nothing. Looked through dmesg but didn't see anything
  related to the cd drive, although I really don't know what I'm looking
  for.
 
  I wondered whether the stock kernel maybe just didn't include the
  right drivers, so added
 
  device atapicam
  device scbus
  device cd
  device pass
 
  to GENERIC, but I still can't see the dvd drive.
 
  What should I be looking for? Is there more robust documentation on
  dealing with ATA devices somewhere?
 
  Any help much appreciated.
 
  -mike

 Mike,
 What's your motherboard maker?
 -Garrett

Your motherboard (and most importantly the chipset it uses) are recent,
so 6.2 might not have hardware support quite yet.. 7-CURRENT might be
your next best bet if the following doesn't work.

Here's what I have for my kernel config though for the device drivers
section, related to PATA/CD/DVD stuff:

# ATA and ATAPI devices
device  ata
device  atadisk # ATA disk drives
device  ataraid # ATA RAID drives
device  atapicd # ATAPI CDROM drives
device  atapifd # ATAPI floppy drives
device  atapicam
options ATA_STATIC_ID   # Static device numbering

# SCSI peripherals
device  scbus   # SCSI bus (required for SCSI)
device  ch  # SCSI media changers
device  da  # Direct Access (disks)
device  cd  # CD
device  pass# Passthrough device (direct SCSI access)

Cheers,
-Garrett
___
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: Converting from ata-raid to gmirror

2007-03-18 Thread Toomas Aas

On January 30th, I wrote:

I'm currently running FreeBSD 6.2-RELEASE (amd64) on a system based on 
Intel SE7230NH1-E motherboard, which has Intel ICH7R integrated 
softraid. The machine has two 500 GB drives which are configured as 
RAID1 in BIOS. Unfortunately, this setup seems to have some stability 
issues which I can't figure out how to solve. Specifically, when the 
storage subsystem is put under heavy load (such as doing nightly 
backups) the kernel starts spitting out horrible error messages such as:


FAILURE - out of memory in ata_raid_init_request
g_vfs_done():ar0s1f[WRITE(offset=8091172864, length=16384)]error = 5
FAIg_vfs_done():ar0LURE - out of memsory in ata_raid_1init_reqfu[eWsRItTE(o
ffset=8091F1A8I9LU2R4E8 ,-  oleuntg tohf= 16m3e8m4o)ry]e rirno ra t=a 5
_raid_init_requestg
 vfs_done():ar0s1f[WRITE(offsFAeItL=UR8E0 9-1 2o05u6t3 2o,f 
lmeengmtoh=ry1 6i3n8 4a)t]ae_rrraoird _=in i5t


If it looks like garbage, then yes, this is how it appears in 
/var/log/messages. I'm seriously afraid that similar corruption is 
sneaking into important user files.


Only thing I can think of is converting this setup from BIOS-based RAID 
to gmirror. This would involve, I think, modifying /etc/fstab so that it 
references ad4 instead of ar0, then permanently breaking the mirror in 
BIOS, booting up the system with single disk and then basically 
following the gmirror chapter in the handbook. Correct?


I'm also a little uncertain about permanently breaking the mirror 
part. I've read all the motherboard and LSI docs I can find and this 
topic isn't covered anywhere. 


Well, finally I could summon up enough courage to perform this procedure 
on a production server (such as it is). To break the mirror, I just went 
to motherboard BIOS (not the BIOS-based RAID utility) and changed the 
'Configure SATA as' setting from 'RAID' to 'IDE'. Generally everything 
seems to have gone OK. The system now runs from /dev/mirror/gm0, which 
consists of ad4 and ad6. However, the kernel still sees the old ar0 
array and complains that it's broken. Do I care, or should I just remove 
'device ataraid' from kernel configuration?


kernel: ar0: WARNING - mirror protection lost. RAID1 array in DEGRADED mode
kernel: ar0: 476772MB LSILogic v3 MegaRAID RAID1 status: DEGRADED
kernel: ar0: disk0 READY (master) using ad4 at ata2-master
kernel: ar0: disk1 DOWN no device found for this subdisk

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


Re: Flash with Firefox 2

2007-03-18 Thread NetOpsCenter

Pietro Cerutti wrote:


On 3/16/07, Jay Chandler [EMAIL PROTECTED] wrote:


I can't be the first person to ask this, but a Google and a cursory
search of the archives don't lend me much in the way of hints.

Anyone have a link or an explanation of how to get the Flash plugin
working within Firefox?  I've gotten Java up already, but Flash
continues to elude me...



I'm currently running 6.2-STABLE, firefox-2.0.0.2,1,
linux-flashplugin-7.0r69 and linuxpluginwrapper-20051113_7 and flash
plugin works well on most of the websites I've been.

Here's the relevant part of my /etc/libmap.conf
[/usr/local/lib/npapi/linux-flashplugin/libflashplayer.so]
libpthread.so.0 libpthread.so.2
libdl.so.2pluginwrapper/flash7.so
libz.so.1 libz.so.3
libm.so.6 libm.so.4
libc.so.6 pluginwrapper/flash7.so

Don't forget to add the symbolic links required:

# cd /usr/local/lib/browser_plugins
# ln -s /usr/local/lib/npapi/linux-flashplugin/flashplayer.xpt .
# ln -s /usr/local/lib/npapi/linux-flashplugin/libflashplayer.so .

Hope this helps,



--
Jay Chandler
Network Administrator
Chapman University





Aloha.

I've been following this thread since I have had many problems in the 
past with FireFox and Flash.


I'm now running FreeBSD 7.0 CURRENT 200701 on a desktop box and loaded 
the linux flash and it works fine so far with Firefox and Mozilla on 
this box. It is a ASUS mobo - with a dual AMD 64 / 4200 clock 

This install is way better than any of the ones I have experienced with 
FreeBSD before. I have used FreeBSD  since 3.* early 1990's  if memory 
serves me.


--

~Al Plant - Honolulu, Hawaii -  Phone:  808-284-2740
 + http://hawaiidakine.com + http://freebsdinfo.org + [EMAIL PROTECTED] +
 + http://internetohana.org   - Supporting - FreeBSD 6.* - 7.* +
All that's really worth doing is what we do for others.- Lewis Carrol


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


Downgrading to PHP 5.1.4

2007-03-18 Thread bsd

Hello,

I am using the latest BSD 6.2 with a Apache 1.3.x and a PHP 5.2.1

For some reason out of my control we need to run an app that will use  
PHP 5.1.4 //



I would like to know if there is a simple way to do that using the  
ports.

Knowing that PHP version using BSD 6.2 have always been 5.2 or 5.2.1 ??


Any idea ??



«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§

Gregober --- PGP ID -- 0x1BA3C2FD
bsd @at@ todoo.biz

«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§


P Please consider your environmental responsibility before printing  
this 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: Downgrading to PHP 5.1.4

2007-03-18 Thread Andrew Pantyukhin

On 3/19/07, bsd [EMAIL PROTECTED] wrote:

Hello,

I am using the latest BSD 6.2 with a Apache 1.3.x and a PHP 5.2.1

For some reason out of my control we need to run an app that will use
PHP 5.1.4 //


Please excuse the sarcasm but do you intend to give free
root access to the entire world?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Downgrading to PHP 5.1.4

2007-03-18 Thread Boris Samorodov
On Sun, 18 Mar 2007 23:26:22 +0100 bsd wrote:

 I am using the latest BSD 6.2 with a Apache 1.3.x and a PHP 5.2.1

 For some reason out of my control we need to run an app that will use
 PHP 5.1.4 //

 I would like to know if there is a simple way to do that using the
 ports.
 Knowing that PHP version using BSD 6.2 have always been 5.2 or 5.2.1 ??

 Any idea ??

Seems that you need ports-mgmt/portdowngrade.


WBR
-- 
Boris Samorodov (bsam)
Research Engineer, http://www.ipt.ru Telephone  Internet SP
FreeBSD committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Downgrading to PHP 5.1.4

2007-03-18 Thread Ivan Voras
bsd wrote:
 Hello,
 
 I am using the latest BSD 6.2 with a Apache 1.3.x and a PHP 5.2.1
 
 For some reason out of my control we need to run an app that will use
 PHP 5.1.4 //
 
 I would like to know if there is a simple way to do that using the ports.

If you use cvsup to update your ports tree, fix the date in the
ports-sup file to when the version you want was present and update again.



signature.asc
Description: OpenPGP digital signature


Re: libstdc++6 dependency?

2007-03-18 Thread Kris Kennaway
On Sun, Mar 18, 2007 at 09:16:44PM +0100, Milan Knizek wrote:
 On Sunday 18 March 2007 20:39, Dan Nelson wrote:
  In the last episode (Mar 18), Milan Knizek said:
   enblend-3.0 (program for seamless stitching of pre-aligned pictures,
   supported by hugin) requires libstdc++6 for large file support.
 
  libstdc++ is a support library for gcc, and doesn't have anything to do
  with large files.
 
 You are right, I mixed that with another requirement (..for 300Mpx and more, 
 enblend requires libtiff-devel with large file support and libstdc++6...)
 
 
  Are you trying to run a Linux binary, maybe?  If so, try installing the
  linux_base-fc4 port, which installs a
  /usr/compat/linux/usr/lib/libstdc++.so.6 file.
 
 I googled a bit and found that gcc-4.1 has this version of library (it is 
 part 
 of the ports, so I may try to link with it).

You still seem to be confused, or at least not explaining your problem
in a way that makes sense.

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


Simple sendmail.cf question

2007-03-18 Thread Bob Applegate
I'm trying to figure out how to build sendmail.cf from
the m4 files.  The instructions located in
/usr/src/contrib/sendmail/cf/README are a bit vague.

Can someone give me the secret recipe for doing this?
I've always hand-edited the sendmail.cf file, but doing
the work with macros looks so much easier.  I just need
to find out how to properly do it.

Thanks

Bob


___
NOCC, http://nocc.sourceforge.net


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


Re: Simple sendmail.cf question

2007-03-18 Thread Derek Ragona
Don't build them there.  There are sample .mc files and a make file in 
/etc/mail.  You will find one you can copy for your system, and make 
whatever customizations you need.  There is also one for the submit.mc too.


-Derek

At 06:01 PM 3/18/2007, Bob Applegate wrote:

I'm trying to figure out how to build sendmail.cf from
the m4 files.  The instructions located in
/usr/src/contrib/sendmail/cf/README are a bit vague.

Can someone give me the secret recipe for doing this?
I've always hand-edited the sendmail.cf file, but doing
the work with macros looks so much easier.  I just need
to find out how to properly do it.

Thanks

Bob


___
NOCC, http://nocc.sourceforge.net


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

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

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


Re: Can't see ATA drives with new install

2007-03-18 Thread Garrett Cooper

[EMAIL PROTECTED] wrote:

My kernel config already includes all that.

Just installed OpenBSD, and the other drives work just fine. I guess
that's my OS.

Quite disappointing that FreeBSD is actually behind in terms of
hardware support, particularly for a relatively popular motherboard.

On 3/18/07, Garrett Cooper [EMAIL PROTECTED] wrote:

[EMAIL PROTECTED] wrote:
 It's an Intel DG965WH; Core 2 Duo CPU.

 On 3/17/07, Garrett Cooper [EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:
  I've just installed 6.2/amd64 on a system with standard IDE as 
well as
  SATA; I've got three drives: an old linux IDE hard drive (that I 
can't

  modify), a CD/DVD drive on the IDE bus, and a new SATA drive where
  I've just installed/am installing FreeBSD.
 
  I can boot from any of the drives: the linux install doesn't have 
the

  right drivers so it's not usable, but the MB definitely sees the
  drive. I can boot from the FreeBSD boot CD, as well, and that's 
what I

  used to install onto the SATA drive.
 
  The trouble is that when I boot from the SATA drive I can't see 
either

  of the other two drives. /dev contains the entries for the main SATA
  drive, but nothing for anything else: no /dev/acd or /dev/cd; no 
other

  hard drives; nothing. Looked through dmesg but didn't see anything
  related to the cd drive, although I really don't know what I'm 
looking

  for.
 
  I wondered whether the stock kernel maybe just didn't include the
  right drivers, so added
 
  device atapicam
  device scbus
  device cd
  device pass
 
  to GENERIC, but I still can't see the dvd drive.
 
  What should I be looking for? Is there more robust documentation on
  dealing with ATA devices somewhere?
 
  Any help much appreciated.
 
  -mike

 Mike,
 What's your motherboard maker?
 -Garrett

Your motherboard (and most importantly the chipset it uses) are recent,
so 6.2 might not have hardware support quite yet.. 7-CURRENT might be
your next best bet if the following doesn't work.

Here's what I have for my kernel config though for the device drivers
section, related to PATA/CD/DVD stuff:

# ATA and ATAPI devices
device  ata
device  atadisk # ATA disk drives
device  ataraid # ATA RAID drives
device  atapicd # ATAPI CDROM drives
device  atapifd # ATAPI floppy drives
device  atapicam
options ATA_STATIC_ID   # Static device numbering

# SCSI peripherals
device  scbus   # SCSI bus (required for SCSI)
device  ch  # SCSI media changers
device  da  # Direct Access (disks)
device  cd  # CD
device  pass# Passthrough device (direct SCSI access)

Cheers,
-Garrett


Well, unfortunately that's the price you pay when you run something 
stable. I'm pretty sure 7-CURRENT runs it without any problems.


As a sidenote, sometimes backporting through versions isn't really possible.

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


Re: Simple sendmail.cf question

2007-03-18 Thread Jeffrey Goldberg

You know, I consider your subject line an oxymoron.

On Mar 18, 2007, at 6:01 PM, Bob Applegate wrote:


I'm trying to figure out how to build sendmail.cf from
the m4 files.  The instructions located in
/usr/src/contrib/sendmail/cf/README are a bit vague.

Can someone give me the secret recipe for doing this?
I've always hand-edited the sendmail.cf file, but doing
the work with macros looks so much easier.  I just need
to find out how to properly do it.


Look in /etc/mail.   On my system there is a freebsd.mc and a  
submit.mc.  There is also a Makefile.


  make cf

will generate the .cf files from the .mc files using m4.

Cheers,


-j

--
Jeffrey Goldberghttp://www.goldmark.org/jeff/

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


Re: recommend console email client?

2007-03-18 Thread Garrett Cooper

Zhang Weiwu wrote:

Jeffrey Goldberg 写道:

On Mar 18, 2007, at 9:21 AM, Zhang Weiwu wrote:


alpine = said to support charset conversion but cannot find any link
for downloading it.


The link for downloading alpine is deliberately not made public. That 
is because alpine is considered alpha and UW seems to want everyone 
who is testing it to be a member of the alpine alpha testers mailing 
list. You can join the list at


http://mailman1.u.washington.edu/mailman/listinfo/alpine-alpha

and you'll get the location of the latest alpine source, with many 
reminders that it is alpha.


Alpine has the same look and feel of pine.

-j

Al, okay, I'll join that list and hope alpine is as many other 
opensource software that is pretty mature on its 0.8 version.


But, I'd think Washington University better take an approach like 
release early, release often. That might help. Off topic though.


Two things, alpine is probably being released under a different 
semi-proprietary license that all UW software gets released under, 
including pine, so it's definitely not BSD licensed or (L)GPL licensed 
by any means.


The UW also plays it safe like many institutions and groups that release 
software -- they only release things once they're ready for production 
because they want to work out all the bugs and don't want to negatively 
affect any groups -- within the UW or outside it.


By the way it's not Washington University, it's University of 
Washington; Washington (State) University is one of our rivals -- the 
Cougars :). Not a biggie, just wanted to clarify a bit.


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


sendmail name resolution

2007-03-18 Thread jekillen

Hello:
Where does sendmail look to find out who it is?
Resolve.conf?
It keeps throwing up messages that it cannot
resolve the name localhost, or that is the
way I am interpreting the messages.
FreeBSD v6.2 generic
Thanks in advance;
Jeff K

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


Re: recommend console email client?

2007-03-18 Thread Jeffrey Goldberg

On Mar 18, 2007, at 6:51 PM, Garrett Cooper wrote:


Zhang Weiwu wrote:


Al, okay, I'll join that list and hope alpine is as many other  
opensource software that is pretty mature on its 0.8 version.
But, I'd think Washington University better take an approach like  
release early, release often. That might help. Off topic though.


Two things, alpine is probably being released under a different  
semi-proprietary license that all UW software gets released under,  
including pine, so it's definitely not BSD licensed or (L)GPL  
licensed by any means.


At the moment it is released under a very restrictive license to  
alpha testers, which I why I can't simply post a link to a copy of  
it.  But when it is officially released it will be released under the  
Apache 2.0 license, which will be an improvement over the existing  
pine license.


Note also that UW's imap libraries are released under a very non- 
restrictive license.  So really it's just Pine that's been under  
their peculiar license.


-j


--
Jeffrey Goldberghttp://www.goldmark.org/jeff/

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


Hi,

2007-03-18 Thread rothlee
Hi,

I will be away from the office from March 19 to March 23. Please direct your 
requests and concerns to Raj ([EMAIL PROTECTED]) and Jay ([EMAIL PROTECTED]).

Thanks, 

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


Re: Simple sendmail.cf question

2007-03-18 Thread chuckr
Derek Ragona wrote:
 Don't build them there.  There are sample .mc files and a make file in
 /etc/mail.  You will find one you can copy for your system, and make
 whatever customizations you need.  There is also one for the submit.mc
 too.

Good suggestion, but I think that the fact that there's an extremely
well written (meaning quite well commented, with perfect targets)
Makefile, which will perform, for the user who might be innocent of
sendmail, all of the more difficult bits.  The Makefile is in
/etc/mail/Makefile, and watchig it in action will show users how to do
those things they might be unaware of.  Probably ought to read the
README in that directory, also.
 -Derek

 At 06:01 PM 3/18/2007, Bob Applegate wrote:
 I'm trying to figure out how to build sendmail.cf from
 the m4 files.  The instructions located in
 /usr/src/contrib/sendmail/cf/README are a bit vague.

 Can someone give me the secret recipe for doing this?
 I've always hand-edited the sendmail.cf file, but doing
 the work with macros looks so much easier.  I just need
 to find out how to properly do it.

 Thanks

 Bob


 ___
 NOCC, http://nocc.sourceforge.net


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

 -- 
 This message has been scanned for viruses and
 dangerous content by MailScanner, and is
 believed to be clean.
 MailScanner thanks transtec Computers for their support.


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


Re: recommend console email client?

2007-03-18 Thread Zhang Weiwu
On Sun, 2007-03-18 at 22:29 +0200, Giorgos Keramidas wrote:
 Bearing in mind that you have relatively strict requirements
 (but, nevertheless, quite reasonable) for multibyte support, it
 may be worth considering one of the email clients bundled with or
 supported by GNU Emacs.

Thanks very much for your detailed explanation; thanks a lot for your
time writing this. Given that my requirement is both reasonable and high
level, I believe that shows Asian people generally participated this
area of development relatively lesser than western people. Again purely
free software looks a little bit better than their non-free alternative
(mutt perform better on Chinese text than pine, though still has fault).

I'll try your suggestions later. Thanks a lot!

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


RE: Error Compile Kernel

2007-03-18 Thread Toan. Bach Quang Bao
Dear Kris,

I'm sorry,

I have install FreeBSD
# uname -an
FreeBSD freebsd 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Sat Mar 17 11:06:39
ICT 2007 [EMAIL PROTECTED]:/usr/src/sys/i386/compile/GENERIC  i386

After I install LVS http://dragon.linux-vs.org/~dragonfly/

wget
http://dragon.linux-vs.org/~dragonfly/software/ipvs_freebsd-0.4.0.tar.gz

After I install with guide:

1.  Patch the FreeBSD kernel:
  cp patch/5.4-RELEASE/* /usr/src;
  cd /usr/src;
  patch -p0  uipc_socket.c.patch 
  patch -p0  ip_input.c.patch
  patch -p0  socketvar.h.patch
  patch -p0  sys_conf_options.patch
  patch -p0  sys_i386_conf_GENERIC.patch 
2.  Rebuilding FreeBSD kernel:
  cd /usr/src/sys/arch/i386/conf;
  config GENERIC;
  cd ../compile/GENERIC;
  make depend;
  make;
  make install;

And then:

# make
Have error:

linking kernel.debug
ip_input.o(.text+0x200): In function `ip_init':
../../../netinet/ip_input.c:312: undefined reference to
`nf_sockopt_init'
*** Error code 1

Have a good day.
Please help me. :)

Thanks  Best Regard,

Bach Quang Bao Toan

System Engineer
-Original Message-
From: Kris Kennaway [mailto:[EMAIL PROTECTED] 
Sent: Saturday, March 17, 2007 12:20 PM
To: Toan. Bach Quang Bao
Cc: freebsd-questions@freebsd.org
Subject: Re: Error Compile Kernel

On Sat, Mar 17, 2007 at 11:35:47AM +0700, Toan. Bach Quang Bao wrote:

 ip_input.o(.text+0x200): In function `ip_init':
 
 ../../../netinet/ip_input.c:312: undefined reference to
 `nf_sockopt_init'

You forgot to mention what version of FreeBSD you are trying to
compile, but I can't find any remotely similar function call in that
file (or in the entire kernel) in either 6.x or 7.x.

Are you sure this isn't a local modification you made?

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


Re: Flash with Firefox 2

2007-03-18 Thread FreeBSD WickerBill

On 3/18/07, NetOpsCenter [EMAIL PROTECTED] wrote:


Pietro Cerutti wrote:

 On 3/16/07, Jay Chandler [EMAIL PROTECTED] wrote:

 I can't be the first person to ask this, but a Google and a cursory
 search of the archives don't lend me much in the way of hints.

 Anyone have a link or an explanation of how to get the Flash plugin
 working within Firefox?  I've gotten Java up already, but Flash
 continues to elude me...


 I'm currently running 6.2-STABLE, firefox-2.0.0.2,1,
 linux-flashplugin-7.0r69 and linuxpluginwrapper-20051113_7 and flash
 plugin works well on most of the websites I've been.

 Here's the relevant part of my /etc/libmap.conf
 [/usr/local/lib/npapi/linux-flashplugin/libflashplayer.so]
 libpthread.so.0 libpthread.so.2
 libdl.so.2pluginwrapper/flash7.so
 libz.so.1 libz.so.3
 libm.so.6 libm.so.4
 libc.so.6 pluginwrapper/flash7.so

 Don't forget to add the symbolic links required:

 # cd /usr/local/lib/browser_plugins
 # ln -s /usr/local/lib/npapi/linux-flashplugin/flashplayer.xpt .
 # ln -s /usr/local/lib/npapi/linux-flashplugin/libflashplayer.so .

 Hope this helps,


 --
 Jay Chandler
 Network Administrator
 Chapman University



Aloha.

I've been following this thread since I have had many problems in the
past with FireFox and Flash.

I'm now running FreeBSD 7.0 CURRENT 200701 on a desktop box and loaded
the linux flash and it works fine so far with Firefox and Mozilla on
this box. It is a ASUS mobo - with a dual AMD 64 / 4200 clock

This install is way better than any of the ones I have experienced with
FreeBSD before. I have used FreeBSD  since 3.* early 1990's  if memory
serves me.

--

~Al Plant - Honolulu, Hawaii -  Phone:  808-284-2740
  + http://hawaiidakine.com + http://freebsdinfo.org + [EMAIL PROTECTED] +
  + http://internetohana.org   - Supporting - FreeBSD 6.* - 7.* +
All that's really worth doing is what we do for others.- Lewis Carrol


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



Which version of flash are you using on FreeBSD 7 CURRENT ?

I'm using 6.1 p11 FF 2.0.0.2 + Flash 7 from ports and rarely have any
crashes

--
--I'm not 'renting' my OS--
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Error Compile Kernel

2007-03-18 Thread Kris Kennaway
On Mon, Mar 19, 2007 at 08:45:16AM +0700, Toan. Bach Quang Bao wrote:
 Dear Kris,
 
 I'm sorry,
 
 I have install FreeBSD
 # uname -an
 FreeBSD freebsd 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Sat Mar 17 11:06:39
 ICT 2007 [EMAIL PROTECTED]:/usr/src/sys/i386/compile/GENERIC  i386
 
 After I install LVS http://dragon.linux-vs.org/~dragonfly/
 
 wget
 http://dragon.linux-vs.org/~dragonfly/software/ipvs_freebsd-0.4.0.tar.gz
 
 After I install with guide:
 
 1.Patch the FreeBSD kernel:
   cp patch/5.4-RELEASE/* /usr/src;
   cd /usr/src;
   patch -p0  uipc_socket.c.patch 
   patch -p0  ip_input.c.patch
   patch -p0  socketvar.h.patch
   patch -p0  sys_conf_options.patch
   patch -p0  sys_i386_conf_GENERIC.patch 
 2.Rebuilding FreeBSD kernel:
   cd /usr/src/sys/arch/i386/conf;
   config GENERIC;
   cd ../compile/GENERIC;
   make depend;
   make;
   make install;
 
 And then:
 
 # make
 Have error:
 
 linking kernel.debug
 ip_input.o(.text+0x200): In function `ip_init':
 ../../../netinet/ip_input.c:312: undefined reference to
 `nf_sockopt_init'
 *** Error code 1
 
 Have a good day.
 Please help me. :)

Pretty clearly those third party patches you installed are intended
for FreeBSD 5.4-RELEASE, not 6.2-RELEASE.  Anyway it is not a FreeBSD
issue.

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


RE: Error Compile Kernel

2007-03-18 Thread Toan. Bach Quang Bao
Dear Kris,

I see, but not install it on FreeBSD 6.2?

If you have a solution, please help me.

Thanks and best regards.

System Engineer
-Original Message-
From: Kris Kennaway [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 19, 2007 9:39 AM
To: Toan. Bach Quang Bao
Cc: Kris Kennaway; freebsd-questions@freebsd.org
Subject: Re: Error Compile Kernel

On Mon, Mar 19, 2007 at 08:45:16AM +0700, Toan. Bach Quang Bao wrote:
 Dear Kris,
 
 I'm sorry,
 
 I have install FreeBSD
 # uname -an
 FreeBSD freebsd 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Sat Mar 17
11:06:39
 ICT 2007 [EMAIL PROTECTED]:/usr/src/sys/i386/compile/GENERIC  i386
 
 After I install LVS http://dragon.linux-vs.org/~dragonfly/
 
 wget

http://dragon.linux-vs.org/~dragonfly/software/ipvs_freebsd-0.4.0.tar.gz
 
 After I install with guide:
 
 1.Patch the FreeBSD kernel:
   cp patch/5.4-RELEASE/* /usr/src;
   cd /usr/src;
   patch -p0  uipc_socket.c.patch 
   patch -p0  ip_input.c.patch
   patch -p0  socketvar.h.patch
   patch -p0  sys_conf_options.patch
   patch -p0  sys_i386_conf_GENERIC.patch 
 2.Rebuilding FreeBSD kernel:
   cd /usr/src/sys/arch/i386/conf;
   config GENERIC;
   cd ../compile/GENERIC;
   make depend;
   make;
   make install;
 
 And then:
 
 # make
 Have error:
 
 linking kernel.debug
 ip_input.o(.text+0x200): In function `ip_init':
 ../../../netinet/ip_input.c:312: undefined reference to
 `nf_sockopt_init'
 *** Error code 1
 
 Have a good day.
 Please help me. :)

Pretty clearly those third party patches you installed are intended
for FreeBSD 5.4-RELEASE, not 6.2-RELEASE.  Anyway it is not a FreeBSD
issue.

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


Re: Flash with Firefox 2

2007-03-18 Thread NetOpsCenter

FreeBSD WickerBill wrote:


On 3/18/07, NetOpsCenter [EMAIL PROTECTED] wrote:



Pietro Cerutti wrote:

 On 3/16/07, Jay Chandler [EMAIL PROTECTED] wrote:

 I can't be the first person to ask this, but a Google and a cursory
 search of the archives don't lend me much in the way of hints.

 Anyone have a link or an explanation of how to get the Flash plugin
 working within Firefox?  I've gotten Java up already, but Flash
 continues to elude me...


 I'm currently running 6.2-STABLE, firefox-2.0.0.2,1,
 linux-flashplugin-7.0r69 and linuxpluginwrapper-20051113_7 and flash
 plugin works well on most of the websites I've been.

 Here's the relevant part of my /etc/libmap.conf
 [/usr/local/lib/npapi/linux-flashplugin/libflashplayer.so]
 libpthread.so.0 libpthread.so.2
 libdl.so.2pluginwrapper/flash7.so
 libz.so.1 libz.so.3
 libm.so.6 libm.so.4
 libc.so.6 pluginwrapper/flash7.so

 Don't forget to add the symbolic links required:

 # cd /usr/local/lib/browser_plugins
 # ln -s /usr/local/lib/npapi/linux-flashplugin/flashplayer.xpt .
 # ln -s /usr/local/lib/npapi/linux-flashplugin/libflashplayer.so .

 Hope this helps,


 --
 Jay Chandler
 Network Administrator
 Chapman University



Aloha.

I've been following this thread since I have had many problems in the
past with FireFox and Flash.

I'm now running FreeBSD 7.0 CURRENT 200701 on a desktop box and loaded
the linux flash and it works fine so far with Firefox and Mozilla on
this box. It is a ASUS mobo - with a dual AMD 64 / 4200 clock

This install is way better than any of the ones I have experienced with
FreeBSD before. I have used FreeBSD  since 3.* early 1990's  if memory
serves me.

--

~Al Plant - Honolulu, Hawaii -  Phone:  808-284-2740
  + http://hawaiidakine.com + http://freebsdinfo.org + [EMAIL PROTECTED] +
  + http://internetohana.org   - Supporting - FreeBSD 6.* - 7.* +
All that's really worth doing is what we do for others.- Lewis Carrol


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



Which version of flash are you using on FreeBSD 7 CURRENT ?

I'm using 6.1 p11 FF 2.0.0.2 + Flash 7 from ports and rarely have any
crashes


Aloha..

Its Flash 7 for linux an this FreeBSD 7.0 box.

--

~Al Plant - Honolulu, Hawaii -  Phone:  808-284-2740
 + http://hawaiidakine.com + http://freebsdinfo.org + [EMAIL PROTECTED] +
 + http://internetohana.org   - Supporting - FreeBSD 6.* - 7.* +
All that's really worth doing is what we do for others.- Lewis Carrol


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


Experience with nVidia Quadro NVS210S and nForce 430 Chipset?

2007-03-18 Thread Greg 'groggy' Lehey
I'm looking at purchasing a motherboard with the Quadro NVS210S and
nForce 430 Chipset (see
http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_detail.php?UID=764),
and I'm wondering if anybody has experience with it.  In particular:

- does the nVidia binary graphics driver support this chip?  I can't
  see it mentioned on the nVidia site.

- how well does the Ethernet NIC work?

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
Finger [EMAIL PROTECTED] for PGP public key.
See complete headers for address and phone numbers.


pgp4N45K1C6Wd.pgp
Description: PGP signature


Re: Error Compile Kernel

2007-03-18 Thread Kris Kennaway
On Mon, Mar 19, 2007 at 09:40:00AM +0700, Toan. Bach Quang Bao wrote:
 Dear Kris,
 
 I see, but not install it on FreeBSD 6.2?
 
 If you have a solution, please help me.

You're going to have to talk to whoever wrote that patch, we can't
help you.

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


IPv4 loopback - solved

2007-03-18 Thread Keith E. Brandt, M.D.
Disregard - I found the 'network_interfaces' line of rc.conf was 
lacking lo0. I added it back in and it seems to be booting correctly.


Sorry for the bandwidth!

Keith

While trying to configure ntp, I discovered that my IPv4 loopback 
was not being configured. I can manually restart it with 'ifconfig 
lo0 add 127.0.0.1', however, it does not survive a reboot.


Here's the output of ipconfig following boot:

rl0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet 192.168.0.100 netmask 0xff00 broadcast 192.168.0.255
ether 00:08:54:dd:65:8d
media: Ethernet autoselect (100baseTX full-duplex)
status: active
plip0: flags=108810POINTOPOINT,SIMPLEX,MULTICAST,NEEDSGIANT mtu 1500
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3
inet6 ::1 prefixlen 128

and after manually configuring:

rl0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet 192.168.0.100 netmask 0xff00 broadcast 192.168.0.255
ether 00:08:54:dd:65:8d
media: Ethernet autoselect (100baseTX full-duplex)
status: active
plip0: flags=108810POINTOPOINT,SIMPLEX,MULTICAST,NEEDSGIANT mtu 1500
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3
inet6 ::1 prefixlen 128
inet 127.0.0.1 netmask 0xff00


What do I need to configure to get it to come up at bootup? Any 
thoughts as to why it disappears?

(I'm running FreeBSD 6.2 stable, downloaded and installed about 3 wks ago).

Keith
(newcomer to FreeBSD)




LtCol Keith E. Brandt, MD, MPH
USAF-NASA Aerospace Medicine Liaison Officer
Johnson Space Center, Houston, Texas
[EMAIL PROTECTED]

Goodbye cruel world that was my home-
  there's cleaner space out here to roam
Put my feet up on the moons of Mars-
  sit back, relax, and count the stars

*This message transmitted with 100% recycled electrons  


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


Tell portupgrade to use passive ftp

2007-03-18 Thread Jeffrey Goldberg
On my perimeter firewall, I default deny outbound traffic.  This cuts  
off fetching using active FTP.  Is there some way that I can tell  
portupgrade to pass the -p flag to fetch?


I know that I can temporarily change my firewall rules, but I think  
that it would be a cleaner solution to just tell portupgrade to not  
use active mode FTP.  (Or maybe fetch itself when it fails with  
active mode ftp should try again with passive).


-j



--
Jeffrey Goldberghttp://www.goldmark.org/jeff/

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


Re: Can't see ATA drives with new install

2007-03-18 Thread Antony Mawer

On 19/03/2007 7:55 AM, [EMAIL PROTECTED] wrote:

My kernel config already includes all that.

Just installed OpenBSD, and the other drives work just fine. I guess
that's my OS.

Quite disappointing that FreeBSD is actually behind in terms of
hardware support, particularly for a relatively popular motherboard.

On 3/18/07, Garrett Cooper [EMAIL PROTECTED] wrote:

[EMAIL PROTECTED] wrote:
 It's an Intel DG965WH; Core 2 Duo CPU.



You may want to try the attached backport of support for the onboard 
Marvell IDE controller I posted to -hardware recently. The patch is 
against 6.2-RELEASE, and adds support for the onboard Marvell IDE 
controller that is present on many Intel 965-based boards. To apply:


cd /usr/src
patch  marvell_pata.diff
make buildkernel  make installkernel

And you should be right to go.

--Antony
--- sys/dev/ata/ata-chipset.c.orig  Sun Mar 11 18:33:13 2007
+++ sys/dev/ata/ata-chipset.c   Sun Mar 11 18:33:42 2007
@@ -105,14 +105,17 @@
 static void ata_jmicron_reset(device_t dev);
 static void ata_jmicron_dmainit(device_t dev);
 static void ata_jmicron_setmode(device_t dev, int mode);
-static int ata_marvell_chipinit(device_t dev);
-static int ata_marvell_allocate(device_t dev);
-static int ata_marvell_status(device_t dev);
-static int ata_marvell_begin_transaction(struct ata_request *request);
-static int ata_marvell_end_transaction(struct ata_request *request);
-static void ata_marvell_reset(device_t dev);
-static void ata_marvell_dmasetprd(void *xsc, bus_dma_segment_t *segs, int 
nsegs, int error);
-static void ata_marvell_dmainit(device_t dev);
+static int ata_marvell_pata_chipinit(device_t dev);
+static int ata_marvell_pata_allocate(device_t dev);
+static void ata_marvell_pata_setmode(device_t dev, int mode);
+static int ata_marvell_edma_chipinit(device_t dev);
+static int ata_marvell_edma_allocate(device_t dev);
+static int ata_marvell_edma_status(device_t dev);
+static int ata_marvell_edma_begin_transaction(struct ata_request *request);
+static int ata_marvell_edma_end_transaction(struct ata_request *request);
+static void ata_marvell_edma_reset(device_t dev);
+static void ata_marvell_edma_dmasetprd(void *xsc, bus_dma_segment_t *segs, int 
nsegs, int error);
+static void ata_marvell_edma_dmainit(device_t dev);
 static int ata_national_chipinit(device_t dev);
 static void ata_national_setmode(device_t dev, int mode);
 static int ata_nvidia_chipinit(device_t dev);
@@ -2309,12 +2312,14 @@
 struct ata_pci_controller *ctlr = device_get_softc(dev);
 struct ata_chip_id *idx;
 static struct ata_chip_id ids[] =
-{{ ATA_M88SX5040, 0, 4, MV5XXX, ATA_SA150, 88SX5040 },
- { ATA_M88SX5041, 0, 4, MV5XXX, ATA_SA150, 88SX5041 },
- { ATA_M88SX5080, 0, 8, MV5XXX, ATA_SA150, 88SX5080 },
- { ATA_M88SX5081, 0, 8, MV5XXX, ATA_SA150, 88SX5081 },
- { ATA_M88SX6041, 0, 4, MV6XXX, ATA_SA300, 88SX6041 },
- { ATA_M88SX6081, 0, 8, MV6XXX, ATA_SA300, 88SX6081 },
+{{ ATA_M88SX5040, 0, 4, MV50XX, ATA_SA150, 88SX5040 },
+ { ATA_M88SX5041, 0, 4, MV50XX, ATA_SA150, 88SX5041 },
+ { ATA_M88SX5080, 0, 8, MV50XX, ATA_SA150, 88SX5080 },
+ { ATA_M88SX5081, 0, 8, MV50XX, ATA_SA150, 88SX5081 },
+ { ATA_M88SX6041, 0, 4, MV60XX, ATA_SA300, 88SX6041 },
+ { ATA_M88SX6081, 0, 8, MV60XX, ATA_SA300, 88SX6081 },
+ { ATA_M88SX6101, 0, 1, MV61XX, ATA_UDMA6, 88SX6101 },
+ { ATA_M88SX6145, 0, 2, MV61XX, ATA_UDMA6, 88SX6145 },
  { 0, 0, 0, 0, 0, 0}};
 char buffer[64];
 
@@ -2325,12 +2330,62 @@
idx-text, ata_mode2str(idx-max_dma));
 device_set_desc_copy(dev, buffer);
 ctlr-chip = idx;
-ctlr-chipinit = ata_marvell_chipinit;
+switch (ctlr-chip-cfg2) {
+case MV50XX:
+case MV60XX:
+   ctlr-chipinit = ata_marvell_edma_chipinit;
+   break;
+case MV61XX:
+   ctlr-chipinit = ata_marvell_pata_chipinit;
+   break;
+}
+return 0;
+}
+
+static int
+ata_marvell_pata_chipinit(device_t dev)
+{
+struct ata_pci_controller *ctlr = device_get_softc(dev);
+
+if (ata_setup_interrupt(dev))
+   return ENXIO;
+
+ctlr-allocate = ata_marvell_pata_allocate;
+ctlr-setmode = ata_marvell_pata_setmode;
+ctlr-channels = ctlr-chip-cfg1;
 return 0;
 }
 
 static int
-ata_marvell_chipinit(device_t dev)
+ata_marvell_pata_allocate(device_t dev)
+{
+struct ata_channel *ch = device_get_softc(dev);
+ 
+/* setup the usual register normal pci style */
+if (ata_pci_allocate(dev))
+   return ENXIO;
+ 
+/* dont use 32 bit PIO transfers */
+   ch-flags |= ATA_USE_16BIT;
+
+return 0;
+}
+
+static void
+ata_marvell_pata_setmode(device_t dev, int mode)
+{
+device_t gparent = GRANDPARENT(dev);
+struct ata_pci_controller *ctlr = device_get_softc(gparent);
+struct ata_device *atadev = device_get_softc(dev);
+
+mode = ata_limit_mode(dev, mode, ctlr-chip-max_dma);
+mode = ata_check_80pin(dev, mode);
+if (!ata_controlcmd(dev, ATA_SETFEATURES, ATA_SF_SETXFER, 0, 

RE: Error Compile Kernel

2007-03-18 Thread Toan. Bach Quang Bao
Dear Kris,

Thank you. Have a good day.

System Engineer
-Original Message-
From: Kris Kennaway [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 19, 2007 9:57 AM
To: Toan. Bach Quang Bao
Cc: Kris Kennaway; freebsd-questions@freebsd.org
Subject: Re: Error Compile Kernel

On Mon, Mar 19, 2007 at 09:40:00AM +0700, Toan. Bach Quang Bao wrote:
 Dear Kris,
 
 I see, but not install it on FreeBSD 6.2?
 
 If you have a solution, please help me.

You're going to have to talk to whoever wrote that patch, we can't
help you.

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


Re: Tell portupgrade to use passive ftp

2007-03-18 Thread Chris Slothouber

Hi Jeffrey,

Jeffrey Goldberg wrote:
On my perimeter firewall, I default deny outbound traffic.  This cuts 
off fetching using active FTP.  Is there some way that I can tell 
portupgrade to pass the -p flag to fetch?


I know that I can temporarily change my firewall rules, but I think that 
it would be a cleaner solution to just tell portupgrade to not use 
active mode FTP.  (Or maybe fetch itself when it fails with active mode 
ftp should try again with passive).


in /etc/make.conf:

FETCH_CMD?=  /usr/bin/fetch -ApRr

man fetch as well.

Hope this helps!

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


IPv4 loopback

2007-03-18 Thread Keith E. Brandt, M.D.
While trying to configure ntp, I discovered that my IPv4 loopback was 
not being configured. I can manually restart it with 'ifconfig lo0 
add 127.0.0.1', however, it does not survive a reboot.


Here's the output of ipconfig following boot:

rl0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet 192.168.0.100 netmask 0xff00 broadcast 192.168.0.255
ether 00:08:54:dd:65:8d
media: Ethernet autoselect (100baseTX full-duplex)
status: active
plip0: flags=108810POINTOPOINT,SIMPLEX,MULTICAST,NEEDSGIANT mtu 1500
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3
inet6 ::1 prefixlen 128

and after manually configuring:

rl0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet 192.168.0.100 netmask 0xff00 broadcast 192.168.0.255
ether 00:08:54:dd:65:8d
media: Ethernet autoselect (100baseTX full-duplex)
status: active
plip0: flags=108810POINTOPOINT,SIMPLEX,MULTICAST,NEEDSGIANT mtu 1500
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3
inet6 ::1 prefixlen 128
inet 127.0.0.1 netmask 0xff00


What do I need to configure to get it to come up at bootup? Any 
thoughts as to why it disappears?

(I'm running FreeBSD 6.2 stable, downloaded and installed about 3 wks ago).

Keith
(newcomer to FreeBSD)


LtCol Keith E. Brandt, MD, MPH
USAF-NASA Aerospace Medicine Liaison Officer
Johnson Space Center, Houston, Texas
[EMAIL PROTECTED]

Goodbye cruel world that was my home-
  there's cleaner space out here to roam
Put my feet up on the moons of Mars-
  sit back, relax, and count the stars

*This message transmitted with 100% recycled electrons  


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


No core dump after panic

2007-03-18 Thread Rajkumar S

Hi,

I am trying to get core dump of a kernel panic relating to safenet
driver, so that I can file a meaning full PR or even try to debug
myself. But I am not getting a core dump after panic. I have gone
thorough the developers manual and I believe I have taken care of all
the usual stuff.

rc.conf
dumpdev=/dev/ad2s1b
dumpdir=/usr/local/crash

sysctl hw.physmem
hw.physmem: 508989440

swapinfo
Device  1K-blocks UsedAvail Capacity
/dev/ad2s1b   10485760  1048576 0%

df -h | grep usr$
/dev/ad2s1f6.8G1.2G5.1G18%/usr

The panic occurs before the disk drivers are loaded, ie just after
network is probed. Could that be the reason?

last couple of lines in dmesg while panic is as follows.

rl7: RealTek 8139 10/100BaseTX port 0xac00-0xacff mem
0xf6007000-0xf60070ff i2miibus7: MII bus on rl7
rlphy7: RealTek internal media interface on miibus7
rlphy7:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
rl7: Ethernet address: 00:60:e0:04:29:e4
safe0 mem 0xf612-0xf6121fff irq 5 at device 10.0 on pci0
safe0: cannot allocate DMA tag
device_attach: safe0 attach returned 6
re0: RealTek 8169S Single-chip Gigabit Ethernet port 0xb000-0xb0ff
mem 0xf6120re0: could not allocate dma tag


Fatal trap 12: page fault while in kernel mode
fault virtual address   = 0x60
fault code  = supervisor read, page not present
instruction pointer = 0x20:0xc0570ea5
stack pointer   = 0x28:0xc0c20bd0
frame pointer   = 0x28:0xc0c20be4
code segment= base 0x0, limit 0xf, type 0x1b
   = DPL 0, pres 1, def32 1, gran 1
processor eflags= interrupt enabled, resume, IOPL = 0
current process = 0 (swapper)
trap number = 12
panic: page fault
Uptime: 1s

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


Re: IPv4 loopback - solved

2007-03-18 Thread Kevin Downey

On 3/18/07, Keith E. Brandt, M.D. [EMAIL PROTECTED] wrote:

Disregard - I found the 'network_interfaces' line of rc.conf was
lacking lo0. I added it back in and it seems to be booting correctly.


unless you are sure you need the 'network_interfaces' line in rc.conf
I would comment it out. the default value for it in 6.2 is 'auto' and
I have never seen that not work.

--
The biggest problem with communication is the illusion that it has occurred.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: upgrading ports/packages

2007-03-18 Thread Gary Kline
On Sat, Mar 17, 2007 at 02:52:57PM -0700, Kent Stewart wrote:
 On Saturday 17 March 2007 13:55, Gary Kline wrote:
  Is there a set of switches that portupgrade will use to upgrade
  (from src) _only_ the ports that need rebuilding?   I'm guessing
  not because it's either -arp or else portupgrade exits without
  doing anything!
 
  My aim is to build every package just once here (700+Mhz) and
  scp and pkg_add the pacakges to my slower boxen?  But even after
  using pkgdb -F, the pkg_version -vIL'= results are unchanged.
 
  thanks for any clues!
 
 My experience is that -arp will build all of the ports from source that 
 needs building but it will (re)build all of the packages. The price for 
 using the generic a.
 
 On the slow machine, I wouldn't use pkg_add but portupgrade -Pa. There 
 are some ports that you can't build packages and have to build from the 
 source. So, if you have a package in /usr/ports/packages/All, 
 portupgrade will use it but if you need to build it from source, it 
 will also do that.

I thought I saw portupgrade grabbing/recycling packages from my
/usr/ports/packages/* collection! when pkg_verion sometimes
reported tht a newer version was available.  For now, I'm
resolving this by collecting the to-be-updated ports in a shell
script and having portupgrade fetch and build a (now custom)
binary... and package.  

By now, I'm convinced that building everything is the best way
since all my FBSD systems are i686's.  Be nice when the new 4.x
version of gcc works and I can compare my own loop tests.  For 
now, still tweaking.

gary


 
 Kent
 
 
  gary
 
 -- 
 Kent Stewart
 Richland, WA
 
 http://www.soyandina.com/ I am Andean project.
 http://users.owt.com/kstewart/index.html

-- 
  Gary Kline  [EMAIL PROTECTED]   www.thought.org  Public Service Unix

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