Re: [SPAM] Re: Transferring directories over a network

2004-12-22 Thread Roger Merritt
At 12:44 PM 12/22/04, you wrote:
On Wed, Dec 22, 2004 at 12:24:59PM +0700, Roger Merritt wrote:
 I hope this isn't too common a question. I couldn't devise a good set of
 keywords to use Google.

 I just received a new machine to replace my ancient server/gateway. I
 decided the best way to go was to install FreeBSD 5.3, and transfer user
 directories and config files using ssh over the intranet. Of course, I
 overlooked the fact that you can't login to root.
Here's a thought: if it's only going to be in your internal network,
why not enable PermitRootLogin under sshd until you get the files
across.
Aha! That's it. I'd better learn more about configuring sshd while I'm at 
it. Thank you!

--
Roger
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.296 / Virus Database: 265.6.3 - Release Date: 12/21/04
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Hang on install of 5.3 on old Presario

2004-12-22 Thread Christian Hiris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 22 December 2004 06:13, Scott I. Remick wrote:
 I'm trying to breathe some life into some old hardware by giving it a task
 of a server. I've burnt the full 5.3 ISO to CD. I can get it to read the CD
 fine and start to boot. I get as far as the Welcome to FreeBSD menu (with
 the ASCII daemon). No matter what option I choose, the bar then spins for a
 moment and then the computer hangs.

 I've tried upgrading the BIOS to the latest offered from Compaq's website
 (although it's dated 1998). I've turned off PnP, and all unneeded ports
 (including serial, parallel, USB). I've tried both the DOS and Other
 setting for the HDD geometry. I've turned off all power-saving. Nothing
 seems to work. I've also tried using the 3 floppies... same problem.

Try to disable acpi at the loader(8) prompt:

set hint.acpi.0.disabled=1

Cheers,
ch

- -- 
Christian Hiris [EMAIL PROTECTED] | OpenPGP KeyID 0x3BCA53BE 
OpenPGP-Key at hkp://wwwkeys.eu.pgp.net and http://pgp.mit.edu
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.6 (FreeBSD)

iD8DBQFByS1+09WjGjvKU74RAo77AJ9SPdN8YWFzp0Y6vUfJyu/J/KadtACfYWfi
+lZhwsAV4tpv1rtDkdyTcC0=
=bQsj
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Fw: What do these PHP ports mean?

2004-12-22 Thread Peter Risdon
Adam wrote:
I'm porting PHP, 
Installing?
I looked at the 5 different PHP 5.0.3 version descriptions
on http://www.freebsd.org/ports/www.html  they all have the same long
description and different Requires
What are the differences in these?
php5-5.0.3_1
The base port. Without additional arguments, a make install clean will 
install the cli (command line interpreter) and mod_php.

php5-cgi-5.0.3_1
This installs the cgi interpreter instead of the cli. Since they have 
the same name and are installed to the same location, you can only have 
one of these installed[1].

 php5-mnogosearch-5.0.3_1
install (php and) the extensions necessary for mnogosearch.
 php5-session-5.0.3_1
install session support for php
 php5-tidy-5.0.3_1
(html) tidy extension for php.
Peter.
[1] In fact you can install both, with a bit of hand-rolling.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Hang on install of 5.3 on old Presario

2004-12-22 Thread Ramiro Aceves
Scott I. Remick wrote:
 I'm trying to breathe some life into some old hardware by giving it a 
task
 of a server. I've burnt the full 5.3 ISO to CD. I can get it to read 
the CD
 fine and start to boot. I get as far as the Welcome to FreeBSD menu 
(with
 the ASCII daemon). No matter what option I choose, the bar then spins 
for a
 moment and then the computer hangs.

snip
I have the same problem in my old Pentium 100MHz, but booting from 
floppies. I have tried the hint.acpi.0.disabled=1 and it does not 
work. Also have tried many of the boot loader options in loader man 
page, but no success. It is very boring and time consuming waiting for 
the three floppies to load, and at the end only seeing the last one 
reboots the computer.
I have read many mailing lists without success. My pentium is 16 MB RAM, 
and the instalation process runs fine in FreeBSD 4.10. I would like to 
test the installation with a little more memory, as I have read on the 
Internet that some people reported to need more than 20 MB to install 
5.3, and that information is outdated on the manual. Saddly, it is not 
possible to get that old 72 pin memory here on the stores.

I have an older 486 with 24 MB RAM and it runs freebsd 5.3 installation 
process very well, but unfortunately, its memory does not fit on the 
pentium.

If you discover anything,  please tell us.
Ramiro.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


make buildkernel KERNEL or KERNCONF?

2004-12-22 Thread Zachary Huang
in the usr/src/UPDATING file with FreeBSD 4.2:

we have:

   To update from 4.0-RELEASE or later to the most current
4.x-STABLE
--
make buildworld
make buildkernel KERNEL=YOUR_KERNEL_HERE
make installkernel KERNEL=YOUR_KERNEL_HERE
reboot  (in single user) [1]
make installworld
mergemaster
reboot

whereas in the 4.10 I am getting through cvsup: (notice it is
kernCONF, not KerNEL anymore).

To update from 4.0-RELEASE or later to the most current
4.x-STABLE
--
make buildworld
make buildkernel KERNCONF=YOUR_KERNEL_HERE
make installkernel KERNCONF=YOUR_KERNEL_HERE
reboot  (in single user) [1]
make installworld
mergemaster [2]
reboot

I guess I still follow the first one since that is what came with the
4.2. and I am trying to upgrade from 4.2 to 4.10.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


freebsd 5.3 and squid problems

2004-12-22 Thread Andrzej Kwiatkowski
Hello
I'm trying to run reverse proxy on ma 5.3 Stable .
My problem with squid is that squid stops accepting
new connections, all are timeouted.
My kernel config is:
options SYSVSHM
options SHMSEG=16
options SHMMNI=32
options SHMMAX=2097152
options SHMALL=4096
options SYSVMSG
options MSGMNB=16384
options MSGMNI=40
options MSGSEG=4096
options MSGSSZ=64
options MSGTQL=4096
sysctl.conf:
vfs.vmiodirenable=1
kern.ipc.maxsockbuf=2097152
kern.ipc.somaxconn=8192
kern.ipc.maxsockets=16424
kern.maxfiles=65536
kern.maxfilesperproc=32768
net.inet.tcp.rfc1323=1
net.inet.tcp.delayed_ack=0
net.inet.tcp.sendspace=65535
net.inet.tcp.recvspace=65535
net.inet.udp.recvspace=65535
net.inet.udp.maxdgram=57344
net.local.stream.recvspace=65535
#
kern.threads.max_threads_per_proc=16384
kern.threads.max_groups_per_proc=16384
and boot/loader.conf
kern.ipc.maxsockets=16424
Have got any idea ??
All disks are scsi, i've tried cache on ufs and on diskd,
On network interfaces is traffic about 80Mbit/s...
Regards
AK
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: make buildkernel KERNEL or KERNCONF?

2004-12-22 Thread Giorgos Keramidas
On 2004-12-22 04:07, Zachary Huang [EMAIL PROTECTED] wrote:
 in the usr/src/UPDATING file with FreeBSD 4.2:

 we have:

To update from 4.0-RELEASE or later to the most current
 4.x-STABLE
 --
 make buildworld
 make buildkernel KERNEL=YOUR_KERNEL_HERE
 make installkernel KERNEL=YOUR_KERNEL_HERE
 reboot  (in single user) [1]
 make installworld
 mergemaster
 reboot

 whereas in the 4.10 I am getting through cvsup: (notice it is
 kernCONF, not KerNEL anymore).

 To update from 4.0-RELEASE or later to the most current
 4.x-STABLE
 --
 make buildworld
 make buildkernel KERNCONF=YOUR_KERNEL_HERE
 make installkernel KERNCONF=YOUR_KERNEL_HERE
 reboot  (in single user) [1]
 make installworld
 mergemaster [2]
 reboot

 I guess I still follow the first one since that is what came with the
 4.2. and I am trying to upgrade from 4.2 to 4.10.

Nope.  You follow what /usr/src/UPDATING says.

The 'buildkernel' process uses the Makefiles and the support make
includes from /usr/src as early as possible, so you should be able
to use:

# cd /usr/src
# make buildworld
# make KERNCONF=MYKERNEL buildkernel

even if you're updating from versions of 4.X that didn't support
the KERNCONF make option.

- Giorgos

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


Re: Hang on install of 5.3 on old Presario

2004-12-22 Thread Christian Hiris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 22 December 2004 10:05, Ramiro Aceves wrote:
[...]
 I have an older 486 with 24 MB RAM and it runs freebsd 5.3 installation
 process very well, but unfortunately, its memory does not fit on the
 pentium.

Did you try to move the harddisk of the 16MB box over to the 24MB box and 
install 5.3 there?   

- -- 
Christian Hiris [EMAIL PROTECTED] | OpenPGP KeyID 0x3BCA53BE 
OpenPGP-Key at hkp://wwwkeys.eu.pgp.net and http://pgp.mit.edu
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.6 (FreeBSD)

iD8DBQFByVLq09WjGjvKU74RAjMMAJ0e9n95lIA/xiATevgVvYbcXgmNUwCeIHAc
arnCkviYQ7d5LPnoUECscIA=
=a0f+
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problem with tar archive

2004-12-22 Thread freebsd_daemon
Dear list,

I got a tar archive (varia.tar), when I try to un-tar it I get:

# tar xvf ./varia.tar
../varia/
tar: ../varia/: Member name contains `..'
../varia/bkup200401.gz
tar: ../varia/bkup200401.gz: Member name contains `..'

[...]

../varia/bkup200411.gz
tar: ../varia/bkup200411.gz: Member name contains `..'
tar: Error exit delay from previous error

Is there a way to un-tar that archive despite of that?

TIA

zheyu

-- 
+++ Sparen Sie mit GMX DSL +++ http://www.gmx.net/de/go/dsl
AKTION für Wechsler: DSL-Tarife ab 3,99 EUR/Monat + Startguthaben
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


My server goes down and I do not know why

2004-12-22 Thread dryanta
Hi my name is Phill. I am having an issue with my freebsd webserver that
is behind a freebsd nat/firewall and was wondering if you can point me the
right way to resolve my issue. My connection to my ISP (microwave wi-fi)
keeps dying every couple days and I do not know where to start to
determine the issue. What are the basic diagnostic steps for determining
why my connection keeps dying every couple days? I do not know if it is a
problem with the wifi, routing, or nat. If it is a problem w/ wifi i want
to compile a bunch of info to bring to isp to be like 'you idiots are not
upholding sla!' and if it is my internal configuration I would like to
simply resolve the issue. What is necessary for me to do for assistance in
this issue?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


mysql setup question

2004-12-22 Thread bob
I'm running 4.10 stable.
I copied /usr/local/share/mysql/my-medium.cnf to /etc/my.cnf.
I uncommented the lines about innodb and restarted mysqld by running 
/usr/local/etc/rc.d/mysql-server.sh
I'm running a web server that accesses a mysql database. Is there a way 
that I can verify that mysql is using /etc/my.cnf? Also does this seem 
like the correct procedure
for running mysql with a web server?

Bob

--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.289 / Virus Database: 265.6.3 - Release Date: 12/21/2004
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


How to upgrade from 5.2.1 to 5.3 with only remote access

2004-12-22 Thread Chris Hastie
Hi
I'm sure there must be documentation on this, but I just can't find it. 
Plenty of stuff on upgrading from 4.x to 5.3, but nothing on upgrading 
from 5.2.1

The situation is that I have a remote, leased server running 5.2.1. I 
have ssh access only, no console access or terminal server, so anything 
involving single user mode is not an option. I believe the original 
installation was a binary installation, though I have since installed 
some of the source (using sysinstall) so that I could customise the 
kernel.

What is the most sensible way to set about performing this upgrade? Is 
it even possible?

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


Re: How to upgrade from 5.2.1 to 5.3 with only remote access

2004-12-22 Thread Jorn Argelo
On Wed, 22 Dec 2004 11:33:43 +, Chris Hastie wrote
 Hi
 
 I'm sure there must be documentation on this, but I just can't find 
 it. Plenty of stuff on upgrading from 4.x to 5.3, but nothing on 
 upgrading from 5.2.1
 
 The situation is that I have a remote, leased server running 5.2.1. 
 I have ssh access only, no console access or terminal server, so 
 anything involving single user mode is not an option. I believe the 
 original installation was a binary installation, though I have since 
 installed some of the source (using sysinstall) so that I could 
 customise the kernel.

I never did an make installworld in single user mode, and it always went fine. 
It's probably not the right thing to do, though.  You could ask the personnel 
there to do the steps required in single user mode. They can probably hook up 
a monitor on it.

Cheers,

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


DNS TTL problem

2004-12-22 Thread Mark Frasa
Hello,

I am using a djbdns DNS server which operates almost perfect.

There is 1 small problem, i have for my domain frasa.net 2 namservers:

frasa.net.  3600IN  NS  ns1.frasa.net.
frasa.net.  3600IN  NS  ns2.frasa.net.

This is when i resolve directly on ns1.frasa.net or ns2.frasa.net

When I resolve on my ISP's nameserver and serveral others:

frasa.net.  172800  IN  NS  ns1.frasa.net.
frasa.net.  172800  IN  NS  ns2.frasa.net.

The problem is that this is a TTL of 2 days. When i Trace the dig, is see that
the root servers are providing the 2 days TTL:

;; Received 512 bytes from 198.32.64.12#53(l.root-servers.net) in 169 ms

frasa.net.  172800  IN  NS  ns1.frasa.net.
frasa.net.  172800  IN  NS  ns2.frasa.net.
;; Received 95 bytes from 192.42.93.30#53(G.GTLD-SERVERS.net) in 154 ms

Can anyone explain this behaviour?

Cheers Mark.
_
This mail sent using V-webmail - http://www.v-webmail.org

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


Re: Running own servers

2004-12-22 Thread n0oct


 Joshua Tinnin gamera at pacbell.net wrote on 
 Tue Dec 21 19:56:20 PST 2004
 On Tue, Dec 21, 2004 at 10:24:17PM -0500, RL wrote:
 Hi. I currently have a cable modem, but I want to (if it's not too
 pricey) run my own servers including DNS server.  My cable provider
 currently doesn't offer static IPs so I have a dynamic.  How would I
 go about setting up my own DNS? Would I do it through the cable
 modem?
 Wouldn't I have to buy an IP block and be the authority for it? I'm a
 little lost. :)

 You will have problems doing this unless you have a static IP. I don't
 think any cable service offers that. You can run a DNS server on an
 internal network in your case. It's also possible to run a dynamic IP
 resolver service, like No-IP's (dns/noip), but that is far from
 perfect,
 unless you're just doing this for testing. For any real-world purpose,
 you really have to have a static IP and a fully-qualified hostname. I
 have read of people running their own servers for everyday use using
 something like No-IP, but if you're running a mail server, you will
 most
 likely have to deal with mail being rejected because of blacklisting
 (many ISPs block all major ISPs' dynamic blocks from sending to their
 mail servers to prevent spam), as well as reverse dns problems.

While the reverse DNS thing is true, the mailservers can be set up to
use a smarthost and still operate off a dynamic IP address.  Mine do.

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


Re: how to mount a USB pen drive?

2004-12-22 Thread Irvin Piraman
mount -t msdos /dev/da1s1 /mnt

HTH

Irvin

On 22 Dec 2004 05:03:53 -, John Conover [EMAIL PROTECTED] wrote:
 
 I plug in a USB pen drive, and dmesg says:
 
 umass0: Fujifilm USB Drive, rev 2.00/2.00, addr 2
 GEOM: create disk da1 dp=0xc20d3850
 da1 at umass-sim0 bus 0 target 0 lun 0
 da1: Fujifilm USB Drive 3.04 Removable Direct Access SCSI-0 device
 da1: 1.000MB/s transfers
 da1: 62MB (127840 512 byte sectors: 64H 32S/T 62C)
 
 How do I mount the USB pen drive? (It hasn't been formatted, and I
 assume its MSDOS formatted since it was used on Win98.)
 
 Thanks,
 
 John
 
 --
 
 John Conover, [EMAIL PROTECTED], http://www.johncon.com/
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

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


fsck locks up SMP system (5.3-REL)

2004-12-22 Thread Marco Beishuizen
Hi,
I have a problem with fsck. After a lockup of X.org I couldn't use my 
keyboard anymore and I had to reset the computer. When it rebooted fsck 
didn't start immediately, but started after the login in the background. 
After some checks fsck stops working but stays a running process (in 
getblk state).
Everything seems normal then but when I start X, after a while the system 
locks up again and I have to reset the machine again. If I don't start X 
but shutdown from the console it doesn't shut down because some processes 
couldn't be killed, and the only option is to reset.

Does anyone has an idea how I can repair my filesystems?
Thanks,
Marco
--
As part of the conversion, computer specialists rewrote 1,500
programs; a process that traditionally requires some debugging.
-- USA Today, referring to the IRS switchover to a new
   computer system.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Running own servers

2004-12-22 Thread Louis LeBlanc
On 12/21/04 07:56 PM, Joshua Tinnin sat at the `puter and typed:
 On Tue, Dec 21, 2004 at 10:24:17PM -0500, RL wrote:
  Hi. I currently have a cable modem, but I want to (if it's not too
  pricey) run my own servers including DNS server.  My cable
  provider currently doesn't offer static IPs so I have a dynamic.
  How would I go about setting up my own DNS? Would I do it through
  the cable modem? Wouldn't I have to buy an IP block and be the
  authority for it? I'm a little lost. :)
 
 You will have problems doing this unless you have a static IP. I
 don't think any cable service offers that. You can run a DNS server
 on an internal network in your case. It's also possible to run a
 dynamic IP resolver service, like No-IP's (dns/noip), but that is
 far from perfect, unless you're just doing this for testing. For any
 real-world purpose, you really have to have a static IP and a
 fully-qualified hostname. I have read of people running their own
 servers for everyday use using something like No-IP, but if you're
 running a mail server, you will most likely have to deal with mail
 being rejected because of blacklisting (many ISPs block all major
 ISPs' dynamic blocks from sending to their mail servers to prevent
 spam), as well as reverse dns problems. It can work alright for a
 small website server setup for fun or testing, or something that
 won't require complicated network protocols.

All true, but there are easy ways around all of this.  I don't know
about the other dynamic dns services, but ZoneEdit
(http://www.zoneedit.com/) is free up to a very reasonable traffic
level - never cost me a nickel until I wanted backup mail service, and
I've even cranked the TTL down a little on my zone records.  I can't
remember offhand what a traffic unit cost, probably because I found it
minimal at best.

They also have a web based interface you can have your dhcp hooks call
through lynx to automagically reset your IP on their end anytime you
get renumbered.  Since I've cranked my zone TTL down a bit, it's usually
a matter of minutes until the records get out to the farthest reaches.

Granted, if I were renumbered every week, I'd probably hit the
threshold on free service more often.

As for rejected email, I just have zoneedit act as the lowest priority
MX for my domains and anytime something can't get sent to my system
because I've been renumbered, zoneedit will spend up to 10 days trying
to relay it in - which usually turns into a matter of a couple hours
at most, since they find out where I am pretty quick.

I've been using zoneedit for longer than I can remember - since my 4.3
install at least, with both cable/DHCP and DSL/PPP, and the only time
I ever know I've been renumbered is when I check my logs.  I don't get
reports of email that I never received either.

Lou
-- 
Louis LeBlanc   [EMAIL PROTECTED]
Fully Funded Hobbyist, KeySlapper Extrordinaire :)
http://www.keyslapper.org ԿԬ

The clash of ideas is the sound of freedom.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Running own servers

2004-12-22 Thread Louis LeBlanc
On 12/21/04 11:12 PM, RL sat at the `puter and typed:
 SNIP
 
 What's the most popular option? Is it buying a business DSL or T1
 service or is it to colocate it?  All of them are pricey. :(

That really depends on your desired level of service.  If you're
running servers for commercial purposes or even very ambitious
personal purposes, you may be happy with a hosting company.  They're
getting a lot more reasonable than static IPs.  Can't understand why
because they usually *provide* a static IP, often dedicated to your
account.

Someone I work with uses openhosting.com, and says they're pretty
good.  He runs a mail server and web server on a virtual Linux system
with its own IP.  He also does mail forwarding for an NPO and has a
few email accounts, mostly for friends.  Since it's a virtual system,
he essentially has root access and can install whatever software he
wants in his own 'system'.

I run a mail server with 4 family accounts, a webserver (currently
just the Apache test page) and Tomcat out of my own back room in my
apartment.  I never did anything overly fancy, no commercial stuff,
but at one point I did put up a few Apache Perl modules I wrote and
lots of family pics available only to those with a password.

Eventually I'll get around to doing some real fun stuff with it, but
until then, it's just that.  Maybe someday I'll break down and go with
a hosting company, but right now I'm perfectly happy with the setup I
have.

If you're going to be putting up commercial pages and driving traffic
to it, trust me, you want someone else bargaining for that bandwidth.
Your ISP will kick back *hard* if they see your bandwidth spike to
that degree.

As for the Colo, that's not really a one man band kind of option.
My employer has colocation services all over the planet, and they pay
quite a bit for it.  They're getting a good deal, but that's because
they pay for so many.  One system, or even a switch and a few systems
is going to cost a lot more.  You might as well get FTTP from Verizon
and go with a small addition to your house to host it.  It may cost a
little more than the colo in the short run, but in the long run, you
still have the addition.

Lou
-- 
Louis LeBlanc   [EMAIL PROTECTED]
Fully Funded Hobbyist, KeySlapper Extrordinaire :)
http://www.keyslapper.org ԿԬ

Nirvana?  That's the place where the powers that be and their friends hang out.
-- Zonker Harris
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Hang on install of 5.3 on old Presario

2004-12-22 Thread Ramiro Aceves
Christian Hiris wrote:
On Wednesday 22 December 2004 10:05, Ramiro Aceves wrote:
[...]
I have an older 486 with 24 MB RAM and it runs freebsd 5.3 installation
process very well, but unfortunately, its memory does not fit on the
pentium.

Did you try to move the harddisk of the 16MB box over to the 24MB box and 
install 5.3 there?   

Thanks,
I have not tried that. My 24MB computer is at the summer house, 15 km 
from here, and now it is cold weather there, there is no heating system :-(

I will look for old memory banks, I have asked for the memory banks to a 
friend of mine that had got many old computers now retired in an office. 
He will call me back if he finds some. We will see.

Thank you.
Ramiro.

___
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: Running own servers

2004-12-22 Thread Louis LeBlanc
On 12/21/04 08:14 PM, Joshua Tinnin sat at the `puter and typed:
 On Tue, Dec 21, 2004 at 10:59:51PM -0500, RL wrote:
  On Tue, 21 Dec 2004 19:56:15 -0800, Joshua Tinnin [EMAIL PROTECTED] wrote:
   On Tue, Dec 21, 2004 at 10:24:17PM -0500, RL wrote:
Hi. I currently have a cable modem, but I want to (if it's not too
pricey) run my own servers including DNS server.  My cable provider
currently doesn't offer static IPs so I have a dynamic.  How would I
go about setting up my own DNS? Would I do it through the cable modem?
Wouldn't I have to buy an IP block and be the authority for it? I'm a
little lost. :)
   
   You will have problems doing this unless you have a static IP. I don't
   think any cable service offers that. You can run a DNS server on an
   internal network in your case. It's also possible to run a dynamic IP
   resolver service, like No-IP's (dns/noip), but that is far from perfect,
   unless you're just doing this for testing. For any real-world purpose,
   you really have to have a static IP and a fully-qualified hostname. I
   have read of people running their own servers for everyday use using
   something like No-IP, but if you're running a mail server, you will most
   likely have to deal with mail being rejected because of blacklisting
   (many ISPs block all major ISPs' dynamic blocks from sending to their
   mail servers to prevent spam), as well as reverse dns problems. It can
   work alright for a small website server setup for fun or testing, or
   something that won't require complicated network protocols.
  
  I just called my cable modem ISP (adelphia) and they said a static IP
  address is $130 per month!! Forget that!  Now what are my other
  options? I do have a dynDNS address for my dynamic IP, but I can't run
  a DNS server and do reverse DNS with that. :(
 
 Well, that's news to me. I guess it was just a matter of time before
 cable providers started offering static IP. Even so, you're probably
 best off shopping around a bit, although you most likely won't find
 anything that's $40/mo., but who knows? One advantage of going with a
 smaller provider with a good reputation is that your IP won't be
 blacklisted (or there is much less likelihood of it). One problem with
 so many people running servers these days is that you don't know who to
 trust, so whole IP blocks of major ISPs end up being blacklisted, and
 not just the dynamic blocks, but this is more likely to happen if the
 ISP is careless about spam. If you're going to go through with it and
 spend the extra money, make sure to do some research and get a good IP
 with a reputable company.

Comcast/ATT/MediaOne has been offering static IPs for a few years.
They've just never advertised them very thoroughly - and with good
reason, they're not the least bit competitive with the other options
out there.  I've always suspected that they just don't want to do it
so they mask in a hassle surcharge.

Even if your IP block is blacklisted, as MOST dynamic blocks are,
decent ISPs often have their own relays.  Even if it's not an open
relay (which hopefully it isn't) you can set up sendmail or postfix to
do the authentication and relay through your ISP.  This works fine for
me.

 As for other options, you're kinda stuck with the problems of reverse
 dns, except if your IP isn't released for a long time, but then you're
 sort of gambling. Anyway, it's kind of a drag, I remember a time not
 long ago when static IPs with shell accounts on dialup were cheap, but
 now that so many people have broadband, you really have to pony up a bit
 of extra cash to get your IP out of the swamp of IP blocks full of
 zombied machines. But you can always do some testing on your own to see
 what would work for you. 

That still assumes rDNS is critical.  It's not for lots of things.
Even commercial ventures often gloss over the rDNS side of DNS
administration.

Lou
-- 
Louis LeBlanc   [EMAIL PROTECTED]
Fully Funded Hobbyist, KeySlapper Extrordinaire :)
http://www.keyslapper.org ԿԬ

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


Re: How to upgrade from 5.2.1 to 5.3 with only remote access

2004-12-22 Thread Travis Fitch
Try this on for size. Should fit nicely

http://www.oreillynet.com/lpt/wlg/6033

Travis


On Wed, 2004-12-22 at 11:33 +, Chris Hastie wrote:
 Hi
 
 I'm sure there must be documentation on this, but I just can't find it. 
 Plenty of stuff on upgrading from 4.x to 5.3, but nothing on upgrading 
 from 5.2.1
 
 The situation is that I have a remote, leased server running 5.2.1. I 
 have ssh access only, no console access or terminal server, so anything 
 involving single user mode is not an option. I believe the original 
 installation was a binary installation, though I have since installed 
 some of the source (using sysinstall) so that I could customise the 
 kernel.
 
 What is the most sensible way to set about performing this upgrade? Is 
 it even possible?
 
 Thanks

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


problem with X in a laptop

2004-12-22 Thread [EMAIL PROTECTED]

hi,

im having problems configuring the X window system in a IBM
thinkpad laptop.
The servers starts ok, but the problem is that it doesnt fit the
full screen. i dont know if you undrestand me, because my
english is not very good.
im gonna explain it with a picture:

 | |  =  screen of my laptop
 |   |---|  |
 |   | |  |
 |   | == size of the X's screen
 |   |---|  |
 |-|


the video card is a silicon motion, but the driver doesnt work,
so i used a generic VGA.
Now im using FreeBSD 5.3 with Xorg, but before i was using
debian with XF86 and i had the same problem, but i fixed it
startingthe X server with the -dpi 100 but this now doesnt
work.
i also have used the xvfb server, but with this server doesnt
work.

any idea is welcome.
thanks in advance.

jcazor.




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


Re: fsck locks up SMP system (5.3-REL)

2004-12-22 Thread O. Hartmann
Marco Beishuizen schrieb:
Hi,
I have a problem with fsck. After a lockup of X.org I couldn't use my 
keyboard anymore and I had to reset the computer. When it rebooted 
fsck didn't start immediately, but started after the login in the 
background. After some checks fsck stops working but stays a running 
process (in getblk state).
Everything seems normal then but when I start X, after a while the 
system locks up again and I have to reset the machine again. If I 
don't start X but shutdown from the console it doesn't shut down 
because some processes couldn't be killed, and the only option is to 
reset.

Does anyone has an idea how I can repair my filesystems?
Thanks,
Marco
Please try to boot your system in single user mode (type '4' in the 
start screen, where the countdown can be watched)
an do a 'fsck -y'. Then watch whether your box gets stuck or.
If it also get stuck in single user mode, please report again. I'm very 
interestes in this!

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


strange routing

2004-12-22 Thread Xian
I have a friend who has set up a FreeBSD box (called Atlantis) as a router 
between his LAN and the Internet. It connects to the Internet and can make 
and receive connections ok (eg I can ssh in from outside, and he can ssh 
out), but other computers on the network can't connect out through it.
The strange thing is that when the default route on Atlantis is set to the old 
router he has and this is used to connect to the Internet, other computers on 
the network can connect out to the Internet. Trace route confirms the 
connection is going via Atlantis then the old router.
The IP address of Atlantis is 192.168.0.71 and the IP address of the old 
router is 192.168.101

Here are some bits a pices that might be usefull:

NOT VIA OLD ROUTER:
[EMAIL PROTECTED]:~] %netstat -r -f inet
Routing tables

