Simple DNS Configuration

2006-07-24 Thread David Stanford

Hi all,

I feel like I'm losing my mind here. It's been a while since I configured
named and I can't quite figure out what I'm doing wrong here. Here is my
understanding of what is needed to get (a very basic configuration of)
named running with a few A records in place:

# sh make-localhost

append default named.conf with:
=
zone example.org {
   type master;
   file master/example.org;
};
=

create master/example.org with:
=
$TTL 3600; 1 hour
example.org.  IN  SOAns.example.org. admin.example.org. (
   2006072400  ; Serial
   1d; Refresh
   2h; Retry
   100d ; Expire
   1h )  ; Minimum TTL


; Machine Names
localhost   IN  A   127.0.0.1
host1IN  A   192.168.1.1
host2IN  A   192.168.1.2
host3IN  A   192.168.1.3
=

append rc.conf with:
=
named_enable=YES
=

# reboot


Is there something I'm missing? This is on a fresh 6.1 install (rebuilt with
latest src) and a few random ports installed (editors and such) and no
firewall config.

[EMAIL PROTECTED] ~]# uname -sri
FreeBSD 6.1-RELEASE-p3 GENERIC

[EMAIL PROTECTED] ~]# host -t a example.org localhost
Using domain server:
Name: localhost
Address: 127.0.0.1#53
Aliases:

Host example.org not found: 2(SERVFAIL)

-David
--
[EMAIL PROTECTED] ~]# fortune
Happiness is just an illusion, filled with sadness and confusion.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Adaptec 2410SA Raid and Hot swapping

2006-07-24 Thread Tamouh H.
 Hey,
 
 I have a couple Adaptec 2410SA Raid cards (aac driver) and I 
 was wondering if anyone has had any luck with being able to 
 hotswap drives in FreeBSD 6?
 If the Adaptec card is no good for hot swapping under 
 FreeBSD, what's the recommended brand?
 
 Thanks
 Daniel

I've 2230SLP which hot-swapped no problem under FBSD 5.4 and I doubt it'll have 
issues with 6.x . Though performance write speed is very bad!

Tamouh

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


Re: Adaptec 2410SA Raid and Hot swapping

2006-07-24 Thread Jahilliya

On 7/24/06, Tamouh H. [EMAIL PROTECTED] wrote:


 Hey,

 I have a couple Adaptec 2410SA Raid cards (aac driver) and I
 was wondering if anyone has had any luck with being able to
 hotswap drives in FreeBSD 6?
 If the Adaptec card is no good for hot swapping under
 FreeBSD, what's the recommended brand?

 Thanks
 Daniel

I've 2230SLP which hot-swapped no problem under FBSD 5.4 and I doubt it'll
have issues with 6.x . Though performance write speed is very bad!

Tamouh


Did you use the aaccli tool to initiate/powerdown the drives and rebuild the
array?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: problems connecting to cvsup servers

2006-07-24 Thread Mikhail Goriachev
Dave wrote:
 Hello,
 Is there anything up with the freebsd cvsup servers? I've been trying to 
 update my ports collection for the past two days always getting the same 
 error message: access limit exceeded. I have tried various servers all with 
 the same result.
 Thanks.
 Dave.


Sounds like those servers are busy. Try neighbouring countries or other
continents.


Cheers,
Mikhail.

-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


iwi cannot allocate firmware DMA memory

2006-07-24 Thread Yousef Raffah
Hi,

I'm a happy FreeBSD user and I have it installed on my laptop (Toshiba
Tecra A4). However, I noticed recently that my iwi driver goes up and
down frequently then suddenly it stops working. When I check dmesg it says:
iwi0: could not allocate firmware DMA memory

Earlier on 6.1-RELEASE, I was able to overcome this problem by unloading
the if_iwi driver, switch of the iwi button, turn it back on and load
the driver. However, this is not possible on -CURRENT (Mon Jul 17
20:06:47 AST 2006) as the moment I unload the driver, it gets
automagically loaded!

Any ideas to overcome this?

-- 

Sincerely,

Yousef Adnan Raffah

The Savola Group

---
Aren't you using Firefox? Get it at http://www.getfirefox.com




signature.asc
Description: OpenPGP digital signature


Re: Simple DNS Configuration

2006-07-24 Thread Mikhail Goriachev
Hi,

Try this and let us know how it goes.



$ORIGIN example.org.
 $TTL 3600; 1 hour
 example.org.  IN  SOAns.example.org. admin.example.org. (
 2006072400  ; Serial
 1d; Refresh
 2h; Retry
 100d ; Expire
 1h )  ; Minimum TTL
 
@   IN  NS  ns.example.org.
IN  A   192.168.1.1 ; or whatever your IP is.
 
 ; Machine Names
 localhost IN  A   127.0.0.1
 host1 IN  A   192.168.1.1
 host2 IN  A   192.168.1.2
 host3 IN  A   192.168.1.3
 =


Cheers,
Mikhail.

-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


auto-guessing filesystems

2006-07-24 Thread Lennon Cook

I have been looking over the tutorial for automounting removable
devices  at http://www.caia.swin.edu.au/reports/041130A/ , and have
come to one interesting point. It has the fstab line:
/dev/da0/mnt/usbflash   autonoauto  0   0

However, my system doesn't appear to support 'auto' as an fstype. I
assume that it would guess the filesystem type ala Linux, which is
about the only thing I miss about the mount system there.
Can this actually be made to work easily on FreeBSD, or is this
tutorial using an untested fstab entry?

(Please keep me CCd).
--
Lennon Victor Cook
He who receives an idea from me receives without lessening, as he who
lights his candle at mine receives light without darkening - Thomas
Jefferson
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Simple DNS Configuration

2006-07-24 Thread David Stanford

On 7/24/06, Mikhail Goriachev [EMAIL PROTECTED] wrote:


Hi,

Try this and let us know how it goes.



$ORIGIN example.org.
 $TTL 3600; 1 hour
 example.org.  IN  SOAns.example.org. admin.example.org. (
 2006072400  ; Serial
 1d; Refresh
 2h; Retry
 100d ; Expire
 1h )  ; Minimum TTL

@   IN  NS  ns.example.org.
IN  A   192.168.1.1 ; or whatever your IP is.

 ; Machine Names
 localhost IN  A   127.0.0.1
 host1 IN  A   192.168.1.1
 host2 IN  A   192.168.1.2
 host3 IN  A   192.168.1.3
 =


Cheers,
Mikhail.

--
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B



Thanks Mikhail, that was it:
=
@   IN  NS  ns.example.org.
=

Now it appears to be working correctly and responding to queries, however
I'm noticing I continue to get that same error when I add my CNAME entry:
=
@  IN   CNAMEwww.example.org.
=

Doesn't the @ simply represent the domain, in this case example.org?
That makes this translate from example.org - www.example.org, correct?

-David
--
[EMAIL PROTECTED] ~]# fortune
Happiness is just an illusion, filled with sadness and confusion.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: DL360 G4 shared network iLo and FreeBSD

2006-07-24 Thread Ted Mittelstaedt

- Original Message - 
From: Eric Lakin [EMAIL PROTECTED]
To: freebsd-questions@freebsd.org
Sent: Sunday, July 16, 2006 1:47 PM
Subject: Re: DL360 G4 shared network iLo and FreeBSD


 On Sun, Jul 16, 2006 at 11:56:47PM +1000, Norberto Meijome wrote:
  On Sat, 15 Jul 2006 14:13:57 -0700
  Eric Lakin [EMAIL PROTECTED] wrote:
 
   I'm trying to setup a DL360 G4 for use in a colo environment with
   FreeBSD. I've run into one problem: I've setup the iLo to use the
   shared network option, which allows the iLo to share the same
network
   interface as the host computer. But the iLo hangs whenever the FreeBSD
   kernel loads.
 
  FWIW, we have a bunch of 360s but running the iLo independently from the
main
  card. They work just great, but never tried them on the other setting.
  Beto

 I have not had issues when using the dedicated iLo network interface
 either. But, when I ship the machine off to the colo, it'll only have
 one network drop - so either I get the iLo working in shared mode, or I
 don't get to use the iLo at all.


Duct tape a small 4 port ethernet switch to the server.

Ted

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


Re: auto-guessing filesystems

2006-07-24 Thread Giorgos Keramidas
On 2006-07-24 17:56, Lennon Cook [EMAIL PROTECTED] wrote:
 I have been looking over the tutorial for automounting removable
 devices  at http://www.caia.swin.edu.au/reports/041130A/ , and have
 come to one interesting point. It has the fstab line:

 /dev/da0 /mnt/usbflash auto noauto 0 0

 However, my system doesn't appear to support 'auto' as an fstype. I
 assume that it would guess the filesystem type ala Linux, which is
 about the only thing I miss about the mount system there.  Can this
 actually be made to work easily on FreeBSD, or is this tutorial using
 an untested fstab entry?

AFAIK, FreeBSD does not support filesystem autodetection.  There was a
discussion recently, in one of the FreeBSD lists, but I couldn't easily
find a pointer to the relevant thread.

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


Re: ICH8 chipset support?

2006-07-24 Thread Lowell Gilbert
Nick Sayer [EMAIL PROTECTED] writes:

 I just upgraded my machine at home to a Conroy-ready motherboard - An
 Asus P5B. This particular motherboard has the smallest fraction of
 recognized devices I think I've ever come across. From what I can
 tell, the blame can be placed squarely on the Intel ICH8 chipset that
 supplies almost all of the devices in the system.

 USB is working, though it is recognized only generically. The ICH8
 SATA ports do not seem to work properly (thank goodness for the
 JMicro RAID controller - which can be used without RAID). The audio
 subsystem, SMB controller and the Realtek on-board Ethernet aren't
 recognized at all. There's an nVidia PCI Express graphics card in
 there too, but I probably won't even run X on this machine, much less
 3D stuff.

 I'll attach the output from pciconf -l and the dmesg.boot. At this
 point, it is up, sort of.

 Is there any hope of improving support for this system?

*Some* improvement is probably pretty easy.  It doesn't seem to be
recognizing the System Management Bus at all, and just adding the
appropriate device IDs to the kernel tables might get the basic 
bus exploration to occur.  And then you'll see whether the drivers 
can attach...

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


scsi performance these days

2006-07-24 Thread Jim Pazarena

does FreeBSD (6.1) still operate better on a SCSI drive
system compared to EIDE or SATA ?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: How do I use a second sound device?

2006-07-24 Thread Lowell Gilbert
John L [EMAIL PROTECTED] writes:

 My laptop has a built-in sound card which works fine, but I would also
 like to be able to use a USB handset.  I load the snd_uaudio driver
 and plug in the handset, the /dev/audio1.x and /dev/dsp1.x devices
 appear, but then what?

 What do I do to get sound applications to use device 1 rather than
 device 0?  I have looked at all the man pages I could find and grepped
 through many rc.d files, and I'm still mystified.  Any suggestions?

It depends on the application you're using.  For mpg123, for example,
there is a -a option you would specify on the command line.  For
xmms, as a GUI example, there is a device configuration field under
the output device section in the Preferences dialog box.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Simple DNS Configuration

2006-07-24 Thread Mikhail Goriachev
David Stanford wrote:
 
 Thanks Mikhail, that was it:
 =
 @   IN  NS  ns.example.org.
 =


No worries, glad to hear it's cranking.


 Now it appears to be working correctly and responding to queries, however
 I'm noticing I continue to get that same error when I add my CNAME entry:
 =
 @  IN   CNAMEwww.example.org.
 =


Hmmm... Not sure how that one goes.


 Doesn't the @ simply represent the domain, in this case example.org?


Yes, that's correct.


 That makes this translate from example.org - www.example.org, correct?


The following gives you the result you want:

@   IN A192.168.1.1 ; whatever your www's IP is

So your DNS will respond with the same IP no matter if it's example.org
or www.example.org (assuming www has been declared somewhere as well).

Hopefully this helps.


Cheers,
Mikhail.


-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: applet viewer for FreeBSD

2006-07-24 Thread Lowell Gilbert
Only OpenSource [EMAIL PROTECTED] writes:

 Is there an appletviewer for FreeBSD which integrates with Firefox ?

Java, I assume you mean.  Sure; all the different JDK installations
seem to include one.

 I have installed diablo-jdk-freebsd6.1-i386.

Yes, that definitely includes one.  
pkg_info -L |grep appletviewer will tell you where.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: IBM x440

2006-07-24 Thread Peter Czanik
Hello,

SUSE seemed to find all of them, and mptable lists them as well. I looked at 
lot's 
of different man pages, but I could not find any related boot parameter I could
experiment with...

Bye,
CzP

On Sunday 23 July 2006 09:56, Peter Czanik wrote:
/ Hello,
//
// I'm trying to install 6.1-STABLE on an IBM x440 machine. It has four 1.5
// Ghz Xeon CPUs, but only two of these are used by FreeBSD. 
/
when was the last time you saw them all running?  if you cant recall, it might 
be appropriate to step over to another OS just for a moment, just to verify 
they are operating properly.

jonathan

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


Re: multiple hardware problems on Sony VAIO

2006-07-24 Thread Lowell Gilbert
Erik Nørgaard [EMAIL PROTECTED] writes:

 I am trying to get things up working (FBSD 6.1-STABLE) on a VAIO FJ3S
 notebook, but have trouble with some devices: cardbus, wireless network
 and sound. And I haven't even tried looking at the built in camera,
 memory card reader or firewire ...

 It may be related, they are all on a ICH6 controler

You can start with:
  http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/99663

