Re: Unexpected inet6 in FreeBSD 4.9-STABLE

2004-03-22 Thread Teodor Iliescu
On Mon, 22 Mar 2004, Chris Pepper wrote:

[...]

   This is causing me some aggravation, as localhost connections
 (such as apachectl fullstatus) are from [client ::1] instead of
 the old-fashioned  127.0.0.1. To my surprise,
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-ipv6.html
 doesn't talk about rc.conf at all, and I'm not sure where else this
 would be set up.


Try commenting out (#) ::1 from /etc/hosts, which is loopback for IPv6.

Afterwards try to a full Apache restart with

apachectl stop
apachectl start

If you want to get more experimental, you can go ahead and completely
remove IPv6 support from your kernel, although I don't see this as
necessary.

Hope this helps.

Unix is simple, but it takes a genius to understand the simplicity.
- Dennis Ritchie

Teodor I.
http://penguincomputing.iwarp.com
GPG key fingerprint : 9AC8 A05C 78AD AD73 91DB  CBE4 B644 F402 FBFD 5927
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: KDE startup slowly on initializing system service

2004-02-23 Thread Teodor Iliescu
Hello,

On Mon, 23 Feb 2004, Nguyen Tam Chinh wrote:

 Good afternoon everybody,
 I know this is not a new problem. But till now i found no solution for
 this. My KDE 3.1.4 and 3.2 (just updated recently through ports) enter the
 same problems: startup slowly on initializing system service, konqueror
 hangs sometime (~1 min) when i try to browse local directories (but
 after the first hang, konqueror can browse normally), kaddressbook show

 %uname -a
 FreeBSD chinhngt.b.gz.ru 4.9-STABLE FreeBSD 4.9-STABLE #0:

I would recommend adding something like this to your /etc/hosts:
127.0.0.1   localhost.localdomain   chinhngt.b.gz.ru

I have noticed this problem when you change your domain from the classic
'localhost.localdomain' to something else, and KDE does not know how to
resolve it, thus the slowdowns.

Unix is simple, but it takes a genius to understand the simplicity.
- Dennis Ritchie

Teodor I.
http://penguincomputing.iwarp.com
GPG key fingerprint : 9AC8 A05C 78AD AD73 91DB  CBE4 B644 F402 FBFD 5927
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Updating the OS after an install

2004-02-04 Thread Teodor Iliescu
On Wed, 4 Feb 2004, Krikket wrote:

 So I cd'd to the approperiate directory, and did make  make install.

Try:
cd /usr/ports/multimedia/xine
make fetch  make xine

I've attempted to install a package just now with the method you
suggested. Although it does work, it doesn't seem to properly install.

Unix is simple, but it takes a genius to understand the simplicity.
- Dennis Ritchie

Teodor I.
http://penguincomputing.iwarp.com
GPG key fingerprint : 9AC8 A05C 78AD AD73 91DB  CBE4 B644 F402 FBFD 5927
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re:Installation Issues

2004-01-28 Thread Teodor Iliescu
On Wed, 28 Jan 2004, Eric Thies wrote:

 It happens at the same point everytime, I'll try to figure out what its
 installing, but the instalation media is burned cds... I'm pretty sure
 they're ok, but not positive.  I may try downloading 4.9 and burning it
 and installing it tonight.  Thanks for the very quick response.

 --Eric

Make sure you run md5sum on the ISO's you download and compare it with the
ones on the freebsd ftp, to save yourself some blanks if you had some
transmission errors while downloading.

Unix is simple, but it takes a genius to understand the simplicity.
- Dennis Ritchie

Teodor I.
http://penguincomputing.iwarp.com
GPG key fingerprint : 9AC8 A05C 78AD AD73 91DB  CBE4 B644 F402 FBFD 5927
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Dynamic Router IP.

2004-01-28 Thread Teodor Iliescu
On Wed, 28 Jan 2004, Marwan Sultan wrote:

Question is:
Is there a way to configure the FreeBSD box to send an auto email for
me each time the router has a new 'real IP' ?

For sure by somehow the BSD box knows about the new ip for router.

Thank you very much in advance.

Marwan,

I am currently using dyndns(www.dyndns.org) and a client called ddclient.
The client is basically a perl program that runns in the background, and
updates your external ip, such as 64.229.xxx.xxx to myname.dyndns.org.
The program gets this by visiting a webpage such as checkip.dyndns.org, or
one gotten from your local router.

This would allow you to always connect to your inside computer by ssh'ing
to myname.dyndns.org.

Unix is simple, but it takes a genius to understand the simplicity.
- Dennis Ritchie

Teodor I.
http://penguincomputing.iwarp.com
GPG key fingerprint : 9AC8 A05C 78AD AD73 91DB  CBE4 B644 F402 FBFD 5927
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problem With Configuring Name Servers

2004-01-24 Thread Teodor Iliescu
Hello Gerard,

This seems to be obvious enough.
You are trying to statically assign your DNS search order, as well as
static name servers, but you have your nic, rl0 on DHCP, which overwrites
the file on boot-up, as you mention.

What you should do is take off DHCP, in rc.conf file.
Something like:

ifconfig_rl0=inet 192.168.0.2 netmask 255.255.255.0

Above, you would set your static IP address.

Hope this helps.

On Sat, 24 Jan 2004, Gerard Seibert wrote:

 I have the following in the resolv.conf file:

 domain rcn.com
 nameserver 207.172.3.8
 nameserver 207.172.3.9

 The following entry is in the re.conf file

 ifconfig_rl0=DHCP

 Obviously, I am doing something incorrectly here. Why are these files
 being rewritten upon rebooting of the machine, and how do I stop it. I
 have a cable connection that uses DHCP . I have the latest release of
 FreeBSD 5.2 installed.

 Thanks in advance.

Unix is simple, but it takes a genius to understand the simplicity.
- Dennis Ritchie

Teodor I.
http://penguincomputing.iwarp.com
GPG key fingerprint : 9AC8 A05C 78AD AD73 91DB  CBE4 B644 F402 FBFD 5927
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]