Internet:
DestinationGatewayFlagsRefs  Use  Netif Expire
default212.104.130.202UGS 0  456   tun0
localhost  localhost  UH  0   11lo0
192.168.0  link#1 UC  00   sis0
192.168.0.100:0c:6e:fa:17:cd  UHLW0  845   sis0   1024
192.168.0.200:01:03:86:8d:3e  UHLW0   28   sis0   1000
212.104.130.20282.152.149.159 UH  18   tun0
[EMAIL PROTECTED]:~] %ifconfig
sis0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet 192.168.0.71 netmask 0xff00 broadcast 192.168.0.255
inet6 fe80::2d0:9ff:fe85:c328%sis0 prefixlen 64 scopeid 0x1
ether 00:d0:09:85:c3:28
media: Ethernet autoselect (100baseTX full-duplex)
status: active
plip0: flags=108810POINTOPOINT,SIMPLEX,MULTICAST mtu 1500
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 0x3
tun0: flags=8051UP,POINTOPOINT,RUNNING,MULTICAST mtu 1500
inet 82.152.149.159 -- 212.104.130.202 netmask 0x
Opened by PID 413
[EMAIL PROTECTED]:~] %sysctl net.inet.ip.forwarding
net.inet.ip.forwarding: 1
[EMAIL PROTECTED]:~] %uname -a
FreeBSD atlantis.pegasus 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #2: Tue Dec 21 
22:22:43 GMT 2004 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/MYKERNEL  
i386