which was all I needed to hack up for whatever I was doing on my 
ICH6 system (sorry; it was a whole month ago, and I've forgotten 
the details of what, precisely, I was fixing at the time).

It probably won't be enough, but it will help...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


fbsd 6.1 and starting services problem

2006-07-24 Thread zz_11
Hi,
 
 It is my first fbsd 6.1.
 
 I migrate a system from fbsd 6.0 to 6.1.
 
 I have a script postgresql.sh in /usr/local/etc/rc.d.
 It is executible.
 Also it is working on 6.0 at startup.
 
 But it do not runs in fbsd 6.1.
 
 If I try /usr/local/etc/rc.d/postgresql.sh start all is
fine.
 
 I checked :
 cat /etc/defaults/rc.conf | grep local_startup
 local_startup=/usr/local/etc/rc.d /usr/X11R6/etc/rc.d #
startup script
dirs.
 
 It looks ok for me.
 
 Pls. help me to find the problem.
 
Also fbsd do not start at boot any services with scripts
in /usr/local/etc/rc.d .

 Best regards,
 ivan.

-

Спортни залагания!
bg.sportingbet.com

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


freebsd livecd and pentium 1

2006-07-24 Thread jesus martinez
hello. my name is jesus and am writing to you
from argentina.

i am looking for a freebsd livecd.
i have just downloaded fresbie, but i am not
sure if is a freebsd.org or an third-party's
implementation.

does freebsd have a live-cd ? is so, where can i
download it ?

i want to change my win98/word97 to a real os.
i use it because the machine is a pentium 1 with
32 mb ram. is there any bsd with GUI that
can run in it ?

thanks in advance,
jesus






__
Preguntá. Respondé. Descubrí.
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta).
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas

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


Re: Are hardware vendors starting to bail on FreeBSD ... ?

2006-07-24 Thread Ted Mittelstaedt

- Original Message - 
From: Danial Thom [EMAIL PROTECTED]
To: Greg Barniskis [EMAIL PROTECTED]; Nick Withers
[EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED];
freebsd-questions@freebsd.org
Sent: Thursday, July 13, 2006 11:10 AM
Subject: Re: Are hardware vendors starting to bail on FreeBSD ... ?


 Burying your head in the sand is a common method
 used by stupid people that have no answer to the
 truth. I don't blame you; you guys don't want
 your employers to know that you've wasted man
 1000s of their dollars because you don't know the
 performance characteristics of the hardware
 you've recommended. It must be thoroughly
 embarrassing.


I have been busy with other things the last week so I missed
this interesting thread, but I will still add my $0.02 cents.

I've used FreeBSD since 1.0 and 386BSD before that.  As
for claims that the newer versions of FreeBSD are equal or
faster than the older versions, that is simply absurd.  The older
versions of FreeBSD are faster, in many cases a lot faster.
Why?  Very simple, they are -smaller-.  They take less core
ram, their kernels are smaller, there is less code there.  All
you have to do to see this is try booting FBSD 6 on a 80386
and compare it's performance to FBSD 3.X on a 386.  Only
in the area of filesystem performance - such as if you have a
system like a Usenet News system with many hundreds of
thousands of files scattered over the disk, are the newer
versions faster.

But, the fact is we are (hopefully) not all building our servers
on 80386's these days.  When the cost of multi-gigahertz
equipment is as low as it is, and the cost of even 2-3 year
old single gigahertz name brand servers are so cheap, this
discussion is really of no importance whatsoever.

Historically in 95% of
installations out there, the way they solve speed problems is
to throw money at faster hardware.  As a business owner it
costs me less money to replace every last stick of server
gear in my big business every 2 years than to pay for the
insurance on the van out back that the delivery boy drives.
Only in extremely esoteric and high end database centers
and suchlike do they start to care about code optimization
and speed.  And I will wager that nobody on this list is
running one of those installations.

I do agree with Danial that most USERS on this list are
burying their heads in the sand on this issue.  But I will
point out that there isn't really any reason they shouldn't
be.  What the market wants is features, not speed.  And
that is what the FreeBSD developers are working on.

Ted

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


Re: Searching a drive and copying files

2006-07-24 Thread Joshua Lewis
Many of the images will have the same name. I somehow managed to copy  
the same files several times when trying to do backup and restores.


At this point in time they are going from my Apple laptop to my  
FreeBSD server. I am going to start looking for a inexpensive Tape  
drive to back up my data.


I have been using iPhoto to manage my images.


Sincerely,
Joshua Lewis
[EMAIL PROTECTED]



On Jul 23, 2006, at 3:41 AM, Michael Hughes wrote:


Joshua,
  On the dups, will the names of the files be the same or different?

  Do you have plans on how you will be storing the images after you
get rid of the dups?  Have the images be edited and if they have, did
you edit them with a EXIF aware program?

  I use a program called epinfo to rename my images, it is part of the
photopc utility.  I have just a little over 10,000 digital images and
store them by year, month, day and time.  epinfo uses the EXIF data to
rename the files and set the time stamps for the files.  I have  
written

some php programs to allow me to display the images thru a web
browser.  It uses a MySQL database to manage the images into
categories.  I also store a checksum of the picture in the database
so I can check to see if the images have become damaged.  I have a
script that I wrote check the check sum in the database to the image.
I do backups whenever I add new images to the hard drive. This is  
still

a work in progress.

  If you can send me a little more data on your files and how you want
to store the images,  I could help you in you task.


On Sat, 22 Jul 2006 10:47:13 -0400
Joshua Lewis [EMAIL PROTECTED] wrote:


Hello List,

I have a two part question for anyone who may be able to help.

I need to search my drive for all pictures on my system and copy
them to a networked system using sftp or ssh or what not. There will
be duplicate names on the drive so I was hoping to have dups placed
in a separate folder. Due to my for lack of a better term stupidity
when I first got my camera I will probably have instances when there
will be three or four duplicates. If anyone can help me out with that
it would be great.

Second is there a resource online I can use to learn how to do my
own shell scripting?

My goal is to find all my pictures and compare them then delete the
dups that don't look that good. A daunting task as I have 20 GB of
data. I bet 10 GB are dups.

Thanks for any help.

Sincerely,
Joshua Lewis
[EMAIL PROTECTED]



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





--
Michael Hughes  Log Home living is the best
[EMAIL PROTECTED]

Temperatures:
Outside: 60.6 House: 70.9 Computer room: 69.5



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


gmirror: Hardcode providers' names in metadata.

2006-07-24 Thread Daniel BRISTOT de Oliveira

Hi List

I'm reading the man page about the gmirror(8) and see the option:

-h Hardcode providers' names in metadata.

What is this? What it's make?
Thaks for all help

--
Daniel Bristot de Oliveira
http://dbristot.info

R João Paez 409 Ap 202
Sta Augusta - Criciúma - SC
CEP 88805440 Brazil
+55-48-91032512
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


internet users based on time+ath

2006-07-24 Thread Marwan Sultan

Hello everyone,

  We want to bill whoever sharing our internet connection on a monthly 
bases

  so basically, I want to release internet access based on time+auth.

  my FreeBSD is up and running 6.1R

 what should i do next?
 I have been told Squid from ports will do the job,
 but when i took a look on Squid port and website its written that its for
 proxy caching server.

 Any packages will do my needs of release internet access based on 
time+auth ?


 Thank you all.

Marwan

_
Don't just search. Find. Check out the new MSN Search! 
http://search.msn.click-url.com/go/onm00200636ave/direct/01/


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


Postfix

2006-07-24 Thread Grant

Hi,

I'm trying to do this.

i want postfix to accept ANY mail sent to example1.com like a catch  
all then any mail that it gets i want it to just bounce it on to  
[EMAIL PROTECTED] which is hosted on another server.


So far i can only get postfix to accept from localhost, and when i  
set the mynetworks it makes it a public relay, which is bad.


so anyone know how i can do the catch all on one domain and forward  
it to another..


at the moment this is setup without any mysql and such, as i feel its  
isnt needed as its only going to be moving the mail to the new domain  
its never actually going to be used for mail at all, only the boucing/ 
forwarding.


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


Re: Enabling sound?

2006-07-24 Thread Greg Groth

 I got a SoundBlaster Live! because it was listed as a known working
 piece of hardware.  Apparently this is a newer version of the board that
 isn't supported yet.  Getting it to work is becoming a PITA beyond what
 I have the time and willpower to put in right now.

 Is there a piece of sound hardware I can just run down to CompUSA and
 buy, that I can drop in here and get this thing working with *today*?

Just ran into this getting MythTV running on Gentoo.  In ALSA, it seems 
the new soundblaster cards don't use the emu10k1 driver, they use the 
ca0106 driver.  Don't know if this exists for FreeBSD or not.  In my 
case, the ca0106 driver produced static and a hint of something that 
sounded like sound.  I gave up, and stole an older soundblaster from 
another system I had.


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


Re: problems connecting to cvsup servers

2006-07-24 Thread Dave

Hello,
   Thanks for your suggestion. I've tried cvsup1 through cvsup9 and let it 
try to connect upwards of nearly half an hour, i think this issue has 
something to do with my boxes, but i don't know what. They can contact the 
various cvsup servers, but everytime they always get the access limit msg, 
as if my machines have tried to connect more than once. I've checked for 
cvsup processes and haven't found any. Is there a lock file or something i 
can delete?

   Any other suggestions welcome.
Thanks.
Dave.

- Original Message - 
From: Mikhail Goriachev [EMAIL PROTECTED]

To: Dave [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Monday, July 24, 2006 3:37 AM
Subject: Re: problems connecting to cvsup servers



Dave wrote:

Hello,
Is there anything up with the freebsd cvsup servers? I've been trying 
to

update my ports collection for the past two days always getting the same
error message: access limit exceeded. I have tried various servers all 
with

the same result.
Thanks.
Dave.



Sounds like those servers are busy. Try neighbouring countries or other
continents.


Cheers,
Mikhail.

--
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B 


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


Re: freebsd livecd and pentium 1

2006-07-24 Thread Jerry McAllister
Hi,

 hello. my name is jesus and am writing to you
 from argentina.
 
 i am looking for a freebsd livecd.
 i have just downloaded fresbie, but i am not
 sure if is a freebsd.org or an third-party's
 implementation.

From where did you download the CD?
Was is from a freebsd.org location?
For example, I generally download fromftp.freebsd.org

Try booting it and see what it says.
Generally a third party will advertise their name on the boot screen.

 does freebsd have a live-cd ? is so, where can i
 download it ?

The first CD in the set is essentially a 'live-cd' because you can
select that option - called 'fixit' from the initial menu.  Otherwise
it is also the installation CD and, if you have a good enough net
connection to a mirror site, can be used to do the whole installation.
 
 i want to change my win98/word97 to a real os.

Seems like a reasonable thing to do.

 i use it because the machine is a pentium 1 with
 32 mb ram. is there any bsd with GUI that
 can run in it ?

That is pretty small.   At the bare minimum level, you might be
able to get it up and running, but not be able to do much of any
real work on it without more memory.   

You didn't mention the amount of disk on the machine, but if you want 
to run X (needed for a Gui) then it will take more that a couple of GB 
and if you want KDE or Gnome to manage your Gui, it will take even more.

I don't remember if Pentium I will do the trick or not, but probably
will, just awfully slowly.

Good luck,

jerry

 
 thanks in advance,
 jesus
 
 
 
   
   
   
 __
 Preguntá. Respondé. Descubrí.
 Todo lo que querías saber, y lo que ni imaginabas,
 está en Yahoo! Respuestas (Beta).
 ¡Probalo ya! 
 http://www.yahoo.com.ar/respuestas
 
 ___
 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]


max number of groups a user can be member of

2006-07-24 Thread Roberto Nunnari

Hi everybody.

Could anybody tell me the reason why by default FreeBSD
limits the number of groups a user can be member of to 16?

Not all servers have 5000k users and today memory is not an
issue. Indeed, some servers used just for services have
no users apart a few staff users and users to run the services..

Once you reach the limit on an existing server, apart from
modifying NGROUPS_MAX and rebuilding a new kernel, you also
need to rebuild/reinstall all applications.. That's not nice.

Also, modifying NGROUPS_MAX in /usr/src/sys/sys/syslimits.h
means that every time you update your sources, you must reedit
the file..

Please correct me if I'm wrong and cast some light on
this issue.

Please also reply to my mailbox as I'm not on the list.

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


Re: scsi performance these days

2006-07-24 Thread Lowell Gilbert
Jim Pazarena [EMAIL PROTECTED] writes:

 does FreeBSD (6.1) still operate better on a SCSI drive
 system compared to EIDE or SATA ?

For some values of better, yes.  Especially if the drive supports
tagged queueing and your environment has a number of different
workloads competing with each other.  For other values of better, no.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Adaptec 2410SA Raid and Hot swapping

2006-07-24 Thread Tamouh H.
   Hey,
  
   I have a couple Adaptec 2410SA Raid cards (aac driver) and I was 
   wondering if anyone has had any luck with being able to hotswap 
   drives in FreeBSD 6?
   If the Adaptec card is no good for hot swapping under FreeBSD, 
   what's the recommended brand?
  
   Thanks
   Daniel
 
  I've 2230SLP which hot-swapped no problem under FBSD 5.4 
 and I doubt 
  it'll have issues with 6.x . Though performance write speed 
 is very bad!
 
  Tamouh
 
 Did you use the aaccli tool to initiate/powerdown the drives 
 and rebuild the array?

