QEMU networking quirkiness on 7.0

2008-04-08 Thread Jim Stapleton
I'm not sure if this is QEmu or FreeBSD. I have a fairly boring 7.0/i386 setup.

The QEmu VM can access the web (I'm typing this out now in WindowsXP
running safely in it's cage, for example). But it cannot VPN into work
(timeout) or ping anything. I suspect it has to do with the way that
QEmu is given network access. Is there any way to set up QEmu to
access the network through an aliased IP address, and hence look like
any other machine on my network, rather than to hide behind my BSD
box? Is there another route I should take?+

Thanks,
-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: network configuration problem

2008-04-08 Thread Steve Bertrand

Warren Block wrote:

On Tue, 8 Apr 2008, Steve Bertrand wrote:
If you ever need to add any other workstations to the network, you 
will want to ensure that the IP you added to FreeBSD manually does not 
fall within the DHCP scope of the gateway.


For instance, if you plug a Windows PC into the gateway, it will by 
default request an address via DHCP. If the gateway provides the 
Windows PC the same address as FreeBSD, you will have communication 
problems.


It's neater and safer to keep static and dynamic addresses in separate 
ranges, but often not strictly necessary.


I agree, however, my rule of thumb is to not trust hardware to strictly 
adhere to proper standards or RFC's, especially when it comes down to CPE ;)


Anyone who has managed a sizable network will know that not properly 
managing things like this manually is asking for trouble.


Cheers,

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


Re: finding BSD Unix users

2008-04-08 Thread Chad Perrin
On Tue, Apr 08, 2008 at 06:29:45PM -0500, Alpha 4299 wrote:
> 
> Dude these guys are at CSU contact them and get your group rollin.  
> http://www.math.colostate.edu/~reinholz/freebsd/freebsd.html
> Al
> 
> > Date: Tue, 8 Apr 2008 16:02:41 -0600
> > From: [EMAIL PROTECTED]
> > To: freebsd-questions@freebsd.org
> > Subject: Re: finding BSD Unix users
> > 
> > On Sun, Apr 06, 2008 at 01:11:01PM -0600, Chad Perrin wrote:
> > > My area (northern Colorado) has an excellent Linux Users Group (NCLUG).
> > > There's a great bunch of guys there.  Unfortunately, they're very
> > > Linux-centric.  I'm kinda the resident BSD Unix heretic -- which is fine
> > > most of the time, but once in a while I'd like to be able to discuss
> > > stuff with people who primarily use BSD Unix systems instead of
> > > Linux-based systems.
> > > 
> > > Unfortunately, there isn't a single Colorado BSD Users Group in Colorado
> > > that I can find.  The closest I've been able to find mention of online at
> > > all is Laramie, Wyoming -- LWFUG, or "Laramie, Wyoming Freenix Users
> > > Group".  Their website seems to have become a domain squatter's portal
> > > site, though.
> > > 
> > > So . . . does anyone here have any suggestions for how I might go about
> > > finding BSD Unix users somewhat local to me?  Since there isn't a group
> > > already that I can find, I wonder if there are enough people interested
> > > in such a thing in this area to build a users group.  Any suggestions for
> > > how to go about finding fellow BSD Unix users in my area would be
> > > appreciated, I'm sure.
> > 
> > I'm not entirely opposed to spending a little money, but . . . does
> > anyone have recommendations that don't involve paying for advertising,
> > buying a house, et cetera?
> > 
> > -- 
> > CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ]
> > Dr. Ron Paul: "Liberty has meaning only if we still believe in it when
> > terrible things happen and a false government security blanket beckons."
> 
> _
> Use video conversation to talk face-to-face with Windows Live Messenger.
> http://www.windowslive.com/messenger/connect_your_way.html?ocid=TXT_TAGLM_WL_Refresh_messenger_video_042008
-- 
CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ]
Patrick J. LoPresti: "Emacs has been replaced by a shell script which 1)
Generates a syslog message at level LOG_EMERG; 2) reduces the user's disk
quota by 100K; and 3) RUNS ED!!"

pgpARNQ4ysrkT.pgp
Description: PGP signature


Re: Screen inside Jails + su