VIA OLD ROUTER:
[EMAIL PROTECTED]:~] %netstat -r -f inet
Routing tables

Internet:
DestinationGatewayFlagsRefs  Use  Netif Expire
default192.168.0.101  UGS 0  436   sis0
localhost  localhost  UH  07lo0
192.168.0  link#1 UC  00   sis0
192.168.0.100:0c:6e:fa:17:cd  UHLW0  434   sis0947
192.168.0.200:01:03:86:8d:3e  UHLW03   sis0903
192.168.0.101  00:e0:18:76:f7:7f  UHLW10   sis0984
[EMAIL PROTECTED]:~] %ifconfig
sis0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet 192.168.0.71 netmask 0xff00 broadcast 192.168.0.255
inet6 fe80::2d0:9ff:fe85:c328%sis0 prefixlen 64 scopeid 0x1
ether 00:d0:09:85:c3:28
media: Ethernet autoselect (100baseTX full-duplex)
status: active
plip0: flags=108810POINTOPOINT,SIMPLEX,MULTICAST mtu 1500
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 0x3
[EMAIL PROTECTED]:~] %sysctl net.inet.ip.forwarding
net.inet.ip.forwarding: 1

A TRACEROUT FROM ANTHER MACHINE (when using old router):
C:\Documents and Settings\Paultracert www.bbc.co.uk

Tracing route to www.bbc.net.uk [212.58.224.121]
over a maximum of 30 hops:

  11 ms1 ms1 ms  192.168.0.71
  2 9 ms 1 ms 1 ms  192.168.0.101
  316 ms15 ms15 ms  212.104.130.202
  416 ms18 ms15 ms  81.5.191.113
  516 ms16 ms17 ms  ge1-1-core4.th.eclipse.net.uk [81.5.191.2]
  617 ms16 ms15 ms  212.58.238.209
  717 ms15 ms16 ms  212.58.238.153
  819 ms19 ms18 ms  www21.thdo.bbc.co.uk [212.58.224.121]

Trace complete.

A TRACEROUT FROM ANTHER MACHINE (not old router):
C:\Documents and Settings\Paultracert www.bbc.co.uk
Unable to resolve target system name www.bbc.co.uk.

C:\Documents and Settings\Paultracert 212.58.224.121

Tracing route to 212.58.224.121 over a maximum of 30 hops

  11 ms1 ms1 ms  192.168.0.71
  2 *** Request timed out.
  3 *** Request timed out.
  4 *** Request timed out.
  5 *** Request timed out.
  6 *** Request timed out.
etc.

Please CC to me as I am not subscribed t this list.
Thanks in advance for any ideas/help/kicks in the right direction.
-- 
/Xian

Arguing with an engineer is like wrestling with a 

5.3 buildworld fails

2004-12-22 Thread Koos van den Hout

I guess I managed to get into a circular dependency problem ;)

I have a machine, running at the moment

FreeBSD master.idefix.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Tue Nov  9
22:49:23 CET 2004 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IDEFIX
i386

I cvsupped the source to RELENG_5_3, and am trying to do a buildworld
(after a buildkernel).

But, it fails at a known place:

cc -O -pipe -I/usr/src/usr.bin/make -DMAKE_VERSION=\5200408120\
-D__FBSDID=__RCSID -DDEFSHELL=1   -static -o make arch.o buf.o compat.o
cond.o dir.o for.o hash.o job.o main.o make.o parse.o str.o suff.o targ.o
util.o var.o var_modify.o lstAppend.o lstAtEnd.o lstAtFront.o lstClose.o
lstConcat.o lstDatum.o lstDeQueue.o lstDestroy.o lstDupl.o lstEnQueue.o
lstFind.o lstFindFrom.o lstFirst.o lstForEach.o lstForEachFrom.o lstInit.o
lstInsert.o lstIsAtEnd.o lstIsEmpty.o lstLast.o lstMember.o lstNext.o
lstOpen.o lstRemove.o lstReplace.o lstSucc.o 
/usr/lib/crt1.o: In function `_start':
/usr/lib/crt1.o(.text+0x64): undefined reference to `_init_tls'
*** Error code 1

Searching for solutions using google, I found 'rebuild your libc using cd 
/usr/src/lib/libc  make obj  make depend  make all  make install' which
gives the error:

 -O -pipe -mcpu=pentiumpro -I/usr/src/lib/libc/include
-I/usr/src/lib/libc/../../include -I/usr/src/lib/libc/i386
-D__DBINTERFACE_PRIVATE -I/usr/src/lib/libc/../../contrib/gdtoa -DINET6
-I/usr/obj/usr/src/lib/libc -DPOSIX_MISTAKE -I/usr/src/lib/libc/locale
-DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DHESIOD
-Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized  -c
nslexer.c
/dev/stdout: In function `_nsyylex':
/dev/stdout:711: warning: label `find_rule' defined but not used
/usr/src/lib/libc/net/nslexer.l: At top level:
/dev/stdout:1678: warning: `yy_flex_realloc' defined but not used
*** Error code 1

Stop in /usr/src/lib/libc.

The next suggestion I find is 'rebuild yacc' .. which fails with _init_tls
or 'rebuild lex' which points back at '_init_tls'.

A nice circulair dependency. Any way to get out of this?

I already re-cvsupped from a clear /usr/src.

   Koos

-- 
Koos van den Hout,   PGP keyid RSA/1024 0xCA845CB5 via keyservers
[EMAIL PROTECTED]or DSS/1024 0xF0D7C263-?)
Fax +31-30-2817051 Camp Wireless, wireless Internet access /\\
http://idefix.net/~koos/   at campsites http://www.camp-wireless.org/ _\_V


pgprepQ38zalo.pgp
Description: PGP signature


Re: Desperate for Help

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 02:47:19 +0100, J65nko BSD [EMAIL PROTECTED] wrote:
 On Tue, 21 Dec 2004 17:24:02 -0500, alfredo perez
 [EMAIL PROTECTED] wrote:
  Heloo list
 
  I have been trying to set up my FreeBSD 5.3 to get my emails with no
  results. I have installed and set up Mutt, Ssmtp and Fetchmail. None of
  them are working properly. I have no idea where to start first. I have
  already read the man pages and followed several how-tos I found on the
  internet but no results. I was wondering if any of you know of a web
  site with steps that I can follow to sep up my Mutt, fetchmail and
  ssmtp. I dont want to give up on this!!!
 
  THANKS
 
 Start with fetchmail. You need a .fetchmailrc file in your home
 directory. Some examples
 
 poll pop.domain2.com  protocol POP3 timeout 60 no dns
user loginname password 'poppassword' is homedirowner here,
options fetchall fetchlimit 0
 
 poll pop3.domain.com protocol POP3
user [EMAIL PROTECTED] password poppasswd is homedirowner here,
options fetchall
 
 As you can see some ISP's require only your login name, others require
 [EMAIL PROTECTED]. You can run fetchmail -v to see where you
 get stuck.
 
 This is an example for googles gmail, using SSL
 
 poll pop.gmail.com protocol POP3  timeout 60 no dns
   user gmailname password gmailpassword ssl  is homdirowner here,
   options fetchall fetchlimit 0
 
 If you are new to all this MTA, MUA and SMTP thing, you could consider
 to use Pine. mutt is nice but as a beginner Pine is probably easier to
 understand and configure than mutt.

Ah!  If you want to learn to use Mutt, learn to use Mutt.  Now that
you've got an idea of how to setup fetchmail, you'll want to create
a ~/.muttrc file.  There are many, many sample .muttrc files online;
Google is your friend.  This is the example I worked from when 
I first setup Mutt:

http://www.hserus.net/muttrc.html

All I had to do to get Mutt working with ssmtp was to tell Mutt to
use ssmtp in ~/.muttrc

set sendmail=/path/to/ssmtp

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


openh323 gatekeeper compile errors

2004-12-22 Thread Chris Martin
I am trying to compile the port net/gatekeeper. OpenH323 and PWLib are
already installed.


gmake P_SHAREDLIB=0 opt
gmake[1]: Entering directory `/usr/ports/net/gatekeeper/work/openh323gk'
c++ -DHAS_RADIUS -DHAS_WAITARQ=1  -DP_FREEBSD=503001 -I/usr/local/include
-I/usr/local/include -D_REENTRANT -Wall -DP_FREEBSD=503001 -DP_USE_PRAGMA
-DPHAS_TEMPLATES -I/usr/ports/devel/pwlib/work/pwlib/include/ptlib/unix
-I/usr/ports/devel/pwlib/work/pwlib/include -DPTRACING
-I/usr/ports/net/gatekeeper/../openh323/work/openh323/include -DHAS_OSS
-DMAJOR_VERSION=1 -DMINOR_VERSION=12 -DBUILD_NUMBER=0 -DNDEBUG -O -pipe  -c
radproto.cxx -o obj_FreeBSD_x86_r/radproto.o
radproto.cxx: In constructor `RadiusAttr::RadiusAttr(unsigned char, const
void*, PINDEX)':
radproto.cxx:121: warning: right-hand operand of comma has no effect
radproto.cxx: In constructor `RadiusAttr::RadiusAttr(const void*, PINDEX,
int, unsigned char)':
radproto.cxx:155: warning: right-hand operand of comma has no effect
radproto.cxx: In member function `virtual BOOL RadiusAttr::Read(const void*,
PINDEX)':
radproto.cxx:390: warning: right-hand operand of comma has no effect
radproto.cxx: In member function `virtual PObject::Comparison
RadiusAttr::Compare(const PObject) const':
radproto.cxx:717: error: 'const class PObject' has no member named
'IsDescendant'
radproto.cxx: In member function `BOOL RadiusPDU::SetAuthenticator(const
void*)':
radproto.cxx:979: warning: right-hand operand of comma has no effect
radproto.cxx: In member function `virtual BOOL
RadiusPDU::AppendAttribute(RadiusAttr*)':
radproto.cxx:1021: warning: right-hand operand of comma has no effect
radproto.cxx: In member function `virtual BOOL RadiusPDU::Read(const void*,
PINDEX)':
radproto.cxx:1123: warning: right-hand operand of comma has no effect
radproto.cxx: In member function `virtual BOOL
RadiusSocket::MakeRequest(const BYTE*, PINDEX, const PIPSocket::Address,
WORD, RadiusPDU*)':
radproto.cxx:1358: warning: right-hand operand of comma has no effect
radproto.cxx: In member function `BOOL
RadiusClient::GetSocket(RadiusSocket*, unsigned char)':
radproto.cxx:2266: warning: comparison is always true due to limited range
of data type
gmake[1]: *** [obj_FreeBSD_x86_r/radproto.o] Error 1
gmake[1]: Leaving directory `/usr/ports/net/gatekeeper/work/openh323gk'
gmake: *** [optnoshared] Error 2
*** Error code 2

Stop in /usr/ports/net/gatekeeper.