Nope, didn't need to do. Just removed the hot-swap drive, replaced it. The 
controller picked-up the new drive and rebuilt the RAID. This was RAID-5.

The aaccli tool stopped working with the latest card firmware, so now there is 
no way to manage the card from within FreeBSD.

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


Re: Adaptec 2410SA Raid and Hot swapping

2006-07-24 Thread Chad Leigh -- Shire.Net LLC


On Jul 24, 2006, at 8:30 AM, Tamouh H. wrote:


Hey,

I have a couple Adaptec 2410SA Raid cards (aac driver) and I was
wondering if anyone has had any luck with being able to hotswap
drives in FreeBSD 6?
If the Adaptec card is no good for hot swapping under FreeBSD,
what's the recommended brand?

Thanks
Daniel


I've 2230SLP which hot-swapped no problem under FBSD 5.4

and I doubt

it'll have issues with 6.x . Though performance write speed

is very bad!


Tamouh


Did you use the aaccli tool to initiate/powerdown the drives
and rebuild the array?


Nope, didn't need to do. Just removed the hot-swap drive, replaced  
it. The controller picked-up the new drive and rebuilt the RAID.  
This was RAID-5.


The aaccli tool stopped working with the latest card firmware, so  
now there is no way to manage the card from within FreeBSD.


Are you using the FreeBSD aaccli or the Linux aaccli under the linux  
compatibility stuff?


Try the aaccli from Linux (download from Adaptec directly).  I have  
the latest 2200s firmware and it works fine from FreeBSD.


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: problems connecting to cvsup servers

2006-07-24 Thread Mikhail Goriachev
Dave wrote:
 Hello,
 Thanks for your suggestion. I've tried cvsup1 through cvsup9 and let it 
 try to connect upwards of nearly half an hour, i think this issue has 
 something to do with my boxes, but i don't know what. They can contact the 
 various cvsup servers, but everytime they always get the access limit msg, 
 as if my machines have tried to connect more than once. I've checked for 
 cvsup processes and haven't found any. Is there a lock file or something i 
 can delete?
 Any other suggestions welcome.


Give it a go with this Australian server: cvsup2.au.FreeBSD.org

If it fails then show us the content of your cvsup-supfile. Can't think
of anything else at the moment.


Cheers,
Mikhail.

-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: problems connecting to cvsup servers

2006-07-24 Thread Alexey Karguine

You can use sysutils/fastest_cvsup. Run it like that:

fastest_cvsup -c all

and get the list of fastest cvsup servers for your computer location.


2006/7/24, Dave [EMAIL PROTECTED]:

Hello,
Thanks for your suggestion. I've tried cvsup1 through cvsup9 and let it
try to connect upwards of nearly half an hour, i think this issue has
something to do with my boxes, but i don't know what. They can contact the
various cvsup servers, but everytime they always get the access limit msg,
as if my machines have tried to connect more than once. I've checked for
cvsup processes and haven't found any. Is there a lock file or something i
can delete?
Any other suggestions welcome.
Thanks.
Dave.

- Original Message -
From: Mikhail Goriachev [EMAIL PROTECTED]
To: Dave [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Monday, July 24, 2006 3:37 AM
Subject: Re: problems connecting to cvsup servers


 Dave wrote:
 Hello,
 Is there anything up with the freebsd cvsup servers? I've been trying
 to
 update my ports collection for the past two days always getting the same
 error message: access limit exceeded. I have tried various servers all
 with
 the same result.
 Thanks.
 Dave.


 Sounds like those servers are busy. Try neighbouring countries or other
 continents.


 Cheers,
 Mikhail.

 --
 Mikhail Goriachev
 Webanoide

 Telephone: +61 (0)3 62252501
 Mobile Phone: +61 (0)4 38255158
 E-Mail: [EMAIL PROTECTED]
 Web: http://www.webanoide.org

 PGP Key ID: 0x4E148A3B
 PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B

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




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


Re: freebsd livecd and pentium 1

2006-07-24 Thread Jim Stapleton

That is pretty small.   At the bare minimum level, you might be
able to get it up and running, but not be able to do much of any
real work on it without more memory.

You didn't mention the amount of disk on the machine, but if you want
to run X (needed for a Gui) then it will take more that a couple of GB
and if you want KDE or Gnome to manage your Gui, it will take even more.

I don't remember if Pentium I will do the trick or not, but probably
will, just awfully slowly.



A P1 with 32MB should be sufficient albeit painful, but I wouldn't use
any large scale desktop/window managers (such as KDE/Gnome), I'd
probably use one of the light weights like TWM (and ION?), or maybe a
medium weight (WMaker?), and no more.

A memory upgrade is strongly recommended if possible.

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


Re: Postfix

2006-07-24 Thread jan gestre

On 7/24/06, Grant [EMAIL PROTECTED] wrote:


Hi,

I'm trying to do this.

i want postfix to accept ANY mail sent to example1.com like a catch
all then any mail that it gets i want it to just bounce it on to
[EMAIL PROTECTED] which is hosted on another server.

So far i can only get postfix to accept from localhost, and when i
set the mynetworks it makes it a public relay, which is bad.

so anyone know how i can do the catch all on one domain and forward
it to another..

at the moment this is setup without any mysql and such, as i feel its
isnt needed as its only going to be moving the mail to the new domain
its never actually going to be used for mail at all, only the boucing/
forwarding.

give example2 the highest priority. e.g.


IN  MX 10 mail.example2.com
IN  MX 20 mail.example1.com

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


Re: max number of groups a user can be member of

2006-07-24 Thread Dan Nelson
In the last episode (Jul 24), Roberto Nunnari said:
 Hi everybody.
 
 Could anybody tell me the reason why by default FreeBSD
 limits the number of groups a user can be member of to 16?

Compatibility with the NFS protocol.  A google search on nfs 16
groups returned a lot of hits.

http://www.sunmanagers.org/archives/1998/1328.html
http://nfsworld.blogspot.com/2005/03/whats-deal-on-16-group-id-limitation.html

You can raise the limit, but you need to make sure that you raise it on
all servers that share NFS mounts.  If you don't you may end up with
remote file access either failing or not passing the full group
membership list to the remote server, which could cause incorrect
permission denied errors.

-- 
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: Postfix

2006-07-24 Thread Grant


On 24 Jul 2006, at 15:55, jan gestre wrote:




On 7/24/06, Grant [EMAIL PROTECTED] wrote:
Hi,

I'm trying to do this.

i want postfix to accept ANY mail sent to example1.com like a catch
all then any mail that it gets i want it to just bounce it on to
[EMAIL PROTECTED] which is hosted on another server.

So far i can only get postfix to accept from localhost, and when i
set the mynetworks it makes it a public relay, which is bad.

so anyone know how i can do the catch all on one domain and forward
it to another..

at the moment this is setup without any mysql and such, as i feel its
isnt needed as its only going to be moving the mail to the new domain
its never actually going to be used for mail at all, only the boucing/
forwarding.

give example2 the highest priority. e.g.

IN  MX 10 mail.example2.com
IN  MX 20 mail.example1.com

hth



Hey,

yea sounds that simple, but the other server isnt setup to handle the  
mail for example1.com nor can i set to do so, thats why i was just  
gonna forward it.


anyways, i've used qmail for now, as i know how to do it on there,  
might look over postfix later on, just i needed it kinda now :P so  
it will do...


Thanks for the replys

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


Re: Postfix

2006-07-24 Thread Charles Swiger

On Jul 24, 2006, at 9:16 AM, Grant wrote:
i want postfix to accept ANY mail sent to example1.com like a catch  
all then any mail that it gets i want it to just bounce it on to  
[EMAIL PROTECTED] which is hosted on another server.


If you want to act as an MX secondary, see this section of main.cf:


# Do not specify the names of domains that this machine is backup MX
# host for. Specify those names via the relay_domains settings for
# the SMTP server, or use permit_mx_backup if you are lazy (see
# STANDARD_CONFIGURATION_README).


Otherwise, for dealing with virtual domain delivery, see /usr/local/ 
etc/postfix/virtual.


--
-Chuck


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


Re: max number of groups a user can be member of

2006-07-24 Thread Roberto Nunnari

Thank you Dan.

I'll set up a test machine and try a kernel with the limit
set to 256.

Do you know if that change requires a build world or
a buildkernel is enough?

Best regards.


Dan Nelson wrote:

In the last episode (Jul 24), Roberto Nunnari said:

Hi everybody.

Could anybody tell me the reason why by default FreeBSD
limits the number of groups a user can be member of to 16?


Compatibility with the NFS protocol.  A google search on nfs 16
groups returned a lot of hits.

http://www.sunmanagers.org/archives/1998/1328.html
http://nfsworld.blogspot.com/2005/03/whats-deal-on-16-group-id-limitation.html

You can raise the limit, but you need to make sure that you raise it on
all servers that share NFS mounts.  If you don't you may end up with
remote file access either failing or not passing the full group
membership list to the remote server, which could cause incorrect
permission denied errors.




--
  Roberto Nunnari -software engineer-
   mailto:[EMAIL PROTECTED]
 Scuola Universitaria Professionale della Svizzera Italiana
 Dipartimento Tecnologie Innovative
  http://www.dti.supsi.ch
 SUPSI-DTI
 Via Cantonaletel: +41-91-6108561
 6928 Mannofax: +41-91-6108570
 Switzerland   (o o)
===oOO==(_)==OOo
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Subversion web development question.

2006-07-24 Thread Greg Groth
Forgive me if this question is stupid or has been answered before, more 
than likely this info exists, but I'm not looking in the right place.  I 
work in a small corporation that is heavily dependent on web apps in 
which I am the sole developer.  Currently we're using ASP on Win2K with 
SQL Server 2000.  We've used RedHat for years on our mail / DNS servers, 
and have migrated to FreeBSD for both.  Since ASP has pretty much been 
rendered obsolete by .Net, we are eventually going to migrate our web 
apps.  Rather than continue down the road of MS technology, we have 
decided to migrate to PHP  MySQL based on the stability we've 
experienced with FreeBSD running mail and DNS.  I've done my homework in 
this regard, and the needed functionality for our needs exists in PHP, 
and I am in the process of setting up a development server to start the 
process of recoding the apps.


Our development infrastructure to date works in this manner.  Since I am 
the sole developer, and will be for the long term future, there has 
never been any real need to incorporate SourceSafe.  Instead we run a 
separate development server to do all the coding.  An FTP site has been 
set up to repository on the server.  I currently use HomeSite for it's 
built-in FTP client.  Coding is done locally, saved back to the server, 
and tested on the server in a browser.  Testing is not done locally 
because our needs are such that there is a large number of static text 
files need to be accessed by our apps.  The parameters to access these 
files are hard to duplicate to a workstation, and it has proved (for us 
anyway) to be easier to test these apps on a server that is a mirrored 
environment of the live server.


My question is can something like this be replicated on FreeBSD w/ 
Subversion?  I would like to setup a versioning system, but am at a loss 
on how the development process would operate.  I have found information 
on how to update files on the live server from the development server, 
but not much in the way of how to set up a development server to get 
Subversion to update the files in the Apache directories.  It would be 
trivial for me to simply set up FTP sites that map to the Apache 
directories, and change the permission structure to allow access to 
these directories, but I'd rather not create a security headache for 
myself down the road.  Can Subversion be set up to check out a file, 
commit it back to the server, and test it in a browser from a 
workstation?  Or does the file need to be moved from the Subversion 
directories to the Apache directories by someone w/ root privileges 
every time a file has been edited?


Sorry if this question has been answered somewhere else, it's just that 
most of the info I seem to be finding is based on application 
development for locally run binaries in which the app is tested locally 
before being committed back to the server.


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


Re: multiple hardware problems on Sony VAIO

2006-07-24 Thread Erik Nørgaard
Lowell Gilbert wrote:
 Erik Nørgaard [EMAIL PROTECTED] writes:
 
 I am trying to get things up working (FBSD 6.1-STABLE) on a VAIO FJ3S
 notebook, but have trouble with some devices: cardbus, wireless network
 and sound. And I haven't even tried looking at the built in camera,
 memory card reader or firewire ...

 It may be related, they are all on a ICH6 controler
 
 You can start with:
   http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/99663
 
 which was all I needed to hack up for whatever I was doing on my 
 ICH6 system (sorry; it was a whole month ago, and I've forgotten 
 the details of what, precisely, I was fixing at the time).
 
 It probably won't be enough, but it will help...

Not enough, the ICH6 controler appeared fine also before the patch, but
all the devices that causes problems are on that controler.

Did you add any hints to your loader.conf or device.hints? Does the
order of loading modules matter? can I control it in loader.conf? (maybe
they are loaded in order as listed?).

Further, I have since posting the first post also noted that USB devices
are not detected correctly, a usb mouse only shows up as usm0 if
connected before boot, if disconnected and connected again or just
connected after boot the device is not registered, restarting usbd, devd
or devfs does not help. And I have had no luck using it.

As for the wireless, I have just seen a post on the same problem on the
mobile list, so it may not be related.

Thanks, 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


RE: Temperature Monitor

2006-07-24 Thread Tamouh H.
 
 On Sunday 23 July 2006 18:10, Tamouh H. wrote:
  Beautiful! That did the trick.
 
  adding to the kernel:
 
  device          ichsmb
  device          smb
  device          smbus
  device          intpm
 
  and then installing mbmon from source fixed it!
 
 out of curiosity and for the sake of scientific method, did 
 you happen to do the kernel adds and the try the port again 
 to check failure, or did you do both and then check?
 
 just wondering,
 jonathan
 ___

For the sake of the scientific method, I've removed the above kernel lines, 
recompiled, rebooted and mbmon is still working!

Yet, I suspect mbmon is not reporting the correct temperature, because after 
all that and a reboot , the temperature is still exactly the same:

Temp.= 36.5, 50.5,  0.0; Rot.=0, 1850,0
Vcore = 1.34, 1.51; Volt. = 3.36, 5.21, 12.56,   0.00,  0.00

This machine runs P4 , Intel D865GVHZ motherboard.

On another machine running dual Xeon, SuperMicro board, mbmon wouldn't be able 
to retrieve any data. It just hangs there.

Tamouh

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


Re: Are hardware vendors starting to bail on FreeBSD ... ?

2006-07-24 Thread Freminlins

Ted,

On 24/07/06, Ted Mittelstaedt [EMAIL PROTECTED] wrote:




All you have to do to see this is try booting FBSD 6 on a 80386
and compare it's performance to FBSD 3.X on a 386.




How are you going to do that, Ted? From the 6.0R release notes: Support for
80386 processors (the I386_CPU kernel configuration option) has been
removed. Users running this class of CPU should use FreeBSD 5.*X* or
earlier.


Ted



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


Re: multiple hardware problems on Sony VAIO

2006-07-24 Thread Lowell Gilbert
Erik Nørgaard [EMAIL PROTECTED] writes:

 Lowell Gilbert wrote:
 Erik Nørgaard [EMAIL PROTECTED] writes:
 
 I am trying to get things up working (FBSD 6.1-STABLE) on a VAIO FJ3S
 notebook, but have trouble with some devices: cardbus, wireless network
 and sound. And I haven't even tried looking at the built in camera,
 memory card reader or firewire ...

 It may be related, they are all on a ICH6 controler
 
 You can start with:
   http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/99663
 
 which was all I needed to hack up for whatever I was doing on my 
 ICH6 system (sorry; it was a whole month ago, and I've forgotten 
 the details of what, precisely, I was fixing at the time).
 
 It probably won't be enough, but it will help...

 Not enough, the ICH6 controler appeared fine also before the patch, but
 all the devices that causes problems are on that controler.

The controller itself was found okay (I had sound working on this
system before the patch), but the SM Bus itself wasn't visible.

 Did you add any hints to your loader.conf or device.hints? Does the
 order of loading modules matter? can I control it in loader.conf? (maybe
 they are loaded in order as listed?).

Nothing relevant.  

Sorry I can't help more.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mail system Suggestions

2006-07-24 Thread Mikhail Goriachev
Bill Moran wrote:
 
 I don't know enought about Dovecot in particular to say whether or not
 the speed is _purely_ the result of caching (and being written in C).
 
 But I can state a couple of reasons why the server-side cache helps.
 Keep in mind that IMAP is specifically designed as a clieng/server
 protocol.  I generally have the same mailbox open from three computers:
 my home, my work and my laptop.  When changes are made from one of these,
 the other two need to get synchronized.  Like most people, I try to
 keep my mails organized into folders that don't get too big, but I still
 end up with 1000s of mails in each folder.
 
 Dovecot keeping a cache/index on the server side allows Dovecot to quickly
 provide information when the clients want to sync up.  When a mail client
 is first started, it needs to do the equivalent of send me a list of all
 the emails in this folder.  If Dovecot needs to scan each and every message,
 it can be pretty slow, but if it has an index maintained that it can more
 or less just ship as is, that's much faster.  How often these types of
 overall sync operations occur under normal usage, I don't know.
 
 While I'm not an expert, I believe that Courier maintains indexes as well.
 


Fair enough, thanks for your thoughts. I guess I'll give dovecot a spin
when the right time comes (apparently it's still in beta). Meanwhile
I'll stick with courier-imap.


Cheers,
Mikhail.


-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Subversion web development question.

2006-07-24 Thread Philip Hallstrom
Forgive me if this question is stupid or has been answered before, more than 
likely this info exists, but I'm not looking in the right place.  I work in a


I'd recommend searching the subversion mailing lists as well.  It's been 
covered, but it's not stupid :)


small corporation that is heavily dependent on web apps in which I am the 
sole developer.  Currently we're using ASP on Win2K with SQL Server 2000. 
We've used RedHat for years on our mail / DNS servers, and have migrated to 
FreeBSD for both.  Since ASP has pretty much been rendered obsolete by .Net, 
we are eventually going to migrate our web apps.  Rather than continue down 
the road of MS technology, we have decided to migrate to PHP  MySQL based on


Not to start a war, but if you're switching now, you might want to look 
into Ruby on Rails as well.


Our development infrastructure to date works in this manner.  Since I am the 
sole developer, and will be for the long term future, there has never been


Since you're changing things now, assume that you are not the sole 
developer anymore.  You'll be thankful you did when the next developer 
comes along :)


any real need to incorporate SourceSafe.  Instead we run a separate 
development server to do all the coding.  An FTP site has been set up to 
repository on the server.  I currently use HomeSite for it's built-in FTP 
client.  Coding is done locally, saved back to the server, and tested on the 
server in a browser.  Testing is not done locally because our needs are such 
that there is a large number of static text files need to be accessed by our 
apps.  The parameters to access these files are hard to duplicate to a 
workstation, and it has proved (for us anyway) to be easier to test these 
apps on a server that is a mirrored environment of the live server.


This sound very similar to our situation..

My question is can something like this be replicated on FreeBSD w/ 
Subversion?


Sure.

I would like to setup a versioning system, but am at a loss on 
how the development process would operate.  I have found information on how 
to update files on the live server from the development server, but not much 
in the way of how to set up a development server to get Subversion to update 
the files in the Apache directories.  It would be trivial for me to simply 
set up FTP sites that map to the Apache directories, and change the 
permission structure to allow access to these directories, but I'd rather not 
create a security headache for myself down the road.  Can Subversion be set 
up to check out a file, commit it back to the server, and test it in a 
browser from a workstation?  Or does the file need to be moved from the 
Subversion directories to the Apache directories by someone w/ root 
privileges every time a file has been edited?


If your development server is local (ie. on the LAN) to your workstation, 
I would setup Samba to share your web tree to your workstation.   Once 
this is done you can simply create/edit/delete files right from your 
workstation and the changes take affect immediately on the development 
server.


The second step is to add subversion.  To do this, create the subversion 
repository on your development server (or on a dedidcated server 
somewhere) and set it up to allow remote access.  Then, go get a graphical 
SVN client like TortioseSVN (for windows only, but mac clients exist too) 
and configure it to check out your repository onto that share you mounted 
earlier.


At this point you can manage your files on your workstation and 
immediately check your results.


Then when happy, you can commit your changes with SVN and they get 
committed to the repository.


You don't need subversion to move files into your web tree.  That's not 
what it does.


Some other thoughts...

If you like the command line, you can skip the graphical SVN client and 
just do it directly on the development server.  That's what I do.  If you 
did that you could also skip Samba and keep on using your FTP client, 
although I personally hate having to FTP files back and forth.


Search the net for books on subversion... there are a couple that are 
freely available.  OReilly also has made their samba book free as well.


Good luck!


Sorry if this question has been answered somewhere else, it's just that most 
of the info I seem to be finding is based on application development for 
locally run binaries in which the app is tested locally before being 
committed back to the server.


Best regards,
Greg Groth
___
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: Subversion web development question.

2006-07-24 Thread Greg Groth

On 7/24/2006 12:16 PM, Philip Hallstrom wrote:
Forgive me if this question is stupid or has been answered before, 
more than likely this info exists, but I'm not looking in the right 
place.  I work in a


I'd recommend searching the subversion mailing lists as well.  It's been 
covered, but it's not stupid :)


Will do, thanks.



small corporation that is heavily dependent on web apps in which I am 
the sole developer.  Currently we're using ASP on Win2K with SQL 
Server 2000. We've used RedHat for years on our mail / DNS servers, 
and have migrated to FreeBSD for both.  Since ASP has pretty much been 
rendered obsolete by .Net, we are eventually going to migrate our web 
apps.  Rather than continue down the road of MS technology, we have 
decided to migrate to PHP  MySQL based on


Not to start a war, but if you're switching now, you might want to look 
into Ruby on Rails as well.


Our development infrastructure to date works in this manner.  Since I 
am the sole developer, and will be for the long term future, there has 
never been


Since you're changing things now, assume that you are not the sole 
developer anymore.  You'll be thankful you did when the next developer 
comes along :)


