Re: Verizon's EVDO and FreeBSD

2005-02-18 Thread Chad Leigh -- Shire . Net LLC
On Feb 18, 2005, at 12:50 AM, Ted Mittelstaedt wrote:

-Original Message-
From: Chad Leigh -- Shire.Net LLC [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 17, 2005 1:34 PM
To: Ted Mittelstaedt
Cc: 'Mikhail Teterin'; Robert Kim, EVDO-Coverage, Verizon Agent; List
Free Bsd
Subject: Re: Verizon's EVDO and FreeBSD

On Feb 17, 2005, at 2:03 PM, Ted Mittelstaedt wrote:
Robert,
  Hmm - The Mac source (I assume your talking Mac OS X)
would probably
be the best to start with.  It might be a very easy port to whatever
version of FreeBSD was used for the version of Mac OS X you wrote the
driver for.
Mac OS X is not based on FreeBSD.
Whoah there Chad!  Please refer to the following website, guy!:
http://developer.apple.com/documentation/MacOSX/Conceptual/ 
OSX_Technology
_Overview/index.html

Note the following statement there:
...Beneath the appealing, easy-to-use interface of Mac OS X is a
rock-solid,
UNIX-based foundation called Darwin that is engineered for stability,
reliability,
and performance. Darwin integrates a number of technologies, most
importantly Mach 3.0,
operating-system services based on FreeBSD 5,
--^^
It has a BSD user layer and
compatibility layer and they DO use the FreeBSD userland for
their own,
No, a lot more than that, see Darwin.
Yes, there is a BSD personality mode that offers (some) kernel services  
use BSD APIs.  This is so the userland works right and sees what it  
expects.  And so that BSD style sys utils like sysctl will work and  
stuff.  Still a layer on top of a totally different architecture.


but the driver level is MUCH different.
I know that, but that is today, not yesterday.  Bob stated the old  
open
source
driver, I took that to mean a version 1.0 driver released for the first
ever
version of MacOS X.
Even if it was an old driver made for the first ever version of MacOS  
X, the driver level interfaces are much different so I don't see much  
how it would help you.

Mind you, I have not written a driver for OS X or FreeBSD, but the  
opposite question often comes up on some OS X forums/lists I read...

best regards
Chad
 I didn't know this card and service was a new thing.
Ted
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Verizon's EVDO and FreeBSD

2005-02-18 Thread Ted Mittelstaedt
Hi Robert and Mikhail,

  Mikhail, make sure the following is in your kernel configuration
file and recompile the kernel, then post the dmesg output.  This
should get your card recognized although it probably isn't going to
be recognized as a modem.  But if we see the dmesg output there might
be enough info to suggest a mod to get it recognized as a modem:

device  ohci
# General USB code (mandatory for USB)
device  usb
# Generic USB device driver
device  ugen
# USB modem support
device  umodem
# USB com devices
device  ucom
device  uplcom
device  uvscom
device  uftdi
# debugging options for the USB subsystem
#
options USB_DEBUG

Ted


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Robert Kim,
 EVDO-Coverage, Verizon Agent
 Sent: Thursday, February 17, 2005 12:36 PM
 To: 'Mikhail Teterin'
 Cc: List Free Bsd
 Subject: RE: Verizon's EVDO and FreeBSD
 
 
 
 Welll... Yes... The EVDO system technically DOES work on FREEBSD...
 BUT..
 You have to personally modify the Old Open Source Mac driver 
 to do it...
 OR.. Just mod the Linux driver...
 
 Tell you what... Since I don't have a copy... If anyone does 
 this... And
 gets me a working driver ... I will get you a FREE EVDO card... And 3
 free months of service... Lemme know..
 
   X
 
 Robert Kim, Verizon Wireless Agent (TM)
 http://EVDO-Coverage.com
 2611 S Pacific Coast Highway 101
 Cardiff by the Sea CA 92007
 206 984 0880
 
  Internet Service Is ONLY Broadband with Broadband Customer
 Service(tm)
  OUR QUEST: To Kill the Cubicle! (SM)
 
 ---Shalo---
 ;-) 
 
 
 -Original Message-
 From: Mikhail Teterin [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, February 17, 2005 12:21 PM
 To: Robert Kim, EVDO-Coverage, Verizon Agent
 Subject: Verizon's EVDO and FreeBSD
 
 
  Robert Kim,
  Wireless Internet Wifi Hotspot Advisor
 
  http://wireless-internet-broadband-service.com
  https://evdo.sslpowered.com/wifi-hotspot-router.htm
  2611 S Pacific Coast Highway 101
  Cardiff by the Sea CA 92007 : 206 984 0880
 
   Wireless Internet Service Is ONLY Broadband with Broadband 
   Customer
 
  Service(tm)
 
   OUR QUEST: To Kill the Cubicle! (SM)
 
  ---Shalo
  -;-)
 
 Is there EVDO-hardware, that works with FreeBSD? Thanks!
 
   -mi
 
 
 ___
 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: NFS hangs on 5.3-RELEASE-p5