I have tried this on two systems: FreeBSD 5.3-RELEASE-p2 #0 and 5.3-RELEASE
#3. The p2 machine has openh323-v1_15_2 and pwlib-v1_8_3 form the sorceforge
site and the other as openh323-1.12.0_4 and pwlib-1.5.0_5,1, built from
ports. They both get exactly the same compile error.

Does anyone have any suggestions on how to resolve this?

Chris Martin


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


Re: Copying a directory hierarchy

2004-12-22 Thread Lowell Gilbert
Mike Jeays [EMAIL PROTECTED] writes:

 On Tue, 2004-12-21 at 21:08, Robert Huff wrote:
  Mike Jeays writes:
  
How does on copy a complete directory hierarchy, including any hidden
files?

cp -rp leaves them out.
  
  cp -rp *
  cp -rp .*

 This doesn't copy hidden files in lower-level directories, only in the
 top level.  Thanks for the suggestion - a good idea that doesn't quite
 do it.

It works for me...

temp type -a rm
rm is /bin/rm
temp mkdir -p a/b/c/d/e
temp touch a/b/c/d/.hidden a/b/c/d/e/.hidden-too
temp cp -r a f
temp find a f
a
a/b
a/b/c
a/b/c/d
a/b/c/d/e
a/b/c/d/e/.hidden-too
a/b/c/d/.hidden
f
f/b
f/b/c
f/b/c/d
f/b/c/d/e
f/b/c/d/e/.hidden-too
f/b/c/d/.hidden
temp 

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


Re: fsck locks up SMP system (5.3-REL)

2004-12-22 Thread Marco Beishuizen
On stardate Wed, 22 Dec 2004, the wise O. Hartmann entered:
Please try to boot your system in single user mode (type '4' in the start 
screen, where the countdown can be watched)
an do a 'fsck -y'. Then watch whether your box gets stuck or.
If it also get stuck in single user mode, please report again. I'm very 
interestes in this!
Thanks for the reply,
In single user mode it didn't get stuck and it looks like it repaired some 
things. In the /usr, /home and /var filesystems lost+found directories 
were created with some files in them. Also a fsck_snapshot-file was 
created in /home/.snap/

Now I'm curious what to do with the files in the lost+found directories; 
can I delete them safely or do I have to do something with it? Are 
the filesystems really repaired and ok again or will the system crash some 
day because some files are still broken?

The system works again but I'm not very confident it stays this way. I'm 
thinking of installing 4.10-R again.

Marco
--
When you are in it up to your ears, keep your mouth shut.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Webserver MOP Help (Method of Procedure)

2004-12-22 Thread Adam
I'm brand new to FreeBSD and I'm learning it in preparation for getting a 
dedicated server.  I'm making a MOP so I can quickly setup a server and not 
waste the $99/month I'm paying by experimenting

I'd publish the MOP so other newbies could easily set up their own webserver.

I was wondering if anyone would want to help check my MOP and give 
recommendations.  I'd make it in MS Office XP since that's the only OS on my 
only computer.

Please email me if you're interested.

The MOP will setup a webserver with:

MySQL 4.1
PHP 5.0.3
Perl 5.8.6
PostgreSQL 7.4.6
phpmyadmin 2.5.0
sendmail
ssh
pop3
http://www.gplhost.com/

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


Re: fsck locks up SMP system (5.3-REL)

2004-12-22 Thread O. Hartmann
Marco Beishuizen schrieb:
On stardate Wed, 22 Dec 2004, the wise O. Hartmann entered:
Please try to boot your system in single user mode (type '4' in the 
start screen, where the countdown can be watched)
an do a 'fsck -y'. Then watch whether your box gets stuck or.
If it also get stuck in single user mode, please report again. I'm 
very interestes in this!

Thanks for the reply,
In single user mode it didn't get stuck and it looks like it repaired 
some things. In the /usr, /home and /var filesystems lost+found 
directories were created with some files in them. Also a 
fsck_snapshot-file was created in /home/.snap/

Now I'm curious what to do with the files in the lost+found 
directories; can I delete them safely or do I have to do something 
with it? Are the filesystems really repaired and ok again or will the 
system crash some day because some files are still broken?

The system works again but I'm not very confident it stays this way. 
I'm thinking of installing 4.10-R again.

Marco
Dear Marco.
Thanks. In my case, FreeBSD 5.3 dies in single user mode on nearly each 
disk activity (it is obviously a FreeBSD 5.3-issue with
my ASUS CUR-DLS based system).

Please take a look at fsck_ffs(8) man page. There is at the end of the 
description of the options an explanation of the lost+find facility. 
Obviously orphaned files and directories (and in most cases those which 
are expected to be some of them) are gathered and reconnected in 
lost+found. My 'periodic' cron-job deletes the contents of lost+found 
every 7 days.
Oliver
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: fsck locks up SMP system (5.3-REL)

2004-12-22 Thread Marco Beishuizen
On stardate Wed, 22 Dec 2004, the wise O. Hartmann entered:
Dear Marco.
Thanks. In my case, FreeBSD 5.3 dies in single user mode on nearly each disk 
activity (it is obviously a FreeBSD 5.3-issue with
my ASUS CUR-DLS based system).

Please take a look at fsck_ffs(8) man page. There is at the end of the 
description of the options an explanation of the lost+find facility. 
Obviously orphaned files and directories (and in most cases those which are 
expected to be some of them) are gathered and reconnected in lost+found. My 
'periodic' cron-job deletes the contents of lost+found every 7 days.
Oliver
Well the problem didn't dissappear. I was just checking the filesystem with 
the midnight commander, and suddenly mc froze in ufs-state. Now I'm 
running fsck again.

--
Idiot Box, n.:
The part of the envelope that tells a person where to place the
stamp when they can't quite figure it out for themselves.
-- Rich Hall, Sniglets
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Running own servers

2004-12-22 Thread Brian Clapper
On 21 December, 2004, at 23:12 (-0500)
RL [EMAIL PROTECTED] wrote:

 What's the most popular option? Is it buying a business DSL or T1
 service or is it to colocate it?  All of them are pricey. :(

Depending on where you are, you may have other options as well.

I'm in the Philadelphia, PA, area. I have a somewhat non-standard DSL
arrangement that works very well for me. Verizon supplies the wire and the
DSL signal (as well as my local phone service), but I use someone else--a
so-called Verizon partner ISP--as my ISP. My ISP handles all the billing,
and they will give me up to 5 static IP addresses. (I currently use 2.) I
provide my own forward DNS, SMTP and HTTP services. My ISP has no problem
providing me with DNS PTR records for the assigned IPs; doing a dig -x on
the address returned for my domain's MX address yields a PTR record that
refers back to my domain. If, for some reason, I want to change the PTR
record, I simply drop them an email; they usually take care of it within in
hour or so. If I want another static IP address, the procedure and
turnaround time are comparable.

There *is* a small price for this extra functionality: I pay about $10-$15
more per month than if I were to go with a native Verizon DSL set up. I
pay $44.95/month for 1.5Mbps/384Kbps ADSL. For native Verizon, a
month-to-month plan is $34.95/mo, and a plan with a 1-year commitment is
$29.95/month. But Verizon will not give me static IPs for that price; the
extra monthly cost is worth it to me.

I have had this arrangment for almost 5 years; 5 years ago, the monthly
cost was higher and the bandwidth was lower. The cost and bandwidth have
only improved over time.

Shop around, if you can. There may be other providers of DSL service in
your area who provide more enlightened service options.

Regards,

Brian Clapper, http://www.clapper.org/bmc/

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


RE: DNS TTL problem

2004-12-22 Thread Andras Kende


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Frasa
Sent: Wednesday, December 22, 2004 5:48 AM
To: freebsd-questions@freebsd.org
Subject: DNS TTL problem

Hello,

I am using a djbdns DNS server which operates almost perfect.

There is 1 small problem, i have for my domain frasa.net 2 namservers:

frasa.net.  3600IN  NS  ns1.frasa.net.
frasa.net.  3600IN  NS  ns2.frasa.net.

This is when i resolve directly on ns1.frasa.net or ns2.frasa.net

When I resolve on my ISP's nameserver and serveral others:

frasa.net.  172800  IN  NS  ns1.frasa.net.
frasa.net.  172800  IN  NS  ns2.frasa.net.

The problem is that this is a TTL of 2 days. When i Trace the dig, is see
that
the root servers are providing the 2 days TTL:

;; Received 512 bytes from 198.32.64.12#53(l.root-servers.net) in 169 ms

frasa.net.  172800  IN  NS  ns1.frasa.net.
frasa.net.  172800  IN  NS  ns2.frasa.net.
;; Received 95 bytes from 192.42.93.30#53(G.GTLD-SERVERS.net) in 154 ms

Can anyone explain this behaviour?

Cheers Mark.
_
This mail sent using V-webmail - http://www.v-webmail.org

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


Hello Mark,

This is absolutely normal... The 172800 is the parent servers
(G.GTLD-SERVERS.net) for your NS records which is default... while 3600 is
at your nameserver.

Take a look here:
http://www.dnsstuff.com/tools/dnstime.ch?name=frasa.nettype=A
http://www.dnsreport.com/tools/dnsreport.ch?domain=frasa.net

Try dnsreport.com with some other domains you will see...


Andras Kende
http://www.kende.com



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


Re: DNS TTL problem

2004-12-22 Thread J65nko BSD
On Wed, 22 Dec 2004 12:47:34 +0100, Mark Frasa [EMAIL PROTECTED] wrote:
 Hello,
 
 I am using a djbdns DNS server which operates almost perfect.
 
 There is 1 small problem, i have for my domain frasa.net 2 namservers:
 
 frasa.net.  3600IN  NS  ns1.frasa.net.
 frasa.net.  3600IN  NS  ns2.frasa.net.
 
 This is when i resolve directly on ns1.frasa.net or ns2.frasa.net
 
 When I resolve on my ISP's nameserver and serveral others:
 
 frasa.net.  172800  IN  NS  ns1.frasa.net.
 frasa.net.  172800  IN  NS  ns2.frasa.net.
 
 The problem is that this is a TTL of 2 days. When i Trace the dig, is see that
 the root servers are providing the 2 days TTL:
 
 ;; Received 512 bytes from 198.32.64.12#53(l.root-servers.net) in 169 ms
 
 frasa.net.  172800  IN  NS  ns1.frasa.net.
 frasa.net.  172800  IN  NS  ns2.frasa.net.
 ;; Received 95 bytes from 192.42.93.30#53(G.GTLD-SERVERS.net) in 154 ms
 
 Can anyone explain this behaviour?
 
Yes, you have something like this in your tinydns data file:
.frasa.net:80.69.78.171:ns1.frasa.net:3600
.frasa.net:80.69.78.172:ns2.frasa.net:3600

If you change the 3600 into a higher number , like 172800 you will
have the same TTL as the GTLD-SERVERS.net servers ;)

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


what can i delete from /usr

2004-12-22 Thread goose bla
hello,,

please. i have not big hdd,, and i need to make free place. what can i
remove from /usr  and system will be OK ? 

example:

/usr/ports/distfiles/   - i can remove all files.

in /usr/ports i can do 
rm -rf \*/work/

i can remove 
/usr/src/sys/i386/compile/*after reboot with new kernel.

can i remove /usr/src/sys/amd64 or /alpha  if a have i386 platform ?


--- reklama -
Nerozumiete niektorm slovkam?
http://slovnik.zoznam.sk
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: what can i delete from /usr

2004-12-22 Thread Daniel S. Haischt
Btw - why don't you type ...
 $  make install clean
  ^
... if compiling work? That way there woudn't be
left over work directories. You don't need them
anyway after a successfull port install.
goose bla schrieb:
hello,,
please. i have not big hdd,, and i need to make free place. what can i
remove from /usr  and system will be OK ? 

example:
/usr/ports/distfiles/   - i can remove all files.
in /usr/ports i can do 
rm -rf \*/work/

i can remove 
/usr/src/sys/i386/compile/*after reboot with new kernel.

can i remove /usr/src/sys/amd64 or /alpha  if a have i386 platform ?
--- reklama -
Nerozumiete niektorm slovkam?
http://slovnik.zoznam.sk
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41c993a1248794181411352!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: what can i delete from /usr

2004-12-22 Thread Frank Staals
goose bla wrote:
hello,,
please. i have not big hdd,, and i need to make free place. what can i
remove from /usr  and system will be OK ? 

example:
/usr/ports/distfiles/   - i can remove all files.
in /usr/ports i can do 
rm -rf \*/work/

 

I bet you install your ports by doing a 'make install', if you do, you 
can probably better make an 'make install distclean' with the distclean 
option turned on, it automatically removes the ~/work/ directory's and 
the distfiles in /usr/ports/distfiles/. If you want to keep your 
distfiles you can just do 'make install distclean'