That's the plan :).



any real need to incorporate SourceSafe.  Instead we run a separate 
development server to do all the coding.  An FTP site has been set up 
to repository on the server.  I currently use HomeSite for it's 
built-in FTP client.  Coding is done locally, saved back to the 
server, and tested on the server in a browser.  Testing is not done 
locally because our needs are such that there is a large number of 
static text files need to be accessed by our apps.  The parameters to 
access these files are hard to duplicate to a workstation, and it has 
proved (for us anyway) to be easier to test these apps on a server 
that is a mirrored environment of the live server.


This sound very similar to our situation..

My question is can something like this be replicated on FreeBSD w/ 
Subversion?


Sure.

I would like to setup a versioning system, but am at a loss on how the 
development process would operate.  I have found information on how to 
update files on the live server from the development server, but not 
much in the way of how to set up a development server to get 
Subversion to update the files in the Apache directories.  It would be 
trivial for me to simply set up FTP sites that map to the Apache 
directories, and change the permission structure to allow access to 
these directories, but I'd rather not create a security headache for 
myself down the road.  Can Subversion be set up to check out a file, 
commit it back to the server, and test it in a browser from a 
workstation?  Or does the file need to be moved from the Subversion 
directories to the Apache directories by someone w/ root privileges 
every time a file has been edited?


If your development server is local (ie. on the LAN) to your 
workstation, I would setup Samba to share your web tree to your 
workstation.   Once this is done you can simply create/edit/delete files 
right from your workstation and the changes take affect immediately on 
the development server.


Just for clarification, the dev server is not on the local LAN, it 
resides on the DMZ.  Way back when, our dev server was on the LAN, live 
server on the DMZ, but we ran into a lot of issues getting some MS 
specific technologies working when the code was moved from the dev 
server to the live server.  Code written for path statements had to be 
rewritten to run in the DMZ.  Since then, the dev server has resided on 
the DMZ.  The other reason is for remote accessibility.  Having the dev 
server on the DMZ allows me the ability to code from home without having 
to punch a hole in the firewall to our internal LAN.




The second step is to add subversion.  To do this, create the subversion 
repository on your development server (or on a dedidcated server 
somewhere) and set it up to allow remote access.  Then, go get a 
graphical SVN client like TortioseSVN (for windows only, but mac clients 
exist too) and configure it to check out your repository onto that share 
you mounted earlier.


At this point you can manage your files on your workstation and 
immediately check your results.


Then when happy, you can commit your changes with SVN and they get 
committed to the repository.


You don't need subversion to move files into your web tree.  That's not 
what it does.


Fair enough, so should I assume then that the files need to be moved 
using SSH (for example) after su-ing  to root?  If so, I suppose I would 
be better off then just setting up Apache on my desktop, testing 
locally, then moving the files back to the server?




Some other thoughts...

If you like the command line, you can skip the graphical SVN client and 
just do it directly on the development server.  That's what I do.  If 
you did that you could also skip Samba and keep on using your FTP 
client, 

Re: Are hardware vendors starting to bail on FreeBSD ... ?

2006-07-24 Thread Nikolas Britton

On 7/24/06, Freminlins [EMAIL PROTECTED] wrote:

Ted,

On 24/07/06, Ted Mittelstaedt [EMAIL PROTECTED] wrote:



 All you have to do to see this is try booting FBSD 6 on a 80386
 and compare it's performance to FBSD 3.X on a 386.



How are you going to do that, Ted? From the 6.0R release notes: Support for
80386 processors (the I386_CPU kernel configuration option) has been
removed. Users running this class of CPU should use FreeBSD 5.*X* or
earlier.




Use a i486 then... The point he's trying to make is still valid.

This would be like running Windows 3.1 on a brand new Xeon 5100
dual-core CPU... sure it will run fast* but what the hell are you
going to do with it? Play solitaire?

* In are hypothetical situation Windows 3.1 is a 64-bit SMP aware OS,
it's not in real life and this should help drive home the point ted is
trying to make.


--
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: fbsd 6.1 and starting services problem

2006-07-24 Thread Lowell Gilbert
[EMAIL PROTECTED] writes:

 Hi,
  
  It is my first fbsd 6.1.
  
  I migrate a system from fbsd 6.0 to 6.1.
  
  I have a script postgresql.sh in /usr/local/etc/rc.d.
  It is executible.
  Also it is working on 6.0 at startup.
  
  But it do not runs in fbsd 6.1.
  
  If I try /usr/local/etc/rc.d/postgresql.sh start all is
 fine.
  
  I checked :
  cat /etc/defaults/rc.conf | grep local_startup
  local_startup=/usr/local/etc/rc.d /usr/X11R6/etc/rc.d #
 startup script
 dirs.
  
  It looks ok for me.
  
  Pls. help me to find the problem.
  
 Also fbsd do not start at boot any services with scripts
 in /usr/local/etc/rc.d .

Did you remember to use mergemaster(8) to update your /etc scripts?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Simple DNS Configuration

2006-07-24 Thread Matthias Fechner
Hi David,

David Stanford wrote:
 Now it appears to be working correctly and responding to queries, however
 I'm noticing I continue to get that same error when I add my CNAME entry:
 =
 @  IN   CNAMEwww.example.org.
 =