2008-04-08 Thread Erik Osterholm
On Wed, Apr 09, 2008 at 12:00:05AM +0200, Wael Nasreddine wrote:
> Hello,
> 
> I have a FreeBSD server which is Jails based, I have created a special
> jail to run 3 rTorrent process for 3 users, I made all the permissions
> and added the users, then I launched manually (for testing purpose)
> these screen sessions for the 3 users using the below method:
> - jexec onto the jail.
> - su to the user: su -l wael
> - run a detached screen: screen -dmS Rtorrent
>   I have a .screenrc for each user in place to run one command,
>   rtorrent
> 
> Now I have 2 questions:
> 1) How can I add this procedure to the jail startup??

The common way for a user to run a program at startup is to use cron
with the special @reboot directive instead of giving it a time to run
a job.
http://www.freebsd.org/doc/en/books/handbook/configtuning-starting-services.html


> 2) I can't attach the screen, everytime I try to I get an error:
>  # su -l wael
>  % screen -Dr Rtorrent
>  Cannot open your terminal '/dev/ttyp6' - please check.
>   What's going on? why can't I attach the screen session ??

If you have used jexec to get into the jail, then you won't have a pty
within the jail, and anything which relies on one will fail to
execute.  Start up sshd in the jail, then ssh to it and see if you can
attach the screen.
 
Erik
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Screen inside Jails + su

2008-04-08 Thread Wael Nasreddine
This One Time, at Band Camp, Erik Osterholm <[EMAIL PROTECTED]> said, On Tue, 
Apr 08, 2008 at 07:52:17PM -0500:
> On Wed, Apr 09, 2008 at 12:00:05AM +0200, Wael Nasreddine wrote:

> The common way for a user to run a program at startup is to use cron
> with the special @reboot directive instead of giving it a time to run
> a job.
> http://www.freebsd.org/doc/en/books/handbook/configtuning-starting-services.html

Thank you for pointing that out, could you please give me an example I
haven't found on that page...

> If you have used jexec to get into the jail, then you won't have a pty
> within the jail, and anything which relies on one will fail to
> execute.  Start up sshd in the jail, then ssh to it and see if you can
> attach the screen.
Thanks that worked fine...

> Erik


-- 
Wael Nasreddine
http://wael.nasreddine.com
PGP: 1024D/C8DD18A2 06F6 1622 4BC8 4CEB D724  DE12 5565 3945 C8DD 18A2

/\ Man has never reconciled himself to the ten commandments.


pgpoBmfKE50NM.pgp
Description: PGP signature


Re: requesting 'QA' assistance

2008-04-08 Thread Aryeh M. Friedman

Jim Stapleton wrote:

I have something I'd like to add to ports eventually, but it isn't
read yet. I was wondering what the preferred method of requesting
users take a peek at it and tell me what they think/want.
  