i can remove 
/usr/src/sys/i386/compile/*after reboot with new kernel.

can i remove /usr/src/sys/amd64 or /alpha  if a have i386 platform ?
--- reklama -
Nerozumiete niektorm slovkam?
http://slovnik.zoznam.sk
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

About the part of /usr/src/sys/ it seems reasonable to me to remove 
amd64 or alpha but I wouldn't know, you might try it but backup the dirs 
first

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


Re: what can i delete from /usr

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 14:31:43 UT, goose bla [EMAIL PROTECTED] wrote:
 hello,,
 
 please. i have not big hdd,, and i need to make free place. what can i
 remove from /usr  and system will be OK ?
 
 example:
 
 /usr/ports/distfiles/   - i can remove all files.
 
 in /usr/ports i can do
 rm -rf \*/work/
 
 i can remove
 /usr/src/sys/i386/compile/*after reboot with new kernel.
 
 can i remove /usr/src/sys/amd64 or /alpha  if a have i386 platform ?

Yes.  In fact, if you have tuned your kernel to your liking, you
can just as well do:

# rm -r /usr/src/sys

And if you don't plan to rebuild the system anytime soon, you
could remove even more:

# rm -r /usr/src/*

Other candidates for removal on my /usr partition are:

/usr/games   - this server don't need no stinking games!
/usr/sup- I keep my cvsup stuff elsewhere

And, you can remove old cruft from /usr/obj, like:

# chflags -R noschg /usr/obj
# rm -rf /usr/obj/*

HTH,

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


Archos Studio 20 support?

2004-12-22 Thread Pervert Files
I can't seem to get my Archos Studio 20 to work.  I have a friend that got his 
Archos Recorder to work .. and I'm doing the same thing as he is.  Has anyone 
else gotten the Studio to work?

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


VIM

2004-12-22 Thread Leon
Hi,

I have installed a VIM editor.
When I create a new file with this editor, I can't type anything.
What is wrong.

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


best newsgroup?

2004-12-22 Thread Pervert Files
Hello,

What is the best newsgroup to read freebsd question.  
muc.lists.freebsd.questions doesn't seem to be updating with anything on my 
news provider.

--
Thanks,
Jason [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: VIM

2004-12-22 Thread Martin Hepworth
you need to get into insert mode first - press 'i'

the basic functions of vim are the same as 'vi' so you might want to
get a starter guid for that..

--
Martin


On Tue, 21 Dec 2004 13:56:18 -0500, Leon [EMAIL PROTECTED] wrote:
 Hi,
 
 I have installed a VIM editor.
 When I create a new file with this editor, I can't type anything.
 What is wrong.
 
 Thanks,
 Leon.
 ___
 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]


REPOST: TAR and SCSI Tape Drive Troubles.

2004-12-22 Thread comm/JT
Hello,

I never had a subject in my last post, so I am posting this again, sorry.

I have recently installed a SCSI tape drive in my FBSD box:

Waiting 15 seconds for SCSI devices to settle
sa0 at sym0 bus 0 target 6 lun 0
sa0: SEAGATE DAT04106-XXX 743B Removable Sequential Access SCSI-2
device 
sa0: 10.000MB/s transfers (10.000MHz, offset 15)

I then tried to actually put some files on the tape using tar and had the
following message in 'demsg':

Dec 21 10:38:11 taco kernel: (sa0:sym0:0:6:0): lost device
Dec 21 10:38:11 taco kernel: (sa0:sym0:0:6:0): failed to write terminating
filemark(s)
Dec 21 10:38:12 taco kernel: (sa0:sym0:0:6:0): tape is now frozen- use an
OFFLINE, REWIND or MTEOM command to clear this state.
Dec 21 10:38:12 taco kernel: (sa0:sym0:0:6:0): removing device entry

I have no clue how to add the device entry again, I tried rebooting the box.
I even tried some commands with 'devfs'... and got no where.

Any ideas...

Thanks.

==
-JT

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


Re: what can i delete from /usr

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 16:42:58 +, Frank Staals [EMAIL PROTECTED] wrote:
 goose bla wrote:
 
 hello,,
 
 please. i have not big hdd,, and i need to make free place. what can i
 remove from /usr  and system will be OK ?
 
 example:
 
 /usr/ports/distfiles/   - i can remove all files.
 
 in /usr/ports i can do
 rm -rf \*/work/
 
 
 
 I bet you install your ports by doing a 'make install', if you do, you
 can probably better make an 'make install distclean' with the distclean
 option turned on, it automatically removes the ~/work/ directory's and
 the distfiles in /usr/ports/distfiles/. If you want to keep your
 distfiles you can just do 'make install distclean'
^^^
Ack!  If you want to keep your distfiles, you can just do:

# make install clean
 

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


RE: My server goes down and I do not know why

2004-12-22 Thread Haulmark, Chris
Someone broke the silence: 

 Hi my name is Phill. I am having an issue with my freebsd
 webserver that
 is behind a freebsd nat/firewall and was wondering if you can
 point me the
 right way to resolve my issue. My connection to my ISP (microwave
 wi-fi) keeps dying every couple days and I do not know where to start
 to determine the issue. What are the basic diagnostic steps for
 determining why my connection keeps dying every couple days? I do not
 know if it is a
 problem with the wifi, routing, or nat. If it is a problem w/
 wifi i want
 to compile a bunch of info to bring to isp to be like 'you
 idiots are not
 upholding sla!' and if it is my internal configuration I would like to
 simply resolve the issue. What is necessary for me to do for
 assistance in this issue?
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

I would just install a bandwidth graphing software.

mrtg, cacti, or something else to graph up the usage of the bandwidth.  You can 
give them access when you discover some potential problems.

Chris
___
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 it online

2004-12-22 Thread Bagus

Hi,

I hope this mailing list can help. I just installed freebsd 5.3-Release onto
a new hard drive and I can't seem to get it online with my dhcp cable modem
thru a linksys hub. Later it will be moving to a static ip, so any help with
that transition now would be helpful too, but for now I have the machine at
home and need to install software on it.

If I give a
ifconfig
fxp0: flags =8802 bradcast, simplex, multicast mtu 1500
 options =8VLAN_MTU
 ether 00:a0:c9:e6:11:b1
 media: Ethernet autoselect (100baseTX full-duplex)
 status:active
there'splip0 and lo0 as well...

ping freebsd.org
ping: cannot resolve freebsd.org: Host name lookup failure.

As an aside, I'm stunned this isn't a FAQ or part of the freebsd manual:
How to get your computer online. Really I'd rather not be posting this
question to a mailing list. It seems so basic, yet I can't find an answer
out there. If anyone has any references, I'd appreciate it.

Thanks

Bagus

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


Re: VIM

2004-12-22 Thread Joshua Lokken
On Tue, 21 Dec 2004 13:56:18 -0500, Leon [EMAIL PROTECTED] wrote:
 Hi,
 
 I have installed a VIM editor.
 When I create a new file with this editor, I can't type anything.
 What is wrong.

Probably nothing.  If you are, indeed, new to the vi editor, then you
have a steep learning curve ahead of you, and you'll want to do some
reading and use one of the many vi tutorials online to get your head
around how this editor works, because it is absolutely not intuitive.
Some good starting points are:

'man vi(1)'
http://www.unb.ca/documentation/UNIX/tips/vim/
http://www.apmaths.uwo.ca/~xli/vim/vim_tutorial.html
http://www.lecb.ncifcrf.gov/~toms/vi.html

-- 
Joshua Lokken
Open Source Advocate
___
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 fails

2004-12-22 Thread Subhro
Any non standard CFLAGS?

Regards
S.