write:
www IN  CNAME   example.org.



Best regards,
Matthias

-- 

Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs, and the universe trying to
produce bigger and better idiots. So far, the universe is winning. --
Rich Cook

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


Re: Are hardware vendors starting to bail on FreeBSD ... ?

2006-07-24 Thread Nikolas Britton

On 7/24/06, Freminlins [EMAIL PROTECTED] wrote:

Nikolas,


On 24/07/06, Nikolas Britton [EMAIL PROTECTED] wrote:

 This would be like running Windows 3.1 on a brand new Xeon 5100
 dual-core CPU... sure it will run fast* but what the hell are you
 going to do with it? Play solitaire?


You have this the wrong way round. The correct allusion would surely be
something like imagine running  XP on a 80386, not an old OS on new
hardware. Old OSs don't always run at all on new hardware.



I used the Inverse example for a reason.


Anyway, I am sure that Ted can speak for himself.



Don't worry, ted will...


--
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: max number of groups a user can be member of

2006-07-24 Thread Dan Nelson
In the last episode (Jul 24), Roberto Nunnari said:
 Thank you Dan.
 
 I'll set up a test machine and try a kernel with the limit
 set to 256.
 
 Do you know if that change requires a build world or
 a buildkernel is enough?

libc uses NGROUPS_MAX and NGROUPS, so a buildworld is recommended.

-- 
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: Are hardware vendors starting to bail on FreeBSD ... ?

2006-07-24 Thread Greg Barniskis

Ted Mittelstaedt wrote:
- Original Message - 
From: Danial Thom [EMAIL PROTECTED]

To: Greg Barniskis [EMAIL PROTECTED]; Nick Withers
[EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED];
freebsd-questions@freebsd.org
Sent: Thursday, July 13, 2006 11:10 AM
Subject: Re: Are hardware vendors starting to bail on FreeBSD ... ?



Burying your head in the sand is a common method
used by stupid people that have no answer to the
truth. I don't blame you; you guys don't want
your employers to know that you've wasted man
1000s of their dollars because you don't know the
performance characteristics of the hardware
you've recommended. It must be thoroughly
embarrassing.

[snip]


I do agree with Danial that most USERS on this list are
burying their heads in the sand on this issue.  But I will
point out that there isn't really any reason they shouldn't
be.  What the market wants is features, not speed.  And
that is what the FreeBSD developers are working on.


Features over speed is generally the right equation, yes.

But I think you're being too generous to Danial. The quote of his 
above was in direct response to my assertion that many people refuse 
to listen to him because he frequently engages in cheap demagogy[1].


His response? Another whole boatload of cheap demagogy, questioning 
the intelligence, aptitude and moral character of anyone who doesn't 
listen to him, by way of accusations that are wholly unsupported by 
facts. I could probably rest my case right there, but I think his 
perception (and yours) that people are not receptive to claims of 
FreeBSD performance problems is quite simply false.


Every time a performance question is brought up, I see a flurry of 
calls for clarification and for the formulation of repeatable tests 
which are generally agreed to be an accurate gauge of the problem. 
People with performance problems then /sometimes/ get upset (I think 
because the questioning and testing tends to assume they're wrong 
and they get defensive about it).


The problem is, scientific testing of an assertion must try to prove 
the hypothesis is false, and must posit (and also try to disprove) 
any plausible alternative explanations. There's just no reason to 
get upset about that. Raising questions about a claim, and trying to 
explain an outcome's root cause by alternative hypotheses, is in 
fact the /required behavior/ of critical thinkers.


When the OP of a performance problem does follow through with 
testing, and is willing to engage civilly in a logical debate, then 
generally there is a successful outcome to the thread. When the OP 
of a problem gets emotional about it and starts spouting cheap 
demagogy, then other users and developers quickly will walk away 
from the table.


Walking away from trollery is in no way equivalent to these users 
and developers sticking their heads in the sand on the issue. It's 
the predictable response of critical thinkers who recognize demagogy 
as a tool of /antitruth/. Those who consistently use demagogy are 
always more interested in winning an argument than in finding the 
truth, and any critical thinker either sees right through the murk 
of BS being tossed at them or least has enough intuitive sense to 
recoil from it.


And that is /the only reason/ why people ignore Danial. His brand of 
cheap demagogy is so potent that the smell of /antitruth/ emanates 
from his posts in a field so strong that it might as well be a 
physically repelling force. He might do better in politics or 
religion where these trollish debating tactics are the norm. But 
in a community of critical thinkers, the truthiness of demagogy 
will rarely find any traction at all.



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


Re: Subversion web development question.

2006-07-24 Thread Philip Hallstrom
At this point you can manage your files on your workstation and immediately 
check your results.


Then when happy, you can commit your changes with SVN and they get 
committed to the repository.


You don't need subversion to move files into your web tree.  That's not 
what it does.


Fair enough, so should I assume then that the files need to be moved using 
SSH (for example) after su-ing  to root?  If so, I suppose I would be better 
off then just setting up Apache on my desktop, testing locally, then moving 
the files back to the server?


Why would you need to be root?  Here's what we do at work:

The development server is at the data center (since we're all remote). 
Apache has been configured to run several name based virtual servers and 
looks for the document root in a 'cpr' in our home directory. (cpr is the 
initials of our project)


For those of us that like the CLI and working directly on the server, the 
'cpr' directory is also our subversion working directory.  So I edit a 
file, test it, like it, commit it. repeat.


Our designers don't like CLI.  What we've done for them is to set them up 
with TortioseSVN on their workstations.  They check out the repository on 
their desktop.  They make changes.  When they want to test, they run rsync 
(via cygwin and a shell script) that syncs only the files they've changed 
(and skips all the .svn sub dirs) up to the server.  They test.  They 
like, they commit using TortioseSVN.  All of thise happens over a SSH 
tunnel.


At no point in any of this do any of us need to be root

If you can get your dev environment running locally it will be easier 
since you won't have to upload to test, but depending on your situation 
that might not be reasonable.


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


Re: Mail system Suggestions

2006-07-24 Thread Martin Hepworth

On a side note, I found Outlook 2003 really shoddy/poor at working with IMAP
based systems, esp when you have lots of rules to run and lots of emails to
download first thing in the morning.

eg would easily 10 minutes to synchonise, whereas thunderbird takes about 10
seconds!

So from now I say Outlook doesn't work with IMAP, but merely tolerates them
;-(

--
Martin

On 7/23/06, Mikhail Goriachev [EMAIL PROTECTED] wrote:


jan gestre wrote:
 On 7/22/06, Dave [EMAIL PROTECTED] wrote:
 Hi,
 I would recommend dovecot. It's capable of both imap as well as pop
if
 you later want to add that and can do encrypted versions of those
 protocols
 as well. Dovecot is also in my opinion much easier to configure and
less
 resource intensive than other imap servers.
 If i can be of any assistance let me know.
 Thanks.
 Dave.



 i second it, dovecot works great, try it.


I'm not into starting a flaming session, but dovecot's indexing/caching
capabilities are the only things that make it fast. Am I right? Well, it
is also written in C. I came across a few posts[1][2], though they're
old, saying that everything depends on e-mail clients as well.

I'm responsible for 2 courier-imap in production and about to start
working on a new one. This and previous threads regarding dovecot caught
my attention and it sounds interesting. However, what good is there
having indexes on IMAP server and on local machine?

I realised that my Thunderbird keeps record of all my folders and their
contents. So roughly I've got ~800MB of e-mails on IMAP and 12MB of
indexes in Thunderbird's profile. Also, apparently Outlook 2003 caches
absolutely everything. I've seen accounts with 2.9GB worth of e-mails on
IMAP and generated outlook.pst as big as 950MB. Maybe dovecot's indexing
features would be great in webmail environments?

Maybe I just got lost somewhere. Any input would be highly appreciated.

Cheers,
Mikhail.

[1] -

http://www.mail-archive.com/courier-users@lists.sourceforge.net/msg19821.html
[2] -

http://www.mail-archive.com/courier-users@lists.sourceforge.net/msg19834.html


--
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
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 good www/picture management port?

2006-07-24 Thread Derrick Ryalls

On 7/22/06, Jonathan Horne [EMAIL PROTECTED] wrote:

anyone know of good picture management application that can be found within
ports, to manage and organize pics that i upload?

right now, my management system is to:
1) open my folder on my local KDE workstation.  create image gallery using the
built in tool.
2) upload the entire folder under a master folder on my web host.

im not looking for sometnig that i can try to complete with imageshack or
anything, but if there is something out there that can help me out with the
thumbnailing and organization of the tons of pics im accumulating these days,
i would appreciate anyones input.

thanks a bunch,
jonathan
___


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


Re: Subversion web development question.

2006-07-24 Thread Greg Groth

 Why would you need to be root?  Here's what we do at work:

Because /usr/local/www/apache22/data is owned by root.  I guess I 
mistakenly figured that this is where the files should go.  I know that 
you can configure Apache to point to any directory, but was unsure of 
the consequences of pointing it at directories outside of 
/usr/local/www/apache22/data.



 The development server is at the data center (since we're all remote).
 Apache has been configured to run several name based virtual servers and
 looks for the document root in a 'cpr' in our home directory. (cpr is
 the initials of our project)

 For those of us that like the CLI and working directly on the server,
 the 'cpr' directory is also our subversion working directory.  So I edit
 a file, test it, like it, commit it. repeat.

 Our designers don't like CLI.  What we've done for them is to set them
 up with TortioseSVN on their workstations.  They check out the
 repository on their desktop.  They make changes.  When they want to
 test, they run rsync (via cygwin and a shell script) that syncs only the
 files they've changed (and skips all the .svn sub dirs) up to the
 server.  They test.  They like, they commit using TortioseSVN.  All of
 thise happens over a SSH tunnel.

 At no point in any of this do any of us need to be root

 If you can get your dev environment running locally it will be easier
 since you won't have to upload to test, but depending on your
 situation that might not be reasonable.

 -philip

What you suggest makes perfect sense, I wasn't sure if you could point 
Apache directly at a directory within Subversion's structure or not. I 
do have one more question.  From a security standpoint would it be safer 
to point to a symlink within Apache's existing directory structure that 
points to /usr/home/svnDirectory, or configure Apache to point directly 
to /usr/home/svnDirectory?  It's probably a moot point, but I'm still 
unsure of myself when it comes to messing around with permissions within 
FreeBSD and don't like making changes to the defaults without asking first.


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


Re: Subversion web development question.

2006-07-24 Thread Philip Hallstrom

Why would you need to be root?  Here's what we do at work:


Because /usr/local/www/apache22/data is owned by root.  I guess I mistakenly 
figured that this is where the files should go.  I know that you can 
configure Apache to point to any directory, but was unsure of the 
consequences of pointing it at directories outside of 
/usr/local/www/apache22/data.


if it's your dev server, point it to wherever is most convenient.


The development server is at the data center (since we're all remote).
Apache has been configured to run several name based virtual servers and
looks for the document root in a 'cpr' in our home directory. (cpr is
the initials of our project)

For those of us that like the CLI and working directly on the server,
the 'cpr' directory is also our subversion working directory.  So I edit
a file, test it, like it, commit it. repeat.

Our designers don't like CLI.  What we've done for them is to set them
up with TortioseSVN on their workstations.  They check out the
repository on their desktop.  They make changes.  When they want to
test, they run rsync (via cygwin and a shell script) that syncs only the
files they've changed (and skips all the .svn sub dirs) up to the
server.  They test.  They like, they commit using TortioseSVN.  All of
thise happens over a SSH tunnel.

At no point in any of this do any of us need to be root

If you can get your dev environment running locally it will be easier
since you won't have to upload to test, but depending on your
situation that might not be reasonable.

-philip


What you suggest makes perfect sense, I wasn't sure if you could point Apache 
directly at a directory within Subversion's structure or not. I do have one


I think you should read more about subversion as I think you are confusing 
a svn repository with a svn working directory...


more question.  From a security standpoint would it be safer to point to a 
symlink within Apache's existing directory structure that points to 
/usr/home/svnDirectory, or configure Apache to point directly to 
/usr/home/svnDirectory?  It's probably a moot point, but I'm still unsure of 
myself when it comes to messing around with permissions within FreeBSD and 
don't like making changes to the defaults without asking first.


Doesn't make a bit of difference.  I'd avoid the symlink simply cause 
there isn't any reason to have it.

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


Re: problem to establish SSH connection from inside jail to the outside world

2006-07-24 Thread S. Wagler

Hi,

I've just wanted to tell you, that I've solved the problem by not 
letting the script run under control of the daemon tools but via a 
self written perl script.


Now, the problem not being able to access TTY no longer exists.

Bye,
S.Wagler


S. Wagler wrote:

Hi,

I'm currently using FreeBSD 6.1-RELEASE with a bunch of jails. In one of 
them I need to connect to the outside world via SSH which does not work 
properly.


When logging in to (!) the jail via SSH, everything works properly: I 
can connect from inside the jail to the outside via SSH, but when 
running a script from inside the jail via cron or in my case daemontools 
and not being logged into that jail, I get the following error while 
using a SSH syntax like ssh -T -vv ...:


...
read_passphrase: can't open /dev/tty: No such file or directory
...

Is there any solution for that kind of problem? /dev/tty is not 
existing at all, which I think should not a problem under FreeBSD 6.x at 
all.


Any solutions welcome!

Thank you very much in advance,
S. Wagler
___
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]


Unable to access Postfixadmin

2006-07-24 Thread Gerard Seibert
Regarding: postfixadmin

I cannot seem to get the program to start using the default installation.
What I mean is, I inserted this into the httpd.conf file as directed by
the installation script:

Directory /usr/local/www/postfixadmin
 Options Indexes
 AllowOverride AuthConfig
/Directory

Attempting to access the site produced am error message.

I then inserted this into the file:

Alias /postfixadmin/ /usr/local/www/postfixadmin/

Now it finds the site, but says I do not have permission to access it/
am never given a chance to give a user name or password.

I finally gave up and changed the Directory entries to gain access.

The .htpasswd and .htaccess files are both located in the
postfixadmin/admin directory. I even used htpasswd to create a new file
thinking that the original one might be corrupt, but that failed also.
The path in the .htaccess file seems correct.

I have Apache22 installed.

Thanks!


-- 
Gerard Seibert
[EMAIL PROTECTED]


I love cooking with wine. Sometimes I even put it in the food.

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


Re: Are hardware vendors starting to bail on FreeBSD ... ?

2006-07-24 Thread Andrew Robinson
Ted Mittelstaedt wrote: 
 - Original Message - 
 From: Danial Thom [EMAIL PROTECTED]  
 To: Greg Barniskis [EMAIL PROTECTED]; Nick Withers 
 [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED];   
 freebsd-questions@freebsd.org
 Sent: Thursday, July 13, 2006 11:10 AM
 Subject: Re: Are hardware vendors starting to bail on FreeBSD ... ?  


 Burying your head in the sand is a common method   
 used by stupid people that have no answer to the   
 truth. I don't blame you; you guys don't want
 your employers to know that you've wasted man
 1000s of their dollars because you don't know the  
 performance characteristics of the hardware 
 you've recommended. It must be thoroughly  
 embarrassing.
[snip] 

 I do agree with Danial that most USERS on this list are
 burying their heads in the sand on this issue. But I will  
 point out that there isn't really any reason they shouldn't  
 be. What the market wants is features, not speed. And
 that is what the FreeBSD developers are working on.  

Writing as a USER on this list - I think that the Total Cost of
Ownership is also an important consideration.  I run FreeBSD because
the user-machine combination is more efficient, even if the OS itself
is slower - and I don't know about that.  I escaped from Windows via
Linux and settled here just when 5.0 came out.  I really like the
tools and the organization of the OS.  More features is nice, more
speed is nice, but I just like the way that it works.  Warm kudos to
the developers for that.

Andrew

-- 
Andrew Robinson  
Department of Mathematics and StatisticsTel: +61-3-8344-9763
University of Melbourne, VIC 3010 Australia Fax: +61-3-8344-4599
Email: [EMAIL PROTECTED] http://www.ms.unimelb.edu.au
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Simple DNS Configuration

2006-07-24 Thread David Stanford

On 7/24/06, Matthias Fechner [EMAIL PROTECTED] wrote:


Hi David,

David Stanford wrote:
 Now it appears to be working correctly and responding to queries,
however
 I'm noticing I continue to get that same error when I add my CNAME
entry:
 =
 @  IN   CNAMEwww.example.org.
 =

write:
www IN  CNAME   example.org.



Best regards,
Matthias

I've tried everyone's suggestions to no avail. Here's my actual

configuration:

[EMAIL PROTECTED] ~]# /etc/rc.d/named stop
Stopping named.
[EMAIL PROTECTED] ~]# tail -12 /etc/namedb/named.conf