Normally I would agree with everyone that says to ask on -ports@ but 
this fits extremely well with what is generally refered to as ports 2.0 
(different names are used by different members of the loose community 
working on it, I have CC'ed everyone else so you know who they are).

The actual software would go under ports-mgmt, and has the main
functionality intended. The actuall set of programs is called 'virtual
ports', and it allows a keyword and virtual directory indexing of the
ports tree. The goal is to allow people to play around with different
designs of the ports tree without having to change the system ports
tree - preventing breakage in programs, and giving both the users and
maintainers of the ports tree more flexibility in organization.
  


I don't know if this fits 100% what Ale calls virtual ports (see 
http://wiki.freebsd.org/PortsToDo) but it very close to the image I have 
for them (we need to know more details of course).   I am going to 
forward you some stuff so you can have a better idea of where the ports 
2.0 are heading.   Also keep in mind that at the very least I will 
likely want to look at your stuff in extreme detail because something 
like this is a natural extension of the SoC project I am awaiting 
approval on.

Should I post the tbz file on my web server, and post a link on a
mailing list, or post the copied/pasted shar to the mailing list
(466kb, so I'm guessing /no/ to that one).

Should I post here or to -ports?
  


There are some historical/political reasons why you should have a small 
group look at it before you post the code to -ports@ (see the references 
I am sending you)

Thanks,
-Jim Stapleton
___
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: requesting 'QA' assistance

2008-04-08 Thread Aryeh M. Friedman
Oops Alex Ryba was a careless click on my behalf the actual person is 
Alejandro Pulver <[EMAIL PROTECTED]>

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


Back up files...

2008-04-08 Thread Ruel Luchavez
Hello again...

Guys could you teach me how to transfer files from server, I have back up my
files & i want
to transfer the back up files folder in my DVD CD to avoid disk consumption.

Could you teach me step by step?

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


gethostbyaddr failure

2008-04-08 Thread Ian Campbell
Hi all,

I'm having a problem with reverse DNS on FreeBSD 7.0 (AMD64).
Postfix was having problems doing DNS lookups, and I eventually
narrowed it down to a failure with gethostbyaddr using the
name-addr-test files in the Postfix tarball.

You can find the test my machine failed here:
http://www.opensource.apple.com/darwinsource/Current/postfix-174/postfix/auxiliary/name-addr-test/gethostbyaddr.c

... but it's basically just a call to gethostbyaddr().

My resolv.conf is just 'nameserver 127.0.0.1' (there is a local
powerdns recursor running), but I've tried it with two other
nameservers as well. No luck, although there is nothing wrong with any
of the servers, according to dig and host.

My nsswitch.conf has files and dns for the hosts entry.

Strangely, when I look at the truss output for the test,
/etc/hosts is never opened, and neither is a socket... so it's not
like there's a network/dns issue, it's not even making the request. It
just abruptly fails. When I added a call to herror() in the test, I
got an error message about a resolver internal error.

blackhole# truss -f ./gethostbyaddr 72.14.205.147
 2049: __sysctl(0x7fffe870,0x2,0x7fffe88c,0x7fffe880,0x0,0x0) = 0 
(0x0)
 2049: mmap(0x0,560,PROT_READ|PROT_WRITE,MAP_ANON,-1,0x0) = 34365132800 
(0x800525000)
 2049: munmap(0x800525000,560)   = 0 (0x0)
 2049: __sysctl(0x7fffe8e0,0x2,0x80062dde8,0x7fffe8d8,0x0,0x0) = 0 (0x0)
 2049: mmap(0x0,32768,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 
34365132800 (0x800525000)
 2049: 
issetugid(0x800526015,0x800521669,0x800631730,0x800631700,0x49ac,0x7fffe8d8)
 = 0 (0x0)
 2049: open("/etc/libmap.conf",O_RDONLY,0666)ERR#2 'No such file or 
directory'
 2049: open("/var/run/ld-elf.so.hints",O_RDONLY,057) = 3 (0x3)
 2049: read(3,"[EMAIL PROTECTED]"...,128) = 128 (0x80)
 2049: lseek(3,0x80,SEEK_SET)= 128 (0x80)
 2049: read(3,"/lib:/usr/lib:/usr/lib/compat:/u"...,236) = 236 (0xec)
 2049: close(3)  = 0 (0x0)
 2049: access("/lib/libc.so.7",0)= 0 (0x0)
 2049: open("/lib/libc.so.7",O_RDONLY,030556300) = 3 (0x3)
 2049: fstat(3,{mode=-r--r--r-- ,inode=49456,size=1150104,blksize=4096}) = 0 
(0x0)
 2049: read(3,"\^?ELF\^B\^A\^A\t\0\0\0\0\0\0\0"...,4096) = 4096 (0x1000)
 2049: mmap(0x0,2215936,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_NOCORE,3,0x0) = 
34366234624 (0x800632000)
 2049: mprotect(0x80071b000,4096,PROT_READ|PROT_WRITE|PROT_EXEC) = 0 (0x0)
 2049: mprotect(0x80071b000,4096,PROT_READ|PROT_EXEC) = 0 (0x0)
 2049: 
mmap(0x80081b000,118784,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED,3,0xe9000) = 
34368237568 (0x80081b000)
 2049: 
mmap(0x800838000,94208,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0)
 = 34368356352 (0x800838000)
 2049: close(3)  = 0 (0x0)
 2049: 
sysarch(0x81,0x7fffe960,0x80052b088,0x0,0xffd08fb0,0x7fffe6b8) 
= 0 (0x0)
 2049: mmap(0x0,240,PROT_READ|PROT_WRITE,MAP_ANON,-1,0x0) = 34365165568 
(0x80052d000)
 2049: munmap(0x80052d000,240)   = 0 (0x0)
 2049: mmap(0x0,41760,PROT_READ|PROT_WRITE,MAP_ANON,-1,0x0) = 34365165568 
(0x80052d000)
 2049: munmap(0x80052d000,41760) = 0 (0x0)
 2049: __sysctl(0x7fffe910,0x2,0x800838e80,0x7fffe908,0x0,0x0) = 0 (0x0)
 2049: 
sigprocmask(SIG_BLOCK,SIGHUP|SIGINT|SIGQUIT|SIGKILL|SIGPIPE|SIGALRM|SIGTERM|SIGURG|SIGSTOP|SIGTSTP|SIGCONT|SIGCHLD|SIGTTIN|SIGTTOU|SIGIO|SIGXCPU|SIGXFSZ|SIGVTALRM|SIGPROF|SIGWINCH|SIGINFO|SIGUSR1|SIGUSR2,0x0)
 = 0 (0x0)
 2049: sigprocmask(SIG_SETMASK,0x0,0x0)  = 0 (0x0)
 2049: gettimeofday({1207708748.093731},0x0) = 0 (0x0)
 2049: 
getpid(0x7fffe4d0,0x0,0x80084e540,0x80070239c,0x80a4e2a0,0x7fffe4c8)
 = 2049 (0x801)
 2049: __sysctl(0x7fffe460,0x2,0x80083cee8,0x7fffe478,0x0,0x0) = 0 (0x0)
 2049: __sysctl(0x7fffdfc0,0x2,0x80084bad8,0x7fffdfb8,0x0,0x0) = 0 (0x0)
 2049: __sysctl(0x7fffe000,0x2,0x7fffe01c,0x7fffe010,0x0,0x0) = 0 
(0x0)
 2049: readlink("/etc/malloc.conf",0x7fffe050,1024) ERR#2 'No such file or 
directory'
 2049: 
issetugid(0x800713954,0x7fffe050,0x0,0x2,0x80a4e2a0,0x7fffe038) 
= 0 (0x0)
 2049: __sysctl(0x7fffdf40,0x2,0x7fffdf5c,0x7fffdf50,0x0,0x0) = 0 
(0x0)
 2049: mmap(0x0,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 
34365165568 (0x80052d000)
 2049: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 
34368450560 (0x80084f000)
 2049: munmap(0x80084f000,724992)= 0 (0x0)
 2049: munmap(0x800a0,323584)= 0 (0x0)
 2049: issetugid(0x2,0x2,0x800901480,0x1,0x617072612e367069,0xf7) = 0 (0x0)
 2049: open("/etc/resolv.conf",O_RDONLY,0666)= 3 (0x3)
 2049: fstat(3,{mode=-rw-r--r-- ,inode=49352,size=74,blksize=4096}) = 0 (0x0)
 2049: read(3,"nameserver 127.0.0.1\n#nameserve"...,4096) = 74 (0x4a)
 2049: read(3,0x800909000,4096)  = 0 (0x0)
 2049: close(3)

Re: freebsd-questions Digest, Vol 210, Issue 6

2008-04-08 Thread Tim DeBoer
--
>
> Message: 16
> Date: Tue, 8 Apr 2008 21:24:58 +0200
> From: Mel <[EMAIL PROTECTED]>
> Subject: Re: Apache22 Port Install Problem
> To: freebsd-questions@freebsd.org
> Cc: Tim DeBoer <[EMAIL PROTECTED]>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain;  charset="iso-8859-1"
>
> On Tuesday 08 April 2008 07:11:47 Tim DeBoer wrote:
>
> > The install goes fine, no obvious errors anyway, when I do apachectl
> > configtest, I get
> > # apachectl configtest
> > Syntax error on line 117 of /usr/local/etc/apache22/httpd.conf:
> > Invalid command 'Order', perhaps misspelled or defined by a module not
>
> 
>
> Is this line present and active?
> LoadModule authz_host_module libexec/apache22/mod_authz_host.so
>
>
> --
> Mel
>
> Problem with today's modular software: they start with the modules
>and never get to the software part.
>

No.
I do have LoadModule auth_basic_module libexec/apache22/mod_auth_basic.so
though.

I tried recompiling again without auth_basic, and used the authz options
instead, but it's not actually installing them for some reason.

# make deinstall
===>  Deinstalling for www/apache22
===>   Deinstalling apache-2.2.8
pkg_delete: file '/usr/local/libexec/apache22/mod_authz_dbm.so' doesn't
exist
pkg_delete: file '/usr/local/libexec/apache22/mod_authz_default.so' doesn't
exist
pkg_delete: file '/usr/local/libexec/apache22/mod_authz_groupfile.so'
doesn't exist
pkg_delete: file '/usr/local/libexec/apache22/mod_authz_host.so' doesn't
exist
pkg_delete: file '/usr/local/libexec/apache22/mod_authz_owner.so' doesn't
exist
pkg_delete: file '/usr/local/libexec/apache22/mod_authz_user.so' doesn't
exist
pkg_delete: couldn't entirely delete package (perhaps the packing list is
incorrectly specified?)

It looks like it never really tried to install to begin with?

I'm selecting my options via 'make config', then I run make, make install.
In theory it should read the new config each time.


-- 
Tim DeBoer
Understeer is when you hit the wall with the front of the car.
Oversteer is when you hit the wall with the rear of the car.
Horsepower is how fast you hit the wall.
Torque is how far you move the wall.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


buildkernel:Stop in /usr/src/sys/modules/oltr

2008-04-08 Thread dotyao

from 6.3 pre to 6.3 reselase,buildkernel error:
===> oltr (all)
uudecode < /usr/src/sys/modules/oltr/../../contrib/dev/oltr/i386-elf.trlld.o.uu
cc -O2 -fno-strict-aliasing -pipe -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I-  
 -DHAVE_KERNEL_OPTION_HEADERS -include 
/usr/obj/usr/src/sys/mm21645/opt_global.h -I. -I@ -I@/contrib/altq 
-I@/../include -finline-limit=8000 -fno-common -g 
-I/usr/obj/usr/src/sys/mm21645 -mno-align-long-strings 
-mpreferred-stack-boundary=2  -mno-mmx -mno-3dnow -mno-sse -mno-sse2 
-ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  
-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -fformat-extensions 
-std=c99 -c /usr/src/sys/modules/oltr/../../contrib/dev/oltr/if_oltr.c
cc -O2 -fno-strict-aliasing -pipe -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I-  
 -DHAVE_KERNEL_OPTION_HEADERS -include 
/usr/obj/usr/src/sys/mm21645/opt_global.h -I. -I@ -I@/contrib/altq 
-I@/../include -finline-limit=8000 -fno-common -g 
-I/usr/obj/usr/src/sys/mm21645 -mno-align-long-strings 
-mpreferred-stack-boundary=2  -mno-mmx -mno-3dnow -mno-sse -mno-sse2 
-ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  
-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -fformat-extensions 
-std=c99 -c /usr/src/sys/modules/oltr/../../contrib/dev/oltr/trlldbm.c
cc -O2 -fno-strict-aliasing -pipe -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I-  
 -DHAVE_KERNEL_OPTION_HEADERS -include 
/usr/obj/usr/src/sys/mm21645/opt_global.h -I. -I@ -I@/contrib/altq 
-I@/../include -finline-limit=8000 -fno-common -g 
-I/usr/obj/usr/src/sys/mm21645 -mno-align-long-strings 
-mpreferred-stack-boundary=2  -mno-mmx -mno-3dnow -mno-sse -mno-sse2 
-ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  
-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -fformat-extensions 
-std=c99 -c /usr/src/sys/modules/oltr/../../contrib/dev/oltr/trlldhm.c
/usr/src/sys/modules/oltr/../../contrib/dev/oltr/trlldhm.c:1453:8: invalid suffix 
"xf7" on integer constant
/usr/src/sys/modules/oltr/../../contrib/dev/oltr/trlldhm.c:1453: error: 
initializer element is not constant
/usr/src/sys/modules/oltr/../../contrib/dev/oltr/trlldhm.c:1453: error: (near 
initialization for `TRlldHawkeyeMac[17173]')
*** Error code 1

Stop in /usr/src/sys/modules/oltr.
*** Error code 1

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

Stop in /usr/obj/usr/src/sys/mm21645.
*** Error code 1

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

Stop in /usr/src.

/roo/kernel/mm21645:
#
# GENERIC -- Generic kernel configuration file for FreeBSD/i386
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
#
http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ../../conf/NOTES and NOTES files.
# If you are in doubt as to the purpose or necessity of a line, check first
# in NOTES.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.429.2.14.2.1 2007/12/15 06:32:32 
scottl Exp $

machine i386
#cpuI486_CPU
#cpuI586_CPU
cpu I686_CPU
ident   mm21645

# To statically compile in device wiring instead of /boot/device.hints
#hints  "GENERIC.hints"   # Default places to look for 
devices.

makeoptions DEBUG=-g# Build kernel with gdb(1) debug symbols

options SCHED_4BSD  # 4BSD scheduler
options PREEMPTION  # Enable kernel thread preemption
options INET# InterNETworking
#optionsINET6   # IPv6 communications protocols
options FFS # Berkeley Fast Filesystem
options SOFTUPDATES # Enable FFS soft updates support
options UFS_ACL # Support for access control lists
options UFS_DIRHASH # Improve performance on big directories
options MD_ROOT # MD is a potential root device
#optionsNFSCLIENT   # Network Filesystem Client
#optionsNFSSERVER   # Network Filesystem Server
#optionsNFS_ROOT# NFS usable as /, requires NFSCLIENT
options MSDOSFS # MSDOS Filesystem
options CD9660  # ISO 9660 Filesystem
options PROCFS  # Process filesystem (requires PSEUDOFS)
options PSEUDOFS# Pseudo-filesystem framework
options GEOM_GPT# GUID Partition Tables.
options COMPAT_43   # Compatible with BSD 4.3 [KEEP THIS!]
options COMPAT_FREEBSD4 # C

Re: Apache22 Port Install Problem

2008-04-08 Thread Tim DeBoer
> > Message: 16
> > Date: Tue, 8 Apr 2008 21:24:58 +0200
> > From: Mel <[EMAIL PROTECTED]>
> > Subject: Re: Apache22 Port Install Problem
> > To: freebsd-questions@freebsd.org
> > Cc: Tim DeBoer <[EMAIL PROTECTED]>
> > Message-ID: <[EMAIL PROTECTED]>
> > Content-Type: text/plain;  charset="iso-8859-1"
> >
> > On Tuesday 08 April 2008 07:11:47 Tim DeBoer wrote:
> >
> > > The install goes fine, no obvious errors anyway, when I do apachectl
> > > configtest, I get
> > > # apachectl configtest
> > > Syntax error on line 117 of /usr/local/etc/apache22/httpd.conf:
> > > Invalid command 'Order', perhaps misspelled or defined by a module not
> >
> > 
> >
> > Is this line present and active?
> > LoadModule authz_host_module libexec/apache22/mod_authz_host.so
> >
> >
> > --
> > Mel
> >
> > Problem with today's modular software: they start with the modules
> >and never get to the software part.
> >
>
> No.
> I do have LoadModule auth_basic_module libexec/apache22/mod_auth_basic.so
> though.
> [snip]


Problem solved.
I had to delete the package from distfiles. After I did that make read the
config file correctly, downloaded a new tarball, and installed what I
needed.

Thanks for the help  :)

-- 
Tim DeBoer
Understeer is when you hit the wall with the front of the car.
Oversteer is when you hit the wall with the rear of the car.
Horsepower is how fast you hit the wall.
Torque is how far you move the wall.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Why are some linux users saying that FreeBSD is dying

2008-04-08 Thread Wojciech Puchar


"FreeBSD is a dying OS because netcraft.com confirms it" that's the argument 
used some of these guys, and I'm wondering what data are they using to make


but what's a point of such discussions at all?

let they use their favourite linux, You use FreeBSD.
that's all.

If you think FreeBSD is superior (like me), be happy most use linux. So 
you can offer better/cheaper services than them.

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


<    1   2