Indian Institute of Information Technology
Subhro Sankha Kar
Block AQ-13/1, Sector V
Salt Lake City
PIN 700091
India
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-freebsd-
 [EMAIL PROTECTED] On Behalf Of Koos van den Hout
 Sent: Wednesday, December 22, 2004 19:12
 To: freebsd-questions@freebsd.org
 Subject: 5.3 buildworld fails
 
 
 I guess I managed to get into a circular dependency problem ;)
 
 I have a machine, running at the moment
 
 FreeBSD master.idefix.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Tue Nov  9
 22:49:23 CET 2004 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/IDEFIX
 i386
 
 I cvsupped the source to RELENG_5_3, and am trying to do a buildworld
 (after a buildkernel).
 
 But, it fails at a known place:
 
 cc -O -pipe -I/usr/src/usr.bin/make -DMAKE_VERSION=\5200408120\
 -D__FBSDID=__RCSID -DDEFSHELL=1   -static -o make arch.o buf.o compat.o
 cond.o dir.o for.o hash.o job.o main.o make.o parse.o str.o suff.o targ.o
 util.o var.o var_modify.o lstAppend.o lstAtEnd.o lstAtFront.o lstClose.o
 lstConcat.o lstDatum.o lstDeQueue.o lstDestroy.o lstDupl.o lstEnQueue.o
 lstFind.o lstFindFrom.o lstFirst.o lstForEach.o lstForEachFrom.o lstInit.o
 lstInsert.o lstIsAtEnd.o lstIsEmpty.o lstLast.o lstMember.o lstNext.o
 lstOpen.o lstRemove.o lstReplace.o lstSucc.o
 /usr/lib/crt1.o: In function `_start':
 /usr/lib/crt1.o(.text+0x64): undefined reference to `_init_tls'
 *** Error code 1
 
 Searching for solutions using google, I found 'rebuild your libc using cd
 /usr/src/lib/libc  make obj  make depend  make all  make install'
 which
 gives the error:
 
  -O -pipe -mcpu=pentiumpro -I/usr/src/lib/libc/include
 -I/usr/src/lib/libc/../../include -I/usr/src/lib/libc/i386
 -D__DBINTERFACE_PRIVATE -I/usr/src/lib/libc/../../contrib/gdtoa -DINET6
 -I/usr/obj/usr/src/lib/libc -DPOSIX_MISTAKE -I/usr/src/lib/libc/locale
 -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DHESIOD
 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized  -c
 nslexer.c
 /dev/stdout: In function `_nsyylex':
 /dev/stdout:711: warning: label `find_rule' defined but not used
 /usr/src/lib/libc/net/nslexer.l: At top level:
 /dev/stdout:1678: warning: `yy_flex_realloc' defined but not used
 *** Error code 1
 
 Stop in /usr/src/lib/libc.
 
 The next suggestion I find is 'rebuild yacc' .. which fails with _init_tls
 or 'rebuild lex' which points back at '_init_tls'.
 
 A nice circulair dependency. Any way to get out of this?
 
 I already re-cvsupped from a clear /usr/src.
 
Koos
 
 --
 Koos van den Hout,   PGP keyid RSA/1024 0xCA845CB5 via keyservers
 [EMAIL PROTECTED]or DSS/1024 0xF0D7C263
 -?)
 Fax +31-30-2817051 Camp Wireless, wireless Internet access
 /\\
 http://idefix.net/~koos/   at campsites http://www.camp-wireless.org/
 _\_V


smime.p7s
Description: S/MIME cryptographic signature


Re: REPOST: TAR and SCSI Tape Drive Troubles.

2004-12-22 Thread Dan Nelson
In the last episode (Dec 22), comm/JT said:
 I have recently installed a SCSI tape drive in my FBSD box:
 
 Waiting 15 seconds for SCSI devices to settle
 sa0 at sym0 bus 0 target 6 lun 0
 sa0: SEAGATE DAT04106-XXX 743B Removable Sequential Access SCSI-2 
 device 
 sa0: 10.000MB/s transfers (10.000MHz, offset 15)
 
 I then tried to actually put some files on the tape using tar and had the
 following message in 'demsg':
 
 Dec 21 10:38:11 taco kernel: (sa0:sym0:0:6:0): lost device
 Dec 21 10:38:11 taco kernel: (sa0:sym0:0:6:0): failed to write terminating 
 filemark(s)
 Dec 21 10:38:12 taco kernel: (sa0:sym0:0:6:0): tape is now frozen- use an 
 OFFLINE, REWIND or MTEOM command to clear this state.
 Dec 21 10:38:12 taco kernel: (sa0:sym0:0:6:0): removing device entry

 I have no clue how to add the device entry again, I tried rebooting the box.
 I even tried some commands with 'devfs'... and got no where.

The SCSI subsystem thinks the device has been disconnected; devfs can't
put the /dev/ node back until you rescan the SCSI bus.  Try running
camcontrol rescan all.

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


Re: best newsgroup?

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 10:21:46 -0500, Pervert Files
[EMAIL PROTECTED] wrote:
 Hello,
 
 What is the best newsgroup to read freebsd question. 
 muc.lists.freebsd.questions doesn't seem to be updating 
 with anything on my news provider.

Well, a google search on 'freebsd questions archives' shows:

http://lists.freebsd.org/pipermail/freebsd-questions/2004-September/059184.html
http://archive.pilgerer.org/mharc/html/freebsd-questions/

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


Explore FreeBSD filesystem under Windows?

2004-12-22 Thread P. B. S.
How can I do that?
explore2fs is for ext2/3 only.
I want to copy files from my FreeBSD filesystem (UFS2, I think?) using 
Windows. 

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


RE: I have an offer

2004-12-22 Thread Haulmark, Chris
Someone broke the silence: 

 Hello!
 I have an offer for you.
 Now access to the Internet with use of satellites gets the big
 popularity. For such type of access it is necessary to use special
 DVB-cards like SkyStar-1 and SkyStar-2. First of them is supported by
 FreeBSD (due to foreign people), but second (cheaper and popular) is
 not. Can you include official support for this cards in the next
 FreeBSD releases? :-D Please!

I have used direcway satellite internet systems in the past.  Their support 
were only for Windows at that time I used direcway.

I learned that for open source support, it would depend on getting cooperation 
from the vendors for the FreeBSD developers to be able to support a device.

I do not think that here is the correct place to ask for support unless there 
are already some development information for those devices available.

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


Re: how to get it online

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 10:20:21 -0600, Bagus [EMAIL PROTECTED] wrote:
 
 Hi,
 
 I hope this mailing list can help. I just installed freebsd 5.3-Release onto
 a new hard drive and I can't seem to get it online with my dhcp cable modem
 thru a linksys hub. Later it will be moving to a static ip, so any help with
 that transition now would be helpful too, but for now I have the machine at
 home and need to install software on it.
 
 If I give a
 ifconfig
 fxp0: flags =8802 bradcast, simplex, multicast mtu 1500
 options =8VLAN_MTU
 ether 00:a0:c9:e6:11:b1
 media: Ethernet autoselect (100baseTX full-duplex)
 status:active
 there'splip0 and lo0 as well...
 
 ping freebsd.org
 ping: cannot resolve freebsd.org: Host name lookup failure.
 
 As an aside, I'm stunned this isn't a FAQ or part of the freebsd manual:
 How to get your computer online. Really I'd rather not be posting this
 question to a mailing list. It seems so basic, yet I can't find an answer
 out there. If anyone has any references, I'd appreciate it.

Hostname lookup failure sounds like a dns problem to me.
Is there anything in /etc/resolv.conf ?  How is fxp0 assigned an
IP?  DHCP?  If so, do you have a line like the following in /etc/rc.conf:

ifconfig_fxp0=DHCP

How did you setup the Linksys?  Default (out-of-the-box) settings?
Is the DHCP server turned on at the router?  What does the status
page of the router settings show?

The FreeBSD Handbook is a great reference:

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

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


Re: how to get it online

2004-12-22 Thread Paul Moran
Bagus wrote:
I can't seem to get it online with my dhcp cable modem
thru a linksys hub.
If I give a
 

ifconfig
   

fxp0: flags =8802 bradcast, simplex, multicast mtu 1500
options =8VLAN_MTU
ether 00:a0:c9:e6:11:b1
media: Ethernet autoselect (100baseTX full-duplex)
status:active
there'splip0 and lo0 as well...
 

As an aside, I'm stunned this isn't a FAQ or part of the freebsd manual:
How to get your computer online. Really I'd rather not be posting this
question to a mailing list. It seems so basic, yet I can't find an answer
out there. If anyone has any references, I'd appreciate it.
Thanks
Bagus
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-dhcp.html
--
Paul Moran
Potential Technologies
PH:(412)793-4257
[EMAIL PROTECTED]
www.potentialtech.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: how to get it online

2004-12-22 Thread Eilko Bos
Hi,

From the keyboard of Bagus, written on Wed, Dec 22, 2004 at 10:20:21AM -0600:
 ifconfig
 fxp0: flags =8802 bradcast, simplex, multicast mtu 1500
  options =8VLAN_MTU
  ether 00:a0:c9:e6:11:b1
  media: Ethernet autoselect (100baseTX full-duplex)
  status:active

You don't appear to have an IP-address assigned. Most probably the DHCP-
negotiation failed. You don't tell who your ISP is. DHCP-configurations may
differ from ISP to ISP. You will have to configure your /etc/dhclient.conf I
guess, e.g. with (amongst others) send host-name your-hostname-known-by-ISP.
(man 5 dhclient.conf). After configuring it, retyry DHCP:

# dhclient fxp0

 ping freebsd.org
 ping: cannot resolve freebsd.org: Host name lookup failure.

Right. If DHCP from your cable ISP failes, most probably your /etc/resolve.conf
will not be modified/added. And therefor lookups  will fail.

 As an aside, I'm stunned this isn't a FAQ or part of the freebsd manual:
 How to get your computer online. Really I'd rather not be posting this
 question to a mailing list. It seems so basic, yet I can't find an answer
 out there. If anyone has any references, I'd appreciate it.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/config-network-setup.html

Of course, since DHCP configuration may differ from ISP to ISP, I guess it is
too much work to add all those to the handbook. Maybe search engines can point
you to a proper references. Or, if you name your ISP on this list, someone here
might help you.

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


Install CD howto and some amd64 issue

2004-12-22 Thread Kvesdn Gbor
Hi,

I've found a Japanese mirror, where some 5.0-STABLE packages can be found,
and I'd like to build an own install disc, rather than using CVSup. Could
You help me, please, how can I do that?

I've got two reasons for building own install disc:

1, I'm going to administer an amd64 server with a RAID5 array and an MSI
mainboard with nforce 3 250GB chipset, and unfortunately the official
5.3-RELEASE for amd64 doesn't boot on this machine. I don't know whether the
chipset causes this issue or the 3ware 8xxx controller, but the loader stops
at the line starting with [EMAIL PROTECTED] Of course, I've
written to the freebsd-hardware mailing list, but I haven't got any answers.
I've also written to the 3ware, but the supporter was rather a lame guy, he
haven't even understood, what my problem is. I've written to MSI, but the
result is no answer. Finally, I decided to get a newer kernel somehow, maybe
some kind of current kernel would work. I'd like to give a try to
5.0-CURRENT or 6.0-CURRENT, but in this case I can't use the CVSup, because
the 5.3 kernel is useless on this machine, thus I haven't got anything to
upgrade from.

2, I'd like to install 5.0-STABLE on some machines, and I don't want to
upgrade so many times. An own standalone 5.0-CURRENT install disc would be
much more convenient for me. And in trouble, when I had to reinstall the
system, such a disc would be very useful.

Thanks for Your help.
I wish You a Merry Xmas,

Gabor Kovesdan (from Hungary)

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


Re: Explore FreeBSD filesystem under Windows?

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 18:20:40 +0200, P. B. S. [EMAIL PROTECTED] wrote:
 How can I do that?
 explore2fs is for ext2/3 only.
 
 I want to copy files from my FreeBSD filesystem (UFS2, I think?) using
 Windows.

http://us1.samba.org/samba/

# cd /usr/ports/net/samba3
# make install clean

Then you can share your FreeBSD files over Samba, and have
access to them from your Winboxen.

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


problem with IPFILTER

2004-12-22 Thread Dott. Surricani
Hello everybody.

I've succesfully set up an Inclusive Firewall for my small Lan, how
explained in Chapter 24 of the Handbook,
with IPFILTER and ipnat (Either with kld modules).
I've included in rc.conf the lines neeeded and i've written custom
ipf.rules and ipnat.rules...

It's super, and work great, but I've got a problem/question:

each time I restart the server the rules are cleared and It leave all
packets enter and exit
an I have to type in the shell

ipf -Fa -f /etc/ipf.rules and
ipnat -CF -f /etc/ipnat.rules

It's very boring

What I can do to automate this task?


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


Re: problem with IPFILTER

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 17:41:30 +0100, Dott. Surricani [EMAIL PROTECTED] wrote:
 each time I restart the server the rules are cleared and It leave all
 packets enter and exit
 an I have to type in the shell
 
 ipf -Fa -f /etc/ipf.rules and
 ipnat -CF -f /etc/ipnat.rules

In   /etc/rc.conf
'man rc.conf(5)'


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


Re: Explore FreeBSD filesystem under Windows?

2004-12-22 Thread Peter Risdon
P. B. S. wrote:
How can I do that?
explore2fs is for ext2/3 only.
IIRC, explore2fs is a software utility that allows you to mount Linux 
ext2/3 drives directly on a Windows box. There's no similar utility for 
UFS. So you can't.

You can, however, mount them across a network from a running FreeBSD 
machine, as has been noted already.

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


RE: how to get it online

2004-12-22 Thread Bagus

Thanks,


  Hi,
 
  I hope this mailing list can help. I just installed freebsd 5.3-Release
onto
  a new hard drive and I can't seem to get it online with my dhcp cable
modem
  thru a linksys hub. Later it will be moving to a static ip, so any help
with
  that transition now would be helpful too, but for now I have the machine
at
  home and need to install software on it.
 
  If I give a
  ifconfig
  fxp0: flags =8802 bradcast, simplex, multicast mtu 1500
  options =8VLAN_MTU
  ether 00:a0:c9:e6:11:b1
  media: Ethernet autoselect (100baseTX full-duplex)
  status:active
  there'splip0 and lo0 as well...
 
  ping freebsd.org
  ping: cannot resolve freebsd.org: Host name lookup failure.

 Hostname lookup failure sounds like a dns problem to me.
 Is there anything in /etc/resolv.conf ?

No, there is not even a /etc/resolve.conf. What should go in there?
How is fxp0 assigned an  IP?  DHCP?
I think so. That's the way it should be.

 If so, do you have a line like the following in /etc/rc.conf:
 ifconfig_fxp0=DHCP

That line was not in there. I added it and rebooted. The boot process now
started the dhcp client, but still no actual ip address is reported in the
ifconfig.

 How did you setup the Linksys?  Default (out-of-the-box) settings?

plugged it in, plugged cable modem into uplink, plugged this pc into one
outlet, the freebsd box into another. PC works fine. Lights indicate
connectivity to bsd box.

 Is the DHCP server turned on at the router?  What does the status
 page of the router settings show?


That's supposed to be http://192.168.1.1, isn't it? I can't access that even
from my pc. Any advice there would be helpful. BTW, I'm using Cox as a ISP.

 The FreeBSD Handbook is a great reference:

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


Yes... there's more information there than I saw on first perusal. Thanks,
but I'm not out of the woods yet.

Bagus


 --
 Joshua Lokken
 Open Source Advocate

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


Re: fsck locks up SMP system (5.3-REL)

2004-12-22 Thread Peter Risdon
Marco Beishuizen wrote:
On stardate Wed, 22 Dec 2004, the wise O. Hartmann entered:
Dear Marco.
Thanks. In my case, FreeBSD 5.3 dies in single user mode on nearly 
each disk activity (it is obviously a FreeBSD 5.3-issue with
my ASUS CUR-DLS based system).

Please take a look at fsck_ffs(8) man page. There is at the end of the 
description of the options an explanation of the lost+find facility. 
Obviously orphaned files and directories (and in most cases those 
which are expected to be some of them) are gathered and reconnected in 
lost+found. My 'periodic' cron-job deletes the contents of lost+found 
every 7 days.
Oliver

Well the problem didn't dissappear. I was just checking the filesystem 
with the midnight commander, and suddenly mc froze in ufs-state. Now 
I'm running fsck again.

What's being logged? Lots of dma errors in /var/log/messages?
Peter.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


perl.core files in almost every dir

2004-12-22 Thread Chris Bearden
Has anybody ever seen perl.core files in a good number of the directories in
FreeBSD? I'm running 5.3.

They are all nearly 3 megs in size. And as far as I can tell, perl runs just
fine. I'm executing scripts without any problems.

And my messages log doesn't show anything about it, except for another
perl.core file existing in the /var/log dir as well!

Chris Bearden

 

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


The FreeBSD Foundation

2004-12-22 Thread Troy Mills
I am not sure if this is really the proper place for this or if it has
been discussed however this is something that I'm sure deserves as
much exposure as possible.

As some of you may or may not know the FreeBSD Foundation supports the
FreeBSD developers financially via funds mainly from donations from
the public. Anyway there is a IRS 1/3rd test for public support
and the current foundation ratio that is a little out of whack due to
a few generous people donating large sums of money. I have no idea
what will happen if they cannot remain a public charity but I'm sure
the affects wont be positive as they clearly stated that it is in
there interest to remain a public charity.

I'm in no position to be shelling out lots of money right now but I'm
going to do my part and I would hope that some of you chip in as well.
from my understanding they need a larger number of people donating a
smaller amount to correct the ratio.

More information can be found on the freebsdfoundation.org website or
here is direct link to the newsletter:
http://www.freebsdfoundation.org/press/20041221-newsletter.shtml

p.s. I'm not affiliated with the foundation of FreeBSD in any shape or
form other then a very happy user of this fine product, just wanted to
help get the word out.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Explore FreeBSD filesystem under Windows?

2004-12-22 Thread Hauan David A Civ 92 CES/CERW


 How can I do that?
 explore2fs is for ext2/3 only.
 
 I want to copy files from my FreeBSD filesystem (UFS2, I 
 think?) using 
 Windows. 
 
Why not ftp or sftp them?
Download filezilla for your windows box.

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


Re: Running own servers

2004-12-22 Thread Danny MacMillan
On Wed, Dec 22, 2004 at 07:09:43AM -0500, Louis LeBlanc wrote:
 
 ...
 
 As for rejected email, I just have zoneedit act as the lowest priority
 MX for my domains and anytime something can't get sent to my system
 because I've been renumbered, zoneedit will spend up to 10 days trying
 to relay it in - which usually turns into a matter of a couple hours
 at most, since they find out where I am pretty quick.
 
 I've been using zoneedit for longer than I can remember - since my 4.3
 install at least, with both cable/DHCP and DSL/PPP, and the only time
 I ever know I've been renumbered is when I check my logs.  I don't get
 reports of email that I never received either.

Another option for e-mail, that I'm just investigating myself, is to
use an ODMR (on-demand mail relay) service like MailKeep
( http://www.mailkeep.com ).  I just set up a 30 day free trial account
with them.  I set up my domain on their site, identified them as my
primary MX, and initiated an ODMR transfer with fetchmail.  I have it
set up to do 'direct SMTP', which means that if my mail server is up
mail is delivered immediately.

The benefit of a service like this is that you tell it what your mail
server says in its banner, and if it doesn't see that text it won't
deliver the mail (it stays queued on their server).  That way it won't
accidentally deliver your mail to someone else.  The way that you
tell it what your mail server IP is is by initiating an ODMR session
with your username and password, which you have to do at least once
a day, again as a verification measure so it's really sure it's
delivering mail to the right party.  That's easily cron-able.

It is a pay service but it's much more reasonable than a static IP (at
least in my area), and if you don't like taking the gamble that you're
going to lose mail it may be worth it to you.

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


Re: Problem with tar archive

2004-12-22 Thread sp0ng3b0b
I had some strange tar problems with bsd tar, which is included with 
5.3-RELEASE. I would recommend installing gtar and using that instead. 
By the way, if you install gtar, you just type tar as you normally would.

freebsd_daemon wrote:
Dear list,
I got a tar archive (varia.tar), when I try to un-tar it I get:
# tar xvf ./varia.tar
../varia/
tar: ../varia/: Member name contains `..'
../varia/bkup200401.gz
tar: ../varia/bkup200401.gz: Member name contains `..'
[...]
../varia/bkup200411.gz
tar: ../varia/bkup200411.gz: Member name contains `..'
tar: Error exit delay from previous error
Is there a way to un-tar that archive despite of that?
TIA
zheyu
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


SSH into FBSD after Minimal Install?

2004-12-22 Thread Adam
I'm re-installing FreeBSD on a machine that currently has FreeBSD on it.  I'm 
doing all this remotely over SSH.

If I install with Minimal distribution set with sysinstall will I be able 
to enable SSH and add a user before the system goes down?

I don't want to loose conectivity, I can't to go to the server's location right 
now.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: fsck locks up SMP system (5.3-REL)

2004-12-22 Thread Marco Beishuizen
On stardate Wed, 22 Dec 2004, the wise Peter Risdon entered:
Well the problem didn't dissappear. I was just checking the filesystem with 
the midnight commander, and suddenly mc froze in ufs-state. Now I'm 
running fsck again.

What's being logged? Lots of dma errors in /var/log/messages?
Peter.
No, nothing strange is logged. Only sendmail things, which are normal for 
my system.