zone daemonbox.net {
   type master;
   file master/daemonbox.net;
};

/*
zone 140.246.66.in-addr.arpa {
   type master;
   file master/140.246.66.in-addr.arpa;
};
*/
[EMAIL PROTECTED] ~]# cat /etc/namedb/master/daemonbox.net
$TTL 3600; 1 hour
daemonbox.net.  IN  SOA chadwick.daemonbox.net.
dstanford.daemonbox.net. (
   2006072400  ; Serial
   1d  ; Refresh
   2h  ; Retry
   100d; Expire
   1h ); Minimum TTL


; DNS Servers
@   IN  NS  chadwick.daemonbox.net.
@   IN  NS  ns1.nac.net.
@   IN  NS  ns2.nac.net.

; MX Records
   IN  MX 10   mail.daemonbox.net.

; Machine Names
localhost   IN  A   127.0.0.1
chadwick   IN  A   66.246.140.170
mail  IN  A   66.246.246.58
www IN  A   66.246.140.170
@IN  A   66.246.140.170

; Aliases
www IN  CNAME   @
[EMAIL PROTECTED] ~]# /etc/rc.d/named start
Starting named.
[EMAIL PROTECTED] ~]# host -t a daemonbox.net localhost
Using domain server:
Name: localhost
Address: 127.0.0.1#53
Aliases:

Host daemonbox.net not found: 2(SERVFAIL)


Does anyone see anything wrong with this? Thanks for all your help!

-David
--
[EMAIL PROTECTED] ~]# fortune
Happiness is just an illusion, filled with sadness and confusion.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


tar dies on making tape backup

2006-07-24 Thread Jaime
	I'm attempting to use tar to feed my filesystem(s) to a DLT tape  
drive.  I've done this with FreeBSD 3 through 5 and DAT (DDS-3 and  
DDS-4) tapes for years.  The command now appears to work for a while  
and then dies with this message about 2.5 hours into the process:


archive_write_pax_header: 'x' header failed?!  This can't happen.

Any idea what this means?

I'm using:
$ uname -a
FreeBSD atlas.cairodurham.org 6.1-STABLE FreeBSD 6.1-STABLE #0: Wed  
Jun 28 11:27:09 EDT 2006 [EMAIL PROTECTED]:/usr/obj/usr/ 
src/sys/SMP  i386


	This is my first FreeBSD 6.x system, my first SMP kernel, and my  
first DLT drive on a FreeBSD system.  Using Google, I couldn't find  
any answers that were useful.  (Just a few dead threads from various  
forums and mailing lists.)


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


Re: Simple DNS Configuration

2006-07-24 Thread Derek Ragona

Check your /etc/nsswitch.conf file.  You want the line for hosts to be:
dns files

Also be sure named is running.  While it says it is starting do a:
ps -ax|grep name

-Derek


At 04:53 PM 7/24/2006, David Stanford wrote:

On 7/24/06, Matthias Fechner [EMAIL PROTECTED] wrote:


Hi David,

David Stanford wrote:
 Now it appears to be working correctly and responding to queries,
however
 I'm noticing I continue to get that same error when I add my CNAME
entry:
 =
 @  IN   CNAMEwww.example.org.
 =

write:
www IN  CNAME   example.org.



Best regards,
Matthias

I've tried everyone's suggestions to no avail. Here's my actual

configuration:

[EMAIL PROTECTED] ~]# /etc/rc.d/named stop
Stopping named.
[EMAIL PROTECTED] ~]# tail -12 /etc/namedb/named.conf

zone daemonbox.net {
   type master;
   file master/daemonbox.net;
};

/*
zone 140.246.66.in-addr.arpa {
   type master;
   file master/140.246.66.in-addr.arpa;
};
*/
[EMAIL PROTECTED] ~]# cat /etc/namedb/master/daemonbox.net
$TTL 3600; 1 hour
daemonbox.net.  IN  SOA chadwick.daemonbox.net.
dstanford.daemonbox.net. (
   2006072400  ; Serial
   1d  ; Refresh
   2h  ; Retry
   100d; Expire
   1h ); Minimum TTL


; DNS Servers
@   IN  NS  chadwick.daemonbox.net.
@   IN  NS  ns1.nac.net.
@   IN  NS  ns2.nac.net.

; MX Records
   IN  MX 10   mail.daemonbox.net.

; Machine Names
localhost   IN  A   127.0.0.1
chadwick   IN  A   66.246.140.170
mail  IN  A   66.246.246.58
www IN  A   66.246.140.170
@IN  A   66.246.140.170

; Aliases
www IN  CNAME   @
[EMAIL PROTECTED] ~]# /etc/rc.d/named start
Starting named.
[EMAIL PROTECTED] ~]# host -t a daemonbox.net localhost
Using domain server:
Name: localhost
Address: 127.0.0.1#53
Aliases:

Host daemonbox.net not found: 2(SERVFAIL)


Does anyone see anything wrong with this? Thanks for all your help!

-David
--
[EMAIL PROTECTED] ~]# fortune
Happiness is just an illusion, filled with sadness and confusion.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

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



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

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


Re: Simple DNS Configuration

2006-07-24 Thread David Stanford

On 7/24/06, Derek Ragona [EMAIL PROTECTED] wrote:


 Check your /etc/nsswitch.conf file.  You want the line for hosts to be:
dns files

Also be sure named is running.  While it says it is starting do a:
ps -ax|grep name

-Derek



Derek,

nsswitch.conf hasn't been modified from the default:
[EMAIL PROTECTED] ~]# cat /etc/nsswitch.conf
group: compat
group_compat: nis
hosts: files dns
networks: files
passwd: compat
passwd_compat: nis
shells: files

And I've been verifying named is running after every stop/start of the rc
script:
[EMAIL PROTECTED] ~]# ps aux|grep named
bind  26207  4.1  0.2  4060  3328  ??  Ss7:09PM
0:00.08/usr/sbin/named -t /var/named -u bind
root  10645  0.0  0.0  1300   952  ??  Ss6:09AM
0:02.08/usr/sbin/syslogd -l /var/run/log -l /var/named/var/run/log -s

There has to be something I'm missing as I've set this is up in the exact
same manner on a dev box at home using the same named.conf and master files,
and still yield the same results.

-David
--
[EMAIL PROTECTED] ~]# fortune
Happiness is just an illusion, filled with sadness and confusion.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: tar dies on making tape backup

2006-07-24 Thread Micah

Jaime wrote:
I'm attempting to use tar to feed my filesystem(s) to a DLT tape 
drive.  I've done this with FreeBSD 3 through 5 and DAT (DDS-3 and 
DDS-4) tapes for years.  The command now appears to work for a while and 
then dies with this message about 2.5 hours into the process:


archive_write_pax_header: 'x' header failed?!  This can't happen.

Any idea what this means?

I'm using:
$ uname -a
FreeBSD atlas.cairodurham.org 6.1-STABLE FreeBSD 6.1-STABLE #0: Wed Jun 
28 11:27:09 EDT 2006 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/SMP  i386


This is my first FreeBSD 6.x system, my first SMP kernel, and my 
first DLT drive on a FreeBSD system.  Using Google, I couldn't find any 
answers that were useful.  (Just a few dead threads from various forums 
and mailing lists.)


Thanks in advance,
Jaime


I had the same problem recently and Google told me to look for files 
with malformed dates. I used find to search for files dated before Jan 
1, 1970, and found one dated 1901. As soon as I touched the 
problematic file, tar worked.


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


users based on time+ath (Please)

2006-07-24 Thread Marwan Sultan

Hello gurus,

 Please, Please! if someone can help me, how to setup any an accounts 
system based on time

and auth

 I'm On FreeBSD 6.1R its acting as a internet gateway for a comlex of 30 
appartments.

 the internet to this box is connected thro a dsl and its up/running,

 Well, We want to bill whoever sharing our internet connection on a monthly 
bases

 so basically, I want to release internet access based on time+auth.
 and to manage those users.

 I have been told to use  squid.
 as i know squid is a cache server?

 just, where to start to setup a system, that will force the user to enter 
a user/password

 to connect to the internet? considering my freebsd is the gateway?
 how to manage those users? any packages,


 what shall i do? My manager would kill if i dunt accomplish this mission 
:(


Marwan

_
Don't just search. Find. Check out the new MSN Search! 
http://search.msn.com/


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


Re: Simple DNS Configuration

2006-07-24 Thread Beech Rintoul
On Monday 24 July 2006 15:10, David Stanford wrote:
 On 7/24/06, Derek Ragona [EMAIL PROTECTED] wrote:
   Check your /etc/nsswitch.conf file.  You want the line for hosts to be:
  dns files
 
  Also be sure named is running.  While it says it is starting do a:
  ps -ax|grep name
 
  -Derek

 Derek,

 nsswitch.conf hasn't been modified from the default:
 [EMAIL PROTECTED] ~]# cat /etc/nsswitch.conf
 group: compat
 group_compat: nis
 hosts: files dns
 networks: files
 passwd: compat
 passwd_compat: nis
 shells: files

 And I've been verifying named is running after every stop/start of the rc
 script:
 [EMAIL PROTECTED] ~]# ps aux|grep named
 bind  26207  4.1  0.2  4060  3328  ??  Ss7:09PM
 0:00.08/usr/sbin/named -t /var/named -u bind
 root  10645  0.0  0.0  1300   952  ??  Ss6:09AM
 0:02.08/usr/sbin/syslogd -l /var/run/log -l /var/named/var/run/log -s

 There has to be something I'm missing as I've set this is up in the exact
 same manner on a dev box at home using the same named.conf and master
 files, and still yield the same results.

 -David

I have the same problem as you trying to do that by hand. I even have the 
O'Reilly book on dns. As a suggestion, you might install webmin. It does a 
very good job managing bind. I even used it at an ISP I worked for and really 
liked it. We had 300+ virtual domains and editing all the files by hand was a 
nightmare when something changed.

just my .02

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













pgpXMyFEn0O3K.pgp
Description: PGP signature


Re: a good www/picture management port?

2006-07-24 Thread Mike Hunter
I haven't tried gallery on FreeBSD, but I highly recommend it based on my
experience with it on Linux.

Mike