2005-02-18 Thread Simonas Kareiva
I've already solved this issue by rebuilding a 5.3 stable, almost
GENERIC kernel (http://webart.lt/~molotov/b10) and by removing any
custom sysctl's from loader.conf, the system is running for two days
and it seems quite stable. The old kernel is still at
/boot/kernel.old/, I will try to debug it as soon as I will get
console access to the box. It also seems, that some sysctl tunings,
that I haven't mentioned, were critical:

kern.ipc.semmni=512
kern.ipc.semmns=1024
kern.ipc.shmall=65535
kern.ipc.shmmax=268435456
kern.ipc.shm_use_phys=1

These were somehow tuned for PostgreSQL, but some of them perhaps were
quite crazy values and they are now set to their defaults. If the
problem persists with current (or even totally default) system
settings, I'll send you the output of the nfsd stack trace. Thanks.

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


Re: Unexpected resolver behavior

2005-02-18 Thread Uwe Doering
Jamie Ostrowski wrote:
I'm running 4.10-p5 on my workstation at home, and I can't understand
why I cannot get www.foo.com to resolve to an IP I am specifying in
/etc/hosts (I want to over-ride the IP returned by the nameserver I query
by default).
in /etc/hosts:
199.xx.xx.24www.foo.com.
in /etc/host.conf:
# $FreeBSD: src/etc/host.conf,v 1.6 1999/08/27 23:23:41 peter Exp $
# First try the /etc/hosts file
/etc/hosts
# Now try the nameserver next.
bind
# If you have YP/NIS configured, uncom
(I have no nsswitch.conf file in /etc)
But when I try to resolve www.foo.com from the command line, I am getting
the IP address from the nameserver from the outside world rather than the
IP from /etc/hosts. I am not running a local named on this machine,
either. Any ideas?
Only programs that use gethostbyname(3) and friends (system library 
functions) can be expected to take heed of '/etc/host.conf', and 
therefore '/etc/hosts'.

Now, the utility commands that are part of the Bind package, like 
'host', 'nslookup' etc., talk to the DNS server directly and ignore what 
you have in '/etc/hosts'.  This can also be true for some applications 
(MTAs come to mind) that have their own DNS query code because they need 
DNS information that is not available through system library functions.

   Uwe
--
Uwe Doering |  EscapeBox - Managed On-Demand UNIX Servers
[EMAIL PROTECTED]  |  http://www.escapebox.net
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: unknown option MAXUSERS

2005-02-18 Thread Jamie Novak
On 02/17, Dmitry M. rearranged the electrons to read:
 -bash-2.05b# config MYKERNEL
 MYKERNEL: unknown option MAXUSERS

It's probably because maxusers is a lowercase-only option in the
config, right along with the ident, machine, and cpu lines. Change it to
lowercase and you should be fine.

Also, from the handbook:

Note: As of FreeBSD 4.5, setting MAXUSERS to 0 in your
kernel configuration file will choose a reasonable default
value based on the amount of RAM present in your system.

In 5.x and beyond, I believe the option is omitted entirely, even in
GENERIC.

Hope that helps.

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


Re: Annoying ports problem

2005-02-18 Thread Karel J. Bosschaart
On Friday 18 February 2005 08:37, Heinrich Rebehn wrote:
 Eric Kjeldergaard wrote:
  On Thu, 17 Feb 2005 10:45:36 +0100, Heinrich Rebehn
 
  [EMAIL PROTECTED] wrote:
 Hi list,
 
 I have run into an annoying problem several times when upgrading ports.
 
 Say, if i want to upgrade gstreamer-plugins, i do:
 
 # cd /usr/ports/multimedia/gstreamer-plugins
 # make
 
 This pulls in some dependencies, for example gnomevfs2. gnnomevfs2 will
 compile fine, but then stops because it wants to install gnomevfs2
 instead of reinstalling it:
 
 ===   An older version of devel/gnomevfs2 is already installed
 (gnomevfs2-2.9.91)
You may wish to ``make deinstall'' and install this port again
by ``make reinstall'' to upgrade it properly.
If you really wish to overwrite the old port of devel/gnomevfs2
without deleting it first, set the variable FORCE_PKG_REGISTER
in your environment or the make install command line.
 *** Error code 1
 
 Since i have run into this several times, i must be missing something
 substantial. What is it?
 
  Just make will make the program and try to install it as if it were
  the first time.  When it detects the older version, it will want you
  to do make deinstall  make reinstall.  For upgrading ports, you
  may want to look at /usr/ports/sysutils/portupgrade.

The problem is that the OP *is* using portupgrade.

 It makes no difference wether i use make or portupgrade. As soon as
 ether of them decide that another package that the make candidate
 depends on, has to be upgraded, the error occurs with that package.

And if you do 'portupgrade -f gnomevfs2' (forced upgrade) *before* 
'portupgrade gstreamer-plugins'? It recently solved similar problems for me, 
in particular with the perl-related ports.

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


FreeBSD multi-homed w/ipnat

2005-02-18 Thread Peter Kieser
Hello,
I am unable to get ipnat working in a multi homed FreeBSD system. Is 
there some special method that works? because I've yet to find it. What 
I am attempting to do is:

I have 2 Internet Connections (one is DSL and the other is cable), they 
are dc0 and dc1 respectively. I also have an interface facing my local LAN.

I have two segments on my LAN, one is 192.168.1.0/24, and the other is 
192.168.2.0/24 - What I am attempting to do is have the DSL line (dc0) 
to be used for one segment, and the cable (dc1) for the other segment. I 
am *not* attempting to load balance.

My current ifconfig produces the following:
dc0: flags=108843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
   options=8VLAN_MTU
   inet6 fe80::250:bfff:fead:886%dc0 prefixlen 64 scopeid 0x1
   inet 64.180.103.x netmask 0xfc00 broadcast 64.180.103.255
   ether 00:50:bf:ad:08:86
   media: Ethernet autoselect (10baseT/UTP)
   status: active
dc1: flags=108843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
   options=8VLAN_MTU
   inet6 fe80::250:bfff:fead:884%dc1 prefixlen 64 scopeid 0x2
   inet 70.68.27.x netmask 0xfc00 broadcast 255.255.255.255
   ether 00:50:bf:ad:08:84
   media: Ethernet autoselect (100baseTX full-duplex)
   status: active
vr0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
   inet 192.168.1.1 netmask 0xff00 broadcast 192.168.1.255
   inet6 fe80::211:d8ff:fe3d:564a%vr0 prefixlen 64 scopeid 0x3
   ether 00:11:d8:3d:56:4a
   media: Ethernet autoselect (100baseTX full-duplex)
   status: active
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
   inet 127.0.0.1 netmask 0xff00
   inet6 ::1 prefixlen 128
   inet6 fe80::1%lo0 prefixlen 64 scopeid 0x4
The gateway for dc1 is 70.68.24.1, the gateway for dc0 is 
64.180.100.254, I have managed to get both IP addresses working on the 
machine by adding the following ipf rule:

pass out quick on dc0 to dc1:70.68.24.1 from 70.68.27.x to any
pass out quick on dc1 to dc0:64.180.100.254 from 64.180.103.x to any
This makes sure that the packet is forwarded to the correct interface 
based on the source IP address, however when I enabled these rules my 
NAT *fails* forward packets to the internet, my ipnat configuration is 
as follows:

map dc0 192.168.1.0/24 - 0/32
map dc1 192.168.2.0/24 - 0/32
Am I missing something here?
--Peter
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Partition Magic -like

2005-02-18 Thread Pietro Cerutti
Hi all,
does anybody know a tool like partition magic which works on FreeBSD?
I have all my harddisk partitioned for FreeBSD, and now I need a Windows 
partition... any other solutions?

Thank you,
--
Pietro Cerutti
-- Powered by FreeBSD --
SDF Public Access UNIX System
sdf.lonestar.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Articals/howtos needed ..

2005-02-18 Thread faisal gillani
Hello there i want some small sized articals about
freebsd , if you have any please mail me on
[EMAIL PROTECTED] .

thanks


=
*º¤., ¸¸,.¤º*¨¨¨*¤ Allah-hu-Akber*º¤., ¸¸,.¤º*¨¨*¤
God is the Greatest




__ 
Do you Yahoo!? 
Yahoo! Mail - Helps protect you from nasty viruses. 
http://promotions.yahoo.com/new_mail
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Who creates /tmp/.X11-unix directory?

2005-02-18 Thread Dick Hoogendijk
On 18 Feb Anthony Atkielski wrote:
 Dick Hoogendijk writes:
 
  No. The 'new' /etc/rc script does that. Kde problems after cleaning
  out /tmp are solved now too. You can freely enable
  clear_tmp_enable=YES in /etc/rc.conf again.
 
 It does indeed reappear at startup, although clear_tmp_enable=YES
 does not appear to eliminate it.  But at least I know that it's normal
 now.

Sure it gets eliminated. But hey, it gets recreated right after, is it
not. So how could you check it's not there ? ;-)

-- 
dick -- http://nagual.st/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 4.11 ++ FreeBSD 5.3
+ Nai tiruvantel ar vayuvantel i Valar tielyanna nu vilja
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD multi-homed w/ipnat

2005-02-18 Thread Dick Hoogendijk
On 18 Feb Peter Kieser wrote:
 vr0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
inet 192.168.1.1 netmask 0xff00 broadcast 192.168.1.255
inet6 fe80::211:d8ff:fe3d:564a%vr0 prefixlen 64 scopeid 0x3
ether 00:11:d8:3d:56:4a
media: Ethernet autoselect (100baseTX full-duplex)
status: active
 map dc0 192.168.1.0/24 - 0/32
 map dc1 192.168.2.0/24 - 0/32

I only seee 192.168.1.1 defined. Is this a typo or is there inof
missing?

-- 
dick -- http://nagual.st/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 4.11 ++ FreeBSD 5.3
+ Nai tiruvantel ar vayuvantel i Valar tielyanna nu vilja
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD multi-homed w/ipnat

2005-02-18 Thread Peter Kieser
Dick Hoogendijk wrote:
On 18 Feb Peter Kieser wrote:
 

vr0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
  inet 192.168.1.1 netmask 0xff00 broadcast 192.168.1.255
  inet6 fe80::211:d8ff:fe3d:564a%vr0 prefixlen 64 scopeid 0x3
  ether 00:11:d8:3d:56:4a
  media: Ethernet autoselect (100baseTX full-duplex)
  status: active
map dc0 192.168.1.0/24 - 0/32
map dc1 192.168.2.0/24 - 0/32
   

I only seee 192.168.1.1 defined. Is this a typo or is there inof
missing?
 

The map with the CIDR prefix only specifies what IP addresses the NAT 
will masquerade for, still doesn't explain why 192.168.1.0/24 masquarde 
fails to work. You can specify the subnet mask for 192.168.1.1 as 
255.255.254.0 to cover both those blocks, which is a 192.168.0.0/23.

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


KDE jpeg problem

2005-02-18 Thread milan nankov
Hello,

When i run the ./configure for one of the KDE
libraries the process is interupted because jpeg
library cannot be found, although i have it.
How can I set the path to the jpeg explicity?

Tnx in advance


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


USB Keyboard

2005-02-18 Thread Monah Baki
Hi all,

I'm running Freebsd 5.3 on a Dell GX280 that has both a USB keyboard and
mouse. My problem is I added to my /boot/loader.conf file --
hint.atkbd.0.flags=0x1.
However, when I need to drop to single user mode, I can no longer use the
keyboard.
Any help will be greatly appreciated.

Thank you


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


Running VMWare over FreeBSD

2005-02-18 Thread Abel Bartolome
Hi guys,
 
Do you know if it's possible to run VM Ware Workstation 4.5 or new 5.0 beta 
over FreeBSD? I know that VM Ware tech. specifications doesn't include this 
host operating system but maybe someone have experience with it.
 
Abel Bartolome


-

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



Re: How change the FTP_PASSIVE_MODE?

2005-02-18 Thread Nelis Lamprecht
On Thu, 17 Feb 2005 15:25:13 -0800, perikillo [EMAIL PROTECTED] wrote:
   Hi, i have been around reading docs about the problem we have a lot
 of people went we try to access one ftp server on the Internet,
 normally the (Passive servers), in the past i was using rules on
 IPFILTER(freebsd 4.10 p5, think is the 3.4.31??  the one it cames
 with), my rule was:
 
   To block all that arrives to my tun0(IN), and let out all the
 packets of my internal cients  over tun0 and keep state. it was easy,
 only let my users go to outside world. My ipnat it was simply, only:
 
 map tun0 198.168.1.0/24 - 0/32
 
With this all my clients(win2k, win98, Freebsd, win XP) where happy
 and secure.
 
Them i decide to change my rules be more define, i read the
 handbook, and start making changes:
 
 Block in all over my tun0 and let out any package over my tun0 only to:
 port 21, 53, 80, 443, 5999, all the handbook say, services that i know
 that normally went someone surf the web he is going to connect to
 those services.
 
I change my nat:
 
map tun0 198.168.1.0//24 - proxy port 21 ftp/tcp
map tun0 192.168.1.0/24 - 0/32 portmap tcp/udp 2:6
map tun0 192.168.1.0/24 - 0/32
 
Is ok, i can surf the web, but went i went to the freebsd server,
 what happend:
 
ftp: ls
entering passive mode(bla, bla, bla)
ftp: connect no route to host
 

hi,

to solve your problem or you should need to do is add another rule for
the actual freebsd server:

map tun0 198.168.1.1/32 - 198.168.1.1/32 proxy port ftp ftp/tcp

the above rule assumes 198.168.1.1 is your freebsd server. this rule
should be placed first. you should also have a rule to pass out
traffic, something along the lines of:

pass out quick on tun0 proto tcp from 198.168.1.0/24 to any port = 21
flags S keep state

that should do the trick.

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


Is there way to set file creation time effectively?

2005-02-18 Thread Bernard Chong
utimes() works well when I try to set modification time and access time.
And if the target creation time is earlier than the original file creation 
time,
it works too.

But, utimes() does not seem to work with the target creation time of later 
than
the original time.
The bypass solution is to copy the file and apply utimes() to the copied 
file, which
seems to brute.

Is there any effective way to change the file creation time?
_
Express yourself instantly with MSN Messenger! Download today it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/

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


Re: WHAT KIND OF SH*T IS THIS: telnet and ssh

2005-02-18 Thread John
On Fri, Feb 18, 2005 at 02:41:22AM -0500, Mike Hauber wrote:
 On Thursday 17 February 2005 05:47 pm, Fafa Diliha Romanova wrote:
  let's get straight to it:
 
  whenever i telnet or ssh to something that's offline, i get
  e.g.: ssh: hostname.domain.com: hostname nor servname provided,
  or not known
 
  comeon, can't you guys at least change it to:
  ssh: hostname.domain.com: unknown
 
  thanks,
  fafa
 
 Welcome to open source...
 
 try the following command, as it will point out some of the source 
 files you may wish to change and recompile on your system (have 
 it your way, and be advised that the command may have wrapped):
 
 $ find /usr/src -type f -exec grep servname provided, or not 
 known /dev/null {} \;  ~/omgitssourcery.txt

Oh, brother!  This is RICH!

It appears this text in question actually originates with the
defining RFCs!!!

/usr/src/contrib/bind9/doc/rfc/rfc2133.txt:   EAI_NONAME  hostname nor 
servname provided, or not known
/usr/src/contrib/bind9/doc/rfc/rfc2553.txt:  EAI_NONAME  nodename nor 
servname provided, or not known
/usr/src/contrib/bind9/lib/bind/include/netdb.h:#define EAI_NONAME   8  
/* hostname nor servname provided, or not known */
/usr/src/contrib/bind9/lib/bind/irs/getaddrinfo.c:  hostname nor servname 
provided, or not known, /* EAI_NONAME */
/usr/src/contrib/bind9/lib/lwres/include/lwres/netdb.h.in:#define   
EAI_NONAME   8  /* hostname nor servname provided, or not known */
/usr/src/contrib/bind9/lib/lwres/gai_strerror.c:hostname nor servname 
provided, or not known,

So - whoever's fault this is - was just making BIND compliant with
the documentation

Can't win for loosing some days!
-- 

John Lind
[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: Partition Magic -like

2005-02-18 Thread Pietro Cerutti
Hi Windlamf,
thank you for your answer!
The problem is that I don't have a free partition yet.
df -h
Filesystem SizeUsed   Avail Capacity  Mounted on
/dev/ad0s1a145M 70M 63M53%/
devfs  1.0K1.0K  0B   100%/dev
/dev/ad0s1f 19G7.1G 10G41%/home
/dev/ad0s1e 19G6.2G 12G35%/usr
/dev/ad0s1d 14G160M 13G 1%/var
linprocfs  4.0K4.0K  0B   100%/usr/compat/linux/proc
My idea was to resize the /var partition, which is quite unused, and create 
a FAT partition from that!

Regards,
windlamf wrote:
Well, can't you convert the partition which you want to instlal Win on 
to fat format using fdisk?

*/Pietro Cerutti [EMAIL PROTECTED]/* wrote:
Hi all,
does anybody know a tool like partition magic which works on FreeBSD?
I have all my harddisk partitioned for FreeBSD, and now I need a
Windows
partition... any other solutions?
Thank you,
-- 
Pietro Cerutti
-- Powered by FreeBSD --
SDF Public Access UNIX System
sdf.lonestar.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]


*Do You Yahoo!?*
150ÍòÇúMP3·è¿ñËÑ£¬´øÄú´³ÈëÒôÀÖµîÌà http://music.yisou.com
ÃÀÅ®Ã÷ÐÇÓ¦Óо¡ÓУ¬ËѱéÃÀͼ¡¢ÑÞͼºÍ¿áͼ http://image.yisou.com
1G¾ÍÊÇ1000Õ×£¬ÑÅ»¢µçÓÊ×ÔÖúÀ©ÈÝ£¡ 
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/ 


--
Pietro Cerutti
-- Powered by FreeBSD --
SDF Public Access UNIX System
sdf.lonestar.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Configuring PF

2005-02-18 Thread J65nko BSD
On Fri, 18 Feb 2005 00:28:30 -0700, Pat Maddox [EMAIL PROTECTED] wrote:
 Can you guys let me know if this looks like a good conf file?  I've
 got web, mail, ftp, ssh, and DNS that I need to have open.
 
 # Macros
 ext_if=fxp0
 SYN_ONLY=S/FSRA
 tcp_services = { 21, 22, 25, 53, 80, 143 }
 icmp_types = echoreq
 
 # Default deny
 block all
 
 ## Filtering rules
 
 # Default TCP policy
 block return-rst in log on $ext_if proto TCP all

This block rule is not needed, You alreadt have a default deny policy

 pass in log quick on $ext_if proto TCP from any to $ext_if port
 $tcp_services flags $SYN_ONLY keep state
 
 # Default UDP policy
 block in log on $ext_if proto udp all

This block rule is not needed, You alreadt have a default deny policy

 pass in log quick on $ext_if proto UDP from any to $ext_if port 53 keep state
 
 # Default ICMP policy
 block in log on $ext_if proto icmp all

This block rule is not needed, You already have a default deny policy

 pass in inet proto icmp all icmp-type echoreq keep state
 
 block out log on $ext_if all

This block rule is not needed, You alreadt have a default deny policy

 pass out log quick on $ext_if from $ext_if to any keep state
 
 # Allow the local interface to talk unrestricted
 pass in quick on lo0 all
 pass out quick on lo0 all
 
 
 On Fri, 18 Feb 2005 03:17:30 +0100, J65nko BSD [EMAIL PROTECTED] wrote:
  On Wed, 16 Feb 2005 19:18:17 -0700, Pat Maddox [EMAIL PROTECTED] wrote:
   I've managed to come up with something that works so far.  I am having
   two problems though.
  
   The first is that I can't authenticate for IMAP anymore.  No clue why,
   it just keeps rejecting my password.  maillog shows imapd: LOGIN
   FAILED, that's it.
  
   Also, after enabling pf, all my UDP ports show as open.  I've got a 
   ruleset of
   block in log on $ext_if proto udp all
  
   So all UDP ports should be shown as closed.  Doesn't really make any
   sense to me.  Anyone care to help?
  
   Thanks for the help so far.
  
   Pat
 
  Start with a default policy to block and log all traffic
 
  # --- default policy
  block log from any to any
 
  Now you only have to open ports to let traffic in. If you don't know
  which port to open for a certain protocol, you can run tcpdump -eni
  pfl0g. tcpdump will show which rule blocked, and on which port
  address combination.
 
 
How about this?
# --- pf.conf skeleton for server
# j65nko freebsdforums.org
#
# --- MACRO Section  -

EXT_IF=fxp0

PING = echoreq

# --- allowed incoming services initiated by clients 

TCP_IN = { ssh, smtp, pop3, imap, http, https }
#UDP_IN = { domain }

# --- allowed services initiated by server

TCP_OUT = { smtp }
UDP_OUT = { domain }

# -- TABLE Section -- 

# -- OPTIONS Section
set loginterface $EXT_IF

# - TRAFFIC NORMALIZATION 
scrub in all
# -- TRANSLATION Section (NAT/RDR)

# -- FILTER section

# --- DEFAULT POLICY
block log all

# --- LOOPBACK
pass quick on lo0 all

# === INCOMING 
# --- EXTERNAL INTERFACE 

# --- TCP 
pass in quick on $EXT_IF inet proto tcp from any to $EXT_IF port
$TCP_IN flags S/SA keep state

# --- UDP
#pass in quick on $EXT_IF inet proto udp from any to $EXT_IF port
$UDP_IN keep state

# --- ICMP 
#pass in quick on $EXT_IF inet proto icmp from any to $EXT_IF
icmp-type $PING keep state


# === OUTGOING 
# --- EXTERNAL INTERFACE 

# --- TCP 
pass out quick on $EXT_IF inet proto tcp from $EXT_IF to any port
$TCP_OUT flags S/SA  keep state

# --- UDP
pass out quick on $EXT_IF inet proto udp from $EXT_IF to any port
$UDP_OUT keep state

# --- ICMP 
pass out quick on $EXT_IF inet proto icmp from $EXT_IF to any
icmp-type $PING keep state

# - end of pr.conf

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


What caused this kernel panic?

2005-02-18 Thread Piotr Gnyp

#0  doadump () at pcpu.h:159
#1  0xc04d9efb in boot (howto=260) at ../../../kern/kern_shutdown.c:397
#2  0xc04da221 in panic (fmt=0xc060106c %s) at
../../../kern/kern_shutdown.c:553
#3  0xc05dd308 in trap_fatal (frame=0xe83ef980, eva=28) at
../../../i386/i386/trap.c:809
#4  0xc05dd04b in trap_pfault (frame=0xe83ef980, usermode=0, eva=28) at
../../../i386/i386/trap.c:727
#5  0xc05dcca5 in trap (frame=
  {tf_fs = -1068761064, tf_es = -398589936, tf_ds = 16777232, tf_edi =
-993459960, tf_esi = -1037469184, tf_ebp = -398526004, tf_isp = -398526036,
tf_ebx = -1031939584, tf_edx = 0, tf_ecx = -1037239168, tf_eax = 4,
tf_trapno = 12, tf_err = 2, tf_eip = -1068763929, tf_cs = 8, tf_eflags =
66118, tf_esp = -1031939584, tf_ss = -1037469184})
at ../../../i386/i386/trap.c:417
#6  0xc05cb7da in calltrap () at ../../../i386/i386/exception.s:140
#7  0xc04c0018 in kern_execve (td=0xc2297a00, fname=0x0, argv=0x0,
envv=0xc27dda10, mac_p=0xc27dda00)
at ../../../kern/kern_exec.c:242
#8  0xc05087b1 in ttwakeup (tp=0xc2297a00) at ../../../kern/tty.c:2370
#9  0xc0507414 in ttymodem (tp=0xc27dda00, flag=0) at
../../../kern/tty.c:1625
#10 0xc050b0ff in ptcopen (dev=0xc2297a00, flag=3, devtype=8192, td=0x0) at
linedisc.h:136
#11 0xc04a231a in spec_open (ap=0xe83efa84) at
../../../fs/specfs/spec_vnops.c:207
#12 0xc04a205f in spec_vnoperate (ap=0x0) at
../../../fs/specfs/spec_vnops.c:118
#13 0xc053813d in vn_open_cred (ndp=0xe83efbe4, flagp=0xe83efce4, cmode=0,
cred=0xc3c16980, fdidx=0) at vnode_if.h:228
#14 0xc0537d22 in vn_open (ndp=0x0, flagp=0xe83efce4, cmode=0, fdidx=6) at
../../../kern/vfs_vnops.c:91
#15 0xc0531e3b in kern_open (td=0xc22cfc80, path=0x0, pathseg=UIO_USERSPACE,
flags=3, mode=0)
at ../../../kern/vfs_syscalls.c:957
#16 0xc0531d54 in open (td=0xc22cfc80, uap=0x0) at
../../../kern/vfs_syscalls.c:926
#17 0xc05dd613 in syscall (frame=
  {tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = -1077943301, tf_esi =
673008685, tf_ebp = -1077943272, tf_isp = -398525068, tf_ebx = 673015904,
tf_edx = 673008700, tf_ecx = 674465260, tf_eax = 5, tf_trapno = 12, tf_err =
2, tf_eip = 673977623, tf_cs = 31, tf_eflags = 662, tf_esp = -1077943364,
tf_ss = 47}) at ../../../i386/i386/trap.c:1001
#18 0xc05cb82f in Xint0x80_syscall () at ../../../i386/i386/exception.s:201
#19 0x002f in ?? ()
#20 0x002f in ?? ()
#21 0x002f in ?? ()
#22 0xbfbfe3fb in ?? ()
#23 0x281d4c2d in ?? ()
#24 0xbfbfe418 in ?? ()
#25 0xe83efd74 in ?? ()
#26 0x281d6860 in ?? ()
#27 0x281d4c3c in ?? ()
#28 0x283385ec in ?? ()
#29 0x0005 in ?? ()
#30 0x000c in ?? ()
#31 0x0002 in ?? ()
#32 0x282c1517 in ?? ()
#33 0x001f in ?? ()
#34 0x0296 in ?? ()
#35 0xbfbfe3bc in ?? ()
#36 0x002f in ?? ()
#37 0x in ?? ()
#38 0x in ?? ()
#39 0x in ?? ()
#40 0x in ?? ()
#41 0x148e3000 in ?? ()
#42 0xc2831a98 in ?? ()
#43 0xc22cfc80 in ?? ()
#44 0xe83efaac in ?? ()
#45 0xe83efa94 in ?? ()
#46 0xc1e7d4b0 in ?? ()
#47 0xc04ea503 in sched_switch (td=0x281d4c2d, newtd=0x281d6860,
flags=Cannot access memory at address 0xbfbfe428
) at ../../../kern/sched_4bsd.c:865

Panicstring: page fault

uname -pr
5.3-RELEASE-p5 i386

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


Re: Partition Magic -like

2005-02-18 Thread John
On Fri, Feb 18, 2005 at 11:04:00AM +, Pietro Cerutti wrote:
 Hi all,
 does anybody know a tool like partition magic which works on FreeBSD?
 I have all my harddisk partitioned for FreeBSD, and now I need a Windows 
 partition... any other solutions?

I hope you find a better answer, but the only way I know of to do
what I think it is you are proposing is this:
1) dump out all the filesystems that need to be resized or moved
   (tape, files on an NFS server, another disk drive - whatever)
2) re-slice (fdisk from a fixit disk or bootable CD)
3) restore all the filesystems

I hope you find a better way, but at least it can be done in this way.

I take it that adding a disk or replacing the disk with a larger
one is not an option?
-- 

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


UMass storage device errors - hangs

2005-02-18 Thread jdyke
I have a IDE drive in a USB enclosure attahced to FreeBSD5.3-STABLE.
Occaisionly, becoming more often, i get the following errors on the console.
kernel: umass0: BBB reset failed, TIMEOUT
kernel: umass0: BBB bulk-in clear stall failed, STALLED
kernel: umass0: BBB bulk-out clear stall failed, STALLED
kernel: umass0: BBB reset failed, STALLED
kernel: umass0: BBB bulk-in clear stall failed, STALLED
kernel: umass0: BBB bulk-out clear stall failed, STALLED
kernel: umass0: BBB reset failed, STALLED
kernel: umass0: BBB bulk-in clear stall failed, STALLED
kernel: umass0: BBB bulk-out clear stall failed, STALLED
kernel: umass0: BBB reset failed, STALLED
kernel: umass0: BBB bulk-in clear stall failed, STALLED
kernel: umass0: BBB bulk-out clear stall failed, STALLED
kernel: umass0: BBB reset failed, STALLED
kernel: umass0: BBB bulk-in clear stall failed, STALLED
kernel: umass0: BBB bulk-out clear stall failed, STALLED
at the system hangs. i have to hard boot the machine, at which point all drives 
will show up as not properly unmounted, so i usually run fsck on them, and try 
to reboot again after for a clean boot.  This last time, i still have messages 
in dmesg saying the drives were not properly dismounted.

output from
# dmesg | grep -E umass|usb
usb0: UHCI (generic) USB controller on uhci0
usb0: USB revision 1.0
usb1: UHCI (generic) USB controller on uhci1
usb1: USB revision 1.0
usb2: UHCI (generic) USB controller on uhci2
usb2: USB revision 1.0
usb3: UHCI (generic) USB controller on uhci3
usb3: USB revision 1.0
umass0: Prolific Technology Inc. Mass Storage Device, rev 2.00/1.00, addr 2
da0 at umass-sim0 bus 0 target 0 lun 0
WARNING: /usbpri was not properly dismounted
WARNING: /usbsec was not properly dismounted
This has happened about 3-4 times in the life of this box (3+ months) and each 
time forces a hard boot.

One other item i should mention, is i also have a DVD drive that i had to 
rebuild the kernel with atapicam support.  While the errors happened before the 
recompile, i did notice this on the freebsd-handbook umass page...
Since the burner is seen as a SCSI drive, the driver atapicam(4) should not be 
used in the kernel configuration.
Granted the drive is not the burner, but could there be conficts and i'm making 
the original problem worse?

Any help is greately appreciated.  I saw lots of like errors googling, but no 
real solutions.

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


Weird character representation in console

2005-02-18 Thread v . demartino2
After years of linux distributions now I'm having a go at FreeBDS.
Therefore, as a perfect newbye in FreeBSD I have just installed the developer
stuff with x support and the ports of version 5.3.
After having compiled the Midnight Commander mc from the ports' sources
I noticed that running mc the various rectangles framing the tree structures
of the filesystem are not correctly displayed and built with a combination
of '-' and '|' but with a weird combination of 'ç' and 'ù'.

What should I do straighten things up (I admit, I have been manipulating
the fonts without knowing what I was doing!!)?

A step by step explamnation would be highly appreciated.

Ciao
Vittorio

Ciao
Vittorio

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


Re: Partition Magic -like

2005-02-18 Thread Pietro Cerutti
Hi John,
yes I was looking for a better solution ;-) Thank you!
It's a laptop, cannot add a disk
John wrote:
On Fri, Feb 18, 2005 at 11:04:00AM +, Pietro Cerutti wrote:
Hi all,
does anybody know a tool like partition magic which works on FreeBSD?
I have all my harddisk partitioned for FreeBSD, and now I need a Windows 
partition... any other solutions?

I hope you find a better answer, but the only way I know of to do
what I think it is you are proposing is this:
1) dump out all the filesystems that need to be resized or moved
   (tape, files on an NFS server, another disk drive - whatever)
2) re-slice (fdisk from a fixit disk or bootable CD)
3) restore all the filesystems
I hope you find a better way, but at least it can be done in this way.
I take it that adding a disk or replacing the disk with a larger
one is not an option?

--
Pietro Cerutti
-- Powered by FreeBSD --
SDF Public Access UNIX System
sdf.lonestar.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Partition Magic -like

2005-02-18 Thread windlamf
I think you can first archive all the data in /var using tar or something that 
has the same function.Then delete this partition. 
You know what to do next?
Yes, create two partitions for windows and /var. then extract the archive to 
one and install win on the other.
I've never tried this means, but I am sure it will work.
By the way, I think you should drop your windows-rooted thinking pattern.You 
know, the philosophy of *nix is excellent. 

Pietro Cerutti [EMAIL PROTECTED] wrote:
Hi Windlamf,
thank you for your answer!
The problem is that I don't have a free partition yet.

df -h
Filesystem Size Used Avail Capacity Mounted on
/dev/ad0s1a 145M 70M 63M 53% /
devfs 1.0K 1.0K 0B 100% /dev
/dev/ad0s1f 19G 7.1G 10G 41% /home
/dev/ad0s1e 19G 6.2G 12G 35% /usr
/dev/ad0s1d 14G 160M 13G 1% /var
linprocfs 4.0K 4.0K 0B 100% /usr/compat/linux/proc

My idea was to resize the /var partition, which is quite unused, and create 
a FAT partition from that!

Regards,

windlamf wrote:
 Well, can't you convert the partition which you want to instlal Win on 
 to fat format using fdisk?
 
 */Pietro Cerutti 
/* wrote:
 
 Hi all,
 does anybody know a tool like partition magic which works on FreeBSD?
 I have all my harddisk partitioned for FreeBSD, and now I need a
 Windows
 partition... any other solutions?
 
 Thank you,
 -- 
 Pietro Cerutti
 -- Powered by FreeBSD --
 SDF Public Access UNIX System
 sdf.lonestar.org
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 
 
 *Do You Yahoo!?*
 150MP3 
  
 1G1000 
 
 


-- 
Pietro Cerutti
-- Powered by FreeBSD --
SDF Public Access UNIX System
sdf.lonestar.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



-
Do You Yahoo!?
150MP3

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


Re: Running VMWare over FreeBSD

2005-02-18 Thread Rickard Borgmäster
On Fri, 18 Feb 2005 12:29:00 +0100 (CET)
Abel Bartolome [EMAIL PROTECTED] hit the keyboard and punched:

 Hi guys,
  
 Do you know if it's possible to run VM Ware Workstation 4.5 or new 5.0
 beta over FreeBSD? I know that VM Ware tech. specifications doesn't
 include this host operating system but maybe someone have experience
 with it.

This isn't what you asked, but I can inform you that VMWare 3.x ran fine
back in the days when I was on FreeBSD 4.6-ish. Haven't had any use for it
since then since I have (room for...) more equipment now.

-- 

Rickard

   .--..--.
.. |  ||  | .-.
|   Rickard Borgmäster   | |  ||  |/  /
| [EMAIL PROTECTED] |   .-^  |  .--.  | 
| http://doktorn.sub.nu/ |  (  o  | ( () ) |  |\  \
`'  `-'  `--'  `--' `--'


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


Re: upgrading to a specified version?

2005-02-18 Thread Simon Barner
windlamf wrote:
 Thanks!
 If I specify the parameter of tag as RELENG_4, then does cvsup
 only fetch the latest source code of my current system version?

Well, RELENG_4 a.k.a. FreeBSD 4-stable is FreeBSD 4.11 (the latest
release) + security fixes + bug fixes or small backports from the
-current branch, although this is not very likely for FreeBSD 4 anymore.

RELENG_4_11 on the other and the security branch of FreeBSD 4.11 +
security fixes.

If you want to run FreeBSD 4 on your machine, I'd recommend any of the
two above branches (since FreeBSD 5 is the new stable branch, RELENG_4 and
RELENG_4_11 won't differ a lot).

HTH,
 Simon


pgpuGyuIps1fo.pgp
Description: PGP signature


Mindterm and SSH

2005-02-18 Thread sn1tch
Hello everyone, 

I have a question regarding the use of the Mindterm applet on a site
sitting on my bsd machine. I have it setup and everything runs great,
except for when it comes time to login via the applet. Mindterm, upon
entering my username, abruptly responds Authentication method
'password' not supported by server. I went into the sshd_config and
changed the 'passwordauthentication' to yes and it now asks me for my
password (which it never did before) and I get my shell. Now firstly,
is this an option I want to leave on? Or is there a better way of
going about this? Please forgive the ignorance but I hope this is the
right list to post to.


Thanks in advance 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]


ssh, sftp, and public key authentication

2005-02-18 Thread dave
Hello,
I've got a machine i use public keys on to which i'm trying to ssh. When
i created a key for this user i did not define a passphrase, yet i am being
asked for one when i ssh in to the box. I use the command ssh -i
filename.pub hostname however if i do sftp [EMAIL PROTECTED] i'm allowed
in no questions asked.
Help needed!
Thanks.
Dave.

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


Re: Verizon's EVDO and FreeBSD

2005-02-18 Thread Mikhail Teterin
 Hi Robert and Mikhail,
 
   Mikhail, make sure the following is in your kernel configuration
 file and recompile the kernel, then post the dmesg output. This should
 get your card recognized although it probably isn't going to be
 recognized as a modem. But if we see the dmesg output there might be
 enough info to suggest a mod to get it recognized as a modem:

Wait, I don't a card yet :-) I was just trying to find out, whether I
should bother obtaining one...
 
Ted, would you take Robert's offer for the benefit of FreeBSD users (and
that of Verizon)? Assuming, Robert is willing to loan the card first, of
course :-)

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


Re: Mindterm and SSH

2005-02-18 Thread Xian
On Friday 18 February 2005 14:02, sn1tch wrote:
 Hello everyone,

 I have a question regarding the use of the Mindterm applet on a site
 sitting on my bsd machine. I have it setup and everything runs great,
 except for when it comes time to login via the applet. Mindterm, upon
 entering my username, abruptly responds Authentication method
 'password' not supported by server. I went into the sshd_config and
 changed the 'passwordauthentication' to yes and it now asks me for my
 password (which it never did before) and I get my shell. Now firstly,
 is this an option I want to leave on? Or is there a better way of
 going about this? Please forgive the ignorance but I hope this is the
 right list to post to.


 Thanks in advance for any help.

Weather passwords are ok or not depends on a lot of things (I'm sure someone 
else will say more on this). You may be able to use public/private keys.I 
don't know what exactly Mindterm is.
The man pages for ssh-keygen, ssh-agent, and ssh is where I found out how to 
use them.

-- 
/Xian

Succeed in spite of management
unknown author
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


can not remount an FS read-only

2005-02-18 Thread Mikhail Teterin
Hello!

My /opt filesystem (playing both LOCALBASE and X11BASE) is normally
mounted read-only (not so much for security even, as for safety).

When I add/remove ports, I remount it read-write:

mount -orw -u /opt

do, what I need and then remount it back `ro'.

This works most of the times, but sometimes, like today (after /opt was
open for some time), mount responds with EBUSY:

mount: /dev/da0s2f: Device busy

According to fstat, out of 134 files opened under /opt:

fstat | fgrep -c /opt
134

NONE is opened for writing:

fstat | fgrep /opt | grep -c 'w$'
0

Is there a bug in the open-file counter somewhere, or is fstat not
telling me the whole story? In the past, trying to force the read-only
mount (-f) caused quite a few processes to segfault (sometimes including
X-server).

Thanks!

-mi

P.S. I've seen this on both 4- and 5-stable.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Deinstalling perl module installed using CPAN

2005-02-18 Thread BSD todoo
Hi all,
How to deinstall a perl module (bsdpan-MailTools-1.64) that has been 
installed using CPAN ?

I would like to deinstall that module manually and then reinstall It 
from the port tree.

The reason why is that everytime I try ton deinstall a port I have 
these nasty messages :

ns2# pkg_deinstall qt
---  Deinstalling 'qt-3.3.3_3'
pkg_delete: package 'qt-3.3.3_3' is required by these other packages
and may not be deinstalled:
arts-1.3.2,1
qca-tls-1.0_1
sdl-1.2.8,2
** Listing the failed packages (*:skipped / !:failed)
! qt-3.3.3_3(pkg_delete failed)
---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
ns2# pkg_deinstall sdl-1.2.8,2
---  Deinstalling 'sdl-1.2.8,2'
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
pkg_delete: package bsdpan-MailTools-1.64 has no origin recorded
[Updating the pkgdb format:bdb1_btree in /var/db/pkg ... - 190 
packages found (-1 +0) (...) done]
This is getting on my nerves and I would like to clean this and install 
It the proper way (the BSD one !).

Sincerly yours;
__
«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§
¯¯
Gregober --- PGP ID -- 0x1BA3C2FD
omni_osx_ml @at@ todoo.biz
__
«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§
¯¯
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Removing old perl version from system

2005-02-18 Thread BSD todoo
Hello again !
I have all these version of perl installed on my system (FreeBSD 5.2.1) 
: 5.6.1   5.6.2   5.8.5   5.8.6

I would like to get rid of the old versions and only keep 5.8.6 how do 
I have to do that ??

The reason why I would like to do that is that when I upgrade the port 
tree I found that modules sometimes get confused and switch to the old 
5.6.1 module !!

What are the pros and cons of doing such an uninstall ??
Thanks for your answers.
__
«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§
¯¯
Gregober --- PGP ID -- 0x1BA3C2FD
omni_osx_ml @at@ todoo.biz
__
«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§«?»¥«?»§
¯¯
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: WHAT KIND OF SH*T IS THIS: telnet and ssh

2005-02-18 Thread Bob Johnson
Chris Hodgins wrote:
Ion-Mihai Tetcu wrote:
On Thu, 17 Feb 2005 17:47:31 -0500
Fafa Diliha Romanova [EMAIL PROTECTED] wrote:

let's get straight to it:

Yes:
1, post to the appropriate list(s) ([EMAIL PROTECTED] is not, at least
not w/o a PR).
2. Double-check before reporting.

whenever i telnet or ssh to something that's offline, i get e.g.:
ssh: hostname.domain.com: hostname nor servname provided, or not known

here it says:
ssh [EMAIL PROTECTED]

ssh: connect to host hostname.doa.ain port 22: Operation timed out

I am seeing what Fafa sees:
$ ssh ewlkjfsd
ssh: ewlkjfsd: hostname nor servname provided, or not known
$ telnet sdfklh
sdfklh: hostname nor servname provided, or not known
When you try to connect to a host whose name DOES NOT EXIST in the DNS 
system, you get the error message Fafa is complaining about.  For 
example, if you type a host name wrong, or just make up a host name.

When you try to connect to a legitimate host that is offline (i.e. its 
name exists, but the host is not on the network at the time), you get 
the timed out message.  The difference is significant and important 
when you are trying to figure out what went wrong. 

Fafa's use of the word offline to describe a host that doesn't exist 
at all was not accurate.  It is also not generally productive to be rude 
when asking VOLUNTEERS to help you.  The likely response is fix it 
yourself, which is my suggestion for this case.

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


Re: Removing old perl version from system

2005-02-18 Thread Bill Moran
BSD todoo [EMAIL PROTECTED] wrote:

 Hello again !
 
 I have all these version of perl installed on my system (FreeBSD 5.2.1) 
 : 5.6.1   5.6.2   5.8.5   5.8.6
 
 I would like to get rid of the old versions and only keep 5.8.6 how do 
 I have to do that ??
 
 The reason why I would like to do that is that when I upgrade the port 
 tree I found that modules sometimes get confused and switch to the old 
 5.6.1 module !!

I recently did something similar to this for a client.  In my case, there
were only two perls installed (5.6.? and 5.8.?)

In my case, I was able to easily deinstall perl 5.8.  I then used
portupgrade with the -o option to replace perl 5.6 with perl 5.8.  It
seems a little roundabout to deinstall 5.8, only to reinstall it, but
it got the job done.  I used portupgrade with the -f option to force
all software dependent on perl to be rebuilt.  After that, all worked,
and I only had perl5.8.

I do remember one glitch: somewhere during process, the system reverted
to using perl 5.005 (this was FreeBSD 4.11) and I had to manually
'use.perl port' to fix that.  Not a big deal, except I had to repeat
a number of steps because I didn't realize it had happened.  Watch for
this using 'perl -v' between steps ... but it shouldn't happen on
FreeBSD 5.x.

In your case, I expect it will be a little more complicated.  If it were
me, I would start out by deinstalling everything not necessary to the
system's operation, as well as anything that's perl-dependent and won't
be difficult to reinstall (some packages require a lot of work, others
are a breeze ...)  I would then see if I could deinstall perl 5.6.1
and perl 5.8.5.  If that worked, I'd be back to where I was on the
other system, and I could simply remove 5.8, and then do
'portupgrade -o lang/perl5.8 perl-5.6.2' (please note that command is
from memory, and may not be perfectly correct.  Once I had it down
to just perl 5.8, I used 'portupgage -fr perl'.  This tells the system
to rebuild/reinstall all packages that depend on perl, whether they
need upgrade or not.  Note that this is probably overkill, but I'd
rather over than under.

Be wary that some of those portupgrade commands can take a LONG time,
and if you have some things you don't want to upgrade, they could
bite you.  Liberal use of the -n option to portupgrade is recommended
to ensure that it's not doing something you don't want it to do.
If you get stuck with getting things deinstalled, you can either
deinstall all packages dependent on them, or use the -f option to
force the operation.  The former is more time-consuming, the latter
can be risky.

Do this during non-production time, as it's likely that many perl apps
will have trouble during the process and will need restarted to work
again after the process is finished.

 What are the pros and cons of doing such an uninstall ??

Pros are that the system will be easier to maintain.  You're system will
have less programs with vulnerabilities installed, and will use less
disk space.

Cons are that you'll spend less time working with this system, and it's
less likely to get cracked, so if you get paid by the hour, you'll make
less $$.

Good luck.

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com


pgp5l29uVh6Qd.pgp
Description: PGP signature


FreeBSD basic tool differences with Red Hat Enterprise 3

2005-02-18 Thread Olaf Greve
Hi all,
Today over here a rather fancy server was delivered on which in little 
time I have to set-up several packages, such that the machine becomes a 
web server for an intranet application.

Now... Though basically most Unixes are heavily similar, I unfortunately 
find myself with very little time to get into the specifics on Red Hat.

I will quickly start doing some RTFM-ing, but I'm hoping anyone on this 
list has some experience with this particular Unix, and can perhaps give 
me some quick pointers on the following (and later perhaps on some other 
things as well):

-What is the tool that more or less does the same as FreeBSDs sysinstall?
-Where does one configure the network adapter settings?
-How does one add packages?
-Probably most important: AFAIK Red Hat is not typically the first 
choice for a web server (as opposed to FreeBSD and Debian). Is anyonw 
aware of potential security risks/issues that Red Hat Enterprise might 
suffer from?

Thanks a lot in advance, and if any replies to this are deemed 
inappropriate for the FreeBSD list, can you please reply to my private 
e-mail address?

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


Re: WHAT KIND OF SH*T IS THIS: telnet and ssh

2005-02-18 Thread Chad Morland
This user is constantly cross-posting, using profanity and asking
questions that are answered in the handbook. Not only that he is
constantly making demands of OTHERS to help with HIS problems.

Fafa: Do the research YOURSELF and maybe you will learn something. 

http://www.freebsd.org/doc/en_US.ISO8859-1/articles/freebsd-questions/article.html



From: Fafa Diliha Romanova [EMAIL PROTECTED]
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Date: Sun, 13 Feb 2005 09:53:02 -0500
Subject: WEIRD: telnet

From: Fafa Diliha Romanova [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Date: Sat, 12 Feb 2005 06:50:06 -0500
Subject: make world: HOW CLEAN IS IT?

From: Fafa Diliha Romanova [EMAIL PROTECTED]
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Date: Fri, 11 Feb 2005 05:39:14 -0500
Subject: I can't BOOT! You all need to WAKE UP and HELP a BROTHER!!!

From: Fafa Diliha Romanova [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Date: Wed, 09 Feb 2005 16:31:14 -0500
Subject: what a fucking serious problem: really, it *doesn't* boot
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD basic tool differences with Red Hat Enterprise 3

2005-02-18 Thread Jerry McAllister
Hi,

 Hi all,
 Today over here a rather fancy server was delivered on which in little 
 time I have to set-up several packages, such that the machine becomes a 
 web server for an intranet application.
 
 Now... Though basically most Unixes are heavily similar, I unfortunately 
 find myself with very little time to get into the specifics on Red Hat.
 
 I will quickly start doing some RTFM-ing, but I'm hoping anyone on this 
 list has some experience with this particular Unix, and can perhaps give 
 me some quick pointers on the following (and later perhaps on some other 
 things as well):

One wonders why you would address a question about Red Hat LINUX to
the FreeBSD Questions list.   LINUX, as you must know, is not FreeBSD
or any BSD as far as that goes.

Now, there are many smart and diversified folk on this list and
someone may well respond, but I would think that if you want LINUX
information, you would ask on a LINUX list.

On the other hand, why would you want to use Red Hat for a web server
when you could use FreeBSD and get what you want and happily ask lots
of questions on the FreeBSD Questions list - and probably get good
and helpful responses.As far as I know, FreeBSD is the happy choice
when it comes to web servers.

jerry

 
 -What is the tool that more or less does the same as FreeBSDs sysinstall?
 
 -Where does one configure the network adapter settings?
 
 -How does one add packages?
 
 -Probably most important: AFAIK Red Hat is not typically the first 
 choice for a web server (as opposed to FreeBSD and Debian). Is anyonw 
 aware of potential security risks/issues that Red Hat Enterprise might 
 suffer from?
 
 Thanks a lot in advance, and if any replies to this are deemed 
 inappropriate for the FreeBSD list, can you please reply to my private 
 e-mail address?
 
 Cheers!
 Olafo
 ___
 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: Festival and vchans

2005-02-18 Thread Chad Albert
OK, I have found that I am a tone deaf idiot.  I have been
troubleshooting festival all this time and found that when I play an mp3
with sox it is playing in a low pitch also.  When I originally tested it
I only listened to the first few notes of a song then stopped it.  It
actually appears to be a problem with having vchans enabled.  All sound
seems to be playing in slow motion.  Now maybe since I have identified
the source correctly I can find a fix :-) 



-- Chad


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Zeng Nan
Sent: Wednesday, February 16, 2005 9:25 PM
To: freebsd-questions@freebsd.org
Subject: Re: Festival and vchans

On Wed, Feb 16, 2005 at 11:41:16AM -0600, Chad Albert wrote:
 
 
 I recently set hw.snd.pcm0.vchans=4 on a FreeBSD 5.3 box and now 
 when I try to get festival to speak I just get silence.  I can play 
 sound files with sox and if I copy a file to /dev/dsp I get noise as I

 would expect.  Festival worked before I turned on virtual channels but

 now I get nothing.  I have set festival's Audio_Method to 
 freebsd16audio and that does not work.  When I set it to netaudio I 
 get what sounds like slow motion speaking.  Has anyone seen/solved
this before?
  

I'm not sure what your problem is. I have the same vchans setting and I
use nasd as output method. It works fine. I use mwm voice by default.
-- 
Zeng Nan   
Simple is Beautiful.

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


Installing a vulnerable port

2005-02-18 Thread Richard Danter
Hi all,
I am new to FreeBSD and the ports collection and have hit probably a 
trivial problem which I hope someone can help with.

I'm trying to set up a print  file server. I have installed 5.3-RELEASE 
and successfully compiled a new kernel with lots of stuff removed that I 
know I don't need. Everything seems to be working fine to this point.

What I am now doing is trying to install APSFILTER from the ports 
collection. I have installed and run CVSup, and portaudit. When I try to 
build APSFILTER it goes well until it gets to the point where it needs 
Samba (smbclient). It seems there is a known vulnerability and so 
refuses to build it telling me to update my ports tree. I know the tree 
is up to date, so I assume there is no fix for this particular problem 
yet. How can I force the build to ignore this problem for now?

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


masterpasswd file

2005-02-18 Thread michaelmortensen
Hi 

I have a question concerning a FreeBSD server. I'm currently studying to get a 
CCNA and CCSP.. On top of that, I'm training to become an ethical hacker.. But 
now I have a small problem..

I'm currently working on a project to find a way to get the masterpasswd file 
from a FreeBSD server... I don't really have any experience with FreeBSD and 
therefore I'm asking you! The server is a training server set up for me, so 
don't worry.. I'm not doing anything illegal here. See I could try to find 
out myself by installing FreeBSD and studying it.. And I really would to, if 
the case wasn't that I have a deadline in a week

If you want to verify my identity, I can send you another email when I'm at my 
own computer (this is my girlfriends moms), I have a digital signature... :P

I hope you can help!

Cheers
Michael Mortensen
Kirkevej 3
7540 Haderup
Denmark

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


Re: How change the FTP_PASSIVE_MODE?

2005-02-18 Thread perikillo
  Yes i have something like that:

/et/ipf.rules

   pass out quick on tun0 proto tcp from 198.168.1.0/24 to any port =
21 flags S keep state

I only need to add the new line on /etc/ipnat.rules, like this
  (ftp.freebsd.org)
   map tun0 192.168.1.0/24 - 204.152.184.73/32 proxy port ftp ftp/tcp
   map tun0 192.168.1.0/24 - 0/32 proxy port ftp ftp/tcp
   map tun0 192.168.1.0/24 - 0/32 portmap tcp/udp 2:3
   map tun0 192.168.1.0/24 - 0/32

   Is correct, but this will be for all the passive FTP servers
with problems that my clients need to access???

   Another question, before my rules was:

   /etc/ipf.rules
  
   group 1 IN
   ***block all private address  that don't have to nothing to do on my LAN.
   ***block all IN packets over tun0

group 2 OUT
pass out quick on tun0 proto tcp from any to any flags S keep state
pass out quick on tun0 proto udp from any to any keep state
pass out quick on tun0 proto icmp from any to any keep state

group 3 IN
** allow  ed0 my private IP to get IN all
** allow lo0 to get IN all

group 4 OUT
**allow ed0 to go OUT all
**allow lo0 to go OUT all
  
 block in all
 block out all
 
 /etc/ipnat.rules
map tun0 192.168.1.0/24 - 0/32

   Them i change my rules based on the handbook.

/etc/ipf.rules ---new
group 1 IN
***block IN over tun0 based on 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls-ipf.html
  
group 2 OUT
   ***block OUT over tun0 based on 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls-ipf.html
   
group 3 IN
***allow my LAN to communicate with out any restrictions ed0 and lo0
pass in quick on ed0 from any to any   
pass in quick lo0 from any to any

group 4 OUT
***allow my LAN to communicate with out any restrictions ed0 and lo0
pass out on ed0 from any to any
pass out on lo0 from any to any

 block in all
 block out all

 /etc/ipnat.rules  ---new
map tun0 192.168.1.0/24 - 0/32 proxy port ftp ftp/tcp
map tun0 192.168.1.0/24 - 0/32 portmap tcp/udp 2:3
map tun0 192.168.1.0/24 - 0/32


 Went i make this change start my problems, but let me test with your tip.
 
On Fri, 18 Feb 2005 13:35:28 +0200, Nelis Lamprecht
[EMAIL PROTECTED] wrote:
 On Thu, 17 Feb 2005 15:25:13 -0800, perikillo [EMAIL PROTECTED] wrote:
Hi, i have been around reading docs about the problem we have a lot
  of people went we try to access one ftp server on the Internet,
  normally the (Passive servers), in the past i was using rules on
  IPFILTER(freebsd 4.10 p5, think is the 3.4.31??  the one it cames
  with), my rule was:
 
To block all that arrives to my tun0(IN), and let out all the
  packets of my internal cients  over tun0 and keep state. it was easy,
  only let my users go to outside world. My ipnat it was simply, only:
 
  map tun0 198.168.1.0/24 - 0/32
 
 With this all my clients(win2k, win98, Freebsd, win XP) where happy
  and secure.
 
 Them i decide to change my rules be more define, i read the
  handbook, and start making changes:
 
  Block in all over my tun0 and let out any package over my tun0 only to:
  port 21, 53, 80, 443, 5999, all the handbook say, services that i know
  that normally went someone surf the web he is going to connect to
  those services.
 
 I change my nat:
 
 map tun0 198.168.1.0//24 - proxy port 21 ftp/tcp
 map tun0 192.168.1.0/24 - 0/32 portmap tcp/udp 2:6
 map tun0 192.168.1.0/24 - 0/32
 
 Is ok, i can surf the web, but went i went to the freebsd server,
  what happend:
 
 ftp: ls
 entering passive mode(bla, bla, bla)
 ftp: connect no route to host
 
 
 hi,
 
 to solve your problem or you should need to do is add another rule for
 the actual freebsd server:
 
 map tun0 198.168.1.1/32 - 198.168.1.1/32 proxy port ftp ftp/tcp
 
 the above rule assumes 198.168.1.1 is your freebsd server. this rule
 should be placed first. you should also have a rule to pass out
 traffic, something along the lines of:
 
 pass out quick on tun0 proto tcp from 198.168.1.0/24 to any port = 21
 flags S keep state
 
 that should do the trick.
 
 cheers,
 nelis

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


Re: How change the FTP_PASSIVE_MODE?

2005-02-18 Thread perikillo
On Fri, 18 Feb 2005 13:35:28 +0200, Nelis Lamprecht
[EMAIL PROTECTED] wrote:
 On Thu, 17 Feb 2005 15:25:13 -0800, perikillo [EMAIL PROTECTED] wrote:
Hi, i have been around reading docs about the problem we have a lot
  of people went we try to access one ftp server on the Internet,
  normally the (Passive servers), in the past i was using rules on
  IPFILTER(freebsd 4.10 p5, think is the 3.4.31??  the one it cames
  with), my rule was:
 
To block all that arrives to my tun0(IN), and let out all the
  packets of my internal cients  over tun0 and keep state. it was easy,
  only let my users go to outside world. My ipnat it was simply, only:
 
  map tun0 198.168.1.0/24 - 0/32
 
 With this all my clients(win2k, win98, Freebsd, win XP) where happy
  and secure.
 
 Them i decide to change my rules be more define, i read the
  handbook, and start making changes:
 
  Block in all over my tun0 and let out any package over my tun0 only to:
  port 21, 53, 80, 443, 5999, all the handbook say, services that i know
  that normally went someone surf the web he is going to connect to
  those services.
 
 I change my nat:
 
 map tun0 198.168.1.0//24 - proxy port 21 ftp/tcp
 map tun0 192.168.1.0/24 - 0/32 portmap tcp/udp 2:6
 map tun0 192.168.1.0/24 - 0/32
 
 Is ok, i can surf the web, but went i went to the freebsd server,
  what happend:
 
 ftp: ls
 entering passive mode(bla, bla, bla)
 ftp: connect no route to host
 
 
 hi,
 
 to solve your problem or you should need to do is add another rule for
 the actual freebsd server:
 
 map tun0 198.168.1.1/32 - 198.168.1.1/32 proxy port ftp ftp/tcp
 
 the above rule assumes 198.168.1.1 is your freebsd server. this rule
 should be placed first. you should also have a rule to pass out
 traffic, something along the lines of:
 
 pass out quick on tun0 proto tcp from 198.168.1.0/24 to any port = 21
 flags S keep state
 
 that should do the trick.
 
 cheers,
 nelis

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


freebsd and 2 broaband dsl router

2005-02-18 Thread Kangaroo
ZoomX4modem/router  Dlinkrouter   
PCs 
 
- 
-
Internet -|  64.123.128.11   10.0.0.3 
   10.0.0.5192.168.0.2  192.168.0.29
|__   
 __  _
  
 gw2 :10.0.0.3  
gw1:192.168.0.2   

   allow port 8080
  
  PCs: port 8080 webserver
port 21,23
set virtual server
 :port 21  ftp server
   addr:? 
   allow port 21,8080,23  
  :port 23  telnet
  
addr:192.168.0.29
  
   
Zoom/modem router connect to ISP address 63.123.128.11
Zoom router local IP : 10.0.0.3
Zoom is DHCP generate ip 10.0.0.5 for D-LINK.
D-LINK local IP 192.168.0.2  
D-LINK DHCP generate IP for PC ip:192.168.0.29

* Connection to outside world is OK.
Question.
How do set up that internet user can access PCs local
webserver?
http://64.123.128.11:8080  does not work
http://64.123.128.11  will ask admin name and password of
zoom modem and lead to admin page of the modem

How do  i get it connect to webserver from the intermet
user?
Your help is greatly appreciate.

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


How to get best results from FreeBSD-questions

2005-02-18 Thread Greg Lehey

How to get the best results from FreeBSD questions.
===

Last update $Date: 2004/09/19 02:40:48 $

This is a regular posting to the FreeBSD questions mailing list.  If
you got it in answer to a message you sent, it means that the sender
thinks that at least one of the following things was wrong with your
message:

- You left out a subject line, or the subject line was not appropriate.
- You formatted it in such a way that it was difficult to read.
- You asked more than one unrelated question in one message.
- You sent out a message with an incorrect date, time or time zone.
- You sent out the same message more than once.
- You sent an 'unsubscribe' message to FreeBSD-questions.

If you have done any of these things, there is a good chance that you
will get more than one copy of this message from different people.
Read on, and your next message will be more successful.

This document is also available on the web at
http://www.lemis.com/questions.html.

=

Contents:

I:Introduction
II:   How to unsubscribe from FreeBSD-questions
III:  Should I ask -questions, -newbies or -hackers?
IV:   How to submit a question to FreeBSD-questions
V:How to answer a question to FreeBSD-questions

I: Introduction
===

This is a regular posting aimed to help both those seeking advice from
FreeBSD-questions (the newcomers), and also those who answer the
questions (the hackers).

   Note that the term hacker has nothing to do with breaking
   into other people's computers.  The correct term for the latter
   activity is cracker, but the popular press hasn't found out
   yet.  The FreeBSD hackers disapprove strongly of cracking
   security, and have nothing to do with it.

In the past, there has been some friction which stems from the
different viewpoints of the two groups.  The newcomers accused the
hackers of being arrogant, stuck-up, and unhelpful, while the hackers
accused the newcomers of being stupid, unable to read plain English,
and expecting everything to be handed to them on a silver platter.  Of
course, there's an element of truth in both these claims, but for the
most part these viewpoints come from a sense of frustration.

In this document, I'd like to do something to relieve this frustration
and help everybody get better results from FreeBSD-questions.  In the
following section, I recommend how to submit a question; after that,
we'll look at how to answer one.

II:  How to unsubscribe from FreeBSD-questions
==

When you subscribed to FreeBSD-questions, you got a welcome message
from [EMAIL PROTECTED]  In this message, amongst
other things, it told you how to unsubscribe.  Here's a typical
message:

  Welcome to the freebsd-questions@freebsd.org mailing list!

If you ever want to unsubscribe or change your options (eg, switch to
or from digest mode, change your password, etc.), visit your
subscription page at:

  http://lists.freebsd.org/mailman/options/freebsd-questions/[EMAIL PROTECTED]
  
(obviously, substitute your mail address for [EMAIL PROTECTED]).  You can
also make such adjustments via email by sending a message to:

  [EMAIL PROTECTED]
  
with the word 'help' in the subject or body (don't include the
quotes), and you will get back a message with instructions.

You must know your password to change your options (including
changing the password, itself) or to unsubscribe.
  
Normally, Mailman will remind you of your freebsd.org mailing list
passwords once every month, although you can disable this if you
prefer.  This reminder will also include instructions on how to
unsubscribe or change your account options.  There is also a button on
your options page that will email your current password to you.

  Here's the general information for the list you've
  subscribed to, in case you don't already have it:

  FREEBSD-QUESTIONS   User questions
  This is the mailing list for questions about FreeBSD.  You should not
  send how to questions to the technical lists unless you consider the
  question to be pretty technical.

Normally, unsubscribing is even simpler than the message suggests: you
don't need to specify your mail ID unless it is different from the one
which you specified when you subscribed.

If Majordomo replies and tells you (incorrectly) that you're not on
the list, this may mean one of two things:

  1.  You have changed your mail ID since you subscribed.  That's where
  keeping the original message from majordomo comes in handy.  For
  example, the sample message above shows my mail ID as
  [EMAIL PROTECTED]  Since then, I have changed it to
  [EMAIL PROTECTED]  If I were to try to remove [EMAIL PROTECTED] from
  the list, it would fail: I would have to specify the name with
  which I joined.

  2.  You're subscribed to a mailing list which is subscribed to
  

The Complete FreeBSD: errata and addenda

2005-02-18 Thread Greg Lehey
The trouble with books is that you can't update them the way you can a web page
or any other online documentation.  The result is that most leading edge
computer books are out of date almost before they are printed.  Unfortunately,
The Complete FreeBSD, published by O'Reilly, is no exception.  Inevitably, a
number of bugs and changes have surfaced.

The Complete FreeBSD has been through a total of five editions, including its
predecessor Installing and Running FreeBSD.  Two of these have been reprinted
with corrections.  I maintain a series of errata pages.  Start at
http://www.lemis.com/errata-4.html to find out how to get the errata
information.

Have you found a problem with the book, or maybe something confusing?  Please
let me know: I'm constantly updating it.

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


RE: Verizon's EVDO and FreeBSD

2005-02-18 Thread Robert Kim, Wireless Internet Consultant
Ted, Mi,

Sure.. I've got one extra that I normally rent out... But if you guys
would like... I can mail it to one of you and just pass it on to the
next guy in a week... In fact.. .why don't we just create a loaner
schedule... Who wants to go first?

The card is live... And is costing me $79/m so if you'd like a $15
contribution is welcome but not necessary... My goal is to get a DRIVER
for the thing in FreeBSD...

Daisy chain every 7 days???

bob

X
Robert Kim, 
Wireless Internet Wifi Hotspot Advisor
 
http://wireless-internet-broadband-service.com
https://evdo.sslpowered.com/wifi-hotspot-router.htm
2611 S Pacific Coast Highway 101
Cardiff by the Sea CA 92007 : 206 984 0880

 Wireless Internet Service Is ONLY Broadband with Broadband Customer
Service(tm)
 OUR QUEST: To Kill the Cubicle! (SM)
---Shalo
-;-) 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mikhail
Teterin
Sent: Friday, February 18, 2005 6:32 AM
To: Ted Mittelstaedt
Cc: [EMAIL PROTECTED]; freebsd-questions@freebsd.org;
[EMAIL PROTECTED]
Subject: Re: Verizon's EVDO and FreeBSD


 Hi Robert and Mikhail,
 
   Mikhail, make sure the following is in your kernel configuration 
 file and recompile the kernel, then post the dmesg output. This should

 get your card recognized although it probably isn't going to be 
 recognized as a modem. But if we see the dmesg output there might be 
 enough info to suggest a mod to get it recognized as a modem:

Wait, I don't a card yet :-) I was just trying to find out, whether I
should bother obtaining one...
 
Ted, would you take Robert's offer for the benefit of FreeBSD users (and
that of Verizon)? Assuming, Robert is willing to loan the card first, of
course :-)

-mi

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


Re: Verizon's EVDO and FreeBSD

2005-02-18 Thread Mikhail Teterin
 Ted, Mi,

 Sure.. I've got one extra that I normally rent out... But if you guys
 would like... I can mail it to one of you and just pass it on to the
 next guy in a week... In fact.. .why don't we just create a loaner
 schedule... Who wants to go first?

 The card is live... And is costing me $79/m so if you'd like a $15
 contribution is welcome but not necessary... My goal is to get a DRIVER
 for the thing in FreeBSD...

 Daisy chain every 7 days???

 bob

Sounds like, of the two of us, Ted would be more capable of getting it to 
work. Unless he has no time to spare, he should get it.

And if Ted or somebody else does modify FreeBSD (and/or publishes easy to 
follow how-to instructions) for EVDO ends up working with my 5-stable Vaio 
laptop, I'll either buy a minimum of $150 worth of service through you, 
Robert, or just send you a check for $30.

Your company will also be able to claim a spot on the FreeBSD's list of 
hardware vendors, whatever that may be worth :-)

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


need help with script and sed

2005-02-18 Thread Jim Pazarena
I would like to traverse my /users/home tree searching
for all regular files and change any lines which read:
  /cgi-bin/Count.cgi ... to:
  http://counter.qcislands.net/cgi-bin/Count.cgi ...
I kinda think that a 'find' with an -exec of 'sed' would do
it but I'm not sure, and even if it were, I'm not sure of
the syntax.
Could someone help me please?
Thanks!
Jim
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: masterpasswd file

2005-02-18 Thread Bill Moran
[EMAIL PROTECTED] wrote:

 Hi 
 
 I have a question concerning a FreeBSD server. I'm currently studying to get 
 a CCNA and CCSP.. On top of that, I'm training to become an ethical hacker.. 
 But now I have a small problem..
 
 I'm currently working on a project to find a way to get the masterpasswd file 
 from a FreeBSD server... I don't really have any experience with FreeBSD and 
 therefore I'm asking you! The server is a training server set up for me, so 
 don't worry.. I'm not doing anything illegal here. See I could try to 
 find out myself by installing FreeBSD and studying it.. And I really would 
 to, if the case wasn't that I have a deadline in a week
 
 If you want to verify my identity, I can send you another email when I'm at 
 my own computer (this is my girlfriends moms), I have a digital signature... 
 :P

Haha ... you're so honest.

If you want access to /etc/master.passwd, you'll have to be root.

If you're telling the truth, and you have legitimate reason to want this,
then you need to contact whoever has root access to that machine and get
their cooperation.

If you're trying to get master.passwd on a machine that you have no root
access on, they you'll have to break root on that machine, and this is
the wrong forum to ask questions about how to do that.

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com


pgpzdHWKPrPwL.pgp
Description: PGP signature


Re: Installing a vulnerable port

2005-02-18 Thread Bill Moran
Richard Danter [EMAIL PROTECTED] wrote:

 Hi all,
 
 I am new to FreeBSD and the ports collection and have hit probably a 
 trivial problem which I hope someone can help with.
 
 I'm trying to set up a print  file server. I have installed 5.3-RELEASE 
 and successfully compiled a new kernel with lots of stuff removed that I 
 know I don't need. Everything seems to be working fine to this point.
 
 What I am now doing is trying to install APSFILTER from the ports 
 collection. I have installed and run CVSup, and portaudit. When I try to 
 build APSFILTER it goes well until it gets to the point where it needs 
 Samba (smbclient). It seems there is a known vulnerability and so 
 refuses to build it telling me to update my ports tree. I know the tree 
 is up to date, so I assume there is no fix for this particular problem 
 yet. How can I force the build to ignore this problem for now?

make FORCE_PKG_REGISTER=yes install

This is in the ports manpage, and IIRC, it's also output as part of the
error when the port aborts installation.

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com


pgpYy15oawPMJ.pgp
Description: PGP signature


5.3 Buildworld on Via C3 fails

2005-02-18 Thread ctodd

I just upgraded one of my Via systems (fresh install) to 5.3-R. I cvsup'd
the src (RELENG_5_3) and attempted a build world, but it consistently
fails when building libbfd. Given that it's a compiler error I thought it
may have something to do with the C3 processor. I know there's a conflict
with GCC and i686 processors that don't support CMOV, but I don't know if
it's related. I have not rebuilt the kernel yet, fyi. Thoughts?

Chris

=== gnu/usr.bin/binutils/libbfd
cc -O -pipe -I. -I/usr/src/gnu/usr.bin/binutils/libbfd
-I/usr/src/gnu/usr.bin/binutils/libbfd/../libbfd
-I/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/binutils/libbfd/../libbfd
-I/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/include
-D_GNU_SOURCE
-I/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd
-DSELECT_ARCHITECTURES= bfd_i386_arch -DHAVE_bfd_elf32_i386_freebsd_vec
-DHAVE_bfd_elf32_i386_vec -DSELECT_VECS= bfd_elf32_i386_freebsd_vec
,bfd_elf32_i386_vec -DDEFAULT_VECTOR=bfd_elf32_i386_freebsd_vec
-I/usr/obj/usr/src/i386/legacy/usr/include -c
/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/cpu-i386.c
cc -O -pipe -I. -I/usr/src/gnu/usr.bin/binutils/libbfd
-I/usr/src/gnu/usr.bin/binutils/libbfd/../libbfd
-I/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/binutils/libbfd/../libbfd
-I/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/include
-D_GNU_SOURCE
-I/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd
-DSELECT_ARCHITECTURES= bfd_i386_arch -DHAVE_bfd_elf32_i386_freebsd_vec
-DHAVE_bfd_elf32_i386_vec -DSELECT_VECS= bfd_elf32_i386_freebsd_vec
,bfd_elf32_i386_vec -DDEFAULT_VECTOR=bfd_elf32_i386_freebsd_vec
-I/usr/obj/usr/src/i386/legacy/usr/include -c
/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/elf32-i386.c
cc -O -pipe -I. -I/usr/src/gnu/usr.bin/binutils/libbfd
-I/usr/src/gnu/usr.bin/binutils/libbfd/../libbfd
-I/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/binutils/libbfd/../libbfd
-I/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/include
-D_GNU_SOURCE
-I/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd
-DSELECT_ARCHITECTURES= bfd_i386_arch -DHAVE_bfd_elf32_i386_freebsd_vec
-DHAVE_bfd_elf32_i386_vec -DSELECT_VECS= bfd_elf32_i386_freebsd_vec
,bfd_elf32_i386_vec -DDEFAULT_VECTOR=bfd_elf32_i386_freebsd_vec
-I/usr/obj/usr/src/i386/legacy/usr/include -c
/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/elf32.c
cc -O -pipe -I. -I/usr/src/gnu/usr.bin/binutils/libbfd
-I/usr/src/gnu/usr.bin/binutils/libbfd/../libbfd
-I/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/binutils/libbfd/../libbfd
-I/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/include
-D_GNU_SOURCE
-I/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd
-DSELECT_ARCHITECTURES= bfd_i386_arch -DHAVE_bfd_elf32_i386_freebsd_vec
-DHAVE_bfd_elf32_i386_vec -DSELECT_VECS= bfd_elf32_i386_freebsd_vec
,bfd_elf32_i386_vec -DDEFAULT_VECTOR=bfd_elf32_i386_freebsd_vec
-I/usr/obj/usr/src/i386/legacy/usr/include -c
/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/elflink.c
/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/elflink.c:
In function `elf_link_output_extsym':
/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/elflink.c:6073:
internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://gcc.gnu.org/bugs.html for instructions.
*** Error code 1

Stop in /usr/src/gnu/usr.bin/binutils/libbfd.
*** Error code 1

Stop in /usr/src/gnu/usr.bin/binutils.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.

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


Re: need help with script and sed

2005-02-18 Thread Frank Laszlo
Jim Pazarena wrote:
I would like to traverse my /users/home tree searching
for all regular files and change any lines which read:
  /cgi-bin/Count.cgi ... to:
  http://counter.qcislands.net/cgi-bin/Count.cgi ...
I kinda think that a 'find' with an -exec of 'sed' would do
it but I'm not sure, and even if it were, I'm not sure of
the syntax.
Could someone help me please?
Thanks!
Jim
for i in `find /users/home -type f`; do
   sed -i '' 
s|/cgi-bin/Count.cgi|http://counter.qcislands.net/cgi-bin/Count.cgi|g $i
done

This should do the trick.
Regards,
   Frank Laszlo
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: need help with script and sed

2005-02-18 Thread Bill Moran
Frank Laszlo [EMAIL PROTECTED] wrote:
 Jim Pazarena wrote:
 
  I would like to traverse my /users/home tree searching
  for all regular files and change any lines which read:
/cgi-bin/Count.cgi ... to:
http://counter.qcislands.net/cgi-bin/Count.cgi ...
 
  I kinda think that a 'find' with an -exec of 'sed' would do
  it but I'm not sure, and even if it were, I'm not sure of
  the syntax.
 
  Could someone help me please?
 
  Thanks!
  Jim
 
 
 for i in `find /users/home -type f`; do
 sed -i '' 
 s|/cgi-bin/Count.cgi|http://counter.qcislands.net/cgi-bin/Count.cgi|g $i
 done

The only thing I would recommend different is to provide a backup file
extension to the -i option of sed.  That way it keeps a copy of the file
as it was before sed touches it.  This will save you a lot of headaches,
if sed does something you don't expect.

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com


pgpEKy22tkSU8.pgp
Description: PGP signature


Re: 5.3 Buildworld on Via C3 fails

2005-02-18 Thread cpghost
On Fri, Feb 18, 2005 at 09:39:43AM -0800, [EMAIL PROTECTED] wrote:
 I just upgraded one of my Via systems (fresh install) to 5.3-R. I cvsup'd
 the src (RELENG_5_3) and attempted a build world, but it consistently
 fails when building libbfd. Given that it's a compiler error I thought it
 may have something to do with the C3 processor. I know there's a conflict
 with GCC and i686 processors that don't support CMOV, but I don't know if
 it's related. I have not rebuilt the kernel yet, fyi. Thoughts?

I've just compiled RELENG_5 yesterday evening on a VIA C3 Samuel 2
(EPIA 5000 Eden) without any problems. Perhaps you've cvsup(ed) at
the wrong time?

What do you have in /etc/make.conf?

 /usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/elflink.c
 /usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/elflink.c:
 In function `elf_link_output_extsym':
 /usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/elflink.c:6073:
 internal compiler error: Segmentation fault
 Please submit a full bug report,
 with preprocessed source if appropriate.

Regards,
-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Articals/howtos needed ..

2005-02-18 Thread W. D.
At 04:33 2/18/2005, faisal gillani wrote:
Hello there i want some small sized articals about
freebsd , if you have any please mail me on
[EMAIL PROTECTED] .

thanks


=
*º¤., ¸¸,.¤º*¨¨¨*¤ Allah-hu-Akber*º¤., ¸¸,.¤º*¨¨*¤
God is the Greatest

Lots of links on this page:
http://www.US-Webmasters.com/FreeBSD/Install/

Start Here to Find It Fast!™ - http://www.US-Webmasters.com/best-start-page/
$8.77 Domain Names - http://domains.us-webmasters.com/

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


Re: need help with script and sed

2005-02-18 Thread Frank Laszlo
Bill Moran wrote:
Frank Laszlo [EMAIL PROTECTED] wrote:
 

Jim Pazarena wrote:
   

I would like to traverse my /users/home tree searching
for all regular files and change any lines which read:
 /cgi-bin/Count.cgi ... to:
 http://counter.qcislands.net/cgi-bin/Count.cgi ...
I kinda think that a 'find' with an -exec of 'sed' would do
it but I'm not sure, and even if it were, I'm not sure of
the syntax.
Could someone help me please?
Thanks!
Jim
 

for i in `find /users/home -type f`; do
   sed -i '' 
s|/cgi-bin/Count.cgi|http://counter.qcislands.net/cgi-bin/Count.cgi|g $i
done
   

The only thing I would recommend different is to provide a backup file
extension to the -i option of sed.  That way it keeps a copy of the file
as it was before sed touches it.  This will save you a lot of headaches,
if sed does something you don't expect.
 

Yes, very good call.
__
Frank Laszlo
System Administrator
The VonOstin Group
Email:  [EMAIL PROTECTED]
WWW:http://www.vonostingroup.com
Mobile: 248-863-7584
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Unable to install

2005-02-18 Thread Kenneth Shipman
I can maker it to 'fraustrated', but not quite to Newbie.
I'm a long time Windows developer  thought that I'd put FreeBSD on one of 
my systems  play with it to see if I liked it. If I did, turn it into a new 
file server.
I can't even get the install disks to boot. I guess what I'm asking for is 
HELP before I get too frustrated  throw the towel in on BSD.

When I use floppies it errors out with an elf32 read error on KERN1 disk. 
I've formatted  tried multiple floppies to make sure it wasn't the floppy 
itself. I was able to make it as far as sysinstall about a week ago on the 
same machine. but I stopped to finish building it. At that time I had a 
single 450 CPU  no other OS. I've also put in a new floppy drive since 
then.

When I try the ISO CD install it isn't recognised on my SCSI drive, but 
starts for a few seconds on the CDROM in Master position on my 2nd IDE 
channel. It prints out about two lines (goes by super quick) that says 
something to the effect that 'loader found'. The same CD will boot up into 
sysinstall on a different machine without problems.

Note that I do change my BIOS boot sequence as needed. I've already 
installed MSDOS 6.2  Windows 2000 Pro. That went perfect without a hitch.
PnP OS  ACPI are turned off in the BIOS.

Here's the system:
Soyo SY-D6IBA motherboard with Dual Pentium III 550s (could dual CPUs be the 
problem?)
Award Modular PCI/PNP 686 BIOS  4.51 w/ PnP 1.0A extension
512mb ram
AGP slot: NVidea TNT Model 64 v2.05.13
PCI 1: Linksys LNE100TX NIC
PCI 4: Promise SX4000 Raid Controller with 4 Maxtor 300gb Diamondmax 10 
drives. Two of which are in a raid 1 configuration with an NTFS partition. 
The other 2 empty/unallocated. 256 mb ram.
ISA : SoundBlaster AWE64 Gold
balance of slots are empty.
New Samsung 3.5 floppy

IDE Channel 1 Master: Western Digital WD Caviar  13.6GB HDD which has both 
my MSDOS  W2K OS partitions.
IDE Channel 1 Slave: Maxtor DiamondMax 10 300GB PATA 133 HDD - 1 partition - 
planned location for FreeBSD 5.3
IDE Channel 2 Master: Phillips CDD3610/81 CD-ROM  CD-R/RW. This is the one 
used when the installer reboots in an infinite loop.
IDE Channel 2 Slave: Western Digital WD Caviar 80GB HDD - unallocated yet

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


Re: unknown option MAXUSERS

2005-02-18 Thread Kris Kennaway
On Fri, Feb 18, 2005 at 07:28:07AM +0200, Dmitry M. wrote:
 
 I tried recompile FreeBSD 5.3 kernel with IPFW support and added only two 
 lines:
 options  IPFIREWALL  # Enables the kernel firewall code.
 options  IPFIREWALL_VERBOSE  # Sends logged packets to the system logger.
 
 I've used both methods from your documentation :
 1. metod
 -
 -bash-2.05b# pwd
 /usr/src/sys/i386/conf
 -bash-2.05b# ls -la
 total 72
 drwxr-xr-x   2 root  wheel512 Feb 18 04:05 .
 drwxr-xr-x  13 root  wheel512 Feb 18 02:36 ..
 -rw-r--r--   1 root  wheel   9798 Oct 24 21:02 GENERIC
 -rw-r--r--   1 root  wheel   1982 Apr  2  2004 GENERIC.hints
 -rw-r--r--   1 root  wheel   9798 Feb 18 04:05 GENERIC2
 lrwxr-xr-x   1 root  wheel 22 Feb 18 02:40 MYKERNEL 
 - /root/kernels/MYKERNEL
 -rw-r--r--   1 root  wheel120 Feb 27  2003 Makefile
 -rw-r--r--   1 root  wheel  33470 Oct 24 21:02 NOTES
 -rw-r--r--   1 root  wheel469 Jul 13  2004 OLDCARD
 -rw-r--r--   1 root  wheel   1763 Oct 12 02:59 PAE
 -rw-r--r--   1 root  wheel218 Oct 23 23:04 SMP
 -rw-r--r--   1 root  wheel   3991 Jul 26  2002 gethints.awk
 -bash-2.05b# config MYKERNEL
 MYKERNEL: unknown option MAXUSERS

Right, if you compare to the GENERIC kernel or NOTES you'll see that
there is in fact no such option listed, it's capitalized differently.

Kris


pgpp4wgwzyYgU.pgp
Description: PGP signature


Re: Deinstalling perl module installed using CPAN

2005-02-18 Thread Matthew Seaman
On Fri, Feb 18, 2005 at 03:55:52PM +0100, BSD todoo wrote:

 How to deinstall a perl module (bsdpan-MailTools-1.64) that has been 
 installed using CPAN ?

# pkg_delete bsdpan-MailTools-1.64

Easy.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   8 Dane Court Manor
  School Rd
PGP: http://www.infracaninophile.co.uk/pgpkey Tilmanstone
Tel: +44 1304 617253  Kent, CT14 0JL UK


pgpPTjUdKNvPe.pgp
Description: PGP signature


Re: KDE jpeg problem

2005-02-18 Thread Jonathan Chen
On Fri, Feb 18, 2005 at 03:08:13AM -0800, milan nankov wrote:
 Hello,
 
 When i run the ./configure for one of the KDE
 libraries the process is interupted because jpeg
 library cannot be found, although i have it.
 How can I set the path to the jpeg explicity?

Save yourself time and the trouble. Just install KDE via:

# cd /usr/ports/x11/kde3
# make install clean

-- 
Jonathan Chen [EMAIL PROTECTED]
--
  You can get farther with a kind word and a gun
  than you can with a kind word alone - Al Capone
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ssh, sftp, and public key authentication

2005-02-18 Thread Erik Norgaard
dave wrote:
Hello,
I've got a machine i use public keys on to which i'm trying to ssh. When
i created a key for this user i did not define a passphrase, yet i am being
asked for one when i ssh in to the box. I use the command ssh -i
filename.pub hostname however if i do sftp [EMAIL PROTECTED] i'm allowed
in no questions asked.
Help needed!
This is typically a problem with the key not being exported properly. By 
default ssh falls back to normal password authentication. You can 
configure ssh only to allow keys for extra security.

You need to export the key to the destination host like this:
$ scp .ssh/filename.pub [EMAIL PROTECTED]:
$ ssh hostname
$ cat filename.pub  .ssh/authorized_keys
Now since username does not have access to hostname yet, you can mail or 
send by other means the public key - it's public, not secret - and have 
the admin do

# cat filename.pub  ~username/.ssh/authorized_keys
Some errors I have seen is spelling authorized_keys in british english.
--
Ph: +34.666334818   web: http://www.locolomo.org
S/MIME Certificate: http://www.locolomo.org/crt/2004071206.crt
Subject ID:  A9:76:7A:ED:06:95:2B:8D:48:97:CE:F2:3F:42:C8:F2:22:DE:4C:B9
Fingerprint: 4A:E8:63:38:46:F6:9A:5D:B4:DC:29:41:3F:62:D3:0A:73:25:67:C2
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Apache and MRTG Logs

2005-02-18 Thread sn1tch
I'm not sure if this is something I need to be worried about, but
after I got MRTG setup on my bsd system I noticed that the error logs
were starting to show this:

[error] [client *.*.*.71] (13)Permission denied: mod_mime_magic: can't
read `/home/sites/ipv4.youthranches.org/web/mrtg/127.0.0.1_2.log'
[Fri Feb 18 13:35:25 2005] [error] [client *.*.*.71] (13)Permission
denied: mod_mime_magic: can't read
`/home/sites/ipv4.youthranches.org/web/mrtg/127.0.0.1_1.log'
[Fri Feb 18 13:35:25 2005] [error] [client *.*.*.71] (13)Permission
denied: file permissions deny server access:
/home/sites/ipv4.youthranches.org/web/mrtg/127.0.0.1_1.log

I chmoded the files 755 but as soon as mrtg updates theold and new log
files they are set back to 640

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


Re: Deinstalling perl module installed using CPAN

2005-02-18 Thread Ean Kingston

 On Fri, Feb 18, 2005 at 03:55:52PM +0100, BSD todoo wrote:

 How to deinstall a perl module (bsdpan-MailTools-1.64) that has been
 installed using CPAN ?

 # pkg_delete bsdpan-MailTools-1.64

If it was installed with CPAN, it is not in the FreeBSD package database
so how is a pkg_delete going to uninstall it?

Last time I checked, CPAN did not have an uninstall option. Does anyone
know any better?

I think you can get an install list out of the source (which might be
somewhere in ~/.cpan) and remove all the appropriate files by hand but
this might leave perl in an unstable state.

-- 
Ean Kingston

E-Mail: ean_AT_hedron_DOT_org
URL: http://www.hedron.org/

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


mounting error /mnt/dev/ad0s1f on /mnt/usr : Input/output error

2005-02-18 Thread Sajith K
i could successfully install RedHat 8.0 without any
problem. so i think there is no problem with the
system.

i do see some reference to similar problem report in
some bsd related mailing archive. but there is no
solution mentioned.

could somebody help me out ?

thanks
sajith


---
my disk has the following geometry:
   9729 cyl/255 head/64 sectors

when i used fdisk from linux, i got a warning that 
cyl is  1024 which may not work correctly with 
fdisk of win and os/2. is this the case with freebsd ?

thanks
sajith


i did create the slices using default option (A)
and partions using default option (A).

now i see the following problem:

mounting error /mnt/dev/ad0s1f on /mnt/usr :
Input/output error

i think it is the problem with the disk geometry 
i don't know what. i have a 80GB disk, and i tried 
changing the mode from LBA to NORMAL to LARGE in the 
BIOS setting but it didn't help. /usr is the the
last partition in the default list of partiontions.

thanks in advance for your time


--- Lowell Gilbert
[EMAIL PROTECTED] wrote:

 Sajith K [EMAIL PROTECTED] writes:
 
  When I tried to install freebsd 5.3 in a PIII
 machine
  with 80GB hard disk I get the following error:
  
  Unable to find device node for /dev/ad0s1b in
 /dev!
  The creation of filesystems will be aborted
  
  Could some one help me out ?
 
 Sounds like you forgot to allocate (and commit) the
 slices before you
 tried to create the partitions...
 




__ 
Do you Yahoo!? 
The all-new My Yahoo! - Get yours free! 
http://my.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: mounting error /mnt/dev/ad0s1f on /mnt/usr : Input/output error

2005-02-18 Thread Jerry McAllister
 
 i do see some reference to similar problem report in
 some bsd related mailing archive. but there is no
 solution mentioned.
 
 could somebody help me out ?
 
 thanks
 sajith
 
 ---
 my disk has the following geometry:
9729 cyl/255 head/64 sectors
 
 when i used fdisk from linux, i got a warning that 
 cyl is  1024 which may not work correctly with 
 fdisk of win and os/2. is this the case with freebsd ?
 
 thanks
 sajith
 
 
 i did create the slices using default option (A)
 and partions using default option (A).
 
 now i see the following problem:
 
 mounting error /mnt/dev/ad0s1f on /mnt/usr :
 Input/output error

Did /dev move to /mnt/dev in 5.xxx?
I haven't started moving to 5.xxx yet, but
in old times I would expect to see
 mount /dev/ad0s1f /mnt/usror whatever.

jerry

 
 i think it is the problem with the disk geometry 
 i don't know what. i have a 80GB disk, and i tried 
 changing the mode from LBA to NORMAL to LARGE in the 
 BIOS setting but it didn't help. /usr is the the
 last partition in the default list of partiontions.
 
 thanks in advance for your time
 
 
 --- Lowell Gilbert
 [EMAIL PROTECTED] wrote:
 
  Sajith K [EMAIL PROTECTED] writes:
  
   When I tried to install freebsd 5.3 in a PIII
  machine
   with 80GB hard disk I get the following error:
   
   Unable to find device node for /dev/ad0s1b in
  /dev!
   The creation of filesystems will be aborted
   
   Could some one help me out ?
  
  Sounds like you forgot to allocate (and commit) the
  slices before you
  tried to create the partitions...
  
 
 
 
   
 __ 
 Do you Yahoo!? 
 The all-new My Yahoo! - Get yours free! 
 http://my.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-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Loopback addresses and socket() inside of jail

2005-02-18 Thread Chad Leigh -- Shire . Net LLC
While tracking down test errors while installing Apache 2.0.53 and
mod_perl2.0.0-RC4 into a jail process on a FreeBSD 5.3 server, we have
encountered some errors with how the ip is being resolved for the
loopback device.
Using test code from the Apache project[1], we were able to determine
that a client socket created with an unspecified sin_addr (which
defaults to 0.0.0.0) is not able to resolve to the loopback device.
If you patch the original nonblock.c with the lines listed below, the
script will work and it will be apparent that the listener socket is
able to resolve the 0.0.0.0 address to the real ip whereas the client is
not.
How does address 0.0.0.0 work inside of a jail?  The code nonblock.c
starts up a listener on that address, which works, and then tries to
connect to it and it fails.
Thanks,
William McKee and Chad Leigh
[1] http://www.apache.org/~jorton/nonblock.c
65a66
printf(listening to %s:%d\n, inet_ntoa(sa.sin_addr), 
listen_port);
76a78
sa.sin_addr.s_addr = inet_addr (127.0.0.1);
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Verizon's EVDO and FreeBSD

2005-02-18 Thread Ted Mittelstaedt


 -Original Message-
 From: Mikhail Teterin [mailto:[EMAIL PROTECTED]
 Sent: Friday, February 18, 2005 6:32 AM
 To: Ted Mittelstaedt
 Cc: freebsd-questions@freebsd.org; [EMAIL PROTECTED];
 [EMAIL PROTECTED]
 Subject: Re: Verizon's EVDO and FreeBSD


  Hi Robert and Mikhail,
 
Mikhail, make sure the following is in your kernel configuration
  file and recompile the kernel, then post the dmesg output.
 This should
  get your card recognized although it probably isn't going to be
  recognized as a modem. But if we see the dmesg output there might be
  enough info to suggest a mod to get it recognized as a modem:

 Wait, I don't a card yet :-) I was just trying to find out, whether I
 should bother obtaining one...


Aha.  I assumed you had a card already.

 Ted, would you take Robert's offer for the benefit of FreeBSD
 users (and
 that of Verizon)? Assuming, Robert is willing to loan the card
 first, of
 course :-)


I don't have a laptop, sorry.  But, in any case, Mikhail, since your
interested
in the outcome, that really makes you the absolute best candidate. :-)

Why don't you go ahead and borrow Robert's card for a couple weeks.  My
guess is that it will be recognized out of the box under FreeBSD as an
unknown USB serial port - in which case you can attach to it with the
USB tty driver and away you go.  If it isn't, it should be an extremely
trivial matter to post the output of dmesg and such to the USB mailing
list, and one of the developers can tell you what source file to modify.
We are probably only talking about 1 or 2 lines of code to just add the
probe into it.  They are going to need a beta tester anyway.

If you don't take the card then Robert has the task of getting one of
the USB developers interested in doing it, and knowing the proliferation
of USB devices on the market, all of them probably have a stack of
evauliation gear that is waiting for attention.  Since you are personally
interested your going to take the time to handle the hardware and you
obviously already have a laptop with FreeBSD setup on it.

Ted

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


RE: Verizon's EVDO and FreeBSD

2005-02-18 Thread Robert Kim, Wireless Internet Consultant
Ted.. Your modesty and conservative approach is noble... BUT... If you
can dev this thing.. Ill throw in a PCI to PCMCIA adapter for your
desktop... And you can keep it..  :o)

So you're not getting out of it that easy...  (big smiles)

X
Robert Kim, 
Wireless Internet Wifi Hotspot Advisor
 
http://wireless-internet-broadband-service.com
https://evdo.sslpowered.com/wifi-hotspot-router.htm
2611 S Pacific Coast Highway 101
Cardiff by the Sea CA 92007 : 206 984 0880

 Wireless Internet Service Is ONLY Broadband with Broadband Customer
Service(tm)
 OUR QUEST: To Kill the Cubicle! (SM)
---Shalo
-;-) 

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


Re: 5.3 Buildworld on Via C3 fails

2005-02-18 Thread ctodd

 I've just compiled RELENG_5 yesterday evening on a VIA C3 Samuel 2
 (EPIA 5000 Eden) without any problems. Perhaps you've cvsup(ed) at
 the wrong time?

Well I am pulling from a local mirror, but it updates nightly.

 What do you have in /etc/make.conf?

Just the CVS stuff. Keep in mind I'm pulling RELENG_5_3, not RELENG_5, so
I would think timing would be less of an issue.

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


problem whith my kernel

2005-02-18 Thread Amandine FORTUNE
  hello
  i try to compil my own kernel but i have a lot of mistakes. i verify
  my GENERIC file ( MONNOYAU ) . but i didn't find any error
  Could you look that and tell me what are the mistakes
  i have a
  pentium 3 600Mghz
  ATI rage 128
  sound blaster 128
  tv card Philips
  i don't have any network card at the moment
  i send you too parameters of my motherboard
  PROCESSOR
  * Intel Pentium II / III / Celeron
  * Slot 1 Processor support
  CHIPSET
  * Intel 440ZX
  DRAM
  * Three 168-pin DIMM Sockets
  * Supports 8/16/32/64/128 MB DIMM Module
  * Supports SDRAM (3.3V)
  * Up to 256MB Memory
  SLOTS
  *13 x ISA Slots
  * 3 x PCI Slots
  * 1 x AGP Slot
  PCI Sound Card Onboard
  * High-quality ESFM Music Synthesizer
  * Integrated Spatialzer 3D Audio Effects Processor
  * 16-bit Stereo ADC and DAC
  Universal Serial bus
  * Support Two USB Ports
  * Support 48mhz USB
  PCI Enhanced IDE Built-in On Board
  * Support 4 IDE Hard Drives
  * Support UDMA 33/66, Bus Master Mode
  * Support LS120/ZIP100
  * High Capacity Hard Drives.
  I/O Built-in Onboard
  * Support Multi-Mode Parallel Port
  * Two Serial Ports 16550 UART with 16Bytes FIFO
  * PS/2 Mouse and Keyboard
  * Infrared Transmission (IR) port
  * Support 360KB, 720KB, 1.2MB, 1.44MB and 2.88 FDD
  Thanks for your help
  My email adress is [EMAIL PROTECTED]
_
  Nouveau MSN Hotmail [1]: 250 Mo d'espace de stokage gratuit
References
  1. http://g.msn.com/8HMAFRFR/2740??PS=47575
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


problem to compil my kernel

2005-02-18 Thread christophe Desfontaines
hello
i have a problèm when i compil my kernel
this is my file :
MONNOYAU
Machine
Cpu i686_CPU
Ident   MONNOYAU
Options sched_4bsd
Options FFS
Options softupdates
Options ufs_acl
Options ufs_dirhash
Options md_root
Options nfsclient
Options nfs_server
Options nfs_root
#Optionsmsdofs
Options cd9660
Options procfs
Options pseudofs
Options geom_gpt
Options compat_43
Options compat_freebsd4
#Optionsscsi_delay
options ktrace
options sysvshm
options sysvmsg
options sysvsem
options _kposix_priority_scheduling
options kbd_install_cdev
options ahc_reg_pretty_print
options ahd_reg_pretty_print
options adaptive_giant
### Networks options
options ipfilter
options ipfilter_log
options ipfilter_default_block
options inet
options inet6
options icmp_badlim
device  apic
device  isa
device  eisa
device  pci
device  agp
#floppy drives
device  fdc
#ATA
device  ata
device  atadisk
device  ataraid
device  atapicd
device  atapifd
device  atapist
options ata_static_id
# scsi
#device ahd, ahc, ahb, amd, isp, mpt, ncr, sym, trm, adv, adw, aic, bt
#device ncv
#device nsp
#device stg
#SCSI  peripherals
#device scbus, ch, da, sa, cd, pass, ses
#RAID peripherals
#device amr, asr, ciss, dpt, hptw,iir, ips, mly,twa
#Atkbdc0
device  atkbdc
device  atkbd
device  psm
device  vga
device  splash
#syscons
device  sc
#floating
device  npx
#Power management support
#device apm
#ADD suspend/resume support for the i8254
device  pmtimer
#PCcard (pcmcia)
#device cbb
#device pccard
#device cardbus
#Serial com ports
device  sio
#Parallel port
device  ppc
device  ppbus
device  lpt
device  plip
device  ppi
device  vpo
#device puc
#PCI ethernet NICS
device  de
device  em
device  ixgp
device  txp
device  vx
#PCI  ethernet NICS taht use the common MII bus controller code
device  miibus
device  bfe
device  bge
device  dc
device  fxp
device  lge
device  nge
device  pcn
device  re
device  rl
device  sf
device  sis
device  sk
device  ste
device  ti
device  tl
device  tx
device  vge
device  vr
device  wb
device  xl
#ISA ethernet NICs
device  cs
#device ed, ex, ep, fe, ie, lnc, sn, xe
#device le
#device wlan, an , awi, wi, wl
#Pseudo devices
device  loop
device  mem
device  io
device  random
device  ether
device  sl
device  ppp
device  tun
device  pty
device  md
device  gif
device  faith
device  bpf
#Usb 		support
device 		uhci, ohci, usb, udbp, ugen, uhid, ukbd, ulpt, umass, ums,urio, 
uscanner

#usb ethernet
#device aue, axe, cue, kue, rue
#Firewire support
#device firewire, sbp, fwe
# sound card
device  sound
device  snd_sbc #sound blaster 128
# TV card PCI
device  bktr
device  iicbus
device  iicbb
device  smbus

and the log of  make  command  was.
Umass.o(.text+0x14f3) : In funtion’umass_cam_attach_sim’ :
: undefined reference to ‘cam_simq_alloc’
Umass.o(.text+0x1525) : In funtion’umass_cam_attach_sim’:
: undefined reference to ‘cam_simq_alloc’
Umass.o(.text+0x1535) : In funtion’umass_cam_attach_sim’:
: undefined reference to ‘cam_simq_free’
Umass.o(.text+0x154e) : In funtion’umass_cam_attach_sim’:
: undefined reference to ‘xpt_bus_register’
Umass.o(.text+0x1573) : In funtion’umass_cam_rescan_callback’:
: undefined reference to ‘xpt_free_path’
Umass.o(.text+0x15c3) : In funtion’umass_cam_rescan’:
: undefined reference to ‘xpt_periph’
Umass.o(.text+0x15cc) : In funtion’umass_cam_rescan’:
: undefined reference to ‘xpt_create_path’
Umass.o(.text+0x15df) : In funtion’umass_cam_rescan’:
: undefined reference to ‘xpt_setup_ccb’
Umass.o(.text+0x15fa) : In funtion’umass_cam_rescan’:
: undefined reference to ‘xpt_action’
Umass.o(.text+0x1694) : In funtion’umass_cam_detach_sim’:
: undefined reference to ‘xpt_bus_deregister’
Umass.o(.text+0x16aa) : In funtion’umass_cam_detach_sim’:
: undefined reference to ‘cam_sim_free’
Umass.o(.text+0x16e9) : In funtion’umass_cam_action’:
: undefined reference to ‘xpt_done’
Umass.o(.text+0x1749) : In funtion’umass_cam_action’:
: undefined reference to ‘xpt_done’
Umass.o(.text+0x1767) : In funtion’umass_cam_action’:
: undefined reference to ‘xpt_done’
Umass.o(.text+0x17ec) : In funtion’umass_cam_action’:
: undefined reference to ‘xpt_done’
Umass.o(.text+0x18ab) : In funtion’umass_cam_action’:
: undefined reference to ‘xpt_done’
*** Error code 1

Could you tell me what are the mistakes on 

Installation Problem: Can't boot from isos

2005-02-18 Thread David Nies
Hello!
I'm new to FreeBSD, but not to Unix. I've been using linux for quiet a 
long time, but recently, I've heard about the benefits of FreeBSD. So I 
downloaded the latest iso-images of the 5.3-RELEASE. I burned them on CD 
and tried to boot from them. Everything went fine, lots of text passing 
by showing my hardware, and then it freezes after this line: ``acd1: 
CDRW HL-DT-ST GCE-8520B/1.02 at ata1-slave UDMA33''.

I don't know anything to do. Can you please give me some hints?
Thanks in advance.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Firefox configuration problem

2005-02-18 Thread Bob Hall
uname -a 
FreeBSD kongemord.krig.net 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE
#0: Mon Sep 13 00:17:04 EDT 2004
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/KONGEMORD0  i386

Port:   firefox-1.0_7,1

Firefox can't write to its configuration files when I make changes. I
can manually edit them. The bookmark and prefs.js files are both owned
by the same user that runs Firefox.

I had no problems with previous versions of Firefox. Version 1 works
fine on Windows.

I've googled and searched the mail archives but I can't find anything on
this.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: problem whith my kernel

2005-02-18 Thread Kris Kennaway
On Fri, Feb 18, 2005 at 09:24:26PM +, Amandine FORTUNE wrote:
 
   hello
   i try to compil my own kernel but i have a lot of mistakes. i verify
   my GENERIC file ( MONNOYAU ) . but i didn't find any error
   Could you look that and tell me what are the mistakes

No such file was attached.

Kris


pgpojvAhAkQLV.pgp
Description: PGP signature


Re: problem to compil my kernel

2005-02-18 Thread Kris Kennaway
On Fri, Feb 18, 2005 at 10:31:06PM +0100, christophe Desfontaines wrote:
 hello
 
 i have a probl?m when i compil my kernel
 
 this is my file :
 
 MONNOYAU
 
 Machine
 Cpu   i686_CPU
 Ident MONNOYAU

These are all miscapitalized.

Kris


pgpUxpLfcdqPR.pgp
Description: PGP signature


Re: problem to compil my kernel

2005-02-18 Thread Jason Henson
On 02/18/05 16:31:06, christophe Desfontaines wrote:
hello
i have a problèm when i compil my kernel
this is my file :
MONNOYAU
Machine
Cpu i686_CPU
Ident   MONNOYAU

device  bpf
#Usb 		support
device 		uhci, ohci, usb, udbp, ugen, uhid, ukbd, ulpt,  
umass, ums,urio, uscanner

#usb ethernet
#device aue, axe, cue, kue, rue
#Firewire support
#device firewire, sbp, fwe
and the log of  make  command  was.
Umass.o(.text+0x14f3) : In funtion’umass_cam_attach_sim’ :
: undefined reference to ‘cam_simq_alloc’

umass is usb related.  You can remove all usb stuff from the kernel and  
load only the modules you need.  If there is a problem with your source  
files cvsup again.

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


Re: 5.3 Buildworld on Via C3 fails

2005-02-18 Thread cpghost
On Fri, Feb 18, 2005 at 01:08:11PM -0800, [EMAIL PROTECTED] wrote:
  I've just compiled RELENG_5 yesterday evening on a VIA C3 Samuel 2
  (EPIA 5000 Eden) without any problems. Perhaps you've cvsup(ed) at
  the wrong time?
 
 Well I am pulling from a local mirror, but it updates nightly.
 
  What do you have in /etc/make.conf?
 
 Just the CVS stuff. Keep in mind I'm pulling RELENG_5_3, not RELENG_5, so
 I would think timing would be less of an issue.

I didn't try with RELENG_5_3, only with RELENG_5. Just a data point here:
I've installed 5.3-RELEASE too, cvsupped and recompiled everything, all
on the same VIA C3 processor. Done a few buildworld/... iterations since,
and no problem here so far. I can't reproduce or confirm this bug here.

Anyway, the CMOV issue would only come up with code compiled for
i686 (perhaps also i586), due to gcc's breakage (that's why most
Linux distros won't boot or run on a C3 without recompile, but
5.3-RELEASE would). If something went wrong because of this, you'd
notice this at a very early (booting) stage. It's highly unlikely
that gcc, as, or ld binaries are the only one to *use* such an
instruction; esp. when compiled for i386 anyway.

It seems like a safe assumption that 5.3-RELEASE was compiled for
i386, because I was able to use it without any problems on the C3,
including make buildworld/buildkernel/... If you did a buildworld/
installworld with some special flags in the past, that userland may
include CMOVs. That's why I'm asking about /etc/make.conf.

Hmmm...

 Chris

-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: problem to compil my kernel

2005-02-18 Thread Kent Stewart
On Friday 18 February 2005 01:31 pm, christophe Desfontaines wrote:
 hello

 i have a problèm when i compil my kernel

 this is my file :

Go back to a real kernel config file such as GENERIC and read the 
requirements for umass. When you compress it like you have done, you 
loose all of the context requirements.

Kent


 MONNOYAU

 Machine
 Cpu   i686_CPU
 Ident MONNOYAU

 Options   sched_4bsd
 Options   FFS
 Options   softupdates
 Options   ufs_acl
 Options   ufs_dirhash
 Options   md_root
 Options   nfsclient
 Options   nfs_server
 Options   nfs_root
 #Options  msdofs
 Options   cd9660
 Options   procfs
 Options   pseudofs
 Options   geom_gpt
 Options   compat_43
 Options   compat_freebsd4
 #Options  scsi_delay
 options   ktrace
 options   sysvshm
 options   sysvmsg
 options   sysvsem
 options   _kposix_priority_scheduling
 options   kbd_install_cdev
 options   ahc_reg_pretty_print
 options   ahd_reg_pretty_print
 options   adaptive_giant


 ### Networks options
 options   ipfilter
 options   ipfilter_log
 options   ipfilter_default_block
 options   inet
 options   inet6
 options   icmp_badlim

 deviceapic

 deviceisa
 deviceeisa
 devicepci
 deviceagp

 #floppy drives
 devicefdc

 #ATA

 deviceata
 deviceatadisk
 deviceataraid
 deviceatapicd
 deviceatapifd
 deviceatapist
 options   ata_static_id

 # scsi
 #device   ahd, ahc, ahb, amd, isp, mpt, ncr, sym, trm, adv, adw, aic,
 bt

 #device   ncv
 #device   nsp
 #device   stg

 #SCSI  peripherals
 #device   scbus, ch, da, sa, cd, pass, ses

 #RAID peripherals
 #device   amr, asr, ciss, dpt, hptw,iir, ips, mly,twa

 #Atkbdc0
 deviceatkbdc
 deviceatkbd
 devicepsm

 devicevga
 devicesplash

 #syscons
 devicesc

 #floating
 devicenpx

 #Power management support
 #device   apm

 #ADD suspend/resume support for the i8254
 devicepmtimer

 #PCcard   (pcmcia)
 #device   cbb
 #device   pccard
 #device   cardbus

 #Serial com ports
 devicesio

 #Parallel port
 deviceppc
 deviceppbus
 devicelpt
 deviceplip
 deviceppi
 devicevpo

 #device   puc

 #PCI ethernet NICS
 devicede
 deviceem
 deviceixgp
 devicetxp
 devicevx

 #PCI  ethernet NICS taht use the common MII bus controller code
 devicemiibus
 devicebfe
 devicebge
 devicedc
 devicefxp
 devicelge
 devicenge
 devicepcn
 devicere
 devicerl
 devicesf
 devicesis
 devicesk
 deviceste
 deviceti
 devicetl
 devicetx
 devicevge
 devicevr
 devicewb
 devicexl

 #ISA ethernet NICs
 devicecs

 #device   ed, ex, ep, fe, ie, lnc, sn, xe

 #device   le

 #device   wlan, an , awi, wi, wl

 #Pseudo devices

 deviceloop
 devicemem
 deviceio
 devicerandom
 deviceether
 devicesl
 deviceppp
 devicetun
 devicepty
 devicemd
 devicegif
 devicefaith

 devicebpf


 #Usb  support
 deviceuhci, ohci, usb, udbp, ugen, uhid, ukbd, ulpt, umass,
 ums,urio, uscanner

 #usb ethernet
 #device   aue, axe, cue, kue, rue
 #Firewire support
 #device   firewire, sbp, fwe

 # sound card
 devicesound
 devicesnd_sbc #sound blaster 128

 # TV card PCI
 devicebktr
 deviceiicbus
 deviceiicbb
 devicesmbus



 and the log of  make  command  was.

 Umass.o(.text+0x14f3) : In funtion’umass_cam_attach_sim’ :
 : undefined reference to ‘cam_simq_alloc’

 Umass.o(.text+0x1525) : In funtion’umass_cam_attach_sim’:
 : undefined reference to ‘cam_simq_alloc’

 Umass.o(.text+0x1535) : In funtion’umass_cam_attach_sim’:
 : undefined reference to ‘cam_simq_free’

 Umass.o(.text+0x154e) : In funtion’umass_cam_attach_sim’:
 : undefined reference to ‘xpt_bus_register’

Re: 5.3 Buildworld on Via C3 fails

2005-02-18 Thread ctodd

 It seems like a safe assumption that 5.3-RELEASE was compiled for
 i386, because I was able to use it without any problems on the C3,
 including make buildworld/buildkernel/... If you did a buildworld/
 installworld with some special flags in the past, that userland may
 include CMOVs. That's why I'm asking about /etc/make.conf.

 Hmmm...

It's a brand new install. I modified the rc.conf and make.conf to do
cvsup, and that's about it. Maybe it's my mirror? I'll try cvsup from a
freebsd mirror next week for grins.

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


Re: Headless system or serial console

2005-02-18 Thread Joachim Dagerot




On 2005-02-18 Emanuel Strobl  wrote:

Am Donnerstag, 17. Februar 2005 23:57 schrieb Joachim Dagerot:
 The handbook describes a way to install freeBSD to a headless system.
 (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-advanced
.html)

 I'm used to drag'n'drop(!) my 45kg 21 spare monitor in and out from the
 closet to do single-user tasks. But now I want to go the serial port way.


 1. Is there a way to get a serial console after the installation is done?
 How? (Link?) 

Just add the line console=comconsole in /boot/loader.conf and you have your 
1st sio as console with 9600boud.
If you need loader interactivity, instead create the file /boot.config with 
the two characters -h in the first line, then you don't need to set the 
console in loader.conf.
If you want to have a different console speed see the sysctl 
machdep.conspeed. You can set that via sysctl.conf.
But if you also want a different port or serial control before login see the 
following options in /etc/make.conf:
BOOT_COMCONSOLE_PORT=   0x2F8 # Use sio1 (com2)
BOOT_COMCONSOLE_SPEED=  115200

You have to rebuild your kernel and the loader. For the latter go 
to /usr/src/sys/boot/i386 and 'make clean' 'make depend' 'make install'

If you want to login in multiuser mode edit /etc/ttys and make sure you have a 
line like that:
ttyd0   /usr/libexec/getty std.115200 cons25  on secure


I had plans for connecting an old palm but I couldn't find the power supply and 
it was drained out. (It's a pitty how fast the batteries discharges on the 
palm, I mean, I used my PalmVx last time just a few years ago.

But when scavaging the closets I found an old HP 320LX (Anyone remember those: 
http://www.pdagold.com/hardware/detail.asp?d=7 ?) and connetced it following 
your advice above. Worked from start!

Sooo coool. S Slooow. S practical.

Thanks alot. (Goes to all you who ahve answered this question(




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


Re: Firefox configuration problem

2005-02-18 Thread Mike Hauber
On Friday 18 February 2005 04:42 pm, Bob Hall wrote:
 uname -a
 FreeBSD kongemord.krig.net 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE
 #0: Mon Sep 13 00:17:04 EDT 2004
 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/KONGEMORD0  i386

 Port:   firefox-1.0_7,1

 Firefox can't write to its configuration files when I make
 changes. I can manually edit them. The bookmark and prefs.js
 files are both owned by the same user that runs Firefox.

 I had no problems with previous versions of Firefox. Version 1
 works fine on Windows.

 I've googled and searched the mail archives but I can't find
 anything on this.

Have you tried rm'ing ~/.mozilla/firefox?  I seem to remember 
running into that after an upgrade a while back, but I don't 
remember what I did to solve it (I do remember deleting the 
directory and letting firefox recreate it, though).

As a side note, don't forget to backup/export your bookmarks.  
That's something I _didn't_ do.  :)

hth,

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


bash (mash missing)

2005-02-18 Thread
  ,  .
FreeBSD 5.2.1.   .
:  root-   
pw usermod root -s /user/local/bin/bash,bash  
.   .   bash  
,   .
   , .

Hello!
On my computer installed FreeBSD 5.2.1. I am the beginning user.
I have the problem: as root I have entered the command
pw usermod root -s /user/local/bin/bash, but it has appeared that bash
at me no. Now I cannot enter into system. From a disk bash like as it
is established,but what positive changes do no occur.
Help to enter into system, please.

--
 
 
Litvinenko Vadim
[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: ????????? bash (mash missing)

2005-02-18 Thread exp
On Sat, Feb 19, 2005 at 02:30:17AM +0300, ?? ? ??? wrote:
 ??? ??? ?, ? ???.
 ??  ?? ? FreeBSD 5.2.1. ? ?? .
 ?  ?  : ??? root-?? ?  ???
 pw usermod root -s /user/local/bin/bash, ?? ? ??? bash ? 
 ???. ?? ? ??  ? ? ???. ? ? bash ? ???
 ???, ?? ?? ? ? ? ?? ??.
  ? ? ???, ??.
 
 Hello!
 On my computer installed FreeBSD 5.2.1. I am the beginning user.
 I have the problem: as root I have entered the command
 pw usermod root -s /user/local/bin/bash, but it has appeared that bash
 at me no. Now I cannot enter into system. From a disk bash like as it
 is established,but what positive changes do no occur.
 Help to enter into system, please.
 
 --
  
 ?? ?
 Litvinenko Vadim
 [EMAIL PROTECTED]
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 

Reboot into single user mode, and run vipw.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Deinstalling perl module installed using CPAN

2005-02-18 Thread Gerard Seibert
On Fri, 18 Feb 2005 14:54:54 -0500 (EST)Ean Kingston
[EMAIL PROTECTED] wrote:

|Date: Fri, 18 Feb 2005 14:54:54 -0500 (EST)
|From: Ean Kingston [EMAIL PROTECTED]
|Subject: Re: Deinstalling perl module installed using CPAN
|To: Matthew Seaman [EMAIL PROTECTED]
|Cc: Liste FreeBSD freebsd-questions@freebsd.org
|Message-ID: [EMAIL PROTECTED]
|Content-Type: text/plain;charset=iso-8859-1
|
|
| On Fri, Feb 18, 2005 at 03:55:52PM +0100, BSD todoo wrote:
|
| How to deinstall a perl module (bsdpan-MailTools-1.64) that has been
| installed using CPAN ?
|
| # pkg_delete bsdpan-MailTools-1.64
|
|If it was installed with CPAN, it is not in the FreeBSD package database
|so how is a pkg_delete going to uninstall it?
|
|Last time I checked, CPAN did not have an uninstall option. Does anyone
|know any better?
|
|I think you can get an install list out of the source (which might be
|somewhere in ~/.cpan) and remove all the appropriate files by hand but
|this might leave perl in an unstable state.
|
|-- 
|Ean Kingston
|
|E-Mail: ean_AT_hedron_DOT_org
|URL: http://www.hedron.org/


** Reply Separator **
Friday, February 18, 2005 6:27:17 PM

It has been awhile since I used it, but I believe that CPANPLUS can
uninstall a module. I am not at my machine right now, so I cannot check
it out, but I am pretty sure that you can do it.

For what it's worth, you really should upgrade to CPANPLUS if you use
CPAN frequently. It is far superior, at least in my opinion. You can
install it directly from CPAN. 'install CPANPLUS' sans the quotations
marks.

Good Luck,

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: UDMA ICRC error

2005-02-18 Thread Ramiro Aceves
Rob wrote:
--- Ramiro Aceves [EMAIL PROTECTED] wrote:

Rob wrote:
Ramiro Aceves wrote:

I have read that others had this problem before. I
just write this report for you to know.
When I installed FreeBSD 5.3 R, I get some errors
like this, but I could end the install:
ad0: WARNING -READ_DMA UDMA ICRC error (retrying 
  request) LBA=5313599
ad0: FAILURE -READ_DMA status=51READY,DSC,ERROR
  error=84 ICRC,ABORTED
spec_getpages:(ad0s1a) I/O read failure: (error=5)


I have solved the problem disabling DMA:
hw.ata.ata_dma=0
It's indeed a serious problem, but too few people
running 5.3 seem to suffer from this.
Have you tried with 4.11?
I bet that would not generate these problems.
Thanks, I see that we are not alone!
I have not got a 4.11 CDROM here. I could test it on
4.10 if you think 
it is important, I have a 4.10 CDROM here. My
internet is too slow to 
dowload a full CDROM at home. I can download 4.11
install CDROM on the 
computers at University if it worths the effort.

No, no need for that. It's already confirmed that
4.X does not have this problem.
However, recently there's a 'ATA mkIII' patch around,
which seems to also solve this problem. Follow the
discussion on -stable mailinglist for further
details.
I'm not yet sure whether you have to upgrade first
to 5-STABLE before applying this patch.
Rob.
Thanks Rob!
		
__ 
Do you Yahoo!? 
Yahoo! Mail - Easier than ever with enhanced search. Learn more.
http://info.mail.yahoo.com/mail_250
___
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]


[no subject]

2005-02-18 Thread John Palmer
I have a SuperMicro Motherboard X6DHE-G2 with serial ata.  I am trying to 
install FreeBSD 5.3.
When I boot it up from the cdrom and select Boot FreeBSD [default].  I get 
an error of ata2-master: FAILURE =ATA_IDENTIFY TIMED OUT.  The hard drive 
is not being detected.

If I boot it up in FreeBSD safe mode,  I dont get any errors and the hard 
drive is being detected.
I have installed FreeBSD 5.3 in safe mode and installed the current updates 
without any problems.

The only problem I have is after rebooting the machine and booting it up in 
default mode.  It is not able to mount my root partition.  Also, I keep 
getting the error of ata2-master: FAILURE=ATA_IDENTIFY TIMED OUT.  Has 
anybody run across this problem?  If so, I would like to know how the 
problem was fixed.

Thanks
_
Express yourself instantly with MSN Messenger! Download today - it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/

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


Re: Firefox configuration problem

2005-02-18 Thread Bob Hall
On Fri, Feb 18, 2005 at 06:04:24PM -0500, Mike Hauber wrote:
 On Friday 18 February 2005 04:42 pm, Bob Hall wrote:
  uname -a
  FreeBSD kongemord.krig.net 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE
  #0: Mon Sep 13 00:17:04 EDT 2004
  [EMAIL PROTECTED]:/usr/obj/usr/src/sys/KONGEMORD0  i386
 
  Port:   firefox-1.0_7,1
 
  Firefox can't write to its configuration files when I make
  changes. I can manually edit them. The bookmark and prefs.js
  files are both owned by the same user that runs Firefox.
 
  I had no problems with previous versions of Firefox. Version 1
  works fine on Windows.
 
  I've googled and searched the mail archives but I can't find
  anything on this.
 
 Have you tried rm'ing ~/.mozilla/firefox?  I seem to remember 
 running into that after an upgrade a while back, but I don't 
 remember what I did to solve it (I do remember deleting the 
 directory and letting firefox recreate it, though).
 
 As a side note, don't forget to backup/export your bookmarks.  
 That's something I _didn't_ do.  :)

Thanks. I tried deleting just the config file and bookmark file, but
that didn't work. Deleting the entire .mozilla directory (after backing
up) did the trick.

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


Re: 5.3 Buildworld on Via C3 fails

2005-02-18 Thread Emanuel Strobl
Am Freitag, 18. Februar 2005 23:21 schrieb [EMAIL PROTECTED]:
  It seems like a safe assumption that 5.3-RELEASE was compiled for
  i386, because I was able to use it without any problems on the C3,
  including make buildworld/buildkernel/... If you did a buildworld/
  installworld with some special flags in the past, that userland may
  include CMOVs. That's why I'm asking about /etc/make.conf.
 
  Hmmm...

 It's a brand new install. I modified the rc.conf and make.conf to do
 cvsup, and that's about it. Maybe it's my mirror? I'll try cvsup from a
 freebsd mirror next week for grins.

To add some wild guessing: RAM. This sounds like bad memory.

-Harry


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


pgpWjlbsWFfHq.pgp
Description: PGP signature


Problem re-compiling ogmrip

2005-02-18 Thread Ian Moore
Hi,
I'm trying to complete the update of perl on my 5.3R system and I'm having 
trouble with multimedia/ogmrip (ogmrip-0.6.2). When I ran the portupgrade 
command as specified in UPDATING, it all went ok until it got to ogmrip, 
where it just hung. Eventually I pressed Ctrl+C and it skipped it and 
continued with the upgrade.
At the end several ports had failed:
** Listing the failed packages (*:skipped / !:failed)
removed  ! print/teTeX-latex2e (teTeX-latex2e-1.0.20031201)  (port 
directoryerror)
! www/firefox (firefox-1.0_7,1) (unknown build error)
* www/flashplugin-firefox (flashplugin-firefox-0.4.12)
! graphics/librsvg2 (librsvg2-2.8.1_1)  (unknown build error)
* x11-fm/nautilus2 (nautilus2-2.8.2_1)
! multimedia/ogmrip (ogmrip-0.6.2)  (interrupted by user)
* graphics/gimp (gimp-gnome-2.2.3,1)
* sysutils/gnomecontrolcenter2 (gnomecontrolcenter2-2.8.1_2)
! misc/xfce4-panel-themes (xfce4-panel-themes-4.0.6_1)  (invalid 
package name)
* x11-wm/xfce4 (xfce-4.0.6_1)

So I then  tried to update those by hand. I've succeeded with some, but ogmrip 
just hangs every time at the same place. (See below for the build output). 
Can anyone suggest a way around this? I looked for a package to install 
instead, but there is none.
My make.conf has:
NO_PF=true
CPUTYPE=athlon-xp
CFLAGS= -O -pipe
COPTFLAGS= -O -pipe
NOPROFILE= true# Avoid compiling profiled libraries
X_WINDOW_SYSTEM=xorg
CUPS_OVERWRITE_BASE=yes
NO_LPR=yes
# added by use.perl 2005-02-13 09:28:53
PERL_VER=5.8.6
PERL_VERSION=5.8.6

Here is the output of the build:

daemon:~ % sudo portupgrade -f ogmrip-0.6.2
Password:
---  Reinstalling 'ogmrip-0.6.2' (multimedia/ogmrip)
---  Building '/usr/ports/multimedia/ogmrip'
snip
===  Cleaning for ogmrip-0.6.2
===  Extracting for ogmrip-0.6.2
= Checksum OK for ogmrip-0.6.2.tar.gz.
===  Patching for ogmrip-0.6.2
===   ogmrip-0.6.2 depends on executable: mencoder - found
===   ogmrip-0.6.2 depends on executable: oggenc - found
===   ogmrip-0.6.2 depends on executable: ogmmerge - found
===   ogmrip-0.6.2 depends on executable: lame - found
===   ogmrip-0.6.2 depends on executable: gocr - found
===   ogmrip-0.6.2 depends on file: /usr/local/bin/libtool15 - found
===   ogmrip-0.6.2 depends on 
file: /usr/X11R6/libdata/pkgconfig/gnome-mime-data-2.0.pc - found
===   ogmrip-0.6.2 depends on executable: pkg-config - found
===   ogmrip-0.6.2 depends on file: /usr/local/bin/intltool-extract - found
===   ogmrip-0.6.2 depends on shared library: xvidcore - found
===   ogmrip-0.6.2 depends on shared library: dvdread - found
===   ogmrip-0.6.2 depends on shared library: enchant - found
===   ogmrip-0.6.2 depends on shared library: X11.6 - found
===   ogmrip-0.6.2 depends on shared library: esd.2 - found
===   ogmrip-0.6.2 depends on shared library: glib-2.0.400 - found
===   ogmrip-0.6.2 depends on shared library: atk-1.0.800 - found
===   ogmrip-0.6.2 depends on shared library: pango-1.0.600 - found
===   ogmrip-0.6.2 depends on shared library: gtk-x11-2.0.400 - found
===   ogmrip-0.6.2 depends on shared library: linc.1 - found
===   ogmrip-0.6.2 depends on shared library: IDL-2.0 - found
===   ogmrip-0.6.2 depends on shared library: ORBit-2.0 - found
===   ogmrip-0.6.2 depends on shared library: glade-2.0.0 - found
===   ogmrip-0.6.2 depends on shared library: xml2.5 - found
===   ogmrip-0.6.2 depends on shared library: xslt.2 - found
===   ogmrip-0.6.2 depends on shared library: bonobo-2.0 - found
===   ogmrip-0.6.2 depends on shared library: gconf-2.5 - found
===   ogmrip-0.6.2 depends on shared library: gnomevfs-2.800 - found
===   ogmrip-0.6.2 depends on shared library: gnomecanvas-2.800 - found
===   ogmrip-0.6.2 depends on shared library: art_lgpl_2.5 - found
===   ogmrip-0.6.2 depends on shared library: gnome-2.800 - found
===   ogmrip-0.6.2 depends on shared library: bonoboui-2.0 - found
===   ogmrip-0.6.2 depends on shared library: gnomeui-2.800 - found
===   ogmrip-0.6.2 depends on shared library: X11.6 - found
===  Configuring for ogmrip-0.6.2
checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
checking whether build environment is sane... yes
checking whether make sets $(MAKE)... yes
checking for working aclocal-1.4... missing
checking for working autoconf... found
checking for working automake-1.4... missing
checking for working autoheader... found
checking for working makeinfo... found
checking for gcc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ANSI C... none needed
checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
checking build system type... 

ssh key authentication

2005-02-18 Thread Timothy Smith
i've followed the howto exactly and it still doesn't work. i don't know 
wtf i'm doing wrong. here is the output i get in verbose mode

OpenSSH_3.5p1 FreeBSD-20030924, SSH protocols 1.5/2.0, OpenSSL 0x0090704f
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Rhosts Authentication disabled, originating port will not be 
trusted.
debug1: ssh_connect: needpriv 0
debug1: Connecting to foo.com [#] port 22.
debug1: Connection established.
debug1: identity file /home/timothy/.ssh/id_rsa type -1
debug1: identity file /home/timothy/.ssh/id_dsa type 2
debug1: Remote protocol version 2.0, remote software version 
OpenSSH_3.8.1p1 FreeBSD-20040419
debug1: match: OpenSSH_3.8.1p1 FreeBSD-20040419 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_3.5p1 FreeBSD-20030924
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server-client aes128-cbc hmac-md5 none
debug1: kex: client-server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: dh_gen_key: priv key bits set: 120/256
debug1: bits set: 1027/2048
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
The authenticity of host 'foo.com (#)' can't be established.
DSA key fingerprint is #.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'foo.com' (DSA) to the list of known hosts.
debug1: bits set: 1018/2048
debug1: ssh_dss_verify: signature correct
debug1: kex_derive_keys
debug1: newkeys: mode 1
debug1: SSH2_MSG_NEWKEYS sent
debug1: waiting for SSH2_MSG_NEWKEYS
debug1: newkeys: mode 0
debug1: SSH2_MSG_NEWKEYS received
debug1: done: ssh_kex2.
debug1: send SSH2_MSG_SERVICE_REQUEST
debug1: service_accept: ssh-userauth
debug1: got SSH2_MSG_SERVICE_ACCEPT
debug1: authentications that can continue: publickey,keyboard-interactive
debug1: next auth method to try is publickey
debug1: try privkey: /home/timothy/.ssh/id_rsa
debug1: try pubkey: /home/timothy/.ssh/id_dsa
debug1: authentications that can continue: publickey,keyboard-interactive
debug1: next auth method to try is keyboard-interactive
Password:

the files i have in the local host
ls -l /home/timothy/.ssh/
total 6
-rw---  1 timothy  wheel  672 Feb 19 11:06 id_dsa
-rw-r--r--  1 timothy  wheel  621 Feb 19 11:06 id_dsa.pub
-rw-r--r--  1 timothy  wheel  614 Feb 19 11:21 known_hosts
the files i have in the remote host
ls -l
total 4
-rw-r--r--  1 timothy  wheel  241 Feb 18 22:44 authorised_keys
-rw-r--r--  1 timothy  wheel  621 Feb 19 11:12 authorised_keys2
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


make - don't workHELP!!!

2005-02-18 Thread Victor Mel'nichenko
Why i can't to do command make?! Is my config of my kernel right?!
Analize my config and tell me what is wrong:
my computer is: athlon XP+ 2.0, KT400 on via chipset, ethernet sound  usb 
Via82XXX, video GeForce2MX400 from NVidia  i have FreeBSD-5.3-RELEASE

command's:
# /usr/sbin/config WORM
# cd ../compile/WORM
# make depend
# make

_MY_ERROR_
: undefined reference to `xpt_free_path'
dpt_scsi.o(.text+0x1b5c): In function `dpt_detach':
: undefined reference to `xpt_bus_deregister'
dpt_scsi.o(.text+0x1b67): In function `dpt_detach':
: undefined reference to `cam_sim_free'
dpt_scsi.o(.text+0x1ea1): In function `dpt_intr':
: undefined reference to `xpt_done'
dpt_scsi.o(.text+0x2005): In function `dptprocesserror':
: undefined reference to `xpt_done'
dpt_scsi.o(.text+0x2023): In function `dpttimeout':
: undefined reference to `xpt_print_path'
dpt_scsi.o(.text+0x2048): In function `dpttimeout':
: undefined reference to `xpt_print_path'
iir.o(.text+0x758): In function `iir_attach':
: undefined reference to `cam_simq_alloc'
iir.o(.text+0x794): In function `iir_attach':
: undefined reference to `cam_sim_alloc'
iir.o(.text+0x7ab): In function `iir_attach':
: undefined reference to `xpt_bus_register'
iir.o(.text+0x7c7): In function `iir_attach':
: undefined reference to `cam_sim_free'
iir.o(.text+0x7e9): In function `iir_attach':
: undefined reference to `xpt_create_path'
iir.o(.text+0x800): In function `iir_attach':
: undefined reference to `xpt_bus_deregister'
iir.o(.text+0x815): In function `iir_attach':
: undefined reference to `cam_sim_free'
iir.o(.text+0xcf6): In function `gdt_next':
: undefined reference to `xpt_done'
iir.o(.text+0xda0): In function `gdt_next':
: undefined reference to `xpt_done'
iir.o(.text+0xfd7): In function `gdt_raw_cmd':
: undefined reference to `xpt_freeze_simq'
iir.o(.text+0x11de): In function `gdt_cache_cmd':
: undefined reference to `xpt_freeze_simq'
iir.o(.text+0x1660): In function `gdt_internal_cache_cmd':
: undefined reference to `xpt_done'
iir.o(.text+0x18d8): In function `iir_action':
: undefined reference to `xpt_done'
iir.o(.text+0x18f4): In function `iir_action':
: undefined reference to `xpt_done'
iir.o(.text+0x1942): In function `iir_action':
: undefined reference to `xpt_done'
iir.o(.text+0x1996): In function `iir_action':
: undefined reference to `xpt_done'
iir.o(.text+0x19b2): more undefined references to `xpt_done' follow
mly.o(.text+0x2018): In function `mly_cam_attach':
: undefined reference to `cam_simq_alloc'
mly.o(.text+0x20d4): In function `mly_cam_attach':
: undefined reference to `cam_sim_alloc'
mly.o(.text+0x20f3): In function `mly_cam_attach':
: undefined reference to `xpt_bus_register'
mly.o(.text+0x2158): In function `mly_cam_attach':
: undefined reference to `cam_sim_alloc'
mly.o(.text+0x2177): In function `mly_cam_attach':
: undefined reference to `xpt_bus_register'
mly.o(.text+0x21e9): In function `mly_cam_detach':
: undefined reference to `xpt_bus_deregister'
mly.o(.text+0x21f7): In function `mly_cam_detach':
: undefined reference to `cam_sim_free'
mly.o(.text+0x2219): In function `mly_cam_detach':
: undefined reference to `cam_simq_free'
mly.o(.text+0x2270): In function `mly_cam_rescan_btl':
: undefined reference to `xpt_periph'
mly.o(.text+0x227c): In function `mly_cam_rescan_btl':
: undefined reference to `xpt_create_path'
mly.o(.text+0x22ae): In function `mly_cam_rescan_btl':
: undefined reference to `xpt_setup_ccb'
mly.o(.text+0x22c9): In function `mly_cam_rescan_btl':
: undefined reference to `xpt_action'
mly.o(.text+0x2519): In function `mly_cam_action':
: undefined reference to `xpt_done'
mly.o(.text+0x261b): In function `mly_cam_action_io':
: undefined reference to `xpt_freeze_simq'
mly.o(.text+0x276b): In function `mly_cam_action_io':
: undefined reference to `xpt_freeze_simq'
mly.o(.text+0x2952): In function `mly_cam_complete':
: undefined reference to `xpt_done'
mly.o(.text+0x2987): In function `mly_find_periph':
: undefined reference to `xpt_create_path'
mly.o(.text+0x299e): In function `mly_find_periph':
: undefined reference to `cam_periph_find'
mly.o(.text+0x29a8): In function `mly_find_periph':
: undefined reference to `xpt_free_path'
twa_cam.o(.text+0x11): In function `twa_cam_setup':
: undefined reference to `cam_simq_alloc'
twa_cam.o(.text+0x4e): In function `twa_cam_setup':
: undefined reference to `cam_sim_alloc'
twa_cam.o(.text+0x61): In function `twa_cam_setup':
: undefined reference to `cam_simq_free'
twa_cam.o(.text+0x79): In function `twa_cam_setup':
: undefined reference to `xpt_bus_register'
twa_cam.o(.text+0x8d): In function `twa_cam_setup':
: undefined reference to `cam_sim_free'
twa_cam.o(.text+0xbf): In function `twa_cam_setup':
: undefined reference to `xpt_create_path'
twa_cam.o(.text+0xd5): In function `twa_cam_setup':
: undefined reference to `xpt_bus_deregister'
twa_cam.o(.text+0xe2): In function `twa_cam_setup':
: undefined reference to `cam_sim_free'
twa_cam.o(.text+0xfd): In function `twa_cam_setup':
: undefined 

Re: ssh key authentication

2005-02-18 Thread markzero
On Sat, Feb 19, 2005 at 11:27:03AM +1000, Timothy Smith wrote:
 i've followed the howto exactly and it still doesn't work. i don't know 
 wtf i'm doing wrong. here is the output i get in verbose mode
 
 the files i have in the remote host
 ls -l
 total 4
 -rw-r--r--  1 timothy  wheel  241 Feb 18 22:44 authorised_keys
 -rw-r--r--  1 timothy  wheel  621 Feb 19 11:12 authorised_keys2
 

You're going to kick yourself. It should be authorized keys, with a 'z'.

Mark

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


pgpFh4u2cejY6.pgp
Description: PGP signature


Re: make - don't workHELP!!!

2005-02-18 Thread Matt Emmerton

 Why i can't to do command make?! Is my config of my kernel right?!
 Analize my config and tell me what is wrong:
 my computer is: athlon XP+ 2.0, KT400 on via chipset, ethernet sound  usb
Via82XXX, video GeForce2MX400 from NVidia  i have FreeBSD-5.3-RELEASE

 command's:
 # /usr/sbin/config WORM
 # cd ../compile/WORM
 # make depend
 # make

 _MY_ERROR_
 : undefined reference to `xpt_free_path'
 dpt_scsi.o(.text+0x1b5c): In function `dpt_detach':

snip rest of errors

You've got device umass in your kernel, but you've commented out the
SCSI-related devices which are required.
You need to uncomment device scbus and device da in order to use device
umass.

 # SCSI peripherals
 #device scbus # SCSI bus (required for SCSI)
 #device ch # SCSI media changers
 #device da # Direct Access (disks)
 #device sa # Sequential Access (tape etc)
 #device cd # CD
 #device pass # Passthrough device (direct SCSI access)
 #device ses # SCSI Environmental Services (and SAF-TE)

--
Matt Emmerton

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


Re: ssh key authentication

2005-02-18 Thread Timothy Smith
markzero wrote:
On Sat, Feb 19, 2005 at 11:27:03AM +1000, Timothy Smith wrote:
 

i've followed the howto exactly and it still doesn't work. i don't know 
wtf i'm doing wrong. here is the output i get in verbose mode

the files i have in the remote host
ls -l
total 4
-rw-r--r--  1 timothy  wheel  241 Feb 18 22:44 authorised_keys
-rw-r--r--  1 timothy  wheel  621 Feb 19 11:12 authorised_keys2
   

You're going to kick yourself. It should be authorized keys, with a 'z'.
Mark
 

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


webdav and mozilla calendar

2005-02-18 Thread synrat
has anyone been able to get mozilla calendar publishing to work with 
webdav/apache2 ( freebsd 5.3 )

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


Re: ssh key authentication

2005-02-18 Thread Timothy Smith
markzero wrote:
On Sat, Feb 19, 2005 at 11:27:03AM +1000, Timothy Smith wrote:
 

i've followed the howto exactly and it still doesn't work. i don't know 
wtf i'm doing wrong. here is the output i get in verbose mode

the files i have in the remote host
ls -l
total 4
-rw-r--r--  1 timothy  wheel  241 Feb 18 22:44 authorised_keys
-rw-r--r--  1 timothy  wheel  621 Feb 19 11:12 authorised_keys2
   

You're going to kick yourself. It should be authorized keys, with a 'z'.
Mark
 

nope still no good. doesn't work.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Questions with configuring multiple NIC's

2005-02-18 Thread J Ramos
Hello again,
I've managed to get myself absolutely lost. I've got everything recompiled, 
no network interfaces on startup. I can ifconfig sis0, the onboard ethernet, 
it works. Only problem is, I can't reach anything off the local network. 
What am I missing? I know it's something that init calls at startup that 
reads resolv.conf, etc..., but I have yet to figure out what. I've been 
Googling for a while and reading man pages; rc, rc.conf, resolv.conf, init, 
etc..., and I'm stumped. If anyone could offer anything it would be much 
appreciated.

Thanks,
Josh
- Original Message - 
From: J Ramos [EMAIL PROTECTED]
To: freebsd-questions@freebsd.org
Sent: Wednesday, February 16, 2005 7:38 PM
Subject: Questions with configuring multiple NIC's


Hello,
I'm currently running 5.3 on a HP Pavillion ze4420us laptop. Pretty much 
everything that I would
like to get working works, with the exception of my NIC's. The onboard 
National Semiconductor DP83815/16 works fine by itself with the sis 
driver. I have 2 pcmcia wireless ethernet cards, that
work. Linksys WPC11 v4 wireless B card is recognized via XP drivers and 
ndis, as is the
Netgear WG511, also through XP drivers and ndis. I'm having a tough time 
getting the wireless
cards configured correctly with ifconfig. I believe that the problem is 
with the netmasks. Seems
like I read somewhere that 2 NIC's on the same machine connected to the 
same network may
not share the same netmask. One should be 255.255.255.0 and the other 
should be
255.255.255.255. sis driver support is built in to the kernel, GENERIC 
kernel from install, which
I will probably have to rebuild shortly. Not being able to kldunload the 
si and if_sis modules
keeps sis0 constantly in ifconfig. If I unplug the cable and try to run 
only a wireless card, it doesn't
seem to work correctly. ifconfig'ing ndis0 to a good ip and 255.255.255.0 
netmask says the
network is down when trying to ping the router. Using the 255.255.255.255 
netmask with ndis0,
pinging the router  leads to ping: sendto: Host is down. However, the 
interesting thing is that
I get a message from arp, io kernel: arp: 192.168.1.1 is on sis0 but got 
reply from
00:09:5b:dd:c4:f8 ( the router mac address) on ndis0. Although sis0 is 
not on the network, my
machine is acting like it since sis0 can be disabled, but the modules 
can't be unloaded. Here's my
point...

Would I be better off rebuilding a kernel with sis driver support not 
built in, but instead loading
the modules and ifconfig'ing only the interface I need at that point in 
time, and if I need to change,
just unload the modules I don't need, and load the ones I do, then 
ifconfig the new active
interface?

There may be a more elegant solution, and I'd be happy to hear them, or 
any links or man pages
that I probably overlooked.

Thanks much,
Josh
___
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]


  1   2   >