Marco
--
Loud burping while walking around the airport is prohibited in
Halstead, Kansas.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Support for PERC4e/Di and 4e/Si

2004-12-22 Thread Clay_Cooper
Martin and all,
Thanks for your help.  I found a patch in the freebsd-stable mailing
list archive that adds the PCI-IDs to amr_pci.c.  For some reason the
patch would not apply correctly to my 4.10-stable-20040818-jpsnap
source, but I was able to make the changes manually and compile a new
kernel.  The new kernel recognized the PERC4e/Di and PERC4e/Si, and the
amr driver loaded and worked with the newer PERCs.  For everyone's
reference, here is the patch as copied from the mailing list:

--- 4.10-rel/amr_pci.c  Wed Oct 27 18:15:12 2004
+++ amr_pci.c   Wed Oct 27 18:15:12 2004
@@ -128,6 +128,7 @@
  {0x1000, 0x1960, PROBE_SIGNATURE},
  {0x1000, 0x0407, 0},
  {0x1028, 0x000e, PROBE_SIGNATURE}, /* perc4/di i960 */
+{0x1028, 0x0013, 0}, /* perc4e/Si */
  {0x1028, 0x000f, 0}, /* perc4/di Verde*/
  {0, 0, 0}
  };
@@ -180,7 +181,8 @@
   */
  command = pci_read_config(dev, PCIR_COMMAND, 1);
  if ((pci_get_device(dev) == 0x1960) || (pci_get_device(dev) == 
0x0407) ||
-   (pci_get_device(dev) == 0x000e) || (pci_get_device(dev) == 
0x000f)) {
+   (pci_get_device(dev) == 0x000e) || (pci_get_device(dev) == 
0x000f) ||
+   (pci_get_device(dev) == 0x0013)) {
 /*
  * Make sure we are going to be able to talk to this board.
  */ 


Clay Cooper, RHCE
PG Custom Solutions Engineering
[EMAIL PROTECTED]
512.723.5951


-Original Message-
From: Martin Hepworth [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 16, 2004 3:05 AM
To: Cooper, Clay
Cc: freebsd-questions@freebsd.org
Subject: Re: Support for PERC4e/Di and 4e/Si

Clay

have you tried booting from the first CD. I think the floppy based
kernel is cut down a little to save space, so it may not have the
required driver on it.

If you can't boot from the CD (like bios won't support it), you'll have
to build you own floppy images with the perc 4e driver in that kernel. 
See the hnadbook for how to do this..

--
Martin Hepworth
Snr Systems Administrator
Solid State Logic
Tel: +44 (0)1865 842300


[EMAIL PROTECTED] wrote:
 Greetings,
 
 The amr driver man page @
 http://www.freebsd.org/cgi/man.cgi?query=amrapropos=0sektion=4manpa
 th
 =FreeBSD+4.10-stableformat=html
 Claims support for PERC4e/Di and Si in 4.10-stable.  
 
 However when I download the floppies from 

ftp://snapshots.jp.freebsd.org/pub/FreeBSD/snapshots/i386/4.10-STABLE-20
 041117-JPSNAP/floppies/ and boot from them, the hardware is not
 recognized.  Is there a minimum version of 4.10-stable I need to be 
 using or possibly a patch that I could apply?
 
 Thanks in advance for your assistance.  
 
 
 Clay Cooper
 PG Custom Solutions Engineering
 [EMAIL PROTECTED]
 
 
 ___
 freebsd-questions@freebsd.org mailing list 
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
[EMAIL PROTECTED]

**

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. If you have received this email in error please notify the
system manager.

This footnote confirms that this email message has been swept for the
presence of computer viruses and is believed to be clean.

**

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


Re: Explore FreeBSD filesystem under Windows?

2004-12-22 Thread P. B. S.
I'm talking about 1 (one) computer! The FreeBSD partition is on the same 
hard disk; the 2 operating systems are not working at the same time. Samba, 
ftp, scp, etc. are not applicable here.
That's why I mentioned explore2fs... I wanted to be clear.

Peter Risdon wrote:
IIRC, explore2fs is a software utility that allows you to mount Linux
ext2/3 drives directly on a Windows box. There's no similar utility for
UFS. So you can't.
I know what it is. ;)
Erm... that's bad news. 

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


Re: best newsgroup?

2004-12-22 Thread Joshua Tinnin
On Wed, Dec 22, 2004 at 10:20:04AM -0600, Joshua Lokken wrote:
 On Wed, 22 Dec 2004 10:21:46 -0500, Pervert Files
 [EMAIL PROTECTED] wrote:
  Hello,
  
  What is the best newsgroup to read freebsd question. 
  muc.lists.freebsd.questions doesn't seem to be updating 
  with anything on my news provider.
 
 Well, a google search on 'freebsd questions archives' shows:
 
 http://lists.freebsd.org/pipermail/freebsd-questions/2004-September/059184.html
 http://archive.pilgerer.org/mharc/html/freebsd-questions/

The archives are easily available, as Joshua showed, but if you want to
browse the questions list on a newsgroup, check out 
mailing.freebsd.questions.

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


Re: Explore FreeBSD filesystem under Windows?

2004-12-22 Thread Frank Laszlo


Peter Risdon wrote:
IIRC, explore2fs is a software utility that allows you to mount Linux
ext2/3 drives directly on a Windows box. There's no similar utility for
UFS. So you can't.

This is untrue.
I know what it is. ;)
Erm... that's bad news.
you can check out http://ffsdrv.sourceforge.net. I found a solution for 
this a few months ago but lost the link somewhere, I'll keep you posted 
if I find it, Until then try this one out.

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: problem with IPFILTER

2004-12-22 Thread Andras Kende


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dott. Surricani
Sent: Wednesday, December 22, 2004 10:42 AM
To: [EMAIL PROTECTED]
Subject: problem with IPFILTER

Hello everybody.

I've succesfully set up an Inclusive Firewall for my small Lan, how
explained in Chapter 24 of the Handbook,
with IPFILTER and ipnat (Either with kld modules).
I've included in rc.conf the lines neeeded and i've written custom
ipf.rules and ipnat.rules...

It's super, and work great, but I've got a problem/question:

each time I restart the server the rules are cleared and It leave all
packets enter and exit
an I have to type in the shell

ipf -Fa -f /etc/ipf.rules and
ipnat -CF -f /etc/ipnat.rules

It's very boring

What I can do to automate this task?


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



Hello 

/etc/rc.conf :

#Enable routing packets between interfaces
gateway_enable=YES
#Bring up the ipfilter software
ipfilter_enable=YES
#Tell ipfilter where to get its rules
ipfilter_rules=/etc/ipf.rules
#Enable ipnat
ipnat_enable=YES
#Tell ipnat where to get its rules
ipnat_rules=/etc/ipnat.rules


Best regards,

Andras Kende
http://www.kende.com



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


5.3-RELEASE installation weirdness

2004-12-22 Thread Irvin Piraman
Hi all!

I was attempting to install 5.3-RELEASE on an old laptop (Twinhead
P166 32MB RAM 2 GB HDD), and the hardware detection went smoothly
including detection of the hdd (ad0). However, during sysintall an
error occurred - No disks found.

I was able to successfully install DragonFlyBSD and FreeBSD
5.2.1-RELEASE, but not 5.3.

I thought using the latest release would provide better hardware
detection and support. But then again, why this weirdness?

Thanks

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


Re: Explore FreeBSD filesystem under Windows?

2004-12-22 Thread Bart Silverstrim
On Dec 22, 2004, at 12:29 PM, P. B. S. wrote:
I'm talking about 1 (one) computer! The FreeBSD partition is on the 
same hard disk; the 2 operating systems are not working at the same 
time. Samba, ftp, scp, etc. are not applicable here.
That's why I mentioned explore2fs... I wanted to be clear.
What about mounting the Windows partition under FBSD?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Explore FreeBSD filesystem under Windows?

2004-12-22 Thread Peter Risdon
Frank Laszlo wrote:


Peter Risdon wrote:
IIRC, explore2fs is a software utility that allows you to mount Linux
ext2/3 drives directly on a Windows box. There's no similar utility for
UFS. So you can't.


This is untrue.

OK, thanks for the update. There was a thread earlier this year that 
concluded there was no such utility, and I hadn't found one myself when 
I last looked.

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


Re: Plesk FreeBSD

2004-12-22 Thread Peter Risdon
Clay Culver wrote:
Hi,
 

Anyone have experience running Plesk 7.1.x with FreeBSD? Since
it looks like they are not supporting this line anymore I wish to upgrade
PHP and am trying to figure out how they have PHP configured. So I would
like to know if anyone has configured PHP (4.3.10 is what I wish to install)
under Plesk 7.1.x and FreeBSD 4.9 (although I would guess it's the same
configuration for 5.x). Or is there a way for me to get FreeBSD to tell me
how 4.3.9 was configured?
More a PHP question, I think. Do you know the phpinfo() builtin? A file 
called phpconfig.php with the following content:

?php
echo phpinfo();
?
Will give you the details of your present setup.
Peter.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: best newsgroup?

2004-12-22 Thread Nikolas Britton
Joshua Tinnin wrote:
On Wed, Dec 22, 2004 at 10:20:04AM -0600, Joshua Lokken wrote:
 

On Wed, 22 Dec 2004 10:21:46 -0500, Pervert Files
[EMAIL PROTECTED] wrote:
   

Hello,
What is the best newsgroup to read freebsd question. 
muc.lists.freebsd.questions doesn't seem to be updating 
with anything on my news provider.
 

Well, a google search on 'freebsd questions archives' shows:
http://lists.freebsd.org/pipermail/freebsd-questions/2004-September/059184.html
http://archive.pilgerer.org/mharc/html/freebsd-questions/
   

The archives are easily available, as Joshua showed, but if you want to
browse the questions list on a newsgroup, check out 
mailing.freebsd.questions.

- jt
 

This ones easy (tho I hate there new style), bookmark this link to 
your toolbar as BSD Search: 
http://groups-beta.google.com/groups?as_ugroup=mailing.freebsd.*

This will let you google all the freebsd mailing lists, in the search 
box you'll see group:mailing.freebsd.*, don't delete it, you can type 
in front of it or after it.

and note that you can change as_ugroup= to anything you want, and you 
know.. I've never tried it like this: *.freebsd.* hmm?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: perl.core files in almost every dir

2004-12-22 Thread cpghost
On Wed, Dec 22, 2004 at 10:52:15AM -0600, Chris Bearden wrote:
 Has anybody ever seen perl.core files in a good number of the directories in
 FreeBSD? I'm running 5.3.
 
 They are all nearly 3 megs in size. And as far as I can tell, perl runs just
 fine. I'm executing scripts without any problems.
 
 And my messages log doesn't show anything about it, except for another
 perl.core file existing in the /var/log dir as well!

This can happen, when a script uses a broken perl extension module.
It's not necessarily perl's fault. Try to identify the script that
triggers those coredumps, then look at the extension modules used
by that script. You may then want to recompile (an updated version of)
the extension module, so that it matches the version of your current
perl installation.

Good luck.

 Chris Bearden

Cheers,
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: best newsgroup?

2004-12-22 Thread Nikolas Britton
Nikolas Britton wrote:
This ones easy (tho I hate there new style), bookmark this link to 
your toolbar as BSD Search: 
http://groups-beta.google.com/groups?as_ugroup=mailing.freebsd.*

This will let you google all the freebsd mailing lists, in the search 
box you'll see group:mailing.freebsd.*, don't delete it, you can 
type in front of it or after it.

and note that you can change as_ugroup= to anything you want, and you 
know.. I've never tried it like this: *.freebsd.* hmm?

Yes that worked, cool, now I can search every newsgroup with the word 
freebsd in it: http://groups-beta.google.com/groups?as_ugroup=*.freebsd.*

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


Re: how to get it online

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 11:00:32 -0600, Bagus [EMAIL PROTECTED] wrote:
   ping freebsd.org
   ping: cannot resolve freebsd.org: Host name lookup failure.
 
  Hostname lookup failure sounds like a dns problem to me.
  Is there anything in /etc/resolv.conf ?
 
 No, there is not even a /etc/resolve.conf. What should go in there?
 How is fxp0 assigned an  IP?  DHCP?
 I think so. That's the way it should be.
 
  If so, do you have a line like the following in /etc/rc.conf:
  ifconfig_fxp0=DHCP
 
 That line was not in there. I added it and rebooted. The boot process now
 started the dhcp client, but still no actual ip address is reported in the
 ifconfig.
 
  How did you setup the Linksys?  Default (out-of-the-box) settings?
 
 plugged it in, plugged cable modem into uplink, plugged this pc into one
 outlet, the freebsd box into another. PC works fine. Lights indicate
 connectivity to bsd box.
 
  Is the DHCP server turned on at the router?  What does the status
  page of the router settings show?
 
 
 That's supposed to be http://192.168.1.1, isn't it? I can't access that even
 from my pc. Any advice there would be helpful. BTW, I'm using Cox as a 
 ISP.

You can set fxp0 to use a static IP until you get the router working.
# ifconfig fxp0 inet 192.168.1.2 netmask 255.255.255.0
# route add default 192.168.1.1

In /etc/rc.conf, you should have:

ifconfig_fxp0=DHCP
defaultrouter=192.168.1.1

You should be able to login to the Linksys admin page:

http://192.168.1.1AFAIK, most of the Linksys home networking
devices use a blank username and password 'admin' by default.

Make sure that the DHCP server is enabled, and restart.

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


Re: best newsgroup?

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 12:28:58 -0600, Nikolas Britton
[EMAIL PROTECTED] wrote:
 Yes that worked, cool, now I can search every newsgroup with the word
 freebsd in it: http://groups-beta.google.com/groups?as_ugroup=*.freebsd.*

http://www.google.com/bsd

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


Re: how to get it online