On Jul 22 at 18:07, Jeff Palmer wrote:

 www/gallery
 
 http://www.gallery.org
 
 
 - Original Message - 
 From: Jonathan Horne [EMAIL PROTECTED]
 To: freebsd-questions@freebsd.org
 Sent: Saturday, July 22, 2006 5:42 PM
 Subject: a good www/picture management port?
 
 
 anyone know of good picture management application that can be found 
 within
 ports, to manage and organize pics that i upload?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Error compiling GNAT

2006-07-24 Thread Rico Secada
Hi

During installation of GNAT from ports I get the following error:

gmake[2]: Entering directory `/usr/ports/lang/gnat/work/gcc-34/gcc/fixinc'
/bin/csh ./genfixes machname.h
SHELL=/bin/sh: Command not found.
export: Command not found.
if: Expression Syntax.
gmake[2]: *** [machname.h] Error 1
gmake[2]: Leaving directory `/usr/ports/lang/gnat/work/gcc-34/gcc/fixinc'
gmake[1]: *** [fixinc.sh] Error 2
gmake[1]: Leaving directory `/usr/ports/lang/gnat/work/gcc-34/gcc'
gmake: *** [all-gcc] Error 2
*** Error code 2

Stop in /usr/ports/lang/gnat.

What does this error mean?

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


Re: im about to sit down an read the entire postfix manuals...

2006-07-24 Thread James Long
 Date: Sat, 22 Jul 2006 16:20:59 -0500
 From: Jonathan Horne [EMAIL PROTECTED]
 Subject: im about to sit down an read the entire postfix manuals...
 To: freebsd-questions@freebsd.org
 
 becuase i want to know if it supports a specific feature or not.  so before i 
 do and spend all that time, i just thought i would ask a simple question or 2 
 to this list.
 
 my problem: i have 5 domains that my sendmail server recieves mail for, and 
 im 
 starting to get spammed at [EMAIL PROTECTED] as well as [EMAIL PROTECTED] etc 
 etc.  realistically, name1 only needs to receive at domain1, and none of the 
 others.  there are many other accounts that only need to recieve at other 
 specific domains, and not at any of them.
 
 before i go an burn up a lot of time reading about postfix, is there a way i 
 can solve this problem within sendmail?  if not, will researching in postfix 
 eventually lead me to the solution im looking for?  if i can fix it within 
 sendmail, id just as soon perfer to stay with that, but ill switch if i have 
 to.
 
 thanks,
 jonathan

If I'm understanding you correctly, consider something like this in your
/etc/mail/virtusertable:

# domain1.org
#
[EMAIL PROTECTED]   name1
@domain1.orgerror:nouser
#
#
# domain2.com
#
[EMAIL PROTECTED]   name2
@domain2.comerror:nouser
#
#
# domain3.net
#
[EMAIL PROTECTED]   name3
@domain3.neterror:nouser
#
#

This makes name1 only receive mail at domain1, name2 at domain2, and
name3 at domain3.

Standard caveat about running make after modifying virtusertable.


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


Re: Are hardware vendors starting to bail on FreeBSD ... ?

2006-07-24 Thread Freminlins

Nikolas,

On 24/07/06, Nikolas Britton [EMAIL PROTECTED] wrote:



This would be like running Windows 3.1 on a brand new Xeon 5100
dual-core CPU... sure it will run fast* but what the hell are you
going to do with it? Play solitaire?



You have this the wrong way round. The correct allusion would surely be
something like imagine running  XP on a 80386, not an old OS on new
hardware. Old OSs don't always run at all on new hardware.

Anyway, I am sure that Ted can speak for himself.

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


dumping net traffic to log file

2006-07-24 Thread Steel City Phantom
i am troubleshooting an application and am having a hell of a time with 
it.  with bsd 6.1 is there a way where i can dump all traffic coming 
over the nic to a log file so i can see exactly what is coming in?


thanks

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


Re: Are hardware vendors starting to bail on FreeBSD ... ?

2006-07-24 Thread jan gestre

On 7/25/06, Greg Barniskis [EMAIL PROTECTED] wrote:


Ted Mittelstaedt wrote:
 - Original Message -
 From: Danial Thom [EMAIL PROTECTED]
 To: Greg Barniskis [EMAIL PROTECTED]; Nick Withers
 [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED];
 freebsd-questions@freebsd.org
 Sent: Thursday, July 13, 2006 11:10 AM
 Subject: Re: Are hardware vendors starting to bail on FreeBSD ... ?


 Burying your head in the sand is a common method
 used by stupid people that have no answer to the
 truth. I don't blame you; you guys don't want
 your employers to know that you've wasted man
 1000s of their dollars because you don't know the
 performance characteristics of the hardware
 you've recommended. It must be thoroughly
 embarrassing.
[snip]

 I do agree with Danial that most USERS on this list are
 burying their heads in the sand on this issue.  But I will
 point out that there isn't really any reason they shouldn't
 be.  What the market wants is features, not speed.  And
 that is what the FreeBSD developers are working on.

Features over speed is generally the right equation, yes.

But I think you're being too generous to Danial. The quote of his
above was in direct response to my assertion that many people refuse
to listen to him because he frequently engages in cheap demagogy[1].

His response? Another whole boatload of cheap demagogy, questioning
the intelligence, aptitude and moral character of anyone who doesn't
listen to him, by way of accusations that are wholly unsupported by
facts. I could probably rest my case right there, but I think his
perception (and yours) that people are not receptive to claims of
FreeBSD performance problems is quite simply false.

Every time a performance question is brought up, I see a flurry of
calls for clarification and for the formulation of repeatable tests
which are generally agreed to be an accurate gauge of the problem.
People with performance problems then /sometimes/ get upset (I think
because the questioning and testing tends to assume they're wrong
and they get defensive about it).

The problem is, scientific testing of an assertion must try to prove
the hypothesis is false, and must posit (and also try to disprove)
any plausible alternative explanations. There's just no reason to
get upset about that. Raising questions about a claim, and trying to
explain an outcome's root cause by alternative hypotheses, is in
fact the /required behavior/ of critical thinkers.

When the OP of a performance problem does follow through with
testing, and is willing to engage civilly in a logical debate, then
generally there is a successful outcome to the thread. When the OP
of a problem gets emotional about it and starts spouting cheap
demagogy, then other users and developers quickly will walk away
from the table.

Walking away from trollery is in no way equivalent to these users
and developers sticking their heads in the sand on the issue. It's
the predictable response of critical thinkers who recognize demagogy
as a tool of /antitruth/. Those who consistently use demagogy are
always more interested in winning an argument than in finding the
truth, and any critical thinker either sees right through the murk
of BS being tossed at them or least has enough intuitive sense to
recoil from it.

And that is /the only reason/ why people ignore Danial. His brand of
cheap demagogy is so potent that the smell of /antitruth/ emanates
from his posts in a field so strong that it might as well be a
physically repelling force. He might do better in politics or
religion where these trollish debating tactics are the norm. But
in a community of critical thinkers, the truthiness of demagogy
will rarely find any traction at all.


i thought the consensus was stop feeding the troll? so why is thread still
alive :D


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


Re: dumping net traffic to log file

2006-07-24 Thread Darrin Chandler
On Mon, Jul 24, 2006 at 03:20:32PM -0400, Steel City Phantom wrote:
 i am troubleshooting an application and am having a hell of a time with 
 it.  with bsd 6.1 is there a way where i can dump all traffic coming 
 over the nic to a log file so i can see exactly what is coming in?

tcpdump works nicely for this. :)

-- 
Darrin Chandler|  Phoenix BSD Users Group
[EMAIL PROTECTED]   |  http://bsd.phoenix.az.us/
http://www.stilyagin.com/  |
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Mount an unknown drive

2006-07-24 Thread Joshua Lewis

   I have a server that has been inoperative for the last few months
   (FreeBSD 6.0). I decided to turn on the system and it goes right to a
   boot prompt. So I downloaded FreeSBIE and am trying to mount the old
   drive to see if there is any data on the drive worth saving. When I
   try to mount /dev/ad0s1f /mnt I get a device busy message. Am I even
   trying to mount the correct slice. I have tried s1a - s1f.



   Is it possible it was already mounted and that is why it says it is
   busy. There is nothing in dmesg that shows asd0*.
   Sincerely,
   Joshua Lewis
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: tar dies on making tape backup

2006-07-24 Thread Jaime

On Jul 24, 2006, at 7:24 PM, Micah wrote:
I had the same problem recently and Google told me to look for  
files with malformed dates. I used find to search for files dated  
before Jan 1, 1970, and found one dated 1901. As soon as I  
touched the problematic file, tar worked.


	Many thanks.  When I get to work tomorrow, I'll use find.  I'll have  
to check the man page for the right parameters (I don't usually  
search by date) but I think that I can handle that.  ;)


Anyway, like I said, the help is much appreciated.

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


Re: tar dies on making tape backup

2006-07-24 Thread Micah

Jaime wrote:

On Jul 24, 2006, at 7:24 PM, Micah wrote:
I had the same problem recently and Google told me to look for files 
with malformed dates. I used find to search for files dated before 
Jan 1, 1970, and found one dated 1901. As soon as I touched the 
problematic file, tar worked.


Many thanks.  When I get to work tomorrow, I'll use find.  I'll have 
to check the man page for the right parameters (I don't usually search 
by date) but I think that I can handle that.  ;)


Anyway, like I said, the help is much appreciated.

Jaime


To save you some time, from my notes:
#finds all files modified before 1971
find / ! -newermt 1971-01-01 20:30


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


Re: im about to sit down an read the entire postfix manuals...

2006-07-24 Thread BSDServer Redes e Servidores
I manage an Internet Provider with decentralized pop3/imap servers,
that receive all incoming mail in one server and redistributes using
virtusertable. We manage 4000 emails accounts.
Easy to configure and test. Works great for us.

[]´s!

--
Rafael Mentz Aquino
BSDServer Ltda.
51 - 9847 8825

-- Original Message ---
From: Giorgos Keramidas [EMAIL PROTECTED]
To: Jonathan Horne [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Sun, 23 Jul 2006 02:14:11 +0300
Subject: Re: im about to sit down an read the entire postfix manuals...

 On 2006-07-22 18:04, Jonathan Horne [EMAIL PROTECTED] wrote:
  On Saturday 22 July 2006 17:55, Giorgos Keramidas wrote:
   On 2006-07-22 16:20, Jonathan Horne [EMAIL PROTECTED] wrote:
my problem: i have 5 domains that my sendmail server recieves mail
for, and im starting to get spammed at [EMAIL PROTECTED] as well
as [EMAIL PROTECTED] etc etc.  realistically, name1 only needs to
receive at domain1, and none of the others.  there are many other
accounts that only need to recieve at other specific domains, and
not at any of them.
  
   Are you using virtusertable for the domains?  Then you can use something
   like this in `/etc/mail/virtusertable':
  
 [EMAIL PROTECTED]   name1
 @domain1.com550: User unknown
  
 [EMAIL PROTECTED]   name2
 @domain2.com550: User unknown
  
   You don't have to replace your mailserver then :)
  
  im actually a little proud of myself... just as this mail was comming
  in, i am finishing up my testing/deployment of this exact
  configuration.  this was exactly what im looking for.
 
 Excellent!  :)
 
  of my 5 domains, i probably have 10 addresses on 1, and then the rest
  have either 1 or 2.  i think for now this configuration is going to be
  exactly what i am looking for, but i wonder what larger organizations
  who use only sendmail, and have this sort of requirment, if this is
  what they do too?
 
 I don't know about large organizations.  We[1] use this scheme in our
 mail servers for a moderate amount of domains.  It suits our limited
 needs quite fine.
 
 [1] The team of admins of HELLUG, the Hellenic Linux Users' Group.
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
--- End of Original Message ---

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


Re: users based on time+ath (Please)

2006-07-24 Thread Rafael Aquino
One way to do that is to redirect the client/connection to a webpage
that asks for a user and password, which when validated inserts 
the client IP address / mac address as a dynamic rule in the firewall 
and some parallel control using crontab (or custom way) to delete the rule 
after an amount of time...

You can do this with squid + apache + php + postgresql + pf/ipfw...

Just to start thinking on a complete solution.. ;-)

[]´s

--
Rafael Mentz Aquino
BSDServer Ltda.
51 - 9847 8825

-- Original Message ---
From: Marwan Sultan [EMAIL PROTECTED]
To: freebsd-questions@freebsd.org
Sent: Mon, 24 Jul 2006 23:29:22 +
Subject: users based on time+ath (Please)

 Hello gurus,
 
   Please, Please! if someone can help me, how to setup any an 
 accounts system based on time and auth
 
   I'm On FreeBSD 6.1R its acting as a internet gateway for a comlex 
 of 30 appartments.  the internet to this box is connected thro a dsl 
 and its up/running,
 
   Well, We want to bill whoever sharing our internet connection on a 
 monthly bases  so basically, I want to release internet access based 
 on time+auth.  and to manage those users.
 
   I have been told to use  squid.
   as i know squid is a cache server?
 
   just, where to start to setup a system, that will force the user 
 to enter a user/password  to connect to the internet? considering my 
 freebsd is the gateway?  how to manage those users? any packages,
 
   what shall i do? My manager would kill if i dunt accomplish this 
 mission :(
 
 Marwan
 
 _
 Don't just search. Find. Check out the new MSN Search! 
 http://search.msn.com/
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
--- End of Original Message ---

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


Re: Mail system Suggestions

2006-07-24 Thread Mikhail Goriachev
Martin Hudec wrote:
 You can give dovecot a try now :), I use it on all mailservers in 
 production environments. It handles my ~54k mails in my mail account 
 pretty well (only slowdown is detected if I use gprs connection ~56kbits).
 
 One good thing that counts in for dovecot is that postfix in its current 
 2.3.x line is able to do smtp authentication directly via dovecot (so no 
 use for sasl* packages) to any backend you use (mysql, ldap etc.) in 
 your dovecot config. Nice and clean. More info:
 http://www.postfix.org/SASL_README.html#server_dovecot
 
 Dovecot with its 1.0 version is pretty stable now, I have been using it 
 since 0.99.x versions (now alpha port is in use, upgrade to beta is 
 planned).
 
 Courier-imap is good choice too, I have no objections to it, but my one 
 subjective one perhaps: in its older versions (3.0.x) it seemed to have 
 some kind of psychic problems when dealing with Thunderbird mailclients. 
 Then I switched to Dovecot.


