Re: time to come clean... .

2006-09-04 Thread Gary Kline
On Sun, Sep 03, 2006 at 09:44:53PM -0700, David King wrote:
 It's time to come clean and admit that parts/most of rsync are
 lost on me.  [...]
 How can I automate the backup via rsync to other servers?
 
 Depending on the backup strategy that you want, I highly recommend  
 rsnapshot (/usr/ports/sysutils/rsnapshot http://www.rsnapshot.org/ 
 ). It handles most of the management of retaining past backups up  
 to X days, X weeks, etc, and uses hardlinks to save space between the  
 backups. So because it uses rsync, it uses the bandwidth of an  
 incremental backup, but because it uses directory trees of hardlinks,  
 each backup is completely restorable like a full backup.
 

One problem may be semantics.  I'm not certain if I want directory
/etc/* synchronized on servers A and B, or if I just want a 
100%-guaranteed backup ... .  Since I do 99% of stuff on
tao, I want every other (possible) server to sync up my ~/* files
on other machines. The build and config files I just want tar'd up
and moved to, say, /usr/tmp/tao, /usr/tmp/sage, usr/tmp/zen, and
so on.  This stuff is what I would like done at least daily.

I'll look at rsnapshot.  A very big (*)++plus is that Dru
wrote it.  That mean it's thoroughly first rate.

Around 10 hrs sleep in three days just don' cut it.

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

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


Re: Dump to DVD

2006-09-04 Thread Martin Hepworth

Hi

Well I know this is a bit OT, but amanda can do spit 'dump's over multilple
tapes/dvds/whatever.

That way you also have an index of what's on what media etc.

--
Martin

On 9/4/06, Beech Rintoul [EMAIL PROTECTED] wrote:


Can someone give me a bit of help? I'm trying to dump /user to multiple
DVD's
and keep getting a write error when the DVD runs out of space. I need an
example of the proper command. I think I need to add file size to the
command, but I'm not quite sure how to do it. I don't normally use DVD's
so
this is a bit new to  me.

TIA

Beech
--


---
Beech Rintoul - Sys. Administrator - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | Alaska Paradise
\ / - NO HTML/RTF in e-mail  | 201 East 9Th Avenue Ste.310
X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - Please visit Alaska Paradise - http://www.alaskaparadise.com

---















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


building and installing world on two separate machines

2006-09-04 Thread Dave

Hello,
   I have a machine that i want to upgrade from 5.x to 6.1. I've got a 6.1 
world built on a much faster system and would like to just install it on 
this machine. I thought about nfs, but i have to drop to single user mode to 
do the make installworld and won't have nfs available. Is there a way i can 
install this already compiled world on the slower box without having to 
remake it?

Thanks.
Dave.

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


Word processor for 6.1

2006-09-04 Thread Perry Hutchison
Anyone know where I can find a working word processor for 6.1?
AbiWord and OpenOffice both require Gnome, which won't build.
richtext builds OK, but as soon as I try to select bold it
writes 4 lines to stderr and drops core:

  Message backtrace:
   bold
   bold
  OutOfBounds: offset 0, size 0
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: time to come clean... .

2006-09-04 Thread Howard Jones


On 4 Sep 2006, at 05:35, Gary Kline wrote:


How can I automate the backup via rsync to other servers?


If what you want is a backup to the disk on a remote system (rather  
than a tape drive or whatever), then have a look at rdiff-backup:


http://www.howtoforge.com/linux_rdiff_backup

It uses the rsync protocol for sending only changed blocks, but saves  
the sent data to one side as well to make a 'transaction log'. You  
end up with a full copy of the current data (as you would with rsync)  
and a command to construct any previous version by applying the  
changes in reverse as necessary. I run this on a couple of dozen  
machines, mostly freebsd, with no problems. For things like web  
servers and DNS, the increments are pretty much that day's logs, so  
it is quite effective at saving space/bandwidth. The actual software  
is in ports (sysutils/rdiff-backup, I think). It also has the benefit  
that no special actions are needed to restore a single file - you  
just grab what you want.


Even if you don't fancy the software, the article also has the info  
you need to get a reasonably safe root SSH (limited by IP, and the  
command that can be run, AND the public key) going with public key  
authentication, which will help for rsync as well.


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


Re: building and installing world on two separate machines

2006-09-04 Thread Mitch
On 09/04/06 02:25 AM, Dave wrote:
 Hello,
I have a machine that i want to upgrade from 5.x to 6.1. I've got a 6.1 
 world built on a much faster system and would like to just install it on 
 this machine. I thought about nfs, but i have to drop to single user mode 
 to do the make installworld and won't have nfs available. Is there a way i 
 can install this already compiled world on the slower box without having to 
 remake it?
 Thanks.
 Dave.

NOTE: I've never tried anything like this.  Hopefully someone else can
chime in here.

I think I would try this:

- make buildworld; make buildkernel on the fast box
- copy over /usr/src and /usr/obj
- make installkernel on the target machine (assuming buildkernel and
  installkernel targets still exist..)
- copy out /usr/src/usr.sbin/mergemaster/mergemaster.sh to
  /usr/sbin/mergemaster (might not be needed)
- reboot to single user and do the normal mergemaster -p; make
  installworld; mergemaster
- reboot and hope for the best.

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


Re: building and installing world on two separate machines

2006-09-04 Thread Dan Nelson
In the last episode (Sep 04), Dave said:
I have a machine that i want to upgrade from 5.x to 6.1. I've got a 6.1 
 world built on a much faster system and would like to just install it on 
 this machine. I thought about nfs, but i have to drop to single user mode 
 to do the make installworld and won't have nfs available. Is there a way i 
 can install this already compiled world on the slower box without having to 
 remake it?

There's nothing stopping you from doing an NFS mount in single-user
mode.

-- 
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: Word processor for 6.1

2006-09-04 Thread Erik Norgaard

Perry Hutchison wrote:

Anyone know where I can find a working word processor for 6.1?
AbiWord and OpenOffice both require Gnome, which won't build.


What do you mean: which won't build? No problems here - I recently 
compiled both. They don't require the full gnome package.


There is a commercial program, textmaker (www.softmaker.com), which I 
have found much better than Abiword in handling word documents, but I 
doubt it supports OpenDocument.


Cheers, Erik

--
Ph: +34.666334818  web: http://www.locolomo.org
X.509 Certificate: http://www.locolomo.org/crt/8D03551FFCE04F0C.crt
Key ID: 69:79:B8:2C:E3:8F:E7:BE:5D:C3:C3:B1:74:62:B8:3F:9F:1F:69:B9
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: how can I su as root over telnet or ssh?

2006-09-04 Thread Thomas
Hi

The manpage for su explains it.

 PAM is used to set the policy su(1) will use.  In particular, by
default
 only users in the ``wheel'' group can switch to UID 0 (``root'').

Cheers,
Thomas

armstrong adam schrieb:
 It really woks!!thanks,
 but why this happen?
 which part of the document explain this?
 I browsed the documentation and cannot find it
 
 
 From: Jonathan Chen [EMAIL PROTECTED]
 To: armstrong adam [EMAIL PROTECTED]
 CC: [EMAIL PROTECTED]
 Subject: Re: how can I su as root over telnet or ssh?
 Date: Mon, 4 Sep 2006 14:19:18 +1200

 On Mon, Sep 04, 2006 at 10:12:26AM +0800, armstrong adam wrote:
  yes,the user logging on is in the wheel group,

 You should add the user to `wheel' via /etc/group, and not via
 the login-group.
 -- 
 Jonathan Chen [EMAIL PROTECTED]
 --
  Beer. Now there's a temporary solution.
- Homer Simpson
 
 
 ___
 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: time to come clean... .

2006-09-04 Thread Erik Norgaard

Gary Kline wrote:


I've just installed/reinstaled rsync here on ns1.thought.org (aka
sage) and on zen.thought.org.  I've fiddled with the rsyncd.conf on
both FBSD systems.  What I don't understand is how rsync, using
ssh, gets past the secret password.  If, say, I want to
copy all of my www files from sage to zen, what do I put
into /usr/local/etc/rsyncd.secrets? Let's say that rsyncd.secrets
had:

# User : pw
root : abcd
kline: wxyz


I'd use ssh keys, check the man page on how to specify keys for use with 
rsync/ssh.



rsync --verbose  --progress --stats --compress --rsh=/usr/local/bin/ssh
  --recursive --times --perms --links --delete \
  --exclude *bak --exclude *~ \
  /usr/local/www/* zen.thought.org:/usr/local/www


Careful with wildcards, they may be interpreted different than you expect.

I made this script, the script assumes that paths are the same on source 
and destination:


#!/bin/sh
# RSYNC_USER is set as an environment variable or defaults to $USER
RSYNC_USER=${RSYNC_USER:-$USER}

# Exit if RSYNC_HOST not defined, there is no good default value.
if [ -z $RSYNC_HOST ]; then
  echo RSYNC_HOST undefined, no host to syncronize with.;
  exit;
fi

# RSYNC_PATH sets the path to be syncronized, defaults to $HOME
# would be neat to check if path is absolute or else assume relative
# to $HOME or set RSYNC_PATH as environment/command line variable
if [ -z $1 ]; then
  RSYNC_PATH=$HOME;
else
  RSYNC_PATH=$HOME/$1
fi
# Syncronize folders
echo Syncing $RSYNC_PATH...

# Exclude patterns may be stored in .rsync in the home directory or
# the sub directory being syncronized
if [ -f $RSYNC_PATH/.rsync ]; then
  rsync -Cptuvaz --rsh=ssh --exclude-from=$RSYNC_PATH/.rsync \
$RSYNC_PATH/ [EMAIL PROTECTED]:$RSYNC_PATH;
else
  rsync -Cptuvaz --rsh=ssh \
$RSYNC_PATH/ [EMAIL PROTECTED]:$RSYNC_PATH;
fi

exit;

You put your exclude list in a file, .rsync (see the man-page), what to 
exclude may depend on the directory you're rsyncing. If you're 
automating this as a cron-job, then you may not have the environment 
variables set.


I think that rsync defaults to ssh so the --rsh is really obsolete, but 
I like to make it explicit.


Cheers, Erik
--
Ph: +34.666334818  web: http://www.locolomo.org
X.509 Certificate: http://www.locolomo.org/crt/8D03551FFCE04F0C.crt
Key ID: 69:79:B8:2C:E3:8F:E7:BE:5D:C3:C3:B1:74:62:B8:3F:9F:1F:69:B9
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: building and installing world on two separate machines

2006-09-04 Thread Jonathan McKeown
On Monday 04 September 2006 08:25, Dave wrote:
 Hello,
 I have a machine that i want to upgrade from 5.x to 6.1. I've got a 6.1
 world built on a much faster system and would like to just install it on
 this machine. I thought about nfs, but i have to drop to single user mode
 to do the make installworld and won't have nfs available. Is there a way i
 can install this already compiled world on the slower box without having to
 remake it?

I do this across all my servers, by nfs-mounting /usr/src and /usr/obj from 
the build server on the target server before dropping it to single-user mode: 
the filesystems stay mounted and I just

cd /usr/src
make installworld

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


Trouble installing 6.1 on an old machine

2006-09-04 Thread Andreas Widerøe Andersen

I have an OLD machine (from 1996) that's been running FreeBSD for about 8
years now steady and reliable. It has gone through several versions and was
running 4.11 untill today when I decided to make a fresh 6.1 install.

When booting from the installation CD the only way I can make it skip a lot
of harddrive errors is when I boot in safe mode. I did this and installed
the system. However, the same problems are there when I reboot from
harddrive after the install (not in safe mode).

Here are a few of the error messages I get:

ad0: Failure READ_DMA timed out LBA=0
ad1: Failure READ_DMA timed out LBA=13281487
ad1: Timeout READ_DMA retrying (1 retry left) LBA=0
and so on...

It ends with a mountroot prompt.

Any ideas what I can try?

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


Re: Dump to DVD (partially solved)

2006-09-04 Thread Beech Rintoul
On Sunday 03 September 2006 18:09, stan wrote:
 On Sun, Sep 03, 2006 at 05:17:58PM -0800, Beech Rintoul wrote:
  On Sunday 03 September 2006 15:27, stan wrote:
   On Sun, Sep 03, 2006 at 03:10:45PM -0800, Beech Rintoul wrote:
Can someone give me a bit of help? I'm trying to dump /user to
multiple DVD's and keep getting a write error when the DVD runs out
of space. I need an example of the proper command. I think I need to
add file size to the command, but I'm not quite sure how to do it. I
don't normally use DVD's so this is a bit new to  me.
  
   What command are you using? tar? dump? .
 
  Dump dump -0au -L -f /dev/acd0 /usr
 
  It used to just prompt me to feed in another DVD. Now it errors out when
  the DVD is full.

 Hmm, the man page says that the -a option (which you are using), should
 do just that.. odd. Have you played with teh -s option?

No, but specifying -B4589840 in the line works. I have no Idea why it won't 
autodetect. Anyway, thanks for the help. This is a client's machine running 
6-STABLE, and I was hoping it wouldn't turn into a retirement project this 
weekend, which it didn't. If anyone wants to track this down, I'm in 
(relatively) close proximity to the box, and I'll be more than happy to do 
some further testing later in the week.

Beech

-- 

---
Beech Rintoul - Sys. Administrator - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | Alaska Paradise
\ / - NO HTML/RTF in e-mail  | 201 East 9Th Avenue Ste.310
 X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - Please visit Alaska Paradise - http://www.alaskaparadise.com
---













pgpnvMgCJ4pcb.pgp
Description: PGP signature


Re: Best gigabit network interface for FreeBSD?

2006-09-04 Thread Nikolas Britton

On 9/3/06, Brett Glass [EMAIL PROTECTED] wrote:

Was going to post this to net@, but figured I'd get a bigger
audience and better answers on this list. (Please copy responses to
me as well as the list to make sure I see them.)

I'm building a machine which is going to have very high network
loads, but can't really use a TCP/IP accelerator because much of
the traffic won't be TCP. What, as of now, is the most capable
gigabit Ethernet interface for FreeBSD? Which has the cleanest,
simplest driver? The most onboard buffer space to prevent overruns
and underruns? The fastest bus interface? The least interrupt
overhead (important because interrupts in FreeBSD 6.x are
relatively expensive)? I have some Intel em interfaces available
to me, but have been told that while the driver is well supported
they are quirky and not the best choice.



Stay away from cards with a Marvell or RealTek chip.



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


Re: Trouble installing 6.1 on an old machine

2006-09-04 Thread Andreas Widerøe Andersen

I just downloaded version 4.11 from the FreeBSD ftp archives, burnt a boot
CD and tried to reinstall the system via FTP from the archives. This worked
perfect. No problems.

I guess this means it's not a hardware problem, but rather some changes made
to newer versions of FreeBSD.

Anyone know what I can do to get 6.1 up and running on this ancient machine?

Cheers,
Andreas

---

On 9/4/06, Andreas Widerøe Andersen [EMAIL PROTECTED] wrote:


I have an OLD machine (from 1996) that's been running FreeBSD for about 8
years now steady and reliable. It has gone through several versions and was
running 4.11 untill today when I decided to make a fresh 6.1 install.

When booting from the installation CD the only way I can make it skip a
lot of harddrive errors is when I boot in safe mode. I did this and
installed the system. However, the same problems are there when I reboot
from harddrive after the install (not in safe mode).

Here are a few of the error messages I get:

ad0: Failure READ_DMA timed out LBA=0
ad1: Failure READ_DMA timed out LBA=13281487
ad1: Timeout READ_DMA retrying (1 retry left) LBA=0
and so on...

It ends with a mountroot prompt.

Any ideas what I can try?

Thanks,
Andreas


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


ACPI won't shutdown

2006-09-04 Thread bsd

Hello,

I have configured a new server and everything goes find but ACPI.

When Shutting down the server I have these messages :

…
All buffers synced.
Uptime: 5m2s
mpt0: Unhandled Event Notify Frame. Event 0x30
mpt1: Unhandled Event Notify Frame. Event 0x30
Shutting down ACPI


Then nothing !!

Computer seems to freeze for an infinite amount of time. I have to  
manually shutdown the computer with the Power button !



Any idea ?

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

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

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


P Please consider your environmental responsibility before printing  
this e-mail



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


Re: Various package/ports problems

2006-09-04 Thread Dr. Jennifer Nussbaum
Kris Kennaway [EMAIL PROTECTED] wrote: On Sun, Sep 03, 2006 at 06:31:18PM 
-0700, Dr. Jennifer Nussbaum wrote:
 Kris Kennaway  wrote: On Sun, Sep 03, 2006 at 05:58:36PM -0700, Dr. Jennifer 
 Nussbaum wrote:
  Kris Kennaway  wrote: On Mon, Aug 28, 2006 at 01:59:14PM -0700, Dr. 
  Jennifer Nussbaum wrote:
  
  Thanks, i CAN compile from the ports collection (i never wanted to use
   packages). Its MANAGING this that i cant do. I can update my ports tree
  fine, and i can go into ports directory and do a make install, sure.
  
  But i cant do portsversion to see what needs updating, and i cant do
  pkg_info to find out what versions i have. So doing something like
 
 Why not (in both cases)?As i posted in the original message - the main 
 question i was
 asking - both of these are broken in some way. Reposting:
 
 ---
 
 For example if i try to run portversion i get:
 
   undefined method `each' for nil:NilClass
   /usr/local/sbin/portversion:239: [BUG] Bus Error
 
 from Ruby (ruby 1.8.5 is up to date on the system).

: pkgdb -f

~ $ sudo pkgdb -f
~ $ portversion
undefined method `each' for nil:NilClass
/usr/local/sbin/portversion:239: [BUG] Bus Error
ruby 1.8.5 (2006-08-25) [i386-freebsd4]

Abort trap (core dumped)
~ $

 
 If i try to run pkg_info I quickly get:
 
   pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*'

: Deinstall the package that was built for a later version of 
: FreeBSD.

KrisHow do i tell which this is? Most of this box seems to be compiled
from ports, not installed packages. apache+ipv6 is not installed.

~ $ pkg_info
ImageMagick-nox11-6.0.2.7 Image processing tools
analog-6.0_1,1  An extremely fast program for analysing WWW logfiles
pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*'
~

I rebuilt analog from ports but that doesnt seem to be it.

Thanks for your continued help.

Jen


-
Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small 
Business.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Trouble installing 6.1 on an old machine

2006-09-04 Thread Bob
I have same problem with my 10+ year old server boxes.

 First the boot bios scan has changed between 4.11 and 6.0. You can upgrade
your old PC's bios. In most cases the mfg does not support the motherboard
any more so chance of getting upgrade to burn the bios chip is most
un-likely. You can get 3rd party replacement bio chip from www.umicore.com
for around $80.00.

Second problem is the size of the 5.2 and newer FreeBSD install kernel. It
has gotten bigger and will not function properly on pre-2000 equipment.
Solution is to take the hard drive from old PC and plug into newer box and
do install. After base system install is completed just return hard drive to
old pc and boot from it. Will work fine from that point on.  This works fine
on my 386 cpu 33 mhz server pc manufactured in 1994 and its currently
running FreeBSD 6.1.

Good luck.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Andreas Widerøe
Andersen
Sent: Monday, September 04, 2006 6:47 AM
To: freebsd-questions@freebsd.org
Subject: Re: Trouble installing 6.1 on an old machine

I just downloaded version 4.11 from the FreeBSD ftp archives, burnt a boot
CD and tried to reinstall the system via FTP from the archives. This worked
perfect. No problems.

I guess this means it's not a hardware problem, but rather some changes made
to newer versions of FreeBSD.

Anyone know what I can do to get 6.1 up and running on this ancient machine?

Cheers,
Andreas

---

On 9/4/06, Andreas Widerøe Andersen [EMAIL PROTECTED] wrote:

 I have an OLD machine (from 1996) that's been running FreeBSD for about 8
 years now steady and reliable. It has gone through several versions and
was
 running 4.11 untill today when I decided to make a fresh 6.1 install.

 When booting from the installation CD the only way I can make it skip a
 lot of harddrive errors is when I boot in safe mode. I did this and
 installed the system. However, the same problems are there when I reboot
 from harddrive after the install (not in safe mode).

 Here are a few of the error messages I get:

 ad0: Failure READ_DMA timed out LBA=0
 ad1: Failure READ_DMA timed out LBA=13281487
 ad1: Timeout READ_DMA retrying (1 retry left) LBA=0
 and so on...

 It ends with a mountroot prompt.

 Any ideas what I can try?

 Thanks,
 Andreas

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


UPGRADING PACKAGES

2006-09-04 Thread Phares Kariuki
Hello

 I installed Samba 2 on a FreeBSD box running 5.4 Stable... now the problem is 
this... I urgently need to upgrade this package but cannot seem to find a way 
to do so... I didnt install it off the port... In istalled it using pkg_add... 
it was in the CD that contains applications
 
 Thanks..
 
 Kaboro.
 

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


Out of Office Auto Reply:

2006-09-04 Thread prasanth . sekharan

I will be on vacation from 05-09-2006 to 17-09-2006 and would have limited 
access to email.In my absence  please contact [EMAIL PROTECTED] 

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


Re: flash plugin and firefox

2006-09-04 Thread RW
On Saturday 02 September 2006 15:46, Jordi Carrillo wrote:
 This I suppose is the eternal question, but I'm quite sick of looking
 around google without having a detailed step by step process to get the
 flash plugin for firefox. There are some that talk about tweaking the
 kernel and applying patches? Is it really so difficult having the flash
 plugin for firefox (compiled one)?
 If anyone has the consideration to detail a working solution for the
 6.1freebsd release, will be much appreciated,

If you want it to be simple use linux-firefox instead.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: UPGRADING PACKAGES

2006-09-04 Thread Andrew Pantyukhin

On 9/4/06, Phares Kariuki [EMAIL PROTECTED] wrote:

Hello

 I installed Samba 2 on a FreeBSD box running 5.4 Stable...
now the problem is this... I urgently need to upgrade this package
but cannot seem to find a way to do so... I didnt install it off the port...
In istalled it using pkg_add... it was in the CD that contains applications


Deinstall it (pkg_delete -x samba) and install samba3 from
ports (cd /usr/ports/net/samba3  make install) or packages
(pkg_add -r samba3)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Word processor for 6.1

2006-09-04 Thread Donald J. O'Neill
On Monday 04 September 2006 02:08, Perry Hutchison wrote:
 Anyone know where I can find a working word processor for 6.1?
 AbiWord and OpenOffice both require Gnome, which won't build.
 richtext builds OK, but as soon as I try to select bold it
 writes 4 lines to stderr and drops core:

   Message backtrace:
bold
bold
   OutOfBounds: offset 0, size 0
 ___

You can go to http://porting.openoffice.org/freebsd/ and download 
openoffice2.0.3 pre-built binaries from there. I would suggest that, rather 
than trying to build it.

You're probably going to need java. I suggest getting the pre-built binary for 
diablo-jdk-1.5.0.07.00, you can get it here: 
http://www.freebsdfoundation.org/downloads/java.shtml

Try to save yourself as much pain as possible. Building openoffice from ports 
tends to fall in the category of pain.

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


Re: ACPI won't shutdown

2006-09-04 Thread Jonathan Horne
On Monday 04 September 2006 06:17, bsd wrote:
 Hello,

 I have configured a new server and everything goes find but ACPI.

 When Shutting down the server I have these messages :

 …
 All buffers synced.
 Uptime: 5m2s
 mpt0: Unhandled Event Notify Frame. Event 0x30
 mpt1: Unhandled Event Notify Frame. Event 0x30
 Shutting down ACPI


 Then nothing !!

 Computer seems to freeze for an infinite amount of time. I have to
 manually shutdown the computer with the Power button !


 Any idea ?
 


tell is a little about your hardware?  i have a system that does this exact 
same behavior.  mine is;

supermicro 370DE6
dual pentium 3 1000
2048MB ECC-Reg'd PC133
an older samsung cdrw (this is the only ide device in the system)
3ware 6800 raid controller with 3 raid units (20GB R1, 80GB R1, 335GB R5)

my system exhibits the exact sme behavior you describe, but i too have no idea 
why.  system has always had no trouble with acpi


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


Error Trying to Compile Xfree86-4-clients

2006-09-04 Thread Warren Liddell
I have been trying to fix up my X client and KDE for a while, but 
after fixing everything else, this one package keeps failing and im 
at a loss as to why and how to solve this issue, any help/assistance 
on this matter would be greatlyu appreciated.  Below is a snippet of 
the end result of the build/compile.



rm -f glxinfo
cc -o glxinfo -O2 -fno-strict-aliasing -pipe -ansi 
-Wno-system-headers 
-Dasm=__a  sm  -Wall 
-Wpointer-arith 
-Wundef -L/usr/ports/x11/XFree86-4-clients/wor 
  k/xc/exports/lib   glxinfo.o -lGLU -lGL 
-lXext -lX11 -L/usr/X11R6/lib -pthread 
-  lm 
-Wl,-rpath,/usr/X11R6/lib 
-Wl,-rpath-link,/usr/ports/x11/XFree86-4-clients/ 
work/xc/exports/lib

/usr/X11R6/lib/libGLU.so: undefined reference to `__rtti_user'
/usr/X11R6/lib/libGLU.so: undefined reference to `__rtti_si'
/usr/X11R6/lib/libGLU.so: undefined reference to `__get_eh_context'
/usr/X11R6/lib/libGLU.so: undefined reference to `__sjthrow'
/usr/X11R6/lib/libGLU.so: undefined reference to `__builtin_vec_new'
/usr/X11R6/lib/libGLU.so: undefined reference to `__builtin_vec_delete'
/usr/X11R6/lib/libGLU.so: undefined reference to `__rtti_class'
/usr/X11R6/lib/libGLU.so: undefined reference to `__builtin_delete'
/usr/X11R6/lib/libGLU.so: undefined reference to `__terminate'
/usr/X11R6/lib/libGLU.so: undefined reference to `__builtin_new'
*** Error code 1

Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs/glxinfo.
*** Error code 1

Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs.
*** Error code 1

Stop in /usr/ports/x11/XFree86-4-clients.

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


Re: ACPI won't shutdown

2006-09-04 Thread Matteo Pillon
On Mon, Sep 04, 2006 at 01:17:12PM +0200, bsd wrote:
 Computer seems to freeze for an infinite amount of time. I have to  
 manually shutdown the computer with the Power button !

Did you try with 'halt -p'?

If it doesn't work, can you give more infos on your system?

Bye.

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


Re: Trouble installing 6.1 on an old machine

2006-09-04 Thread Andreas Widerøe Andersen

Thanks for your help!

Yeah, can't get any BIOS upgrades anymore. I doubt that I'll spend time on
removing harddrives again. I may just stick to 4.11 then. It's just a
testserver on my local network anyway.

Best,
Andreas

---

On 9/4/06, Bob [EMAIL PROTECTED] wrote:


I have same problem with my 10+ year old server boxes.

First the boot bios scan has changed between 4.11 and 6.0. You can upgrade
your old PC's bios. In most cases the mfg does not support the motherboard
any more so chance of getting upgrade to burn the bios chip is most
un-likely. You can get 3rd party replacement bio chip from www.umicore.com
for around $80.00.

Second problem is the size of the 5.2 and newer FreeBSD install kernel. It
has gotten bigger and will not function properly on pre-2000 equipment.
Solution is to take the hard drive from old PC and plug into newer box and
do install. After base system install is completed just return hard drive
to
old pc and boot from it. Will work fine from that point on.  This works
fine
on my 386 cpu 33 mhz server pc manufactured in 1994 and its currently
running FreeBSD 6.1.

Good luck.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Andreas Widerøe
Andersen
Sent: Monday, September 04, 2006 6:47 AM
To: freebsd-questions@freebsd.org
Subject: Re: Trouble installing 6.1 on an old machine

I just downloaded version 4.11 from the FreeBSD ftp archives, burnt a boot
CD and tried to reinstall the system via FTP from the archives. This
worked
perfect. No problems.

I guess this means it's not a hardware problem, but rather some changes
made
to newer versions of FreeBSD.

Anyone know what I can do to get 6.1 up and running on this ancient
machine?

Cheers,
Andreas

---

On 9/4/06, Andreas Widerøe Andersen [EMAIL PROTECTED] wrote:

 I have an OLD machine (from 1996) that's been running FreeBSD for about
8
 years now steady and reliable. It has gone through several versions and
was
 running 4.11 untill today when I decided to make a fresh 6.1 install.

 When booting from the installation CD the only way I can make it skip a
 lot of harddrive errors is when I boot in safe mode. I did this and
 installed the system. However, the same problems are there when I reboot
 from harddrive after the install (not in safe mode).

 Here are a few of the error messages I get:

 ad0: Failure READ_DMA timed out LBA=0
 ad1: Failure READ_DMA timed out LBA=13281487
 ad1: Timeout READ_DMA retrying (1 retry left) LBA=0
 and so on...

 It ends with a mountroot prompt.

 Any ideas what I can try?

 Thanks,
 Andreas

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


How to get the install config options back?

2006-09-04 Thread Andreas Widerøe Andersen

Hi,
When I install a new port (Ie. php5) I early get a config options box where
I can choose various add-ons.

However, if the installation fails or I abort it somehow I can't seem to get
the option box back the next time I want to install the port again.

How can I get this box back so I can make changes to the installation
options?

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


Re: apache22 Checksum mismatch

2006-09-04 Thread Andrea Venturoli

Alexey Mikhailov wrote:

If you trust to content of file apache22/apr_dbd_mysql.rev-50.c you 
can even use make NO_CHECKSUM=1 install.
But if I were at your place I tried to update apache22 port and if 
this will happen again I would submit PR.


Hello. Thanks for the answer.
I repeatedly updated my port tree before writing this.
I contacted the maintainer, who said it could not reproduce the error.
I tried this again after a few days and it worked.
I really don't know the reason. I might suspect some sort of caching 
(transparent proxy?) somewhere between me and the master site, possibly 
at my ISP, but these are really only speculations.


 bye  Thanks
av.

___
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 the install config options back?

2006-09-04 Thread Vasile C
On Monday 04 September 2006 13:54, Andreas Widerøe Andersen wrote:
 Hi,
 When I install a new port (Ie. php5) I early get a config options box where
 I can choose various add-ons.

 However, if the installation fails or I abort it somehow I can't seem to
 get the option box back the next time I want to install the port again.

 How can I get this box back so I can make changes to the installation
 options?

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

cd /usr/ports/lang/php5  make config install clean

-- 
In case something goes wrong use ..
BOFH excuse #292:
We ran out of dial tone and we're and waiting for the phone company to deliver 
another bottle

PGP: http://www.new-order.org/public.key


pgpnCbF7fPnO5.pgp
Description: PGP signature


Re: ACPI won't shutdown

2006-09-04 Thread Jonathan Horne
On Monday 04 September 2006 08:35, Matteo Pillon wrote:
 On Mon, Sep 04, 2006 at 01:17:12PM +0200, bsd wrote:
  Computer seems to freeze for an infinite amount of time. I have to
  manually shutdown the computer with the Power button !

 Did you try with 'halt -p'?

 If it doesn't work, can you give more infos on your system?

 Bye.

im not the original-poster, but my system with the exact same behavior, is 
always shutdown with a 'shutdown -p now'.

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


Re: migrating user and web files to new server

2006-09-04 Thread hackmiester (Hunter Fuller)


On 3 September 2006, at 21:59, Noah wrote:


hackmiester (Hunter Fuller) wrote:


Obviously they are different syntax, but the two commands posted  
give you the same end result. Why are you rejecting the syntax?!




Hi there,

I never saw any syntax for the scp way of doing it.  Also after I  
received the ssh command I was happy to see that moving files could  
be performed on one line and want to share it with the list and  
soon google.


Ah, I see - you wanted the exact command.



please lets drop the issue it seems too nitpicky.


Please forgive me for my incredibly stupid comments... they were  
uncalled for. I was having a horrible day, I really shouldn't reply  
to lists on those type of days.




cheers,

Noah




cheers,

Noah








___
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 the install config options back?

2006-09-04 Thread Alexander Sashurin

*This message was transferred with a trial version of CommuniGate(r) Pro*
Andreas Widerøe Andersen wrote:

*This message was transferred with a trial version of CommuniGate(r) Pro*
Hi,
When I install a new port (Ie. php5) I early get a config options box 
where

I can choose various add-ons.

However, if the installation fails or I abort it somehow I can't seem 
to get

the option box back the next time I want to install the port again.

How can I get this box back so I can make changes to the installation
options?

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



make clean doesn't help?
what about make config?

--
With best regards, 
	Alexander Sashurin a.k.a. ZetRooT or ZetDaemonRoot
- - - - - - - - - - - - - - - - - - - 
| Mailto: [EMAIL PROTECTED] |

| ICQ: 258820442   |
| Mobile: +7-916-195-89-11 |
| Jabber: zetroot  |
| irc: irc.wenet.ru, _ZetRooT_ |
- - - - - - - - - - - - - - - - - - - 


___
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 the install config options back?

2006-09-04 Thread Jonathan Horne
On Monday 04 September 2006 09:25, Alexander Sashurin wrote:
 *This message was transferred with a trial version of CommuniGate(r) Pro*

 Andreas Widerøe Andersen wrote:
  *This message was transferred with a trial version of CommuniGate(r) Pro*
  Hi,
  When I install a new port (Ie. php5) I early get a config options box
  where
  I can choose various add-ons.
 
  However, if the installation fails or I abort it somehow I can't seem
  to get
  the option box back the next time I want to install the port again.
 
  How can I get this box back so I can make changes to the installation
  options?
 
  Thanks,
  Andreas
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
  [EMAIL PROTECTED]

 make clean doesn't help?
 what about make config?

other option would be to:

make rmconfig

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


Re: solaris

2006-09-04 Thread dick hoogendijk
On 03 Sep Chad Leigh -- Shire.Net LLC wrote:

 I am not sure about installing Solaris into an existing partition.

I remember one of the FBSD's (a RC, but still) destroying my partition
table. That's the reason I ask. I know that I don't have to use the main
option (that's for the whole disk). But if there are no problems know of
with the sol installer, than I'm a little less worried. I have no space to
backup my XP and FBSD disk parts (at the moment).

 I am not trying to get into a mud- slinging match -- both are good.

Not my intention either.. (!)

 a lot of things you normally do will be frustrating at first until you
 learn that he command flags are different on Solaris than on FreeBSD.

And that's my point. That's why I asked about good books or reading
points, and that's also the challence I'm looking for.
FreeBSD runs great. No fun anymore ;-) I have replaced linux once and
never want to go back. But finding out the dark spots and in-and-outs of a
different OS has it's .. o well, you know what I mean.

-- 
dick -- http://nagual.nl/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 6.1 +++ The Power to Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Various package/ports problems

2006-09-04 Thread Kris Kennaway
On Mon, Sep 04, 2006 at 04:52:08AM -0700, Dr. Jennifer Nussbaum wrote:
 Kris Kennaway [EMAIL PROTECTED] wrote: On Sun, Sep 03, 2006 at 06:31:18PM 
 -0700, Dr. Jennifer Nussbaum wrote:
  Kris Kennaway  wrote: On Sun, Sep 03, 2006 at 05:58:36PM -0700, Dr. 
  Jennifer Nussbaum wrote:
   Kris Kennaway  wrote: On Mon, Aug 28, 2006 at 01:59:14PM -0700, Dr. 
   Jennifer Nussbaum wrote:
   
   Thanks, i CAN compile from the ports collection (i never wanted to use
packages). Its MANAGING this that i cant do. I can update my ports tree
   fine, and i can go into ports directory and do a make install, sure.
   
   But i cant do portsversion to see what needs updating, and i cant do
   pkg_info to find out what versions i have. So doing something like
  
  Why not (in both cases)?As i posted in the original message - the main 
  question i was
  asking - both of these are broken in some way. Reposting:
  
  ---
  
  For example if i try to run portversion i get:
  
undefined method `each' for nil:NilClass
/usr/local/sbin/portversion:239: [BUG] Bus Error
  
  from Ruby (ruby 1.8.5 is up to date on the system).
 
 : pkgdb -f
 
 ~ $ sudo pkgdb -f
 ~ $ portversion
 undefined method `each' for nil:NilClass
 /usr/local/sbin/portversion:239: [BUG] Bus Error
 ruby 1.8.5 (2006-08-25) [i386-freebsd4]
 
 Abort trap (core dumped)
 ~ $

Check the manpage, probably I meant pkgdb -fu

  If i try to run pkg_info I quickly get:
  
pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*'
 
 : Deinstall the package that was built for a later version of 
 : FreeBSD.
 
 KrisHow do i tell which this is? Most of this box seems to be compiled
 from ports, not installed packages. apache+ipv6 is not installed.
 
 ~ $ pkg_info
 ImageMagick-nox11-6.0.2.7 Image processing tools
 analog-6.0_1,1  An extremely fast program for analysing WWW logfiles
 pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*'
 ~
 
 I rebuilt analog from ports but that doesnt seem to be it.

grep -r @conflicts /var/db/pkg and remove all listed packages.

Kris


pgpIpriec72os.pgp
Description: PGP signature


Re: solaris

2006-09-04 Thread Matthew Seaman
dick hoogendijk wrote:
 On 03 Sep Chad Leigh -- Shire.Net LLC wrote:
 
 I am not sure about installing Solaris into an existing partition.
 
 I remember one of the FBSD's (a RC, but still) destroying my partition
 table. That's the reason I ask. I know that I don't have to use the main
 option (that's for the whole disk). But if there are no problems know of
 with the sol installer, than I'm a little less worried. I have no space to
 backup my XP and FBSD disk parts (at the moment).

Back in the Solaris 8 days, the trick was to use fdisk to create a primary
partition and mark it as type 'Linux Swap' after which Solaris would happily
recognise it as a location to install into.

Quite how it happened that Solaris uses the same partition type as Linux
swap is shrouded in the mists of time.  

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   Flat 3
  7 Priory Courtyard
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
  Kent, CT11 9PW, UK



signature.asc
Description: OpenPGP digital signature


Re: New widescreen monitor, old radeon card - will this not work?

2006-09-04 Thread Atom Powers

On 9/3/06, Oliver Iberien [EMAIL PROTECTED] wrote:

Yes, you'd think, but no. I got a $50 GeForce 6200 LE/256M card and it works,
as long as I use the proprietary driver. With the standard nv driver that
xorgconfig came up with, it was just as bad as the Radeon.

The nvidia config utility did not add extra lines to the config file,
incidentally.


It wouldn't, because it doesn't know what kind of monitor you have.

Take a look at the modline in this post to see what I'm talking about.
http://www.nvnews.net/vbulletin/showthread.php?t=69920
I don't remember what that all means, but that card should be able to
support that resolution.

Note: The monitor I'm using now, ViewSonic vx2025wm, shows completely
different behavior whether I use the VGA or DVI input; for example, MS
Widows simply would not recognize that it was capable of 1680x1050
until I got the DVI input to work. ( To get the DVI to work I had to
shut everything down, unplugged, for a few minutes and boot it all
back up wit the DVI cable, only, installed.)

--
--
Perfection is just a word I use occasionally with mustard.
--Atom Powers--
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Newbie question - vidcontrol (?) and video mode at startup

2006-09-04 Thread Oliver Iberien
Hi,

With my new widescreen monitor, the console starts up with text bleeding off 
the edge of the display. What is the best console video mode for a console on 
a 1680x1050 display, and how do I get it to start up with it?

Thanks,

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


Re: solaris

2006-09-04 Thread Bill-S
At Mon, 4 Sep 2006 it looks like Matthew Seaman composed:

 dick hoogendijk wrote:
  On 03 Sep Chad Leigh -- Shire.Net LLC wrote:
  
  I am not sure about installing Solaris into an existing partition.
  
  I remember one of the FBSD's (a RC, but still) destroying my partition
  table. That's the reason I ask. I know that I don't have to use the main
  option (that's for the whole disk). But if there are no problems know of
  with the sol installer, than I'm a little less worried. I have no space to
  backup my XP and FBSD disk parts (at the moment).
 
 Back in the Solaris 8 days, the trick was to use fdisk to create a primary
 partition and mark it as type 'Linux Swap' after which Solaris would happily
 recognise it as a location to install into.
 
 Quite how it happened that Solaris uses the same partition type as Linux
 swap is shrouded in the mists of time.  
 

(giggle)

If I recall correctly, there was some hacking to do too if you were
dual-booting Solaris and Linux on the same disk for Solaris would
try on use your whole Linux filesystem as its own swap location.




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


Re: New widescreen monitor, old radeon card - will this not work?

2006-09-04 Thread Oliver Iberien
On Monday 04 September 2006 08:18, Atom Powers wrote:
 It wouldn't, because it doesn't know what kind of monitor you have.

 Take a look at the modline in this post to see what I'm talking about.
 http://www.nvnews.net/vbulletin/showthread.php?t=69920
 I don't remember what that all means, but that card should be able to
 support that resolution.

 Note: The monitor I'm using now, ViewSonic vx2025wm, shows completely
 different behavior whether I use the VGA or DVI input; for example, MS
 Widows simply would not recognize that it was capable of 1680x1050
 until I got the DVI input to work. ( To get the DVI to work I had to
 shut everything down, unplugged, for a few minutes and boot it all
 back up wit the DVI cable, only, installed.)

Very cool. A lot for my poor feeble newbie brain to process. I'll bet you were 
right about the Radeon card being able to work. man radeon turns up a lot of 
these options. 

Looking at xorg.conf, it looks as if I have two devices specified. 

Section Device
   Identifier Standard VGA
Driver vga
VendorName Unknown
BoardName  Unknown
EndSection

Section Device
   Identifier GeForce 6200 LE
   Driver nvidia
EndSection

I am not sure what vga is doing there (something xorgconfig stuck in?), but it 
does not seem to do any harm (?). I'm going to try erasing it and seeing if 
disaster strikes.

It's picking up the correct refresh rates without any options specified in the 
device section. I would guess that if I were using the digital output, this 
might not be the case? I'm cheating a bit by having a windows box connected 
to the digital input and the FreeBSD box connected to the analog input, so 
bypassing the issue while avoiding paying for a digital KVM switch.

It looks as if there is an order-of-magnitude difference in the processing 
power needed to do analog and digital at the same display size. I'm told that 
a 6600 is the minimum needed to cope with the 1680x1050 with digital.

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


Fiber Channel, Emulex

2006-09-04 Thread Chris Knipe

Hi,

Any drivers to support Emulex???   Would love to get my beasty connected to 
FC!!


Thanks,
Chris. 


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


where is my adduser.conf file ?

2006-09-04 Thread azhar freebsd

hi all
i am new abt freebsd .
it may be very simple problem but i am lost . help me !



[EMAIL PROTECTED]/etc# uname -a
FreeBSD mine.freebsd.org 6.0-RELEASE FreeBSD 6.0-RELEASE #1: Wed Aug 30
13:08:32 JST 2006
[EMAIL PROTECTED]:/usr/src/sys/i386/compile/MYGENRIC-001
i386

[EMAIL PROTECTED]/etc# whereis adduser.conf
adduser.conf:
[EMAIL PROTECTED]/etc#

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


Re: where is my adduser.conf file ?

2006-09-04 Thread Frank Staals

azhar freebsd wrote:

hi all
i am new abt freebsd .
it may be very simple problem but i am lost . help me !



[EMAIL PROTECTED]/etc# uname -a
FreeBSD mine.freebsd.org 6.0-RELEASE FreeBSD 6.0-RELEASE #1: Wed Aug 30
13:08:32 JST 2006
[EMAIL PROTECTED]:/usr/src/sys/i386/compile/MYGENRIC-001
i386

[EMAIL PROTECTED]/etc# whereis adduser.conf
adduser.conf:
[EMAIL PROTECTED]/etc#

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



'whereis' only looks in the ports or the location of the executable's. 
If you want to find a file you should use 'find' or locate. :


find / -name whatever-you-re-looking-for

or use locate, but before you can use locate you have to create the 
locate database. When you search frequently it's advisable to use locate 
since it's faster. Though wheter the results are acurate depends on the 
last time you updated your locate database so:


/usr/libexec/locate.updatedb

locate whateveryourelookingfore
locate somethingelse
locate another thing

GL and HF in FreeBSD

--
-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: Fiber Channel, Emulex

2006-09-04 Thread Chris Knipe

Hmm.

Absolutely NO fiber channel adapters listed on the supported hardware?? :-(

That's not good...


Regards,
Chris.

- Original Message - 
From: Chris Knipe [EMAIL PROTECTED]

To: freebsd-questions@freebsd.org
Sent: Monday, September 04, 2006 5:55 PM
Subject: Fiber Channel, Emulex



Hi,

Any drivers to support Emulex???   Would love to get my beasty connected 
to FC!!


Thanks,
Chris.
___
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: A question about programming RS-232

2006-09-04 Thread Сергей Собко
On Monday 04 September 2006 02:39, you wrote:
 --- stan [EMAIL PROTECTED] wrote:
  On Sun, Sep 03, 2006 at 11:26:04PM +0600, ??
 
  ? wrote:
   Hello.
   I have a question I can't deal myself.
   And nobody can help me in resolving my problem.
  
   Problem:
   I have a hand-made device, I want to control from
 
  FreeBSD 6.1
 
   (I am porting this application from Windows
 
  equivalent).
 
   But I don't know, in what device /dev/ I should
 
  write to get reults.
 
   I tryed to write bytes into /dev/ttyd0,
 
  /dev/cuad0, but got nothing. :(
 
  Start off by using minicom (or cu) to talk to the
  device. By doing
  this you can sort through baud rate/parity,hardware
  issues.
 
  Once you have that working, then move on to code.
 
  --
  Unix is very simple, but it takes a genius to
  understand the simplicity.
  (Dennis Ritchie)
  ___
  freebsd-questions@freebsd.org mailing list

 http://lists.freebsd.org/mailman/listinfo/freebsd-questions

  To unsubscribe, send any mail to
  [EMAIL PROTECTED]

 does your handmade device use RS-232? If its PIC or
 some such microcontroller based they claim to be
 RS-232 compliant but they do not always use +12V and
 -12V levels. MAX-232 chips can correct this. I assume
 if it worked in windows for you this might not the
 case, but you never know.


 -brian

Yes, you are partialy right, I'm using an old Atmel AT89C4051 microcontroller, 
I'm trying to control from through RS-232. The levels are correct as I know. 
But I don't know if the code is correct :(
I want to send 6 bytes through RS-232 with the following characteristics:

Port: COM1
Data Bits: 8
Stop Bits: 1
Parity: None
Flow Control: None

Please, say me if this code is incorrect:

#include stdio.h
#include termios.h
#include unistd.h
#include fcntl.h

int main(void) {
 int t = 0, num = 10, fd, iOut; char *ch;
 struct termios my_termios;
 ch = (char *)malloc(6);
 memset(ch, 250, 6);
 fd = open(/dev/cuad0, O_RDWR | O_NONBLOCK);
 printf(Opened com port\n);
 if(fd  0) return 0;
// tcflush(fd, TCIFLUSH);
 my_termios.c_cflag = CS8 | CLOCAL;
 if(cfsetspeed(my_termios, B9600)  0) return 0;
 if(tcsetattr(fd, TCSANOW, my_termios)  0) return 0;
 iOut = write(fd, ch, 6);
 if(iOut  0) return 0;
 printf(Number of bytes = %d\n, iOut);
 printf(Writed %s!\n, ch);
 close(fd);
 printf(Closed!\n);
 return 0;
}

Thank you for any help.
With best regards, Sergei Sobko

P.S. Sorry for my bad English as I'm only 16 and I'm from Russia ;)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: time to come clean... .

2006-09-04 Thread pauls
--On September 3, 2006 10:02:45 PM -0700 Gary Kline 
[EMAIL PROTECTED] wrote:


yeah, the default IS ssh, rsh-no-mo.  what i want is to cron stuff
exactly like Mathews's ideas.   then at least, i'll have VERY recent
synchronization   iow:help me get this right; please.

i have spent hours reading about rsync.  my printserver (tao) is busted;
the man pages are horrible, c.


FWIW, this webapge explains the process quite well:
http://www.jdmz.net/ssh/

Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
The University of Texas at Dallas
http://www.utdallas.edu/ir/security/


Where Are All These Files Located?

2006-09-04 Thread Ted Johnson
Hi; 
In installing logcheck, I read the following information: 
 
BSD and FreeBSD: You should go to the /etc directory and edit 
the /etc/daily, /etc/weekly, and /etc/monthly scripts and change the 
'rotate()' script function to change the log permissions on rotation. 
Simply change the line: 
 
cp /dev/null $file; chmod 644 $file 
 
To: 
 
cp /dev/null $file; chmod 600 $file 
 
(The above is for BSDI 2.x, BSDI 3.x uses an external rotate 
function now, just change the mode sent to it from 644 to 600 
and you'll be OK. FreeBSD will be similiar to the BSDI 2.x script) 
 
 
However, these files do not exist (at least in FreeBSD 6.1). What should  I 
edit instead? Or, what does just change the mode sent to it mean? 
TIA, 
Ted
 2

-
Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small 
Business.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Fiber Channel, Emulex

2006-09-04 Thread Dan Nelson
In the last episode (Sep 04), Chris Knipe said:
 Hmm.
 
 Absolutely NO fiber channel adapters listed on the supported hardware?? :-(

Multiple LSI Logic cards are supported by the mpt driver, as are many
Qlogic cards by the isp driver.

http://www.freebsd.org/releases/6.1R/hardware-i386.html

The isp section doesn't actually say fibre anywhere so it doesn't
show up in a text search.

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


Where Are All These Files Located?

2006-09-04 Thread Robert Huff

Ted Johnson writes:

  BSD and FreeBSD: You should go to the /etc directory and edit 
  the /etc/daily, /etc/weekly, and /etc/monthly scripts and change the 
  'rotate()' script function to change the log permissions on
  rotation.

find -x / -name daily should give you the answer.



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


Re: Where Are All These Files Located?

2006-09-04 Thread Ted Johnson
Robert Huff [EMAIL PROTECTED] wrote: 
Ted Johnson writes:

  BSD and FreeBSD: You should go to the /etc directory and edit 
  the /etc/daily, /etc/weekly, and /etc/monthly scripts and change the 
  'rotate()' script function to change the log permissions on
  rotation.

 find -x / -name daily should give you the answer.

Yeah, I tried that. It didn't work. Files must be referencing something else, 
by different name. Any other ideas?
Ted


-
How low will we go? Check out Yahoo! Messenger’s low  PC-to-Phone call rates.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Where Are All These Files Located?

2006-09-04 Thread pauls
--On September 4, 2006 9:42:25 AM -0700 Ted Johnson 
[EMAIL PROTECTED] wrote:



Hi;
In installing logcheck, I read the following information:

BSD and FreeBSD: You should go to the /etc directory and edit
the /etc/daily, /etc/weekly, and /etc/monthly scripts and change the
'rotate()' script function to change the log permissions on rotation.
Simply change the line:

/etc/periodic/daily, /etc/periodic/weekly, /etc/periodic/monthly.  See man 
(8) periodic.  Also see man (5) pqqeriodic.conf.


However, BSD doesn't need to use logcheck and rotate (which are linux 
creations), because it rotates logfiles using syslogd and newsyslog.conf. 
See man (8) syslogd, man (8) newsyslog and man (5) newsyslog.conf.


Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
The University of Texas at Dallas
http://www.utdallas.edu/ir/security/


Re: solaris

2006-09-04 Thread Chad Leigh -- Shire.Net LLC


On Sep 4, 2006, at 8:57 AM, dick hoogendijk wrote:


On 03 Sep Chad Leigh -- Shire.Net LLC wrote:


I am not sure about installing Solaris into an existing partition.


I remember one of the FBSD's (a RC, but still) destroying my partition
table. That's the reason I ask. I know that I don't have to use the  
main
option (that's for the whole disk). But if there are no problems  
know of
with the sol installer, than I'm a little less worried. I have no  
space to

backup my XP and FBSD disk parts (at the moment).




btw there is a Solaris X86 mail list at http://groups.yahoo.com/ 
group/solarisx86/


They might be better able to help out in determining the danger of  
installing in your situation.


best
Chad

---
Chad Leigh -- Shire.Net LLC
Your Web App and Email hosting provider
chad at shire.net



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


RE: where is my adduser.conf file ?

2006-09-04 Thread Bob
Its in /etc
But if I remember correctly you have to run adduser one time  to select
default values and create the default conf file.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of azhar freebsd
Sent: Monday, September 04, 2006 12:04 PM
To: freebsd-questions@freebsd.org
Subject: where is my adduser.conf file ?

hi all
i am new abt freebsd .
it may be very simple problem but i am lost . help me !



[EMAIL PROTECTED]/etc# uname -a
FreeBSD mine.freebsd.org 6.0-RELEASE FreeBSD 6.0-RELEASE #1: Wed Aug 30
13:08:32 JST 2006
[EMAIL PROTECTED]:/usr/src/sys/i386/compile/MYGENRIC-001
i386

[EMAIL PROTECTED]/etc# whereis adduser.conf
adduser.conf:
[EMAIL PROTECTED]/etc#

azhar
___
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: calendar

2006-09-04 Thread RW
On Sunday 03 September 2006 18:01, Michael S wrote:
 Good day all.

 I have a question about calendar.usholidays. In the man page for
 calendar it says that this file must be updated every year. Is it
 enough just to cvsup, buildworld and installworld?
 I am following RELENG_6_1.

So am I, and my copy of  /usr/share/calendar/calendar.usholiday has  CVS 
comments that suggest it dates from 2003. Most of the entries are perpetual 
though.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: solaris

2006-09-04 Thread Bill-S
At Mon, 4 Sep 2006 it looks like Chad Leigh -- Shire.Net LLC composed:

 
 On Sep 4, 2006, at 8:57 AM, dick hoogendijk wrote:
 
  On 03 Sep Chad Leigh -- Shire.Net LLC wrote:
  
   I am not sure about installing Solaris into an existing partition.
  
  I remember one of the FBSD's (a RC, but still) destroying my partition
  table. That's the reason I ask. I know that I don't have to use the main
  option (that's for the whole disk). But if there are no problems know of
  with the sol installer, than I'm a little less worried. I have no space
  to
  backup my XP and FBSD disk parts (at the moment).
  
 
 
 btw there is a Solaris X86 mail list at http://groups.yahoo.com/
 group/solarisx86/
 
 They might be better able to help out in determining the danger of installing
 in your situation.

A second drive of course would somewhat give some relief for this
install.

I have, one a few of my boxes here, a BIOS enabled F8 key for
selecting which disk to boot off of.  AMI I believe is the BIOS
type.


-- 
   Bill Schoolcraft, PO Box 210076, San Francisco, CA 94121
 
  http://wiliweld.com
 
If happiness is in your destiny, you need not be in a hurry.


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


CB

2006-09-04 Thread Conrad Bellman

Hello,

I have downloaded the two disks needed for BSD, apon loading the firs disk,
I am stuck with the command list, and unable to use it, due to can't find
kernel   I tried loading kernel, and other commands but always get the no
kernel error, did I download Disk 1  2 incorrectly ?

I turned computer off , then inserted my Disk 1 and started my computer, but
what i told you previous is what occurred,

,can you help ?
Thanks for your time and patients
CB
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Unusual Network-Performance with outbound traffic

2006-09-04 Thread Martin Werner
Hi,

I'm running a FreeBSD 6.0-RELEASE Server with a  

fxp0: Intel 82559ER Pro/100 Ethernet port 0x2000-0x203f mem
0xf412-0xf4120fff,0xf410-0xf411 irq 9 at device 8.0 on pci1

and have some rather unusual network performance issue with outbound
traffic. Using fixed IP-Adresses, no special flags set with network
adapters.

Using regular FTP-Client putting data to another server performance is OK
(10,3MB/sec - wire limit)

Using wput with the same file and same target, throughput is 2,7MB/ec

And finally: Using a mount_smbfs mount and cp'ing the data there, we are
down to 184KB/sec

Fetching that file performance is quite OK (Regular FTP-Client: 10MB/sec,
fetch: 6,3MB/sec, cp is at 5,8MB/sec

Some parms' (all at default)

net.inet.tcp.sendspace: 32768
net.inet.tcp.recvspace: 65536
net.smb.version: 103006
net.smb.tcprcvbuf: 65535
net.smb.tcpsndbuf: 65535

Thanks in advance for any hints

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


RE: CB

2006-09-04 Thread Bob
Since 5.2 version FreeBSD has problems installing on older PC's, pre-2000 or
maybe pre-2002.
Move HD to newer PC do install and return to older pc and all is well.
You could all ways try installing version 4.11 and if that works then you
know for sure your pc is legacy version.

If you used FreeBSD box to download install disk you should run checksun to
see if download was good.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Conrad Bellman
Sent: Monday, September 04, 2006 2:06 PM
To: freebsd-questions@freebsd.org
Subject: CB

Hello,

I have downloaded the two disks needed for BSD, apon loading the firs disk,
I am stuck with the command list, and unable to use it, due to can't find
kernel   I tried loading kernel, and other commands but always get the no
kernel error, did I download Disk 1  2 incorrectly ?

I turned computer off , then inserted my Disk 1 and started my computer, but
what i told you previous is what occurred,

,can you help ?
Thanks for your time and patients
CB
___
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: HP-1022 laser printer

2006-09-04 Thread Matteo Pillon
Hi, Andriy.

On Sat, Sep 02, 2006 at 12:09:09PM -0700, Andriy Babiy wrote:
 Could anybody advise me on the HP-1022 laser printer? Does anyone have this 
 model working on the FreeBSD? I'm going to buy it, therefore I wanted to 
 check if there are any issues/problems about it. I found postings about USB 
 port busy problem, but guys didn't specify clearly the platform they used.

I get this error, too (HP LJ-1022).
Under CUPS, it says: USB port busy; will retry in 30 seconds
When trying to send something directly:
# echo something  /dev/ulpt0
[after a while...]
bash: /dev/ulpt0: Device busy

I have it running under Linux, with CUPS and foo2zjs.

Bye.

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


Re: Word processor for 6.1

2006-09-04 Thread Perry Hutchison
  Anyone know where I can find a working word processor for 6.1?
  AbiWord and OpenOffice both require Gnome, which won't build.
 
 What do you mean: which won't build? No problems here - I recently 
 compiled both. They don't require the full gnome package.

Both of them (and also Dia) require Glib, which won't build for me.
I posted details of the failure to freebsd-gnome a day or two ago.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Word processor for 6.1

2006-09-04 Thread Perry Hutchison
  Anyone know where I can find a working word processor for 6.1?
...
 You can go to http://porting.openoffice.org/freebsd/ and download 
 openoffice2.0.3 pre-built binaries from there. I would suggest
 that, rather than trying to build it.

Thanks for the pointer.  That is the sort of thing I was hoping for.

 You're probably going to need java. I suggest getting the pre-built
 binary for diablo-jdk-1.5.0.07.00, you can get it here: 
   http://www.freebsdfoundation.org/downloads/java.shtml

The diablo port appeared to build OK as a dependency :) but I should
probably d/l this one also just in case.

 Try to save yourself as much pain as possible. Building openoffice
 from ports tends to fall in the category of pain.

So it would seem :(

I thought the whole point of the Ports Collection was to avoid this
sort of problem.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Word processor for 6.1

2006-09-04 Thread RW
On Monday 04 September 2006 22:55, Perry Hutchison wrote:
   Anyone know where I can find a working word processor for 6.1?

 ...

  You can go to http://porting.openoffice.org/freebsd/ and download
  openoffice2.0.3 pre-built binaries from there. I would suggest
  that, rather than trying to build it.

 Thanks for the pointer.  That is the sort of thing I was hoping for.

  You're probably going to need java. I suggest getting the pre-built
  binary for diablo-jdk-1.5.0.07.00, you can get it here:
  http://www.freebsdfoundation.org/downloads/java.shtml

 The diablo port appeared to build OK as a dependency :) but I should
 probably d/l this one also just in case.

  Try to save yourself as much pain as possible. Building openoffice
  from ports tends to fall in the category of pain.

 So it would seem :(

 I thought the whole point of the Ports Collection was to avoid this
 sort of problem.

I find it's a reasonably reliable build these days. And once it's installed it 
doesn't really matter all that much if the occasional build fails, since you 
still have the previous version installed.  
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Two Dell PE1850s keep locking up...

2006-09-04 Thread Alexandre Biancalana

Hi !

 I´m having the same problem. My machine have 2GB of ram and 1 one
processor, connected to a PowerVault 220 (Storage) and a PowerVault 110T
(LTO 2 Tape Drive).

Copyright (c) 1992-2006 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
   The Regents of the University of California. All rights reserved.
FreeBSD 6.1-STABLE #0: Fri Aug 11 15:30:34 BRT 2006
   [EMAIL PROTECTED]:/usr/src/sys/i386/compile/Jones
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Intel(R) Xeon(TM) CPU 3.60GHz (3591.25-MHz 686-class CPU)
 Origin = GenuineIntel  Id = 0xf43  Stepping = 3

Features=0xbfebfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SS
E2,SS,HTT,TM,PBE
 Features2=0x659dSSE3,RSVD2,MON,DS_CPL,EST,TM2,CNTX-ID,CX16,b14
 AMD Features=0x2010NX,LM
 Logical CPUs per core: 2
real memory  = 2147221504 (2047 MB)
avail memory = 2100518912 (2003 MB)
ACPI APIC Table: DELL   PE BKC  
ioapic0: Changing APIC ID to 2
ioapic1: Changing APIC ID to 3
ioapic1: WARNING: intbase 32 != expected base 24
ioapic2: Changing APIC ID to 4
ioapic2: WARNING: intbase 64 != expected base 56
ioapic0 Version 2.0 irqs 0-23 on motherboard
ioapic1 Version 2.0 irqs 32-55 on motherboard
ioapic2 Version 2.0 irqs 64-87 on motherboard
kbd1 at kbdmux0
acpi0: DELL PE BKC on motherboard
acpi0: Power Button (fixed)
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x808-0x80b on acpi0
cpu0: ACPI CPU on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pcib1: ACPI PCI-PCI bridge at device 2.0 on pci0
pci1: ACPI PCI bus on pcib1
pcib2: ACPI PCI-PCI bridge at device 0.0 on pci1
pci2: ACPI PCI bus on pcib2
ahc0: Adaptec 3960D Ultra160 SCSI adapter port 0xec00-0xecff mem
0xfe9ff000-0xfe9f irq 39 at device 12.0 on pci2
ahc0: [GIANT-LOCKED]
aic7899: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs
ahc1: Adaptec 3960D Ultra160 SCSI adapter port 0xe800-0xe8ff mem
0xfe9fe000-0xfe9fefff irq 36 at device 12.1 on pci2
ahc1: [GIANT-LOCKED]
aic7899: Ultra160 Wide Channel B, SCSI Id=7, 32/253 SCBs
amr0: LSILogic MegaRAID 1.53 mem
0xf81f-0xf81f,0xfe9c-0xfe9d irq 46 at device 14.0 on pci2
amr0: delete logical drives supported by controller
amr0: LSILogic PERC 4e/Si Firmware 521S, BIOS H430, 256MB RAM
pcib3: ACPI PCI-PCI bridge at device 0.2 on pci1
pci3: ACPI PCI bus on pcib3
amr1: LSILogic MegaRAID 1.53 mem 0xf80f-0xf80f irq 37 at device
11.0 on pci3
amr1: delete logical drives supported by controller
amr1: LSILogic PERC 4/DC Firmware 351S, BIOS 1.10, 128MB RAM
pcib4: ACPI PCI-PCI bridge at device 4.0 on pci0
pci4: ACPI PCI bus on pcib4
pcib5: ACPI PCI-PCI bridge at device 5.0 on pci0
pci5: ACPI PCI bus on pcib5
pcib6: ACPI PCI-PCI bridge at device 0.0 on pci5
pci6: ACPI PCI bus on pcib6
em0: Intel(R) PRO/1000 Network Connection Version - 6.0.5 port
0xdcc0-0xdcff mem 0xfe5e-0xfe5f irq 64 at device 7.0
on pci6
em0: Ethernet address: 00:14:22:16:ba:37
em0: [FAST]
pcib7: ACPI PCI-PCI bridge at device 0.2 on pci5
pci7: ACPI PCI bus on pcib7
em1: Intel(R) PRO/1000 Network Connection Version - 6.0.5 port
0xccc0-0xccff mem 0xfe3e-0xfe3f irq 65 at device 8.0
on pci7
em1: Ethernet address: 00:14:22:16:ba:38
em1: [FAST]
pcib8: ACPI PCI-PCI bridge at device 6.0 on pci0
pci8: ACPI PCI bus on pcib8
uhci0: Intel 82801EB (ICH5) USB controller USB-A port 0xace0-0xacff irq 16
at device 29.0 on pci0
uhci0: [GIANT-LOCKED]
usb0: Intel 82801EB (ICH5) USB controller USB-A on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
uhci1: Intel 82801EB (ICH5) USB controller USB-B port 0xacc0-0xacdf irq 19
at device 29.1 on pci0
uhci1: [GIANT-LOCKED]
usb1: Intel 82801EB (ICH5) USB controller USB-B on uhci1
usb1: USB revision 1.0
uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered
uhci2: Intel 82801EB (ICH5) USB controller USB-C port 0xaca0-0xacbf irq 18
at device 29.2 on pci0
uhci2: [GIANT-LOCKED]
usb2: Intel 82801EB (ICH5) USB controller USB-C on uhci2
usb2: USB revision 1.0
uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub2: 2 ports with 2 removable, self powered
ehci0: Intel 82801EB/R (ICH5) USB 2.0 controller mem 0xfeb0-0xfeb003ff
irq 23 at device 29.7 on pci0
ehci0: [GIANT-LOCKED]
usb3: EHCI version 1.0
usb3: companion controllers, 2 ports each: usb0 usb1 usb2
usb3: Intel 82801EB/R (ICH5) USB 2.0 controller on ehci0
usb3: USB revision 2.0
uhub3: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub3: 6 ports with 6 removable, self powered
uhub4: vendor 0x413c product 0xa001, class 9/0, rev 2.00/0.00, addr 2
uhub4: multiple transaction translators
uhub4: 2 ports with 2 removable, self powered
ukbd0: ATEN ATEN Composite, rev 1.10/1.00, addr 3, iclass 3/1
kbd2 at ukbd0
ums0: ATEN ATEN Composite, 

Re: Word processor for 6.1

2006-09-04 Thread Donald J. O'Neill
On Monday 04 September 2006 13:55, Perry Hutchison wrote:

  Try to save yourself as much pain as possible. Building openoffice
  from ports tends to fall in the category of pain.

 So it would seem :(

 I thought the whole point of the Ports Collection was to avoid this
 sort of problem.


That's the idea, and in most cases that's true. The ports system just keeps 
getting better and better. However,there are some ports that are just a pain 
to build and install. Either they can be tricky to do, they take a really 
long time, or both. OpenOffice falls in there. I'll avoid building it and use 
a pre-built package. After you install it, you'll find that it shows up for 
an update because two lines were swapped in the Makefile. Since I don't care 
to accidentally be rebuilding openoffice because of this, I have +IGNOREME 
in /var/db/pkg/en-openoffice.org-US-2.0.3, it doesn't show up as needing an 
upgrade.

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


Re: Various package/ports problems

2006-09-04 Thread Dr. Jennifer Nussbaum

Kris Kennaway [EMAIL PROTECTED] wrote: On Mon, Sep 04, 2006 at 04:52:08AM 
-0700, Dr. Jennifer Nussbaum wrote:

  For example if i try to run portversion i get:
  
undefined method `each' for nil:NilClass
/usr/local/sbin/portversion:239: [BUG] Bus Error
  
  from Ruby (ruby 1.8.5 is up to date on the system).
 
 : pkgdb -f
 
 ~ $ sudo pkgdb -f
 ~ $ portversion
 undefined method `each' for nil:NilClass
 /usr/local/sbin/portversion:239: [BUG] Bus Error
 ruby 1.8.5 (2006-08-25) [i386-freebsd4]
 
 Abort trap (core dumped)
 ~ $

::Check the manpage, probably I meant pkgdb -fu

Sorry, i dont understand what im checking hte manpage to
have it do. Running pkgdb -fu does rebuild the package 
database, but i get the same Bus Error thing from Ruby
as above.

  If i try to run pkg_info I quickly get:
  
pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*'
 
 : Deinstall the package that was built for a later version of 
 : FreeBSD.
 
 KrisHow do i tell which this is? Most of this box seems to be compiled
 from ports, not installed packages. apache+ipv6 is not installed.
 
 ~ $ pkg_info
 ImageMagick-nox11-6.0.2.7 Image processing tools
 analog-6.0_1,1  An extremely fast program for analysing WWW logfiles
 pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*'
 ~

::grep -r @conflicts /var/db/pkg and remove all listed packages.

Kris
Which listed packages? The output of this grep looks like:
/var/db/pkg/mysql-server-4.1.20/+CONTENTS:@conflicts mysql-server-3.*
/var/db/pkg/mysql-server-4.1.20/+CONTENTS:@conflicts mysql-server-4.[02-9].*
/var/db/pkg/mysql-server-4.1.20/+CONTENTS:@conflicts mysql-server-5.*

But i dont want to remove mysql-server-4.1.20, because this seems
to be the version that is actively running on this machine, and i dont
want to disable it. Same for apache+mod_ssl, which accounts for
alot of the other conflicts.

Also, when i try to delete one of the ports that seemed less
critical, even that didnt work:
~ $ sudo pkg_delete -f jade-1.2.1_9
pkg_delete: package 'jade-1.2.1_9' is required by these other packages
and may not be deinstalled (but I'll delete it anyway):
sgmlformat-1.7_2
pkg_delete: read_plist: bad command '@conflicts sp-1.*'
~

...and jade-1.2.1_9 is still there.

Thank you again for your continued attention, Kris.

Jen



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


requesting advice on freebsd as vmware guest

2006-09-04 Thread Peter
Hi,
I have XP (3 GHz Pentium and 1.5 MB RAM) running at work and would like
to have access to a FBSD system within it.  I am not sure which vmware
product to install.  I believe vmware server is good if you need remote
connections (something I do not require at this point).  There is also
workstation and player.  So I'm looking for advice on the basic recipe
as well as any common pitfalls.
Peter

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


Re: Word processor for 6.1

2006-09-04 Thread Jon Drews

On 9/4/06, Erik Norgaard [EMAIL PROTECTED] wrote:

Perry Hutchison wrote:
 Anyone know where I can find a working word processor for 6.1?
 AbiWord and OpenOffice both require Gnome, which won't build.



There is a commercial program, textmaker (www.softmaker.com), which I
have found much better than Abiword in handling word documents, but I
doubt it supports OpenDocument.



I'll second the nomination for TextMaker. It works quite well. I run
it under Linux emulation.

I believe the next version will have support for OpenOffice
documents. IIRC, if you buy the current version, then you can upgrade
to the 2006 version for free.

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


Re: Word processor for 6.1

2006-09-04 Thread Nikolas Britton

On 9/4/06, Perry Hutchison [EMAIL PROTECTED] wrote:

Anyone know where I can find a working word processor for 6.1?
AbiWord and OpenOffice both require Gnome, which won't build.
richtext builds OK, but as soon as I try to select bold it
writes 4 lines to stderr and drops core:

  Message backtrace:
   bold
   bold
  OutOfBounds: offset 0, size 0
___



KOffice 1.5 has OpenDocument support. What's in your /etc/make.conf
file and what part of gnome won't build?

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


load balancing nat

2006-09-04 Thread Subhro

Hello folks,

I have a strange problem on hand. I have got two internal LANs and one
ISP link. I am trying to share the link between the two internal LANs
and do a load balancing between the two. The rules I am using are:

nat on $ext_if from { $int1_if:network, $int2_if:network } to any -
$ext_if round-robin

where $int1_if, $int2_if are two internal interfaces and $ext_if is
the external interface.

However my observation is systems using $int_2 as gateway loose
connectivity randomly. Also the TTL values for the pings to the
gateway change to 150 from 64 as soon as the system looses
connectivity.

The systems in the LAN are all windows xp boxes.

Could anyone please tell me where I am going wrong?

Thanks and Best Regards
Subhro

--
Subhro Kar
Security Engineer
iViZ Techno Solutions Pvt. Ltd.
Dhanshree Bldg, 1st Floor
Plot XI-16, Sector V
Salt Lake City
700091
India
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Where Are All These Files Located?

2006-09-04 Thread Matthew Seaman
Ted Johnson wrote:
 Robert Huff [EMAIL PROTECTED] wrote: 
 Ted Johnson writes:
 
  BSD and FreeBSD: You should go to the /etc directory and edit 
  the /etc/daily, /etc/weekly, and /etc/monthly scripts and change the 
  'rotate()' script function to change the log permissions on
  rotation.
 
  find -x / -name daily should give you the answer.
 
 Yeah, I tried that. It didn't work. Files must be referencing something else, 
 by different name. Any other ideas?

They don't exist by default any more, but if you *create*
/etc/{daily,weekly,monthly}.local, then they will get run as part of the
appropriate periodic tasks.  See:

 /etc/periodic/daily/999.local
 /etc/periodic/weekly/999.local 
 /etc/periodic/monthly/999.local

 grep _local /etc/defaults/periodic.conf

However, why wouldn't you just setup /etc/newsyslog.conf to rotate your
logfiles?  Much simpler and cleaner.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
  Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


Re: Various package/ports problems

2006-09-04 Thread Kris Kennaway
On Mon, Sep 04, 2006 at 02:00:20PM -0700, Dr. Jennifer Nussbaum wrote:
 
 Kris Kennaway [EMAIL PROTECTED] wrote: On Mon, Sep 04, 2006 at 04:52:08AM 
 -0700, Dr. Jennifer Nussbaum wrote:
 
   For example if i try to run portversion i get:
   
 undefined method `each' for nil:NilClass
 /usr/local/sbin/portversion:239: [BUG] Bus Error
   
   from Ruby (ruby 1.8.5 is up to date on the system).
  
  : pkgdb -f
  
  ~ $ sudo pkgdb -f
  ~ $ portversion
  undefined method `each' for nil:NilClass
  /usr/local/sbin/portversion:239: [BUG] Bus Error
  ruby 1.8.5 (2006-08-25) [i386-freebsd4]
  
  Abort trap (core dumped)
  ~ $
 
 ::Check the manpage, probably I meant pkgdb -fu
 
 Sorry, i dont understand what im checking hte manpage to
 have it do. Running pkgdb -fu does rebuild the package 
 database, but i get the same Bus Error thing from Ruby
 as above.

Running which version of portupgrade?  Also try 'cd /usr/ports; make
fetchindex' first.

   If i try to run pkg_info I quickly get:
   
 pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*'
  
  : Deinstall the package that was built for a later version of 
  : FreeBSD.
  
  KrisHow do i tell which this is? Most of this box seems to be compiled
  from ports, not installed packages. apache+ipv6 is not installed.
  
  ~ $ pkg_info
  ImageMagick-nox11-6.0.2.7 Image processing tools
  analog-6.0_1,1  An extremely fast program for analysing WWW logfiles
  pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*'
  ~
 
 ::grep -r @conflicts /var/db/pkg and remove all listed packages.
 
 Kris
 Which listed packages? The output of this grep looks like:
 /var/db/pkg/mysql-server-4.1.20/+CONTENTS:@conflicts mysql-server-3.*
 /var/db/pkg/mysql-server-4.1.20/+CONTENTS:@conflicts mysql-server-4.[02-9].*
 /var/db/pkg/mysql-server-4.1.20/+CONTENTS:@conflicts mysql-server-5.*
 
 But i dont want to remove mysql-server-4.1.20, because this seems
 to be the version that is actively running on this machine, and i dont
 want to disable it. Same for apache+mod_ssl, which accounts for
 alot of the other conflicts.

You need to recognize that you've got the system into a damaged state
already, so it's going to take further intrusive work to repair it.

 Also, when i try to delete one of the ports that seemed less
 critical, even that didnt work:
 ~ $ sudo pkg_delete -f jade-1.2.1_9
 pkg_delete: package 'jade-1.2.1_9' is required by these other packages
 and may not be deinstalled (but I'll delete it anyway):
 sgmlformat-1.7_2
 pkg_delete: read_plist: bad command '@conflicts sp-1.*'
 ~
 
 ...and jade-1.2.1_9 is still there.
 
 Thank you again for your continued attention, Kris.

What happens if you try to reinstall it from the port, setting
FORCE_PKG_REGISTER?

Kris


pgpNESpPRao4Z.pgp
Description: PGP signature


Re: Word processor for 6.1

2006-09-04 Thread Erik Nørgaard
Perry Hutchison wrote:
 Anyone know where I can find a working word processor for 6.1?
 AbiWord and OpenOffice both require Gnome, which won't build.
 What do you mean: which won't build? No problems here - I recently 
 compiled both. They don't require the full gnome package.
 
 Both of them (and also Dia) require Glib, which won't build for me.
 I posted details of the failure to freebsd-gnome a day or two ago.

Looking at that post it seems something failed when you tried to update
your ports collection.

I'd suggest you delete it (keep distfiles though so you won't have to
fetch again), unpack again the ports.tgz, then install cvsup and update
the ports collection using that.

If you installed programs from packages when you installed the system,
you may get problems with version conflicts installing from an updated
ports collection - this happens usually when the last release is getting
old. In that case, maybe you should clean out the system, deinstall all
packages, update ports and start again. This takes time  but given
that 6.2 is coming up.

Cheers, Erik
-- 
Ph: +34.666334818  web: http://www.locolomo.org
X.509 Certificate: http://www.locolomo.org/crt/8D03551FFCE04F0C.crt
Key ID: 69:79:B8:2C:E3:8F:E7:BE:5D:C3:C3:B1:74:62:B8:3F:9F:1F:69:B9


smime.p7s
Description: S/MIME Cryptographic Signature


Kbtv application: I'm looking for someone who wants to take over maintainership/development

2006-09-04 Thread Danny Pansters
FYI:

Kbtv is a small TV app for FreeBSD/KDE. It works with Brooktree/Conexant and 
with Philips SAA713x based analog TV cards (I actually recommend using the 
latter). AFAIK, it is the only properly working app that uses SAA (and unlike 
bktr, saa never freezes or panics). Also supports webcams that work with the 
pwcbsd driver. The tarball and some blahblah are now hosted at sourceforge 
(also still at my website).

I also put a recruitment message on SF: 
http://sourceforge.net/people/viewjob.php?group_id=176370job_id=26247

I want to withdraw from this project, and would love to pass it on to one or 
more people who are interested in this kind of app, rather than just 
abandoning it. There is a port for it as well, it would seem logical to hand 
over maintainership to that as well. It is in a good working state.

SF project page for kbtv: http://sourceforge.net/projects/kbtv
My web page for kbtv: http://freebsd.ricin.com/kbtv
Relevant buzzwords: Python, PyKDE, SWIG, SDL, C, bktr, saa, pwc

If interested, let me know. I will gladly help you to get started.

I crossposted to have maximum exposure, if replying and CC'ing mailing list, 
please CC to multimedia@ only.


Cheers,

Dan

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


portmanager port upgrade question

2006-09-04 Thread stan
I'm trying to upgrade a machine, which was built only about 2 weeks agao.
portmanager reprts the following:


portmanager 0.4.1_6
FreeBSD brown.fas.com 6.1-STABLE FreeBSD 6.1-STABLE #11: Sun Sep  3
13:33:28 EDT 2006
 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/BROWN  i386
 
 autoConflicts  0  autoMoved  0
 backUp 0  buildDependsAreLeaves  0
 forced 0  interactive0
 log1  pmMode 0
 pristine   0  resume 0
 
 Mon Sep  4 17:31:36 2006
  linux_base-8-8.0_16 /emulators/linux_base-8
  marked IGNORE
  port not installed/updated

  Mon Sep  4 17:31:37 2006
  linux_base-8-8.0_16
  /emulators/linux_base-8
  marked IGNORE
  por t not installed/updated


Can anyon tell me why this port is marked ignore? Has it been superseeded?

-- 
Unix is very simple, but it takes a genius to understand the simplicity.
(Dennis Ritchie)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portmanager port upgrade question

2006-09-04 Thread Alistair Sutton

On 04/09/06, stan [EMAIL PROTECTED] wrote:

I'm trying to upgrade a machine, which was built only about 2 weeks agao.
portmanager reprts the following:


portmanager 0.4.1_6
FreeBSD brown.fas.com 6.1-STABLE FreeBSD 6.1-STABLE #11: Sun Sep  3
13:33:28 EDT 2006
 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/BROWN  i386
 
 autoConflicts  0  autoMoved  0
 backUp 0  buildDependsAreLeaves  0
 forced 0  interactive0
 log1  pmMode 0
 pristine   0  resume 0
 
 Mon Sep  4 17:31:36 2006
  linux_base-8-8.0_16 /emulators/linux_base-8
  marked IGNORE
  port not installed/updated

  Mon Sep  4 17:31:37 2006
  linux_base-8-8.0_16
  /emulators/linux_base-8
  marked IGNORE
  por t not installed/updated


Can anyon tell me why this port is marked ignore? Has it been superseeded?



From the port's Makefile:


DEPRECATED= unsupported by upstream, no security support anymore
EXPIRATION_DATE=2006-09-01
IGNORE= ${DEPRECATED}

Al
--
WWW: http://ajs.no-dns-yet.org.uk
GPG/PGP: http://ajs.no-dns-yet.org.uk/pubkey.gpg
___
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 Close Ports (OT?)

2006-09-04 Thread Ted Johnson
Well, I did that, and studied other documents as well, and have packet filters 
running right now. I also did a search of the document you suggested and it 
doesn't even have the word close in it, therefore, it would appear to not 
address the issue. From your reply, I'm missing something obvious here. But 
would you point it out anyway?
Thanks,
Ted3

Travis H. [EMAIL PROTECTED] wrote: On 9/4/06, Ted Johnson  wrote:
 I have many ports open for various functions, email, ftp, squid, pound,  
 various
 instances of zope, etc. Of course, all of them are libel to be  attacked.
 What does one do?

There's this thing called pf, you should really look into it.  Start with:
man pf
Then try reading the pf FAQ.

If that is too confusing, google for a basic tutorial on network security.
-- 
If you're not part of the solution, you're part of the precipitate.
Unix guru for rent or hire -- http://www.lightconsulting.com/~travis/
GPG fingerprint: 9D3F 395A DAC5 5CCC 9066  151D 0A6B 4098 0C55 1484



-
Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls.  Great rates 
starting at 1cent;/min.
___
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 Close Ports (OT?)

2006-09-04 Thread Travis H.

On 9/4/06, Ted Johnson [EMAIL PROTECTED] wrote:

I also did a search of the document you suggested
and it doesn't even have the word close in it, therefore, it would appear
to not address the issue.  From your reply, I'm missing something obvious
here. But would you point it out anyway?


Fair enough.

It's because dropping packets before they reach the port makes it
irrelevant whether they are closed (that is, have no listening daemon)
or not.

If a port scanner says the port is closed, it generally means that it got
an ICMP unreachable (UDP) or a TCP reset (TCP) back.  This is helpful
to attackers as they know quickly that the port is useless to them,
and that the target is online.

On the other hand, if you drop the incoming packets, the attacker
cannot infer whether you are online, and most port scanners wait
for some period and then decide that the target is not going to
respond, so it slows down single-threaded scans.

In general, it is better to drop than to reject to untrusted networks,
since the scanners are generally hostile.  Internal communication on
your LAN can usually be rejected, because internal users are generally
not hostile.  This means that if they try to access a service that isn't
running, they get a response right away that they made a mistake,
instead of waiting for a response which will never come.

Furthermore, a closed and an open port permit pretty good OS
fingerprinting.  I think that if you drop instead of reject, then an
attacker cannot narrow down the OS as well.

In summary:  The way to close a port is to not run a program which
listens on that port.  This can be simulated by rejecting packets at
the firewall.  The way to block a port is with packet filters, and there's
no way to do that without one (unless you disable reject messages
at the kernel level).
--
If you're not part of the solution, you're part of the precipitate.
Unix guru for rent or hire -- http://www.lightconsulting.com/~travis/
GPG fingerprint: 9D3F 395A DAC5 5CCC 9066  151D 0A6B 4098 0C55 1484
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: solaris

2006-09-04 Thread backyard


--- Bill-S [EMAIL PROTECTED] wrote:

 At Mon, 4 Sep 2006 it looks like Chad Leigh --
 Shire.Net LLC composed:
 
  
  On Sep 4, 2006, at 8:57 AM, dick hoogendijk wrote:
  
   On 03 Sep Chad Leigh -- Shire.Net LLC wrote:
   
I am not sure about installing Solaris into an
 existing partition.
   
   I remember one of the FBSD's (a RC, but still)
 destroying my partition
   table. That's the reason I ask. I know that I
 don't have to use the main
   option (that's for the whole disk). But if there
 are no problems know of
   with the sol installer, than I'm a little less
 worried. I have no space
   to
   backup my XP and FBSD disk parts (at the
 moment).
   
  
  
  btw there is a Solaris X86 mail list at
 http://groups.yahoo.com/
  group/solarisx86/
  
  They might be better able to help out in
 determining the danger of installing
  in your situation.
 
 A second drive of course would somewhat give some
 relief for this
 install.
 
 I have, one a few of my boxes here, a BIOS enabled
 F8 key for
 selecting which disk to boot off of.  AMI I believe
 is the BIOS
 type.
 
 
 -- 

I would recommend the second drive option. I have
attempted installing Solaris 10 on multiple computers
and all if ever seems to do is corrupt the drive on
me. Once I got it to boot up and go into their version
of X windows. After installing the Bonus pack with KDE
and such never turned on again. Very frustrating.

good luck, I've given up until I have a Sun Box to
play with.

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


Re: UFS2 fsck Question (semantics of -p)

2006-09-04 Thread Can Sar
We ran our experiment on top of a very simple RAM disk which does not  
have any caches or anything of that sort.


The dmesg log is at http://keeda.stanford.edu/dmesg

The resultant images are at:
http://keeda.stanford.edu/ufs-umount-image
http://keeda.stanford.edu/ufs-mount-sync-image


If you run fsck -p on them, fsck will not be able to recover, while  
fsck without the -p option will be able to.


Can


On Aug 29, 2006, at 9:55 AM, Chuck Swiger wrote:


Can Sar wrote:
[ ... ]
Would you consider it an error if the -p option does not fix  
inconsistencies caused by a simple power failure, without any  
hardware or software corruption?


You're asking an interesting question, but the issue of data  
integrity depends not only on the software which comprises the OS,  
but also on the hardware being used.


In particular, the system depends upon the hard drives to reliably  
report when data being written actually has been; SCSI drives,  
using tagged command queuing, especially in conjunction with a  
battery-backup which ensures the drive stays up long enough to  
flush it's write cache even if system power is removed, will tend  
to fare pretty well.


IDE drives, by contrast, have a bad habit of lying about whether  
data has actually been written to the disk itself rather than  
simply making it to the write cache on the drive.  (Such drives  
ignore the ATA FLUSH CACHE command, specificly.)


In other words, showing that a filesystem can become inconsistent  
in a fashion that fsck -p cannot correct is interesting and a  
concern regardless of the circumstances, but showing it in cases  
where you are using battery-backed drives and/or SCSI rather than  
IDE is a lot more meaningful.  If you are using IDE devices, your  
testing will be more meaningful if you disable the IDE write-cache  
entirely.  Also, you should put your results somewhere, perhaps on  
a webpage with links to the filesystem images and a complete dmesg  
so that the OS version and hardware being used is well-documented.


--
-Chuck



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


Re: not adding daemons to rc.conf

2006-09-04 Thread Chris Whitehouse

Jona Joachim wrote:

Jonathan Horne wrote:
ive noticed that apache can be started manually using the apachectl tool, even 
if it is not enabled in /etc/rc.conf.  do many other daemons have this 
ability?  i have a dev server that i would like to not have many things 
enabled in the rc.conf, but i would like an easy way to just start specific 
daemons when i need.


Take a look at /usr/local/etc/rc.d
You will see several scripts belonging to server applications you
installed. Each one of these scripts can start or stop the service.
For example:
/usr/local/etc/rc.d/apache.sh start
/usr/local/etc/rc.d/apache.sh stop

When you put something into rc.conf it is actually this script that is
executed, so every daemon that can be enabled in rc.conf can also be
started/stopped using those scripts.


But the scripts check rc.conf so they still have to be enabled in 
rc.conf unless you use forcestart...


box# grep pf_enable /etc/rc.conf
box# pwd
/etc/rc.d
box# ./pf start
box# echo pf_enable=\YES\  /etc/rc.conf
box# grep pf_enable /etc/rc.conf
pf_enable=YES
box# ./pf start
Enabling pf.
No ALTQ support in kernel
ALTQ related functions disabled
No ALTQ support in kernel
ALTQ related functions disabled
box#

Chris

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


Re: Word processor for 6.1

2006-09-04 Thread Perry Hutchison
  Anyone know where I can find a working word processor for 6.1?
  AbiWord and OpenOffice both require Gnome, which won't build.
...
 KOffice 1.5 has OpenDocument support.

Not that I'm any more eager to get into
a KDE mess than a Gnome mess :)

File format support is not important.
I just need something for my 9th-grader
to use for school papers.

 What's in your /etc/make.conf file

# added by use.perl 2006-08-22 20:05:56
PERL_VER=5.8.8
PERL_VERSION=5.8.8

 what part of gnome won't build?

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


Re: Word processor for 6.1

2006-09-04 Thread Perry Hutchison
  Anyone know where I can find a working word processor for 6.1?
  AbiWord and OpenOffice both require Gnome, which won't build.
  What do you mean: which won't build? No problems here - I recently
  compiled both. They don't require the full gnome package.
  
  Both of them (and also Dia) require Glib, which won't build for me.
  I posted details of the failure to freebsd-gnome a day or two ago.
 
 Looking at that post it seems something failed when you tried to
 update your ports collection.

I suspect the blunder was in trying to update Ports at all, given it
is a new 6.1 CD install and nothing *else* is updated.  The Handbook
suggests to always update Ports before trying to fetch/build anything,
but that does not seem to have worked out very well in this case.

 I'd suggest you delete it (keep distfiles though so you won't have
 to fetch again), unpack again the ports.tgz, then install cvsup
 and update the ports collection using that.

I hesitate to get onto the cvsup treadmill -- from reading the
website, tracking CURRENT did not sound like my desired usage model.
I suspect what I really need is to have the entire Ports mechanism,
including any downloaded distfiles, frozen as of 6.1-RELEASE.
Unfortunately, the Handbook does not seem to cover that situation,
at least in the Ports section.

 If you installed programs from packages when you installed the
 system, you may get problems with version conflicts installing
 from an updated ports collection - this happens usually when the
 last release is getting old. In that case, maybe you should clean
 out the system, deinstall all packages, update ports and start
 again. This takes time  but given that 6.2 is coming up.

It would also thoroughly defeat the purpose of installing from CD!

I wonder if I ought to wipe the partitions and start completely over
with a fresh install, and this time *don't* try to update the Ports.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Conrad

2006-09-04 Thread Chris Whitehouse

Perry Hutchison wrote:

I am interested in downloadind the 2 disks for linux, and trying
to install them on my computer, but I am not sure what i have to
download, could comeone please help me


You may be asking the wrong list.  FreeBSD is not Linux, although it
can run many Linux binaries if configured appropriately.

For Linux, you probably want to be looking into something along the
lines of Debian, Fedora, Gentoo, Mandrake, or Suse.


If it is FreeBSD you want to install try

%fetch 
ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.1/6.1-RELEASE-i386-disc1.iso


from a command prompt (the above command is all on one line). If you are 
using a windows computer, go to ftp://ftp.freebsd.org and navigate to 
the directory above and download 6.1-RELEASE-i386-disc1.iso.


When it has downloaded burn it to CD and boot from the CD. You can 
install just from 6.1-RELEASE-i386-disc1.iso. 6.1-RELEASE-i386-disc2.iso 
has more software packages but you can install them later online.


See also http://www.freebsd.org/handbook

Chris

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


RE: load balancing nat

2006-09-04 Thread Bob
How about posting a diagram of the cable wiring of your network,
then maybe we have a starting point to work on your problem.

Chances this has nothing to do with NAT as source of problem.





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Subhro
Sent: Monday, September 04, 2006 5:04 PM
To: FreeBSD Questions
Subject: load balancing nat

Hello folks,

I have a strange problem on hand. I have got two internal LANs and one
ISP link. I am trying to share the link between the two internal LANs
and do a load balancing between the two. The rules I am using are:

nat on $ext_if from { $int1_if:network, $int2_if:network } to any -
$ext_if round-robin

where $int1_if, $int2_if are two internal interfaces and $ext_if is
the external interface.

However my observation is systems using $int_2 as gateway loose
connectivity randomly. Also the TTL values for the pings to the
gateway change to 150 from 64 as soon as the system looses
connectivity.

The systems in the LAN are all windows xp boxes.

Could anyone please tell me where I am going wrong?

Thanks and Best Regards
Subhro

--
Subhro Kar
Security Engineer
iViZ Techno Solutions Pvt. Ltd.
Dhanshree Bldg, 1st Floor
Plot XI-16, Sector V
Salt Lake City
700091
India
___
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]


stuff:: FreeBSD folks, my giveaway hardware, and more.

2006-09-04 Thread Gary Kline
Atom Powers lives close enough that a stop-over yesterday 
was reasonable.  I had tao booted to Fixit mode and with
some  magic ifconfig command Atom managed to  rescue the hundreds
of megs of stuff that I should have backed up by rsync or
otherwise.  This noon Atom brought over a set of the 6.1 CD's
that I will try once I've reinstalled 5.3 and hammered the hard
drive for a couple days.  Greg L mentioned the possibility of 
hardware faults as a cause of the fatal trap.  If the disk
*has* gone south, I'll add the entire box to my giveaways.

Anyway this is a public thanks to everybody who has helped,
including the rsync scripts.  It is takes a week to get 
things stable, better now than later.  

Everybody knows how rock stolid FBSD is: one crash in 11 years
is pretty good proof:-)  So thanks to everybody from back in 
the Eozoic 4.0 days at Cal to the guys working om 7.0-CURRENT.

gary




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

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


Re: requesting advice on freebsd as vmware guest

2006-09-04 Thread Eric Schuele

On 09/04/2006 16:00, Peter wrote:

Hi,
I have XP (3 GHz Pentium and 1.5 MB RAM) running at work and would like
to have access to a FBSD system within it.  


Have you considered Virtual PC from MS?  I believe its free.


I am not sure which vmware
product to install.  I believe vmware server is good if you need remote
connections (something I do not require at this point).  There is also
workstation and player.  So I'm looking for advice on the basic recipe
as well as any common pitfalls.
Peter

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___

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




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


Re: requesting advice on freebsd as vmware guest

2006-09-04 Thread Duane Hill
On Monday, September 4, 2006 at 9:00:44 PM, Peter confabulated:

 Hi,
 I have XP (3 GHz Pentium and 1.5 MB RAM) running at work and would like
 to have access to a FBSD system within it.  I am not sure which vmware
 product to install.  I believe vmware server is good if you need remote
 connections (something I do not require at this point).  There is also
 workstation and player.  So I'm looking for advice on the basic recipe
 as well as any common pitfalls.
 Peter

I  currently am running VMWare Workstation v5.5.2 on my XP Pro at home
with  a  3.2Ghz  Pentium  and 4 Gig of ram. I use it mainly for a test
bed.  In  my  current  testing  of  some  things for work, I have four
FreeBSD v6.1 servers set up. It runs nice with the extra memory. Prior
to  the  memory  upgrade, things ran extreamly slow once I brought the
second virtual server up.

As far as VMWare's Server, it is a free download (at least for now). I
did  have that loaded once. I found it to be really slow booting an OS
over  the  Internet.  I've  pretty  much given up on it because of the
slowness. I like the idea of being able to boot a virtual machine over
the  Internet  and  having  access  to it. To the host, it runs in the
background.  You  use  either  the  installable console version of the
client  or  you  can access the host via a web browser. Once the OS is
booted,  you  can  disconnect  from  it  and  leave  it running in the
background.  Whenever  you  want  to  manage  the  virtual server, you
connect  in  and it's there. I would imagine this will only get better
over  time.  Workstation has come along way since the free version was
last offered (3+ years ago I believe).

-- 
This message was sent using 100% recycled electrons.

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


Re: requesting advice on freebsd as vmware guest

2006-09-04 Thread ke han
Sounds like you want something almost as good as VMware  
Workstation, but free...thats VMware Server.   VMware Player is  
really for static distribution purposes; doesn't allow you to  
snapshot or create VMs.

I'm using VMware Server for FreeBSD 6.1 on Win XP now...works great!!
ke han


On Sep 5, 2006, at 10:06 AM, Eric Schuele wrote:


On 09/04/2006 16:00, Peter wrote:

Hi,
I have XP (3 GHz Pentium and 1.5 MB RAM) running at work and would  
like

to have access to a FBSD system within it.


Have you considered Virtual PC from MS?  I believe its free.


I am not sure which vmware
product to install.  I believe vmware server is good if you need  
remote
connections (something I do not require at this point).  There is  
also
workstation and player.  So I'm looking for advice on the basic  
recipe

as well as any common pitfalls.
Peter
__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around  
http://mail.yahoo.com ___

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



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


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


Re: Word processor for 6.1

2006-09-04 Thread Donald J. O'Neill


  If you installed programs from packages when you installed the
  system, you may get problems with version conflicts installing
  from an updated ports collection - this happens usually when the
  last release is getting old. In that case, maybe you should clean
  out the system, deinstall all packages, update ports and start
  again. This takes time  but given that 6.2 is coming up.

 It would also thoroughly defeat the purpose of installing from CD!


Not hardly. It doesn't even come close to it. 
 

 I wonder if I ought to wipe the partitions and start completely over
 with a fresh install, and this time *don't* try to update the Ports.

This is a decision you have to make for yourself. I personally think it to be 
a very unwise choice and one I would never consider, but then...

I would also like to point out that when you ask for help on questions@ and 
someone asks you a question, if you have the information it should be given, 
even if it was already posted on another list. I'm pretty sure that most of 
us don't follow all of the possible lists. So, even if I did follow the gnome 
list, if you said something is already posted there, that's too bad, I'm not 
about to do a lot of extra work trying to help you out. That's time I can put 
to better use working on my own equipment, or helping someone who will work 
with me to help them.

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


Re: Word processor for 6.1

2006-09-04 Thread Nikolas Britton

On 9/4/06, Perry Hutchison [EMAIL PROTECTED] wrote:

  Anyone know where I can find a working word processor for 6.1?
  AbiWord and OpenOffice both require Gnome, which won't build.
...
 KOffice 1.5 has OpenDocument support.

Not that I'm any more eager to get into
a KDE mess than a Gnome mess :)

File format support is not important.
I just need something for my 9th-grader
to use for school papers.



FreeBSD and Linux will not meet your teenagers needs, If you really
want to introduce your kid to UNIX then buy a Mac... trust me on
this... I interact with many high school and college kids on a daily
basis. Any used Mac capable of running Mac OS X 10.4 Tiger and
NeoOffice2 will suit your childs needs perfectly:

PowerPC G3, G4, or G5 processor.
Built-in FireWire.
384 MB of memory.
5 GB of disk space.

http://www.lowendmac.com/
http://computers.attr-search.ebay.com/Gigabit_Apple-Desktops_PowerPC-G4_W0QQa10244ZQ2d24QQa12ZQ2d24QQa25710ZQ2d24QQa26092ZQ2d24QQa26443Z42211QQa26444ZQ2d24QQalistZa26092Q2ca26443Q2ca26444Q2ca25710Q2ca12Q2ca10244QQcatrefZC6QQcoactionZcompareQQcoentrypageZsearchQQcopagenumZ1QQfposZQ5AIPQ2fPostalQQfromZR10QQfsooZ1QQfsopZ1QQftrtZ1QQftrvZ1QQftsZ2QQgcsZ1506QQpfZShowQ20ItemsQQpf_queryZGigabitQQpfidZ1812QQpfmodeZ1QQsacatZ25440QQsadisZ200QQsargnZQ2d1QQsaslcZ2QQsbrftogZ1QQsofocusZpf
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: load balancing nat

2006-09-04 Thread Subhro

Hello Bob,

Thanks for taking the time to answer. I would post a diagram as requested.

   To ISP

   |   (ext_if)
 --
|  |
|  FBSD   |
||
 (int1_if)|   |(int2_if)
|   |
-   -
||
 ---
|||   |
|   LAN 1||   LAN 2   |
|  || |


As shown above, int1_if = 192.168.0.0/24 and int2_if = 10.0.0.0/24

The FreeBSD box needs to route the packes from both the networks to
the ISP with equal priority.

Thanks and Best Regards
Subhro


On 9/5/06, Bob [EMAIL PROTECTED] wrote:

How about posting a diagram of the cable wiring of your network,
then maybe we have a starting point to work on your problem.

Chances this has nothing to do with NAT as source of problem.





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Subhro
Sent: Monday, September 04, 2006 5:04 PM
To: FreeBSD Questions
Subject: load balancing nat

Hello folks,

I have a strange problem on hand. I have got two internal LANs and one
ISP link. I am trying to share the link between the two internal LANs
and do a load balancing between the two. The rules I am using are:

nat on $ext_if from { $int1_if:network, $int2_if:network } to any -
$ext_if round-robin

where $int1_if, $int2_if are two internal interfaces and $ext_if is
the external interface.

However my observation is systems using $int_2 as gateway loose
connectivity randomly. Also the TTL values for the pings to the
gateway change to 150 from 64 as soon as the system looses
connectivity.

The systems in the LAN are all windows xp boxes.

Could anyone please tell me where I am going wrong?

Thanks and Best Regards
Subhro

--
Subhro Kar
Security Engineer
iViZ Techno Solutions Pvt. Ltd.
Dhanshree Bldg, 1st Floor
Plot XI-16, Sector V
Salt Lake City
700091
India
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]





--
Subhro Kar
Security Engineer
iViZ Techno Solutions Pvt. Ltd.
Dhanshree Bldg, 1st Floor
Plot XI-16, Sector V
Salt Lake City
700091
India
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Interface Alias Question

2006-09-04 Thread Tim Radigan
To all,

 

I have a quick question, I have a FreeBSD 6.1 box and one of the NICs is
aliased to have a total of 3 IP addresses.  How does the outbound traffic
get handled there?  Does it always send outbound packets with the primary IP
address?  If so, is there a way to force a certain protocol, say ftp, to use
one of the alias IPs as outbound traffic?

 

Any help would be appreciated.

 

Thanks!

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


Re: Word processor for 6.1

2006-09-04 Thread Ted Mittelstaedt

- Original Message - 
From: Nikolas Britton [EMAIL PROTECTED]
To: Perry Hutchison [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Monday, September 04, 2006 7:58 PM
Subject: Re: Word processor for 6.1


 On 9/4/06, Perry Hutchison [EMAIL PROTECTED] wrote:
Anyone know where I can find a working word processor for 6.1?
AbiWord and OpenOffice both require Gnome, which won't build.
  ...
   KOffice 1.5 has OpenDocument support.
 
  Not that I'm any more eager to get into
  a KDE mess than a Gnome mess :)
 
  File format support is not important.
  I just need something for my 9th-grader
  to use for school papers.
 

 FreeBSD and Linux will not meet your teenagers needs, If you really
 want to introduce your kid to UNIX then buy a Mac... trust me on
 this... I interact with many high school and college kids on a daily
 basis. Any used Mac capable of running Mac OS X 10.4 Tiger and
 NeoOffice2 will suit your childs needs perfectly:

 PowerPC G3, G4, or G5 processor.
 Built-in FireWire.
 384 MB of memory.
 5 GB of disk space.

Just keep in mind when you look for used Mac's that the Tiger OS normally
on DVD.  There was a trade-in program where you could get CD's of
it if you sent in your DVDs - I did - but some of the older Macs out there
that have firewire ports only have CD drives.  Also, any older Mac you
find will need ram - Tiger gobbles it.  If you can find an older copy of
Panther
OS it gives you  lot more lattitude in what older Macs will work - it also
does
not require FireWire, so even the original iMacs will run it.

You can compile most text-mode open source applications on Panther and
Tiger,
but if you want to compile X programs your better off with Tiger.

Frankly, if we had the money at my employer I would probably use
rack-mounted
Mac servers and Tiger as a platform to run many of the server applications.
But
a new Mac server is stratospherically expensive compared to a basic HP DL320
running FreeBSD.

Ted

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


Re: Various package/ports problems

2006-09-04 Thread Dr. Jennifer Nussbaum


Kris Kennaway [EMAIL PROTECTED] wrote: On Mon, Sep 04, 2006 at 02:00:20PM 
-0700, Dr. Jennifer Nussbaum wrote:

Kris Check the manpage, probably I meant pkgdb -fu
 
 Sorry, i dont understand what im checking hte manpage to
 have it do. Running pkgdb -fu does rebuild the package 
 database, but i get the same Bus Error thing from Ruby
 as above.

Kris: Running which version of portupgrade?  Also try 'cd 
 /usr/ports; make
 fetchindex' first.

No difference; its portupgrade version 2.0.1 (as reported
by portupgrade --version).

 But i dont want to remove mysql-server-4.1.20, because this seems
 to be the version that is actively running on this machine, and i dont
 want to disable it. Same for apache+mod_ssl, which accounts for
 alot of the other conflicts.

 Kris: You need to recognize that you've got the system into a 
damaged state
 already, so it's going to take further intrusive work to repair it.

True. But the system does WORK now, and id rather not
make it NOT WORK in the process of making it easier to
upgrade ports.

 Also, when i try to delete one of the ports that seemed less
 critical, even that didnt work:
 ~ $ sudo pkg_delete -f jade-1.2.1_9
 pkg_delete: package 'jade-1.2.1_9' is required by these other packages
 and may not be deinstalled (but I'll delete it anyway):
 sgmlformat-1.7_2
 pkg_delete: read_plist: bad command '@conflicts sp-1.*'
 ~
 
 ...and jade-1.2.1_9 is still there.
 
 Thank you again for your continued attention, Kris.

 Kris: What happens if you try to reinstall it from the port, setting
FORCE_PKG_REGISTER?
Oh yes! This does work. After this worked i went and reinstalled
all the ports listed, and now pkg_info (and pkg_delete, etc.) is working 
correctly. Thanks!
Something working at last.

So now i can find out what version each port is, but that doesnt
help me know whether these are outdated, or to update them.
For that im still stuck on the Ruby core dump problem. I did 
reinstall portupgrade, ruby18, and the ruby-bdb thing, but sadly
i still get the same abort trap/core dump thing ive reported all
along. Is there any other way i can attack this last issue?

Thanks.

Jen


-
Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small 
Business.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Various package/ports problems

2006-09-04 Thread Kris Kennaway
On Mon, Sep 04, 2006 at 08:57:51PM -0700, Dr. Jennifer Nussbaum wrote:
 
 
 Kris Kennaway [EMAIL PROTECTED] wrote: On Mon, Sep 04, 2006 at 02:00:20PM 
 -0700, Dr. Jennifer Nussbaum wrote:
 
 Kris Check the manpage, probably I meant pkgdb -fu
  
  Sorry, i dont understand what im checking hte manpage to
  have it do. Running pkgdb -fu does rebuild the package 
  database, but i get the same Bus Error thing from Ruby
  as above.
 
 Kris: Running which version of portupgrade?  Also try 'cd 
  /usr/ports; make
  fetchindex' first.
 
 No difference; its portupgrade version 2.0.1 (as reported
 by portupgrade --version).

You'll have to report this to the author.

  Kris: What happens if you try to reinstall it from the port, setting
 FORCE_PKG_REGISTER?
 Oh yes! This does work. After this worked i went and reinstalled
 all the ports listed, and now pkg_info (and pkg_delete, etc.) is working 
 correctly. Thanks!
 Something working at last.

Glad to hear it :)

Kris


pgp0BiVQc0oxI.pgp
Description: PGP signature


Re: solaris

2006-09-04 Thread Giorgos Keramidas
On 2006-09-04 16:57, dick hoogendijk [EMAIL PROTECTED] wrote:
 On 03 Sep Chad Leigh -- Shire.Net LLC wrote:
 
  I am not sure about installing Solaris into an existing partition.
 
 I remember one of the FBSD's (a RC, but still) destroying my partition
 table. That's the reason I ask. I know that I don't have to use the main
 option (that's for the whole disk). But if there are no problems know of
 with the sol installer, than I'm a little less worried. I have no space to
 backup my XP and FBSD disk parts (at the moment).

My suggestion is, then, to avoid fooling around with anything that can
cause pain...

... or get another disk, and try Solaris when only that other disk is
connected to the system.

NEVER try out stuff that can wreak all sorts of havoc in your current
disk, if you do not have a properly configured, tested, working backup
system in place.  Not a good idea :-/

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


Re: portmanager port upgrade question

2006-09-04 Thread Boris Samorodov
On Mon, 4 Sep 2006 17:44:43 -0400 stan wrote:

 I'm trying to upgrade a machine, which was built only about 2 weeks agao.

Seems that either you didn't upgrade the portstree or installed a
deprecated linux_base port by hands.

   linux_base-8-8.0_16 /emulators/linux_base-8
   marked IGNORE
   port not installed/updated

 Can anyon tell me why this port is marked ignore? Has it been superseeded?

You may consider reading /usr/ports/UPDATING.

BTW, it's the right file to read from time to time and especially if
you have questions about the port system. ;-)


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


Re: solaris

2006-09-04 Thread Giorgos Keramidas
On 2006-09-04 08:41, Bill-S [EMAIL PROTECTED] wrote:
At Mon, 4 Sep 2006 it looks like Matthew Seaman composed:
 Back in the Solaris 8 days, the trick was to use fdisk to create a primary
 partition and mark it as type 'Linux Swap' after which Solaris would happily
 recognise it as a location to install into.

 Quite how it happened that Solaris uses the same partition type as Linux
 swap is shrouded in the mists of time.

 (giggle)

 If I recall correctly, there was some hacking to do too if you were
 dual-booting Solaris and Linux on the same disk for Solaris would
 try on use your whole Linux filesystem as its own swap location.

Wasn't it the other way around (i.e. Linux assuming that anything marked
as Linux swap, is fine for a swap partition, happily proceeding to
trash your Solaris filesystems?).

Still sounds like tons of fun though :)

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


Re: solaris

2006-09-04 Thread Giorgos Keramidas
On 2006-09-04 15:52, backyard [EMAIL PROTECTED] wrote:
 I would recommend the second drive option.

Me too.  Not for the same reasons though.

 I have attempted installing Solaris 10 on multiple computers and all
 if ever seems to do is corrupt the drive on me. Once I got it to boot
 up and go into their version of X windows. After installing the Bonus
 pack with KDE and such never turned on again. Very frustrating.

 good luck, I've given up until I have a Sun Box to play with.

I have installed Solaris 10 on *dozens* of systems at work.  Very few of
them were real Sun hardware and there has been exactly *one* case where
something went wrong.  It turns out this case was *my* fault.

The only case when Solaris can be a pain to install is when you try it
out on a system with hardware that is not supported by the drivers
shipped with Solaris.  Even in those cases, some times just adding one
of the supported NICs, or a VGA, or booting from ATA disks and using
SATA disks only for extra storage, can really work wonders...

Solaris 10 is a wonderful system, it works flawlessly for various tasks
that I use it at work (I prefer FreeBSD for my home systems), and the
people who answer questions on comp.unix.solaris are knowledgeable,
(usually) kind, and cool.

So, please, don't be so hasty in accusing Solaris for problems you
have had until now ;-)

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


  1   2   >