2004-12-22 Thread Jim Trigg
On Wed, December 22, 2004 1:30 pm, Joshua Lokken said:
 On Wed, 22 Dec 2004 11:00:32 -0600, Bagus [EMAIL PROTECTED] wrote:
 
  How did you setup the Linksys?  Default (out-of-the-box) settings?

 plugged it in, plugged cable modem into uplink, plugged this pc into one
 outlet, the freebsd box into another. PC works fine. Lights indicate
 connectivity to bsd box.

  Is the DHCP server turned on at the router?  What does the status
  page of the router settings show?
 

 That's supposed to be http://192.168.1.1, isn't it? I can't access that
 even
 from my pc. Any advice there would be helpful. BTW, I'm using Cox as a
 ISP.

Not if you haven't reconfigured the router; the default is
http://192.168.0.1.

Jim
-- 
Jim Trigg, Lord High Everything Else  O-  /\
  \ /  ASCII RIBBON CAMPAIGN
Hostmaster, Huie Kin family websiteXHELP CURE HTML MAIL
Verger, All Saints Church - Sharon Chapel / \


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


Re: Explore FreeBSD filesystem under Windows?

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 13:02:42 -0500, Bart Silverstrim
[EMAIL PROTECTED] wrote:
 
 On Dec 22, 2004, at 12:29 PM, P. B. S. wrote:
 
  I'm talking about 1 (one) computer! The FreeBSD partition is on the
  same hard disk; the 2 operating systems are not working at the same
  time. Samba, ftp, scp, etc. are not applicable here.
  That's why I mentioned explore2fs... I wanted to be clear.
 
 What about mounting the Windows partition under FBSD?

Yeah, is writing to NTFS implemented now?


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


Re: SSH into FBSD after Minimal Install?

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 11:13:07 -0600, Adam [EMAIL PROTECTED] wrote:
 I'm re-installing FreeBSD on a machine that currently has FreeBSD on it.  I'm 
 doing all this remotely over SSH.
 
 If I install with Minimal distribution set with sysinstall will I be able 
 to 
 enable SSH and add a user before the system goes down?

You can do about any administrative task from sysinstall, 
including drop into a shell, so yes, I would think you will be
able to do that.

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


Re: Explore FreeBSD filesystem under Windows?

2004-12-22 Thread Bart Silverstrim
On Dec 22, 2004, at 1:42 PM, Joshua Lokken wrote:
On Wed, 22 Dec 2004 13:02:42 -0500, Bart Silverstrim
[EMAIL PROTECTED] wrote:
On Dec 22, 2004, at 12:29 PM, P. B. S. wrote:
I'm talking about 1 (one) computer! The FreeBSD partition is on the
same hard disk; the 2 operating systems are not working at the same
time. Samba, ftp, scp, etc. are not applicable here.
That's why I mentioned explore2fs... I wanted to be clear.
What about mounting the Windows partition under FBSD?
Yeah, is writing to NTFS implemented now?
This I do not know...I thought there was experimental support for NTFS, 
but I haven't tried this.

Another option...an external hard disk formatted FAT so both could see 
it? 

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


Re: pcmcia wireless

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 09:54:15 -0700, [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
 
   hello,
 
   i am using the 5.0 dist, and i cant get it to read my pcmcia ethernet
   card. it is rather old card with a cat-5 connector on it for plugging
   into my router. it is called ositech trumpcard and it is the jack of
   dimonds model  the card works because i tried it on the same computer
   before loading freebsd and i could surf the net with it. is there a
   driver avaliable for this card or should i go get a wirless one? (i
   cant find any cabled ones) if i need to get a wireless one, what brand
   do you recomend? i do have a wirless g router here.

I don't know much about wireless technology or setting it up
on FreeBSD, however, you're likely to be asked Why 5.0?  
It is no longer supported, and is quite old.  Have you got
specific reasons for not going with 5.3, which is the production
release?  So I'll just get that out of the way ;)

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


Re: how to get it online

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 13:42:43 -0500 (EST), Jim Trigg [EMAIL PROTECTED] wrote:
 On Wed, December 22, 2004 1:30 pm, Joshua Lokken said:
  On Wed, 22 Dec 2004 11:00:32 -0600, Bagus [EMAIL PROTECTED] wrote:
  
   How did you setup the Linksys?  Default (out-of-the-box) settings?
 
  plugged it in, plugged cable modem into uplink, plugged this pc into one
  outlet, the freebsd box into another. PC works fine. Lights indicate
  connectivity to bsd box.
 
   Is the DHCP server turned on at the router?  What does the status
   page of the router settings show?
  
 
  That's supposed to be http://192.168.1.1, isn't it? I can't access that
  even
  from my pc. Any advice there would be helpful. BTW, I'm using Cox as a
  ISP.
 
 Not if you haven't reconfigured the router; the default is
 http://192.168.0.1.

[I wish I could site the exact model number] I just setup two
Linksys 4-port 10/100 routers with wireless, and they were 
both set to 192.168.1.1 out of the box.  In fact, that what's
Linksys' website says, too:

When the browser window opens, go to the Address bar and 
 type in the router's IP Address and click on the Go button 
 (192.168.1.1 is the default IP address of Linksys Routers).

It's all in TFM ;)

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


Re: Samba installation from ports over NFS

2004-12-22 Thread Dan Nelson
In the last episode (Dec 22), Andrew P. said:
 My /usr/ports is a network file-system. When I try to install samba 3 it 
 says:
 
 satsmb# make install
 ===   samba-3.0.9,1 depends on file: /usr/local/bin/autoconf259 - found
 ===   samba-3.0.9,1 depends on shared library: cups.2 - found
 ===   samba-3.0.9,1 depends on shared library: popt.0 - found
 ===   samba-3.0.9,1 depends on shared library: ldap-2.2.7 - found
 ===   samba-3.0.9,1 depends on shared library: iconv.3 - found
 ===  Configuring for samba-3.0.9,1
 autom4te259: cannot lock autom4te.cache/requests with mode 2 (perhaps you are 
 running make -j on a lame NFS client?): Operation not supported
 *** Error code 1

Make sure you are running lockd and statd on client and server.  In
/etc/rc.conf:

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


Re: problem with IPFILTER

2004-12-22 Thread Paul Schmehl
--On Wednesday, December 22, 2004 05:41:30 PM +0100 Dott. Surricani 
[EMAIL PROTECTED] wrote:
ipf -Fa -f /etc/ipf.rules and
ipnat -CF -f /etc/ipnat.rules
It's very boring
What I can do to automate this task?
In /etc/rc.conf
ipfilter_enable=YES
ipnat_enable=YES
Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
The University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problem with tar archive

2004-12-22 Thread Lowell Gilbert
sp0ng3b0b [EMAIL PROTECTED] writes:

 freebsd_daemon wrote:
  Dear list,
  I got a tar archive (varia.tar), when I try to un-tar it I get:
  # tar xvf ./varia.tar
  ../varia/
  tar: ../varia/: Member name contains `..'
  ../varia/bkup200401.gz
  tar: ../varia/bkup200401.gz: Member name contains `..'
  [...]
  ../varia/bkup200411.gz
  tar: ../varia/bkup200411.gz: Member name contains `..'
  tar: Error exit delay from previous error
  Is there a way to un-tar that archive despite of that?
  TIA
  zheyu
 
 I had some strange tar problems with bsd tar, which is included with
 5.3-RELEASE. I would recommend installing gtar and using that
 instead. By the way, if you install gtar, you just type tar as you
 normally would.

With Gnu tar *or* BSD tar, you will need a '-P' option to extract
directories that contain '..'.  [It's very easy to overwrite something
unintentionally if this capability were available by default.]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: problem with X in a laptop

2004-12-22 Thread Lowell Gilbert
[EMAIL PROTECTED]  [EMAIL PROTECTED] writes:

 the video card is a silicon motion, but the driver doesnt work, 
 so i used a generic VGA.
 Now im using FreeBSD 5.3 with Xorg, but before i was using 
 debian with XF86 and i had the same problem, but i fixed it 
 startingthe X server with the -dpi 100 but this now doesnt 
 work.

You could always try XFree86 again; that certainly worked with the
SiliconMotion video chip on my old HP laptop.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Explore FreeBSD filesystem under Windows?

2004-12-22 Thread Joshua Lokken
On Wed, 22 Dec 2004 19:18:58 +, Irvin Piraman [EMAIL PROTECTED] wrote:
   Yeah, is writing to NTFS implemented now?
 
 From the manpages:
 
 http://www.freebsd.org/cgi/man.cgi?query=mount_ntfsapropos=0sektion=0manpath=FreeBSD+5.3-RELEASE+and+Portsformat=html
 
 WRITING
 There is limited writing ability.  Limitations: file must be nonresident
 and must not contain any sparces (uninitialized areas); compressed files
 are also not supported.  The file name must not contain multibyte charac-
 ters.

Very nice!  I hadn't looked into it for awhile...  Thank you, Irvin :)

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


dmesg

2004-12-22 Thread tethys ocean
I have a problem abaout dmesg ..

whenever I said that dmesg sever  give sto me some different log.. 
such a 

connetsion atteöp to UDP 127.0.0.1:512 from 127.0.0.1:55519



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


Re: how to get it online

2004-12-22 Thread epilogue
On Wed, 22 Dec 2004 11:00:32 -0600
Bagus [EMAIL PROTECTED] wrote:

  The FreeBSD Handbook is a great reference:
 
  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/
 
 Yes... there's more information there than I saw on first perusal.
 Thanks, but I'm not out of the woods yet.

since you seem to have missed a few rather important bits of handbook on
your first read, let us check one more.

are you by any chance using a custom kernel?  if so, please confirm that
it includes 'device bpf' (which is essential for DHCP).

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


rpc.lockd and statd fail to start

2004-12-22 Thread Andrew P.
Hello!
I got this:
satsmb# rpc.statd
rpc.statd: svc_tli_create: could not open connection for udp6
rpc.statd: svc_tp_create: Could not register prog 100024 vers 1 on udp
rpc.statd: cannot create udp service
satsmb# rpc.lockd
rpc.lockd: unable to register (NLM_PROG, NLM_SM, udp)
satsmb# uname -a
FreeBSD satsmb.local 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #0: Wed Dec 
22 01:59:37 MSK 2004 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SATSMBK  i386

I googled and pipermailed, but there are very few references to these 
messages, and they are unsolved mostly. Below is my kernel config. INET6 
was left out, but is it mandatory for rpc services? Both services work 
okay for me on FreeBSD-4.10 without INET6 compiled into kernel.

machine i386
cpu I686_CPU
ident   SATSMBK
options SCHED_4BSD  # 4BSD scheduler
options INET# InterNETworking
options FFS # Berkeley Fast Filesystem
options SOFTUPDATES # Enable FFS soft updates support
options UFS_ACL # Support for access control lists
options UFS_DIRHASH # Improve performance on big 
directories
options MD_ROOT # MD is a potential root device
options NFSCLIENT   # Network Filesystem Client
options NFSSERVER   # Network Filesystem Server
options NFS_ROOT# NFS usable as /, requires 
NFSCLIENT
options MSDOSFS # MSDOS Filesystem
options CD9660  # ISO 9660 Filesystem
options PROCFS  # Process filesystem (requires 
PSEUDOFS)
options PSEUDOFS# Pseudo-filesystem framework
options GEOM_GPT# GUID Partition Tables.
options COMPAT_43   # Compatible with BSD 4.3 [KEEP 
THIS!]
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
options SCSI_DELAY=15000# Delay (in ms) before probing SCSI
options SYSVSHM # SYSV-style shared memory
options SYSVMSG # SYSV-style message queues
options SYSVSEM # SYSV-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time 
extensions
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
options ADAPTIVE_GIANT  # Giant mutex is adaptive.

device  apic# I/O APIC
device  isa
device  pci
device  ata
device  atadisk # ATA disk drives
device  ataraid # ATA RAID drives
device  atapicd # ATAPI CDROM drives
options ATA_STATIC_ID   # Static device numbering
device  atkbdc  # AT keyboard controller
device  atkbd   # AT keyboard
device  vga # VGA video card driver
device  sc
device  npx
device  miibus  # MII bus support
device  rl  # RealTek 8129/8139
device  vr  # VIA Rhine, Rhine II
# Pseudo devices.
device  loop# Network loopback
device  mem # Memory and kernel memory devices
device  io  # I/O device
device  random  # Entropy device
device  ether   # Ethernet support
device  tun # Packet tunnel.
device  pty # Pseudo-ttys (telnet etc)
device  gif # IPv6 and IPv4 tunneling
device  bpf # Berkeley packet filter
# Additional options
option  IPFIREWALL
option  IPFIREWALL_DEFAULT_TO_ACCEPT
option  DUMMYNET
Best wishes,
Andrew P.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Armada 17xx, ACPI thermal management broken.

2004-12-22 Thread Nikolas Britton
Uwe Laverenz wrote:
On Tue, Dec 21, 2004 at 06:25:05AM -0600, Nikolas Britton wrote:
 

Any help would be appreciated on ether fixing this problem or a way to 
use ACPI but disable the thermal monitoring so the system can control 
the fan?
   

I might be wrong, but I think on the 1750 you should use APM instead of
ACPI. I had a 1750 running with FreeBSD 4.x and APM and it worked very
well.
cu,
Uwe
 

How?, I added it to my kernel device apm, device pmtimer, and 
device amp_saver and rebuilt it and in rc.conf I added 
apm_enable=YES, apmd_enable=YES and I greped though 
default/loader.conf for anything but found nothing, after rebooting the 
only thing I get from dmesg is WARNING: apm_saver module requires apm 
enabled and when I type in apm I get apm: can't open /dev/apm: No such 
file or directory, type in zzz and I get apm: can't open /dev/apm: No 
such file or directory

I want ACPI!, APM is a last ditch hack to me, the name says it all 
Advanced Configuration and Power Interface there is a reason they 
switched to it. The 440BX chipset has full support for ACPI and 
therefore should work with FreeBSD and is a critical problem, what do 
you think might happen if you disable all your fans on your computer???. 
Please note that I'm not trying to diss FreeBSD in anyway for it being 
broken as I understand the issues with the DSDT, AML, and ASL stuff, I 
just want it to work.

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


  1   2   >