Thanks for the info.


Cheers,
Mikhail.


-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mail system Suggestions

2006-07-24 Thread Mikhail Goriachev
Martin Hepworth wrote:
 On a side note, I found Outlook 2003 really shoddy/poor at working with IMAP
 based systems, esp when you have lots of rules to run and lots of emails to
 download first thing in the morning.
 
 eg would easily 10 minutes to synchonise, whereas thunderbird takes about 10
 seconds!
 
 So from now I say Outlook doesn't work with IMAP, but merely tolerates them
 ;-(
 


Yes, Outlook is hard to get along with. I go mental with it a few times
a week. Just waiting for the right opportunity and swap it for something
else... like Thunderbird.


Cheers,
Mikhail.

-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Ask: How to setup PPP modem on Nokia 3105 with CA-42 cable

2006-07-24 Thread Novareza Klifartha

Hello...i'm a newbie here. I want to use my Nokia 3105 as a modem to
create PPP connection to my ISP. Please anyone who knows how to setup
that device tell me... thx before

On Linux usually we link the device to something like /dev/modem.
I didn't know anything how to do that on FreeBSD. I'm using FreeBSD 6.1
with KDE 3.5.

Message log from 'dmesg':
ugen0: Prolific Technology Inc. USB-Serial Controller C, rev 1.10/3.00, addr 
2


When CA-42 recognized, the ugen0 device is appear like these:
# ls /dev
acd0cttylpt0stderr  ttyv8
acd0t01 cuad0   lpt0.ctlstdin   ttyv9
acd1cuad0.init  mdctl   stdout  ttyva
acpicuad0.lock  mem sysmousettyvb
ad0 cuad1   net ttyd0   ttyvc
ad0s1   cuad1.init  net1ttyd0.init  ttyvd
ad0s2   cuad1.lock  net2ttyd0.lock  ttyve
ad0s3   devctl  net3ttyd1   ttyvf
ad0s3a  devstat net4ttyd1.init  tun0
ad0s3b  fd  network ttyd1.lock  ugen0
ad0s3c  fd0 nfs4ttyp0   ugen0.1
ad0s5   fidonfslock ttyp1   ugen0.2
ad0s6   geom.ctlnullttyv0   ugen0.3
agpgart io  pci ttyv1   urandom
apm kbd0ppi0ttyv2   usb
ata kbd1psm0ttyv3   usb0
atkbd0  kbdmux0 ptyp0   ttyv4   usb1
bpsm0   klogptyp1   ttyv5   usb2
console kmemrandom  ttyv6   xpt0
consolectl  log sndstat ttyv7   zero

Most people I saw prefer commandline PPP to make connection, but
as a newbie I prefer using KPPP.

I was confused because the device onlye available are /dev/cuad0 to
/dev/cuad4 on my KPPP. Then please someone help me solve my problem..

Thanks b4 for your attention :)


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


Re: Simple DNS Configuration

2006-07-24 Thread Mikhail Goriachev
Matthias Fechner wrote:
 Hi David,
 
 David Stanford wrote:
 Now it appears to be working correctly and responding to queries, however
 I'm noticing I continue to get that same error when I add my CNAME entry:
 =
 @  IN   CNAMEwww.example.org.
 =
 
 write:
 www   IN  CNAME   example.org.


I wouldn't recommend using CNAME for www due to extra DNS lookups[1].


Cheers,
Mikhail.

See bottom of the page:
[1] - http://www.dnsreport.com/tools/dnsreport.ch?domain=microsoft.com

-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


error when upgrading 6.0-stable to 6.1-RELEASE

2006-07-24 Thread Dave

Hello,
   I'm trying to update a box from 6.0-p6 or 7 can't remember for sure 
which to 6.1-RELEASE. I've downloaded the source, done make buildworld, make 
buildkernel with a generic kernel, make installkernel, rebooted, done 
mergemaster -p then gone cd /usr/src and done make installworld, all without 
a problem. Well, make installworld blew up, it seems like a minor error it's 
trying to create symlinks somewhere and saying access denied as if the 
source directory doesn't exist. If anyone has any suggestions i'd appreciate 
them. The complete error is below.

Thanks.
Dave.

Script started on Mon Jul 24 19:09:02 2006
[EMAIL PROTECTED] installworld
mkdir -p /tmp/install.LCTSB1I4
for prog in [ awk cap_mkdb cat chflags chmod chown  date echo egrep find 
grep install-info  ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl 
test true uname wc zic; do  cp `which $prog` /tmp/install.LCTSB1I4;  done
cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj  MACHINE_ARCH=i386  MACHINE=i386 
CPUTYPE=pentiumpro  GROFF_BIN_PATH=/usr/obj/usr/src/tmp/legacy/usr/bin 
GROFF_FONT_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/groff_font 
GROFF_TMAC_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/tmac 
PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/usr/bin:/usr/obj/usr/src/tmp/legacy/usr/games:/usr/obj/usr/src/tmp/usr/sbin:/usr/obj/usr/src/tmp/usr/bin:/usr/obj/usr/src/tmp/usr/games:/tmp/install.LCTSB1I4 
make -f Makefile.inc1 reinstall

--

Making hierarchy

--
cd /usr/src; make -f Makefile.inc1 hierarchy
cd /usr/src/etc;  make distrib-dirs
mtree -eU  -f /usr/src/etc/mtree/BSD.root.dist -p /
mtree -eU  -f /usr/src/etc/mtree/BSD.var.dist -p /var
mtree -eU  -f /usr/src/etc/mtree/BSD.usr.dist -p /usr
mtree -eU  -f /usr/src/etc/mtree/BSD.include.dist  -p /usr/include
mtree -deU  -f /usr/src/etc/mtree/BIND.chroot.dist  -p /var/named
cd /; rm -f /sys; ln -s usr/src/sys sys
cd /usr/share/man/en.ISO8859-1; ln -sf ../man* .
ln: ./man1: Operation not permitted
ln: ./man1aout: Operation not permitted
ln: ./man2: Operation not permitted
ln: ./man3: Operation not permitted
ln: ./man4: Operation not permitted
ln: ./man5: Operation not permitted
ln: ./man6: Operation not permitted
ln: ./man7: Operation not permitted
ln: ./man8: Operation not permitted
ln: ./man9: Operation not permitted
*** Error code 1

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

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

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

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

Stop in /usr/src.

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


Re: Simple DNS Configuration

2006-07-24 Thread Mikhail Goriachev
David Stanford wrote:
 I've tried everyone's suggestions to no avail. Here's my actual
 configuration:
 
 [EMAIL PROTECTED] ~]# /etc/rc.d/named stop
 Stopping named.
 [EMAIL PROTECTED] ~]# tail -12 /etc/namedb/named.conf


I can't stop mine and then start it again (running in chrooted mode). I do:

# make rndc reload

Also, when something goes wrong, named won't reload but logs a complaint
into /var/log/messages. So it is a good idea to check logs every time a
change is made.


 
 zone daemonbox.net {
 type master;
 file master/daemonbox.net;
 };
 
 /*
 zone 140.246.66.in-addr.arpa {
 type master;
 file master/140.246.66.in-addr.arpa;
 };
 */
 [EMAIL PROTECTED] ~]# cat /etc/namedb/master/daemonbox.net
 $TTL 3600; 1 hour
 daemonbox.net.  IN  SOA chadwick.daemonbox.net.
 dstanford.daemonbox.net. (
 2006072400  ; Serial
  ^^
  ^^
Make sure your serial increments with every change you make.



 1d  ; Refresh
 2h  ; Retry
 100d; Expire
 1h ); Minimum TTL
 
 
 ; DNS Servers
 @   IN  NS  chadwick.daemonbox.net.
 @   IN  NS  ns1.nac.net.
 @   IN  NS  ns2.nac.net.


Remove/comment those nac.net servers just in case (just for now while
testing). Get yours cranking first.


 ; MX Records
 IN  MX 10   mail.daemonbox.net.
 
 ; Machine Names
 localhost   IN  A   127.0.0.1
 chadwick   IN  A   66.246.140.170
 mail  IN  A   66.246.246.58
 www IN  A   66.246.140.170
 @IN  A   66.246.140.170
 
 ; Aliases
 www IN  CNAME   @


I personally wouldn't use that line. Previous 2 lines are sufficient.


 [EMAIL PROTECTED] ~]# /etc/rc.d/named start
 Starting named.


Check your logs.


 [EMAIL PROTECTED] ~]# host -t a daemonbox.net localhost
 Using domain server:
 Name: localhost
 Address: 127.0.0.1#53
 Aliases:
 
 Host daemonbox.net not found: 2(SERVFAIL)
 
 
 Does anyone see anything wrong with this? Thanks for all your help!


Can you resolve other domains (e.g.: freebsd.org)? Can't think of
anything else right now.


Cheers,
Mikhail.

-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Simple DNS Configuration

2006-07-24 Thread Mikhail Goriachev
Mikhail Goriachev wrote:
 David Stanford wrote:
 I've tried everyone's suggestions to no avail. Here's my actual
 configuration:

 [EMAIL PROTECTED] ~]# /etc/rc.d/named stop
 Stopping named.
 [EMAIL PROTECTED] ~]# tail -12 /etc/namedb/named.conf
 
 
 I can't stop mine and then start it again (running in chrooted mode). I do:
 
 # make rndc reload


Oops, I meant:

# rndc reload




-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: fbsd 6.1 and starting services problem

2006-07-24 Thread zz_11
Thanks for the answer.

I think I do not need to use mergemaster.
It is a brand new install of FreeBSD 6.1.

I only copy all my scripts from /usr/local/etc/rc.d/.
For example the postgresql install is NOT from ports.
I instaaled it from source ( I did it many times on 5.1, 5.4
and 6.0 ).
I expect that all scripts in /usr/local/etc/rc.d/ will be
run on system start.

After login as root if I try to execute
/usr/local/etc/rc.d/postgres.sh start, all is working
perfect.
But I need it to start after system start alone.


Here is my script:

# ls -l /usr/local/etc/rc.d/postgres.sh
-rwxr-xr-x  1 root  wheel  1327 Jul 24 21:25
/usr/local/etc/rc.d/postgres.sh


#! /bin/sh

# PostgreSQL boot time startup script for FreeBSD.  Copy
this file to
# /usr/local/etc/rc.d/postgresql.

# Created through merger of the Linux start script by Ryan
Kirkpatrick
# and the script in the FreeBSD ports collection.

# $Header:
/cvsroot/pgsql-server/contrib/start-scripts/freebsd,v 1.2
2001/04/19 19:17:44 petere Exp $

## EDIT FROM HERE

# PROVIDE: postgresql

# Installation prefix
prefix=/usr


# Data directory
PGDATA=/usr/mydb

# Who to run pg_ctl as, should be postgres.
PGUSER=postgres

# Where to keep a log file
PGLOG=$PGDATA/postgres.log

## STOP EDITING HERE

# The path that is to be used for the script
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# What to use to start up the postmaster
DAEMON=$prefix/bin/pg_ctl

test -x $DAEMON || exit 0

case $1 in
start)
su -l $PGUSER -c $DAEMON start -D '$PGDATA' -s -l
$PGLOG
echo -n ' postgresql'
;;
stop)
su -l $PGUSER -c $DAEMON stop -D '$PGDATA' -s -m
fast
;;
restart)
su -l $PGUSER -c $DAEMON restart -D '$PGDATA' -s -m
fast
;;
status)
su -l $PGUSER -c $DAEMON status -D '$PGDATA'
;;
*)
# Print help
echo Usage: Basename $0
{start|stop|restart|status} 12
exit 1
;;
esac

exit 0



Цитат на писмо от Lowell Gilbert
[EMAIL PROTECTED]:

 [EMAIL PROTECTED] writes:

  Hi,
   
   It is my first fbsd 6.1.
   
   I migrate a system from fbsd 6.0 to 6.1.
   
   I have a script postgresql.sh in /usr/local/etc/rc.d.
   It is executible.
   Also it is working on 6.0 at startup.
   
   But it do not runs in fbsd 6.1.
   
   If I try /usr/local/etc/rc.d/postgresql.sh start all
 is
  fine.
   
   I checked :
   cat /etc/defaults/rc.conf | grep local_startup
   local_startup=/usr/local/etc/rc.d
 /usr/X11R6/etc/rc.d #
  startup script
  dirs.
   
   It looks ok for me.
   
   Pls. help me to find the problem.
   
  Also fbsd do not start at boot any services with
 scripts
  in /usr/local/etc/rc.d .

 Did you remember to use mergemaster(8) to update your
 /etc scripts?






-

Изработване на сайт по Ваше желание за 300лв.
http://tophost.bg/?top=webdisign

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