Loading kernel modules twice

2003-06-21 Thread Fozzy the Bear
I was using 5.0 as my NAT router and everything was
fine, then I upgraded to 5.1 and I get this error, and
I can no longer ping the computers, it has two intel
etherexpress cards in it, and the first one still
works dialing the dsl:

module_register: module pci/if_fxp already exists!
Module pci/if_fxp failed to register:17
module_register: module cardbus/if_fxp already exists!
Module cardbus/if_fxp failed to register:17
module_register: module fxp/miibus already exists!
Module fxp/miibus failed to register:17
can't re-use a leaf (fxp_rur)

Sorry if there is a typo, I had to type it by hand. 
Thanks

  -Mike

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


Re: Journaling filesystems

2003-06-21 Thread Christian Laursen
Dan Nelson <[EMAIL PROTECTED]> writes:

> In the last episode (Jun 20), Sergey Akifyev said:
> > On Fri, 2003-06-20 at 12:02, Karsten Fuhrmann wrote:
> > > i am wondering if there are any journaling filesystems for freebsd
> > > which are ready to use like reiser or ext3 for freebsd.
> >
> > FFS + SoftUpdates is much better than journaling!
> 
> FFS+SU does have the disadvantages that a full fsck is still needed
> (run in the background), and you risk losing the last `sysctl
> kern.metadelay` seconds worth of files written just before a crash.

You risk that on journalled filesystems too.

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


Re: VPN remote access server

2003-06-21 Thread Dirk-Willem van Gulik

> Node1 is already set up. Now I need to set up Node2. I have no idea how to
> do it. What programs do I use? How do I set them up? Where can I find some
> help on it? Please help. Thank you very much.

mpd

Use
pkg_add -r mpd
or
cd /usr/ports/net/mpd
make all install

Dw

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


is this a FBSD printf bug?

2003-06-21 Thread abc
FBSD 4.8

i hope this isn't a question based on extreme
ignorance - i haven't programmed in C in a
long time, and i don't have another machine
to test this on.  i can't understand why
the output of the following code produces
"ints" when given variables of type "char",
so it looks like a bug to me ...

#include 
///
int main(int argc, char *argv[]) {

#define LEN_ARRAY 16
char a[LEN_ARRAY+1];
int i;

a[0]=0x00;
a[1]=0x11;
a[2]=0x22;
a[3]=0x33;
a[4]=0x44;
a[5]=0x55;
a[6]=0x66;
a[7]=0x77;
a[8]=0x88;
a[9]=0x99;
a[10]=0xaa;
a[11]=0xbb;
a[12]=0xcc;
a[13]=0xdd;
a[14]=0xee;
a[15]=0xff;

for ( i = 0; i < LEN_ARRAY; ++i ) printf("[%02i]%02x\n", i, a[i]);
}
///
// 
// OUTPUT:
// 
// [00]00
// [01]11
// [02]22
// [03]33
// [04]44
// [05]55
// [06]66
// [07]77
// [08]ff88 ???
// [09]ff99 ???
// [10]ffaa ???
// [11]ffbb ???
// [12]ffcc ???
// [13]ffdd ???
// [14]ffee ???
// [15] ???
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: is this a FBSD printf bug?

2003-06-21 Thread Matthew Seaman
On Sat, Jun 21, 2003 at 10:14:12AM +, [EMAIL PROTECTED] wrote:
> i hope this isn't a question based on extreme
> ignorance - i haven't programmed in C in a
> long time, and i don't have another machine
> to test this on.  i can't understand why
> the output of the following code produces
> "ints" when given variables of type "char",
> so it looks like a bug to me ...

Nope -- this is a C language FAQ (See
http://www.faqs.org/faqs/C-faq/faq/, particularly section 15).
Neither is it FreeBSD specific.  If you pass arguments to a varargs
function, like printf(3), then they will get type promoted.  In this
case 'char' is promoted to 'int'.  The reason the results you're
seeing don't match up to your expectations is that the 'char' type is
signed, and you seem to want to be using an unsigned type.

Cheers,

Matthew


-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgp0.pgp
Description: PGP signature


errata in FreeBSD handbook

2003-06-21 Thread Зайков С.Г.
Hello!

I find same errata in FreeBSD handbook:

cuai0N (must cuaiaN)
cual0N (must cualaN)

For example, see:

17.2.4 Device Special Files

Most  devices  in  the  kernel  are  accessed through ``device special
files'',  which are located in the /dev directory. The sio devices are
accessed  through  the  /dev/ttydN (dial-in) and /dev/cuaaN (call-out)
devices. FreeBSD also provides initialization devices (/dev/ttyidN and
/dev/cuai0N) and locking devices (/dev/ttyldN and /dev/cual0N)

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


hpt366 and disklabel problem

2003-06-21 Thread Omer Faruk Sen
Hi. 

I have an old system that has hpt366 card on it. I have connected 4 drive 
connected to it. But after connecting those drives to that hpt366 I can not 
do disklabel on them but i can if i connect it to normal ide connectors. 

I am using GENERIC 4.8 kernel that ships with 4.8Release. The error message 
that disklabel gives me is: 

#dd if=/dev/zero of=/dev/ad7 count=1
#disklabel -r -w ad7 auto
disklabel: ioctl DIOCWLABEL: Operation not supported by device 

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


Re: (Fwd) mountroot>

2003-06-21 Thread Alexandru Savescu
hi, 
exactly this is my problem.. i've read the 7.3 section of the handbook and searched 
also other 
forums and sites for this .. it seems i'm not the only one with this problem but i did 
not find 
somewhere an answer..

my lilo.conf looks like this:
other=/dev/sdb1
table=/dev/sdb
loader=/boot/chain.b
label="FreeBSD"

what is going wrong?!
mfg

Alexandru


On 20 Jun 2003 at 22:03, Viktor Lazlo wrote:

Have you followed the applicable instructions from section 7.3.1 of the
handbook? It give a sample format and instructions specifically for when
linux and FreeBSD are on separate hard drives.

Cheers,

Viktor




> On Sat, 21 Jun 2003, Alexandru Savescu wrote:
> 
> > Hello BSD-lovers,
> > i'm stuck on a tricky situation:
> >
> > i got FreeBSD 4.8-STABLE running smoothly on a SCSI disk,
> > but i had to move the HDD on a multi-OS system, so i am
> > heading this problem:
> >
> > there are 3 disks
> > - ad0: IDE WDC-drive with a MSwinOS
> > - da0: SCSI IBM-drive with Debian Linux
> > - da1: SCSI IBM FreeBSD disk
> >
> > ad0 is the primary disk with lilo in the MBR
> >
> > lilo.conf uses
> >
> > boot=/dev/hda
> > ...
> > /dev/sda1 to boot the debianOS
> > /dev/sdb1 to boot FreeBSD
> >
> > well, this is working fine for winOS and linux but FreeBSD
> > returns this error lines:
> >
> > Root mount failed: 22
> > Mounting root from ufs:/dev/da2s1a
> > Root mount failed: 22
> > Mounting root from ufs:/dev/da2a
> > Root mount failed: 22
> >
> > Manual root filesystem specification:
> > mountroot>
> >
> >
> > i've tried all kind of combos like ufs:/dev/da1s1a but nothing worked out.
> > what i still can't understand is why it's trying to mount /dev/da2 instead of 
> > /dev/da1
> > 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Error while compiling Xft

2003-06-21 Thread Augusto Jun Devegili
Hi all,

I'm trying to compile Xft (I need it for Qt) and the following error 
occur. I'm using 5.1-RELEASE. Any ideas?

TIA and regards,

Augusto Jun Devegili

-=-=-=-=-=-=-=-=-=-=-=-

/usr/ports/x11-fonts/Xft/work/xft-2.1.2

===>  Building for Xft-2.1.2
gmake  all-am
gmake[1]: Entering directory `/usr/ports/x11-fonts/Xft/work/xft-2.1.2'
if /bin/sh ./libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I. 
-I/usr/X11R6/include -I/usr/X11R6/include 
-I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include 
-O -pipe -mcpu=pentiumpro -MT xftfreetype.lo -MD -MP -MF 
".deps/xftfreetype.Tpo" \
  -c -o xftfreetype.lo `test -f 'xftfreetype.c' || echo 
'./'`xftfreetype.c; \
then mv ".deps/xftfreetype.Tpo" ".deps/xftfreetype.Plo"; \
else rm -f ".deps/xftfreetype.Tpo"; exit 1; \
fi
 cc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include 
-I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include 
-I/usr/X11R6/include -O -pipe -mcpu=pentiumpro -MT xftfreetype.lo -MD 
-MP -MF .deps/xftfreetype.Tpo -c xftfreetype.c  -fPIC -o .libs/xftfreetype.o
xftfreetype.c: In function `XftFontOpenInfo':
xftfreetype.c:705: `PictStandardARGB32' undeclared (first use in this 
function)
xftfreetype.c:705: (Each undeclared identifier is reported only once
xftfreetype.c:705: for each function it appears in.)
xftfreetype.c:705: warning: assignment makes pointer from integer 
without a cast
xftfreetype.c:708: `PictStandardA8' undeclared (first use in this function)
xftfreetype.c:708: warning: assignment makes pointer from integer 
without a cast
xftfreetype.c:714: `PictStandardA1' undeclared (first use in this function)
xftfreetype.c:714: warning: assignment makes pointer from integer 
without a cast
gmake[1]: *** [xftfreetype.lo] Error 1
gmake[1]: Leaving directory `/usr/ports/x11-fonts/Xft/work/xft-2.1.2'
gmake: *** [all] Error 2
*** Error code 2

Stop in /usr/ports/x11-fonts/Xft.

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


Re: how to view and open file.db & file.mdb?

2003-06-21 Thread Han Hwei Woo
The world of Unix and Unix variants doesn't depend on filename extensions
for file types. Which program you would use would depend on the individual
file.

Han Hwei Woo
http://www.argosy.ca/~hhw

- Original Message - 
From: "Marlon Corleone" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 21, 2003 3:01 AM
Subject: how to view and open file.db & file.mdb?


> hi, im running 4.8 do do i open this type of file
> extension, file.db and file.mdb is there in ports
> collection that can manage to view and open this type
> of file?
>
> thanks
>
> __
> Do you Yahoo!?
> The New Yahoo! Search - Faster. Easier. Bingo.
> http://search.yahoo.com
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
"[EMAIL PROTECTED]"
>

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


Re: is this a FBSD printf bug?

2003-06-21 Thread Han Hwei Woo
Hrrm... your question and the code seem to contradict each other.

Firstly, you are assigning hex values to the characters in your array.
Secondly, you are printing the values stored in the array as hex values by
specifying %02x.

I think you meant to ask why you are getting the preceding trail of
...'s. If that's the case, it's because you are assigning values to
signed character variables and printing them as unsigned hex values. Thus,
when you assign values greater than 127 (starting with 88), you are
overriding the sign of the character. To get the output you would expect,
simply declare a as an unsigned character array.

e.g. unsigned char a[LEN_ARRAY+1];

- Original Message - 
From: <[EMAIL PROTECTED]>
To: "freebsd-questions" <[EMAIL PROTECTED]>
Sent: Saturday, June 21, 2003 7:14 AM
Subject: is this a FBSD printf bug?


> FBSD 4.8
>
> i hope this isn't a question based on extreme
> ignorance - i haven't programmed in C in a
> long time, and i don't have another machine
> to test this on.  i can't understand why
> the output of the following code produces
> "ints" when given variables of type "char",
> so it looks like a bug to me ...
>
> #include 
>

///
> int main(int argc, char *argv[]) {
>
> #define LEN_ARRAY 16
> char a[LEN_ARRAY+1];
> int i;
>
> a[0]=0x00;
> a[1]=0x11;
> a[2]=0x22;
> a[3]=0x33;
> a[4]=0x44;
> a[5]=0x55;
> a[6]=0x66;
> a[7]=0x77;
> a[8]=0x88;
> a[9]=0x99;
> a[10]=0xaa;
> a[11]=0xbb;
> a[12]=0xcc;
> a[13]=0xdd;
> a[14]=0xee;
> a[15]=0xff;
>
> for ( i = 0; i < LEN_ARRAY; ++i ) printf("[%02i]%02x\n", i, a[i]);
> }
>

///
> //
> // OUTPUT:
> //
> // [00]00
> // [01]11
> // [02]22
> // [03]33
> // [04]44
> // [05]55
> // [06]66
> // [07]77
> // [08]ff88 ???
> // [09]ff99 ???
> // [10]ffaa ???
> // [11]ffbb ???
> // [12]ffcc ???
> // [13]ffdd ???
> // [14]ffee ???
> // [15] ???
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
"[EMAIL PROTECTED]"
>

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


Re: "The Complete FreeBSD", third edition: errata and addenda

2003-06-21 Thread Robert Storey
Dear Greg,

I haven't bought The Complete FreeBSD, but I'm seriously thinking of doing
so imminently. However, I've been looking - so far in vain - to see if I
could find the Table of Contents and Index online. The O'Reilly web site
is supposed to have that, but it doesn't seem to be the case. Anyway, I
think it would help your books sales to have that info online, and if you
could point us to a link, I'd be grateful.

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


Fortuna - 030621

2003-06-21 Thread Fortuna
Support,

I am currently having a floppy disk drive problem.  I have searched all over the 
Internet for a solution to my problem and I have not found an answer.  You are my last 
resort.  

For a long time I always mounted the floppy drive by typing, "mount /dev/fd0 /floppy," 
and it worked fine.  Then one day I rebooted the system without unmounting 'fd0,' and 
now I cannot access it.  

I have tried different command combinations and nothing works.  

I keep on getting the following error:
mount: /dev/fd0: Device not configured

Later after researching my problem, I found out that I could have used 'mtools' all 
along.  When I tried using 'mtools,' to access the 'fd0' I get the following error:
plain_io: Device not configured
init A: could not read boot sector
cannot initialize 'A:'

Do you have any suggestions.  I would really appreciate it if you can help out.



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


Floppy Disk Help - 030621

2003-06-21 Thread Fortuna - Temp
Support,

I am currently having a floppy disk drive problem.  I have searched all over the 
Internet for a solution to my problem and I have not found an answer.  You are my last 
resort.  

For a long time I always mounted the floppy drive by typing, "mount /dev/fd0 /floppy," 
and it worked fine.  Then one day I rebooted the system without unmounting 'fd0,' and 
now I cannot access it.  

I have tried different command combinations and nothing works.  

I keep on getting the following error:
mount: /dev/fd0: Device not configured

Later after researching my problem, I found out that I could have used 'mtools' all 
along.  When I tried using 'mtools,' to access the 'fd0' I get the following error:
plain_io: Device not configured
init A: could not read boot sector
cannot initialize 'A:'

Do you have any suggestions.  I would really appreciate it if you can help out.



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


Problems with APG

2003-06-21 Thread Emilio Escobar
Hi, I installed 5.1-RELEASE and then tried 4.8-RELEASE but whenever my box
tries to boot it gets a panic when it loads the agp0 device. I get
something like: panic: congimalloc1: could not be size 0

Any ideas?

Emilio Escobar
   [EMAIL PROTECTED]
-Great spirits have always encountered strong
  oppositions from mediocre minds. -
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Mount My Creation [ls -c, -t -u etc]

2003-06-21 Thread Joshua Oreman
On Sat, Jun 21, 2003 at 12:41:36AM -0400 or thereabouts, Peter Leftwich seemed to 
write:
> On Thu, 19 Jun 2003, Patrick O'Reilly wrote:
> > > I have noticed in the man page for 'find' that the primaries allow
> > > selection based on time last "accessed", last "modified" and last
> > > "change" of status.  Evidently this info is held somewhere.  I don't
> > > have more info off hand, but perhaps this will nudge you in a useful
> > > direction?
> > > Patrick.
> > And see 'man ls' and the switches -c, -t and -u.
> 
> I was aware of and often use the -t switch (in a tcsh alias), but these
> have to do with sorting.  What if I wanted to see (maybe not as output from
> a single command but a few) the creation date, last modification date, and
> last access time for a directory?  What are the command lines I'd use (to
> include "." files and NOT recursively list within a/the directory)?

Include . files   - ls -a
Don't recurse - DON'T include -R
Inode change time - ls -lc
Last modified - ls -l
Last accessed - ls -lu

Note that there is no "creation time" - it's actually just the inode change
time. So it will change when you make a new link to the file, for example,
or when you set any of the file's times other than last modified, with
`touch'.

-- Josh

> 
> PS - PLEASE CC: ME IN YOUR REPLY
> 
> --
> Peter Leftwich
> President & Founder, Video2Video Services
> Box 13692, La Jolla, CA, 92039 USA
> http://Www.Video2Video.Com
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


j2re1.4.2-beta-linux and Mozilla

2003-06-21 Thread P. U. Kruppa
Hi!

Did anybody succeed in running the linux-mozilla 1.4rc2 binaries
with the new (ie. the new gcc32 compiled) jre ?

And if yes: how?

Regards,

Uli.

+---+
|Peter Ulrich Kruppa|
|  -  Wuppertal -   |
|  Germany  |
+---+
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: About domain name registrars

2003-06-21 Thread Hasse
Hi.
I'm using GoDaddy.com too,
and fully satisfied with their services and prices.
Regards Hasse.
___
On Saturday 21 June 2003 02.57, Alfonso Romero wrote:
> What are the best alternatives for registering a domain name? Has anyone
> used dandomain.com? It seems very attractive, at $16.00/year, and you can
> modify your own DNS record, but has anyone on freebsd-questions used it?
>
>
> THanks in advance,
>
> Alfonso Romero
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

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


Re: Strange formatting error with pkg_info after using portupgrade

2003-06-21 Thread Uwe Doering
Hi,

Rev. Joe Doyle Ardent wrote:
	Hello, everyone, I have a fairly strange error, that has popped 
up on both machines where I have used portupgrade (both 4.8-RELEASE 
boxes).  Here is an example output:

please:~> pkg_info |head
BitTorrent-3.2.1b   "Peer to Peer file sharing/mirroring."Mesa-3.4.2_2
A graphics library similar to SGI's OpenGL
ORBit-0.5.17High-performance CORBA ORB with support for the C language
XFree86-4.3.0,1 X11/XFree86 core distribution (complete, using mini/meta-po

	Note how Mesa's entry begins immediately after the last 
character of BitTorrent's.
> [...]

While I actually don't know why the terminating newline is missing in 
some cases I noticed that there was an MFC to RELENG_4 a couple of days 
ago that makes 'pkg_info' add a newline if the comment line doesn't have 
one.  You may want to take a look at FreeBSD's CVS repository 
(src/usr.sbin/pkg_install/info/show.c) in order to build and install a 
fixed 'pkg_info'.

Or if it doesn't happen often you could just as well edit the respective 
'+COMMENT' file in the '/var/db/pkg' hierarchy.  The pragmatic approach. ;-)

   Uwe
--
Uwe Doering |  EscapeBox - Managed On-Demand UNIX Servers
[EMAIL PROTECTED]  |  http://www.escapebox.net
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


fatal server error

2003-06-21 Thread Rogue Spider
I have a Compaq presario 4770
monitor is a Compaq 1525
grafix card is s3 Trio64V2
every time I try to start X server I get
" Fatal Server Error"
" No Screens Found"
" No Drivers Available"
I know I have the monitor settings correct
the only thing I could have wrong is
grafix card settings. or my card is Not supported.
Could you help me please. Im new to freebsd and
so far installing and configering is killing me.



=

No Hope in the future Look To the past to find redimsioun.

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


how to change server "splash" image?

2003-06-21 Thread george donnelly
I recently purchased a server installed FreeBSD on it. when it boots i get
an image that was put there by the manufacturer. How do i change this image?
where is it, etc?

tia

<-->
george donnelly - http://www.zettai.net/ - "We Love Newbies" :)
Zope Hosting - Dynamic Website Design - Search Engine Promotion
Yahoo, AIM: zettainet - MSN: [EMAIL PROTECTED] - ICQ: 51907738

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


Re: how to change server "splash" image?

2003-06-21 Thread James Dietrich
I believe the image is kept in the /boot directory.  Information about customizing 
your splash screen can be found at: http://www.baldwin.cx/splash

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


Re: how to change server "splash" image?

2003-06-21 Thread Kevin Stevens
On Saturday, Jun 21, 2003, at 10:00 US/Pacific, george donnelly wrote:

I recently purchased a server installed FreeBSD on it. when it boots i 
get
an image that was put there by the manufacturer. How do i change this 
image?
where is it, etc?
man splash

KeS

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


packages

2003-06-21 Thread Ian Todd
Hi

I am a newbie to freebsd. I am having trouble on installing packages.
i know about the pkg_add. I downloaded BichX and its
BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz. How will i install that packages
seeing that its an tar.gz file. ive use tar to extract it then i get
stuck. Im just using this file for an example.I would like to know
whats the right way on installing packages.Help please.

regards
ian
___
LOOK GOOD, FEEL GOOD - WWW.HEALTHIEST.CO.ZA

Cool Connection, Cool Price, Internet Access for R59 monthly @ WebMail
http://www.webmail.co.za/dialup/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Strange formatting error with pkg_info after using portupgrade

2003-06-21 Thread Rev. Joe Doyle Ardent
On Sat, Jun 21, 2003 at 06:54:05PM +0200, Uwe Doering wrote:
> 
> Rev. Joe Doyle Ardent wrote:
> >
> >please:~> pkg_info |head
> >BitTorrent-3.2.1b   "Peer to Peer file sharing/mirroring."Mesa-3.4.2_2 
> >A graphics library similar to SGI's OpenGL
> >ORBit-0.5.17High-performance CORBA ORB with support for the C 
> >language
> >XFree86-4.3.0,1 X11/XFree86 core distribution (complete, using 
> >mini/meta-po
> >
> > Note how Mesa's entry begins immediately after the last 
> >character of BitTorrent's.
> > [...]
> 
> While I actually don't know why the terminating newline is missing in 
> some cases I noticed that there was an MFC to RELENG_4 a couple of days 
> ago that makes 'pkg_info' add a newline if the comment line doesn't have 
> one.  You may want to take a look at FreeBSD's CVS repository 
> (src/usr.sbin/pkg_install/info/show.c) in order to build and install a 
> fixed 'pkg_info'.
> 
That did the trick; thanks!

Still, why does portupgrade get rid of the newlines in the 
COMMENT?  Has anyone else seen this behavior?


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


Re: fwd: Advise needed to write a script

2003-06-21 Thread Mark Pearce
> How do you resove?
> 
> I just insert in the crontab a reboot at 7:00 AM.
> I think that this is not the best solution.
> May be the PPPD have a bug.

Hi

I created a script to kill my ppp, sleep for 30 seconds and restart ppp,
this seems to work just fine, but also I have a cronjob to do this
sometimes every 2 hours.

I seem to have had this problem with ppp since 4.7-STABLE, but only with
the server iniating the connection, not the one being dialed into.  I
get a load of rejected compression errors on the server side.

I suspect a bug within ppp somewhere.

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


Re: packages

2003-06-21 Thread Han Hwei Woo
Just pkg_add the tarballs, like in Slackware.

Han Hwei Woo
http://www.argosy.ca/~hhw

- Original Message - 
From: "Ian Todd" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 21, 2003 2:56 PM
Subject: packages


> Hi
>
> I am a newbie to freebsd. I am having trouble on installing packages.
> i know about the pkg_add. I downloaded BichX and its
> BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz. How will i install that packages
> seeing that its an tar.gz file. ive use tar to extract it then i get
> stuck. Im just using this file for an example.I would like to know
> whats the right way on installing packages.Help please.
>
> regards
> ian
> ___
> LOOK GOOD, FEEL GOOD - WWW.HEALTHIEST.CO.ZA
>
> Cool Connection, Cool Price, Internet Access for R59 monthly @ WebMail
> http://www.webmail.co.za/dialup/
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
"[EMAIL PROTECTED]"
>

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


Packages

2003-06-21 Thread Ian Todd
Ive done what u told me and im still not getting it right. The
 following is what it says:

FREEBSD# pkg_add BitchX-1.0c19-FreeBSD4.tar.gz
 tar: +CONTENTS: Not found in archive
 tar: Error exit delayed from previous errors
 pkg_add: tar extract of /tmp/b/BitchX-1.0c19-FreeBSD4.tar.gz failed!
 pkg_add: unable to extract table of contents file from
 '/tmp/b/BitchX-1.0c19-FreeBSD4.tar.gz' - not a package?
 FREEBSD# gunzip BitchX-1.0c19-FreeBSD4.tar.gz
 FREEBSD# ls -a
 .   BitchX-1.0c19-FreeBSD4.tar
 ..  scr-bx
 BitchX  wserv
 FREEBSD# pkg_add BitchX-1.0c19-FreeBSD4.tar
 tar: +CONTENTS: Not found in archive
 tar: Error exit delayed from previous errors
 pkg_add: tar extract of /tmp/b/BitchX-1.0c19-FreeBSD4.tar failed!
 pkg_add: unable to extract table of contents file from
 '/tmp/b/BitchX-1.0c19-FreeBSD4.tar' - not a package?

when i try to use ./configure the following is what i get:

FREEBSD# ./configure
 ./configure: Command not found.

please help.

Regards
 ian

On Sat, 21 Jun 2003 15:26:44 -0300 Han Hwei Woo ([EMAIL PROTECTED])
 wrote:

>Just pkg_add the tarballs, like in Slackware.
 >
 >Han Hwei Woo
 >http://www.argosy.ca/~hhw
 >
 >- Original Message -
 >From: "Ian Todd" <[EMAIL PROTECTED]>
 >To: <[EMAIL PROTECTED]>
 >Sent: Saturday, June 21, 2003 2:56 PM
 >Subject: packages
 >
 >
 >> Hi
 >>
 >> I am a newbie to freebsd. I am having trouble on installing
 packages.
 >> i know about the pkg_add. I downloaded BichX and its
 >> BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz. How will i install that
 packages
 >> seeing that its an tar.gz file. ive use tar to extract it then i
 get
 >> stuck. Im just using this file for an example.I would like to know
 >> whats the right way on installing packages.Help please.
 >>
 >> regards
 >> ian
 >>
___
LOOK GOOD, FEEL GOOD - WWW.HEALTHIEST.CO.ZA

Cool Connection, Cool Price, Internet Access for R59 monthly @ WebMail
http://www.webmail.co.za/dialup/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


packages

2003-06-21 Thread Ian Todd
Ive done what u said but still not comeing right:

FREEBSD# pkg_add BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz
tar: +CONTENTS: Not found in archive
tar: Error exit delayed from previous errors
pkg_add: tar extract of /tmp/test/BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz
failed!
pkg_add: unable to extract table of contents file from
'/tmp/test/BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz' - not a package?

FREEBSD#
FREEBSD# cd /usr/ports/irc
FREEBSD# cd bitchx
FREEBSD# ls -a
.   Makefiledistinfopkg-comment
pkg-plist
..  README.html files   pkg-descr
FREEBSD# bitchx
bitchx: Command not found.
FREEBSD# BitchX
BitchX: Command not found.
FREEBSD# make install distclean
>> ircii-pana-1.0c19.tar.gz doesn't seem to exist in
/usr/ports/distfiles/.
>> Attempting to fetch from ftp://ftp.bitchx.com/pub/BitchX/source/.
fetch:
ftp://ftp.bitchx.com/pub/BitchX/source/ircii-pana-1.0c19.tar.gz: Host
not found
>> Attempting to fetch from ftp://ftp.bitchx.org/pub/BitchX/source/.
please help

regards
ian

as root, just use:

pkg_add BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz

If this doesn't work, it is probably not a real FreeBSD package.

I usually compile things from ports. You will find BitchX in
/usr/ports/irc/bitchx. If you want to try compiling it, do this (as
root):

cd /usr/ports/irc/bitchx
 make install distclean

-Will

> -Original Message-
 > From: Ian Todd [mailto:[EMAIL PROTECTED]
 > Sent: Saturday, June 21, 2003 1:56 PM
 > To: [EMAIL PROTECTED]
 > Subject: packages
 >
>
> Hi
 >
> I am a newbie to freebsd. I am having trouble on installing
packages.
 > i know about the pkg_add. I downloaded BichX and its
 > BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz. How will i install that
packages
 > seeing that its an tar.gz file. ive use tar to extract it then i
get
 > stuck. Im just using this file for an example.I would like to know
 > whats the right way on installing packages.Help please.
 >
> regards
 > ian
 > 
___
LOOK GOOD, FEEL GOOD - WWW.HEALTHIEST.CO.ZA

Cool Connection, Cool Price, Internet Access for R59 monthly @ WebMail
http://www.webmail.co.za/dialup/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Packages

2003-06-21 Thread Han Hwei Woo
Where did you download the package from? Judging from the name of the file,
it's not an official one. Try:
# pkg_add -r BitchX
And it will automatically fetch the package for you. Or better yet, install
it from ports to compile it from source.
# cd /usr/ports/irc/bitchx; make install clean

- Original Message - 
From: "Ian Todd" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 21, 2003 3:38 PM
Subject: Packages


> Ive done what u told me and im still not getting it right. The
>  following is what it says:
>
> FREEBSD# pkg_add BitchX-1.0c19-FreeBSD4.tar.gz
>  tar: +CONTENTS: Not found in archive
>  tar: Error exit delayed from previous errors
>  pkg_add: tar extract of /tmp/b/BitchX-1.0c19-FreeBSD4.tar.gz failed!
>  pkg_add: unable to extract table of contents file from
>  '/tmp/b/BitchX-1.0c19-FreeBSD4.tar.gz' - not a package?
>  FREEBSD# gunzip BitchX-1.0c19-FreeBSD4.tar.gz
>  FREEBSD# ls -a
>  .   BitchX-1.0c19-FreeBSD4.tar
>  ..  scr-bx
>  BitchX  wserv
>  FREEBSD# pkg_add BitchX-1.0c19-FreeBSD4.tar
>  tar: +CONTENTS: Not found in archive
>  tar: Error exit delayed from previous errors
>  pkg_add: tar extract of /tmp/b/BitchX-1.0c19-FreeBSD4.tar failed!
>  pkg_add: unable to extract table of contents file from
>  '/tmp/b/BitchX-1.0c19-FreeBSD4.tar' - not a package?
>
> when i try to use ./configure the following is what i get:
>
> FREEBSD# ./configure
>  ./configure: Command not found.
>
> please help.
>
> Regards
>  ian
>
> On Sat, 21 Jun 2003 15:26:44 -0300 Han Hwei Woo ([EMAIL PROTECTED])
>  wrote:
>
> >Just pkg_add the tarballs, like in Slackware.
>  >
>  >Han Hwei Woo
>  >http://www.argosy.ca/~hhw
>  >
>  >- Original Message -
>  >From: "Ian Todd" <[EMAIL PROTECTED]>
>  >To: <[EMAIL PROTECTED]>
>  >Sent: Saturday, June 21, 2003 2:56 PM
>  >Subject: packages
>  >
>  >
>  >> Hi
>  >>
>  >> I am a newbie to freebsd. I am having trouble on installing
>  packages.
>  >> i know about the pkg_add. I downloaded BichX and its
>  >> BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz. How will i install that
>  packages
>  >> seeing that its an tar.gz file. ive use tar to extract it then i
>  get
>  >> stuck. Im just using this file for an example.I would like to know
>  >> whats the right way on installing packages.Help please.
>  >>
>  >> regards
>  >> ian
>  >>
> ___
> LOOK GOOD, FEEL GOOD - WWW.HEALTHIEST.CO.ZA
>
> Cool Connection, Cool Price, Internet Access for R59 monthly @ WebMail
> http://www.webmail.co.za/dialup/
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
"[EMAIL PROTECTED]"
>

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


/entropy

2003-06-21 Thread Socketd
Hi

I have just installed 5.1 Release and noticed that there is a new file
in / (entropy).

Why is it placed there and what is it?

Btw please cc to me as I am not on the list.

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


Re: /entropy

2003-06-21 Thread Kent Stewart
On Saturday 21 June 2003 11:55 am, Socketd wrote:
> Hi
>
> I have just installed 5.1 Release and noticed that there is a new file
> in / (entropy).
>
> Why is it placed there and what is it?

Well, for starters, this is the wrong list. You are supposed to ask question 
about 5.x on -current. You are also supposed to subscribe to the commit list 
and etc. If you don't want to do this, then 5.1 release may not be the 
appropriate choice of OS for you.

Kent

>
> Btw please cc to me as I am not on the list.
>
> br
> socketd
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

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


Re: FreeBSD vs "The Others" Brochure

2003-06-21 Thread Andreas Kohn
Am Fri, 2003-06-20 um 20.59 schrieb Peter Elsner:
> I believe I have seen this before, but I'm not sure where.
> 
> What I'm looking for is a advertising slick or brochure, that
> could be handed to a "clueless" sales prospect.  The first time
> you say the word FreeBSD, and all you get is that blank stare
> and a "huh?"...
> 
> I believe it was in PDF format, but can't remember.
> 
> If anyone knows where this is, please forward me a URL.
> 
> Thank you,
> 
> 
> Peter
> 
Hello,

I'm not sure if you mean that thing, I'm not even sure where I found it,
but look at
http://62.75.159.88/~andreas/freebsd.pdf
It's a comparison between FreeBSD, Linux and Windows 2000.

HTH,
-- 
Andreas Kohn <[EMAIL PROTECTED]>


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


newbie: procmail question /var/mail

2003-06-21 Thread admin
Hi,

Okay I have read some tutorial sites on procmail but want to make sure I have
some things clear here before I move everybody plus some things I dont quite
understand are happening and I cant find relevant infromation.  

/var/mail is filling up quickly.   I am attmepting to migrate /var/mail/
files to a new scheme that places the DEFAULT local delivery to something like
$HOME/Mailbox .

I am using procmail for local delivery and sendmail is the agent.

in sendmail I have the following from the .mc file.

--- snip ---
define(`PROCMAIL_MAILER_PATH',`/usr/local/bin/procmail')dnl
FEATURE(local_procmail,`',`/usr/local/bin/procmail -t -Y -a $h -d $u')dnl
--- snip 

okay but I have a few users with $DEFAULT defined to /var/mail/ so I am
trying to figure out a way to gracefully handle this without creating the need
for a flag day and have the need to have every user redefine their $DEFAULT .

I thought I could just have a soft symlink from /var/mail/ to
$HOME/Mailbox .  but every new message delivery replaces /var/mail/ and
then generates a /var/mail/BOGUS..ca 

I guess this can be asked somewhere else like a procmail list but well this
list has a lot of good information in the past.  Should I go to the procmail
lists for support or can somebody help me here?

- Noah




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


Re: [rofug] Re: (Fwd) mountroot>

2003-06-21 Thread Adrian Penisoara
Hi,

  Please use english.


  Try inserting the following in /boot/loader.conf:

   root_disk_unit=1

  From loader(8):

 root_disk_unit
 If the code which detects the disk unit number for the root
 disk is confused, eg. by a mix of SCSI and IDE disks, or IDE
 disks with gaps in the sequence (eg. no primary slave), the
 unit number can be forced by setting this variable.



  Alternatively you can try creating a file "boot.config" in the root
filesystem containting:

   2:da(1,a)/kernel

  See boot(8).

 Ady (@freebsd.ady.ro)

On Sat, 21 Jun 2003, Camelia Nastase wrote:

>
>
> 1. pe mine personal ma enerveaza cross-posting'ul.
> 2. ai incercat cu boot -c, unload, boot-conf ? sau un ls dupa unload, sau
> lsdev sa vezi ce posibilitati ai?
>
> > >
> > > > Hello BSD-lovers,
> > > > i'm stuck on a tricky situation:
> > > >
> > > > i got FreeBSD 4.8-STABLE running smoothly on a SCSI disk,
> > > > but i had to move the HDD on a multi-OS system, so i am
> > > > heading this problem:
> > > >
> > > > there are 3 disks
> > > > - ad0: IDE WDC-drive with a MSwinOS
> > > > - da0: SCSI IBM-drive with Debian Linux
> > > > - da1: SCSI IBM FreeBSD disk
> > > >
> > > > ad0 is the primary disk with lilo in the MBR
> > > >
> > > > lilo.conf uses
> > > >
> > > > boot=/dev/hda
> > > > ...
> > > > /dev/sda1 to boot the debianOS
> > > > /dev/sdb1 to boot FreeBSD
> > > >
> > > > well, this is working fine for winOS and linux but FreeBSD
> > > > returns this error lines:
> > > >
> > > > Root mount failed: 22
> > > > Mounting root from ufs:/dev/da2s1a
> > > > Root mount failed: 22
> > > > Mounting root from ufs:/dev/da2a
> > > > Root mount failed: 22
> > > >
> > > > Manual root filesystem specification:
> > > > mountroot>
> > > >
> > > >
> > > > i've tried all kind of combos like ufs:/dev/da1s1a but nothing worked out.
> > > > what i still can't understand is why it's trying to mount /dev/da2 instead of 
> > > > /dev/da1
> > > >
> > __
> > Send 'unsubscribe rofug' to [EMAIL PROTECTED] to unsubscribe
> --
> Camelia Nastase
> Network Administrator Motto: "All you have to do
> Departamentul Internet   is want it bad enough"
> ASTRAL TELECOM SA, Sucursala Cluj
>
>
> __
> Send 'unsubscribe rofug' to [EMAIL PROTECTED] to unsubscribe
>
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Packages

2003-06-21 Thread Shantanu Mahajan
+-- Ian Todd [freebsd] [21-06-03 20:38 +0200]:
| Ive done what u told me and im still not getting it right. The
|  following is what it says:
| 
| FREEBSD# pkg_add BitchX-1.0c19-FreeBSD4.tar.gz
|  tar: +CONTENTS: Not found in archive
|  tar: Error exit delayed from previous errors
|  pkg_add: tar extract of /tmp/b/BitchX-1.0c19-FreeBSD4.tar.gz failed!
|  pkg_add: unable to extract table of contents file from
|  '/tmp/b/BitchX-1.0c19-FreeBSD4.tar.gz' - not a package?
|  FREEBSD# gunzip BitchX-1.0c19-FreeBSD4.tar.gz
|  FREEBSD# ls -a
|  .   BitchX-1.0c19-FreeBSD4.tar
|  ..  scr-bx
|  BitchX  wserv
|  FREEBSD# pkg_add BitchX-1.0c19-FreeBSD4.tar
|  tar: +CONTENTS: Not found in archive
|  tar: Error exit delayed from previous errors
|  pkg_add: tar extract of /tmp/b/BitchX-1.0c19-FreeBSD4.tar failed!
|  pkg_add: unable to extract table of contents file from
|  '/tmp/b/BitchX-1.0c19-FreeBSD4.tar' - not a package?
| 
| when i try to use ./configure the following is what i get:
| 
| FREEBSD# ./configure
|  ./configure: Command not found.
| 
| please help.
| 
| Regards
|  ian
you have downloaded the srcs.
do the following
# cp BitchX-1.0c19-FreeBSD4.tar.gz /usr/port/distfiles
# cd /usr/ports/irc/bitchx
# make install



Regards,
Shantanu

-- 
If you want df(1) and other commands to display disk sizes in
kilobytes instead of 512-byte blocks, set BLOCKSIZE in your
environment to 'K'.  You can also use 'M' for Megabytes or 'G' for
Gigabytes.  If you want df(1) to automatically select the best size
then use 'df -h'.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: packages

2003-06-21 Thread Ataualpa Albert Carmo Braga

> On Sat, Jun 21, 2003 at 03:44:16PM BRT , Ian Todd wrote:
  |Ive done what u said but still not comeing right:
  |
  |FREEBSD# pkg_add BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz

Nope. You could do this if a package (.tgz extension), .tar.gz you must
unzip and untar in order to get a dir where you can install de program.

  |tar: +CONTENTS: Not found in archive
  |tar: Error exit delayed from previous errors
  |pkg_add: tar extract of /tmp/test/BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz
  |failed!
  |pkg_add: unable to extract table of contents file from
  |'/tmp/test/BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz' - not a package?
  |
  |FREEBSD#
  |FREEBSD# cd /usr/ports/irc
  |FREEBSD# cd bitchx
  |FREEBSD# ls -a
  |.   Makefiledistinfopkg-comment
  |pkg-plist
  |..  README.html files   pkg-descr
  |FREEBSD# bitchx

  FREEBSD# make install clean

  |bitchx: Command not found.
  |FREEBSD# BitchX
  |BitchX: Command not found.
  |FREEBSD# make install distclean
  |>> ircii-pana-1.0c19.tar.gz doesn't seem to exist in
  |/usr/ports/distfiles/.
  |>> Attempting to fetch from ftp://ftp.bitchx.com/pub/BitchX/source/.
  |fetch:
  |ftp://ftp.bitchx.com/pub/BitchX/source/ircii-pana-1.0c19.tar.gz: Host
  |not found
  |>> Attempting to fetch from ftp://ftp.bitchx.org/pub/BitchX/source/.
  |please help
  |

Wait until the port to find the softwares. Or you can get all .tar.gz and
put then on /usr/ports/distfiles and repeat # make install clean

Sorry for so bad english.

See you,

Ata.

  |regards
  |ian
  |
  |as root, just use:
  |
  |pkg_add BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz
  |
  |If this doesn't work, it is probably not a real FreeBSD package.
  |
  |I usually compile things from ports. You will find BitchX in
  |/usr/ports/irc/bitchx. If you want to try compiling it, do this (as
  |root):
  |
  |cd /usr/ports/irc/bitchx
  | make install distclean
  |
  |-Will
  |
  |> -Original Message-
  | > From: Ian Todd [mailto:[EMAIL PROTECTED]
  | > Sent: Saturday, June 21, 2003 1:56 PM
  | > To: [EMAIL PROTECTED]
  | > Subject: packages
  | >
  |>
  |> Hi
  | >
  |> I am a newbie to freebsd. I am having trouble on installing
  |packages.
  | > i know about the pkg_add. I downloaded BichX and its
  | > BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz. How will i install that
  |packages
  | > seeing that its an tar.gz file. ive use tar to extract it then i
  |get
  | > stuck. Im just using this file for an example.I would like to know
  | > whats the right way on installing packages.Help please.
  | >
  |> regards
  | > ian
  | > 
  |___
  |LOOK GOOD, FEEL GOOD - WWW.HEALTHIEST.CO.ZA
  |
  |Cool Connection, Cool Price, Internet Access for R59 monthly @ WebMail
  |http://www.webmail.co.za/dialup/
  |___
  |[EMAIL PROTECTED] mailing list
  |http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  |To unsubscribe, send any mail to "[EMAIL PROTECTED]"

-- 
 Ataualpa Albert Carmo Braga[EMAIL PROTECTED]
http://www.iqm.unicamp.br
 
   "Work is the refuge of people who have nothing better to do."   
Oscar Wilde   



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


Re: fatal server error

2003-06-21 Thread Viktor Lazlo


On Sat, 21 Jun 2003, Rogue Spider wrote:

> I have a Compaq presario 4770
> monitor is a Compaq 1525
> grafix card is s3 Trio64V2
> every time I try to start X server I get
> " Fatal Server Error"
> " No Screens Found"
> " No Drivers Available"
> I know I have the monitor settings correct
> the only thing I could have wrong is
> grafix card settings. or my card is Not supported.
> Could you help me please. Im new to freebsd and
> so far installing and configering is killing me.

This error sounds like you've been trying to configure 4.x XFree86 with a
3.x tool like xf86config.  Try running (as root):

XFree86 -configure

and it should set up a working config file for any supported video card
and monitor.

Cheers,

Viktor

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


System not e-mailing ROOT anymore

2003-06-21 Thread Joseph White

Hi All,

According to this FreeBSD handbook I should be able to turn off Sendmail
ability to recieve e-mail but still be able to send mail.  My FreeBSD
box is a Samba backup server and I don't require Sendmail service, but I
would still like to recieve the e-mails to root from the system.  When
setting sendmail_enable="NO"  this seems to kill all email services,
even the system e-mailing root.

 From Handbook:
==
20.4.2.1 FreeBSD 4.5-STABLE before 2002/4/4 and earlier (including
4.5-RELEASE and earlier)

Enter:

sendmail_enable="NO"

into /etc/rc.conf. This will disable sendmail's incoming mail service,
but if /etc/mail/mailer.conf (see below) is not changed, sendmail will
still be used to send e-mail.
20.4.2.2 FreeBSD 4.5-STABLE after 2002/4/4 (including 4.6-RELEASE and later)

In order to completely disable sendmail you must use

sendmail_enable="NONE"

in /etc/rc.conf.

Warning: If you disable sendmail's outgoing mail service in this
way, it is important that you replace it with a fully working
alternative mail delivery system. If you choose not to, system functions
such as periodic(8) will be unable to deliver their results by e-mail as
they would normally expect to. Many parts of your system may expect to
have a functional sendmail-compatible system. If applications continue
to use sendmail's binaries to try and send e-mail after you have
disabled them, mail could go into an inactive sendmail queue, and never
be delivered.

If you only want to disable sendmail's incoming mail service, you should set

sendmail_enable="NO"

in /etc/rc.conf. More information on sendmail's startup options is
available from the rc.sendmail(8) manual page.

==

Thank You,




  Joseph S. White
  [EMAIL PROTECTED]
http://mywebpages.comcast.net/jwhite414/



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


Re: how to change server "splash" image?

2003-06-21 Thread Viktor Lazlo


On Sat, 21 Jun 2003, george donnelly wrote:

> I recently purchased a server installed FreeBSD on it. when it boots i get
> an image that was put there by the manufacturer. How do i change this image?
> where is it, etc?

If it appears after you have formatted the hard drive and installed
FreeBSD it sounds like the image is in the ROM BIOS and cannot be changed.
Try contacting the manufacturer to see if they have any suggestions (which
isn't likely since they *want* it to be displayed).

Cheers,

Viktor

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


Re: About domain name registrars

2003-06-21 Thread Chris Hill
On Fri, 20 Jun 2003, Alfonso Romero wrote:

> What are the best alternatives for registering a domain name? Has
> anyone used dandomain.com? It seems very attractive, at $16.00/year,
> and you can modify your own DNS record, but has anyone on
> freebsd-questions used it? 

Lots of people recommend godaddy.com, but I've been using gandi.net. 
They will host your DNS free. It's 12 euro per year, and you can do all
your admin stuff on their web forms. Plus, they run FreeBSD - support
your local, and all that.


--
Chris Hill   [EMAIL PROTECTED]
** [ Busy Expunging <|> ]

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


Re: newbie: procmail question /var/mail

2003-06-21 Thread Alex de Kruijff
On Sat, Jun 21, 2003 at 11:06:55AM -0800, admin wrote:
> Hi,
> 
> Okay I have read some tutorial sites on procmail but want to make sure I have
> some things clear here before I move everybody plus some things I dont quite
> understand are happening and I cant find relevant infromation.  
> 
> /var/mail is filling up quickly.   I am attmepting to migrate /var/mail/
> files to a new scheme that places the DEFAULT local delivery to something like
> $HOME/Mailbox .
> 

Hi, 

I use an alternative you migth find usefull.

I use the /var/mail directory for the mail that is waiting to be fetched.
Users that read there mail localy have a .forward file in there home dir.
The users who have a .forward file also have a .procmailrc file. This 
causes the mail not to be send to /var/mail but to one of there own 
directories (usaly in /home). The users who don't read there mail localy
use pop or imap to fetch it. They have a quota on the /var filesystem. 
I can as root use the /var/mail system to resend mails by moveing there 
mailboxes from /home to /var/mail, but they have to use fetchmail or 
getmail to do this. This way the can rerun there mail though there 
procmail filters. I don't have the feature included in sendmail.

I hope this is helpfull. Contact me if you like this alternative and i 
will send you come config files if needed.

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


Re: Error while compiling Xft

2003-06-21 Thread Kris Kennaway
On Sat, Jun 21, 2003 at 08:56:32AM -0300, Augusto Jun Devegili wrote:
> Hi all,
> 
> I'm trying to compile Xft (I need it for Qt) and the following error 
> occur. I'm using 5.1-RELEASE. Any ideas?

You probably need to first upgrade the Xft dependencies.  Try using
portupgrade.

Kris


pgp0.pgp
Description: PGP signature


Re: packages

2003-06-21 Thread Kris Kennaway
On Sat, Jun 21, 2003 at 03:26:44PM -0300, Han Hwei Woo wrote:
> Just pkg_add the tarballs, like in Slackware.

Correct advice, except the file he is referring to is not a package.

> > i know about the pkg_add. I downloaded BichX and its
> > BitchX-1.0c19-FreeBSD4+Tcl1.5.tar.gz. How will i install that packages

FreeBSD packages are obtained from the packages directories on the FTP
mirror sites.  See also pkg_add -r.

Kris


pgp0.pgp
Description: PGP signature


RE: gnome2 install issue - solved

2003-06-21 Thread Derrick Ryalls
Following this:

http://lists.freebsd.org/pipermail/freebsd-gnome/2003-May/001034.html

It built cleanly. 

> # uname -a 
> FreeBSD homer 4.7-RELEASE FreeBSD 4.7-RELEASE #0: Wed Oct 16 23:18:32
> PDT 2002 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/HOMER  i386
> 
> 
> 
> 
> lgthread-2.0 -lglib-2.0 -liconv   
> cc -O -pipe -o cothreads-gthreads 
> cothreads_gthreads-cothreads.o -pthread  -L/usr/local/lib 
> ../cothreads/.libs/libcothreads-gthreads.al
> -lgthread-2.0 -lglib-2.0 -liconv 
> ../cothreads/.libs/libcothreads-gthreads.al(libcothreads_gthre
> ads_la-pth
> _mctx.lo): In function `pth_mctx_set':
> libcothreads_gthreads_la-pth_mctx.lo(.text+0x9b): undefined 
> reference to `sigaltstack'
> libcothreads_gthreads_la-pth_mctx.lo(.text+0x100): undefined 
> reference to `sigaltstack'
> libcothreads_gthreads_la-pth_mctx.lo(.text+0x112): undefined 
> reference to `sigaltstack'
> libcothreads_gthreads_la-pth_mctx.lo(.text+0x127): undefined 
> reference to `sigaltstack'
> libcothreads_gthreads_la-pth_mctx.lo(.text+0x158): undefined 
> reference to `sigaltstack'
> gmake[5]: *** [cothreads-gthreads] Error 1
> gmake[5]: Leaving directory 
> `/usr/ports/multimedia/gstreamer/work/gstreamer-0.6.2/libs/ext
> /cothreads
> /tests'
> gmake[4]: *** [all-recursive] Error 1
> gmake[4]: Leaving directory 
> `/usr/ports/multimedia/gstreamer/work/gstreamer-0.6.2/libs/ext
> /cothreads
> '
> gmake[3]: *** [all-recursive] Error 1
> gmake[3]: Leaving directory 
> `/usr/ports/multimedia/gstreamer/work/gstreamer-0.6.2/libs/ext'
> gmake[2]: *** [all-recursive] Error 1
> gmake[2]: Leaving directory 
> `/usr/ports/multimedia/gstreamer/work/gstreamer-0.6.2/libs'
> gmake[1]: *** [all-recursive] Error 1
> gmake[1]: Leaving directory 
> `/usr/ports/multimedia/gstreamer/work/gstreamer-0.6.2'
> gmake: *** [all] Error 2
> *** Error code 2
> 
> Stop in /usr/ports/multimedia/gstreamer.
> *** Error code 1
> 
> Stop in /usr/ports/multimedia/gstreamer-plugins.
> *** Error code 1
> 
> Stop in /usr/ports/audio/gnomemedia2.
> *** Error code 1
> 
> Stop in /usr/ports/x11/gnome2.
> ===[root] /usr/ports/x11/gnome2 # 
> 


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


rc.sendmail

2003-06-21 Thread John Von Essen
Could someone please explain rc.sendmail to me? I am unclear why it 
does what it does. I currently have everything enabled in rc.conf:

mta_start_script="/etc/rc.sendmail"
sendmail_enable="YES"
(1) sendmail_flags="-L sm-mta -bd -q30m"
sendmail_submit_enable="YES"
(2) sendmail_submit_flags="-L sm-mta -bd -q30m 
-ODaemonPortOptions=Addr=localhost"
sendmail_outbound_enable="YES"
(3) sendmail_outbound_flags="-L sm-queue -q30m"
sendmail_msp_queue_enable="YES"
(4) sendmail_msp_queue_flags="-L sm-msp-queue -Ac -q30m"

With the above settings, when I do a 'make start', only (1) and (4) get 
started. If I set sendmail_enable="NO", then only (2) and (4) start. If 
I set sendmail_enable="NO" and sendmail_submit="NO", then only (3) and 
(4).

This doesn't make any sense to me. For starters, why would I ever want 
just (3) and (4) running? Furthermore, I can't seem to get (1), (3), 
and (4) to all start together. I imagine people would want those three 
since you need your main sendmail running, and you could have a need 
for an "always-on" queue runner for mqueue and clientmqueue.

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


Re: flashpluginwrapper for Flash 6 (Shared Library Tools redux)

2003-06-21 Thread Mikko Työläjärvi
On Thu, 19 Jun 2003, Joe Kelsey wrote:

> Ok.  I hand-modified the linux-flashplugin6 shared library to remove all
> of the DT_NEEDED entries.  I then modified flashpluginwrapper to add the
> following functions:

[ ... snip wrapper functions ... ]

> I installed this new version of flashpluginwrapper, installed the
> linux-flashplugin6 library in browser_plugins.  Now, the Flash 6 code
> segfaults in pthread_mutex_init(), called from
>
> Program received signal SIGSEGV, Segmentation fault.
> 0x284549d6 in pthread_mutex_init () from /usr/lib/libc_r.so.4
> (gdb) bt
> #0  0x284549d6 in pthread_mutex_init () from /usr/lib/libc_r.so.4
> #1  0x298016b0 in MPCriticalSection::MPCriticalSection ()
> from /usr/X11R6/lib/browser_plugins/libflashplayer.so

[ ... snip rest of stack trace ... ]

> Anyone familiar enough with Mozilla internals to understand why
> pthread_mutex_init segfaults?  Has Mozilla started its own threads by
> the time it loads the libraries?  I don't know where to look to track
> this down.  Maybe a difference between Linux and FreeBSD in the pthread
> semantics?

If the flash plugin is making direct calls to pthread functions,
you'll probably have to provide some sort of compatibility wrappers
for those as well, as the pthreads interface make use of lots of
implementation specific data types supplied by the caller.  These
types are not likely to have the same definitions in Linux and FreeBSD.

Check the documentation of all pthread* functions referenced in the
plugin, then find out the definitions of the types of their arguments
from pthread.h on each platform.

For example:

  pthread_mutex_init(pthread_mutex_t *mutex,
 const pthread_mutexattr_t *attr);

On FreeBSD, pthread_mutex_t and pthread_mutexattr_t are pointers, on
Linux they are structs.

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


Abit IT-7 motherboard

2003-06-21 Thread Gilligan
I am a complete newbie when it comes to FreeBSD and I am interested in
running it getting so I can't afford Windows pgms). I looked on the
FreeBSD web site but I cannot find any info on if I can run it.
(Windows requires the drivers (Highpoint 374) for the ide drives) Also
if I will be able to use my HP DVD-R/W drive. (I just want to be able to
use it as a CD-RW).
Help!

Thanks
Doug


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


/etc/mail compile fails

2003-06-21 Thread Matt Dohm
I'm trying to install SALSin my current sendmail configuration, and when I run make 
install restart in /etc/mail the following message is output:
Examining slaxlan.org.cf...modified  2:55:08 Jun 21, 2003...up-to-date.
Examining install...non-existent...modified before source...out-of-date.
install:> = slaxlan.org.cf
install:? = slaxlan.org.cf
Applying :R to "slaxlan.org.mc"
Result is "slaxlan.org"
install -c -m  slaxlan.org.cf /etc/mail/sendmail.cf
install: invalid file mode: slaxlan.org.cf
*** Error code 64

Stop in /etc/mail.
-
That's the end of the debug output.  I'm running sendmail 8.12.9 (latest version), and 
am stumped.  Can anyone help me out?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


hello

2003-06-21 Thread Tenkoff
Hello freebsd-questions,

  how i can add my software to ports collections?
  where i can get information about this?

-- 
Best regards,
 Tenkoff  mailto:[EMAIL PROTECTED]

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


Re: rc.sendmail

2003-06-21 Thread Matthew Seaman
[Dropped [EMAIL PROTECTED] from the CC -- this is definitely [EMAIL PROTECTED] 
material]

On Sat, Jun 21, 2003 at 05:33:49PM -0400, John Von Essen wrote:
> Could someone please explain rc.sendmail to me? I am unclear why it 
> does what it does. I currently have everything enabled in rc.conf:
> 
> mta_start_script="/etc/rc.sendmail"
> sendmail_enable="YES"
> (1) sendmail_flags="-L sm-mta -bd -q30m"
> sendmail_submit_enable="YES"
> (2) sendmail_submit_flags="-L sm-mta -bd -q30m 
> -ODaemonPortOptions=Addr=localhost"
> sendmail_outbound_enable="YES"
> (3) sendmail_outbound_flags="-L sm-queue -q30m"
> sendmail_msp_queue_enable="YES"
> (4) sendmail_msp_queue_flags="-L sm-msp-queue -Ac -q30m"
> 
> With the above settings, when I do a 'make start', only (1) and (4) get 
> started. If I set sendmail_enable="NO", then only (2) and (4) start. If 
> I set sendmail_enable="NO" and sendmail_submit="NO", then only (3) and 
> (4).
> 
> This doesn't make any sense to me. For starters, why would I ever want 
> just (3) and (4) running? Furthermore, I can't seem to get (1), (3), 
> and (4) to all start together. I imagine people would want those three 
> since you need your main sendmail running, and you could have a need 
> for an "always-on" queue runner for mqueue and clientmqueue.

Anyhow, here are a couple of answers I prepared earlier, which you
might find useful:


http://groups.google.co.uk/groups?selm=20020906085719.GC34657%40happy-idiot-talk.infracaninophi.lucky.freebsd.questions&oe=UTF-8&output=gplain


http://groups.google.co.uk/groups?selm=aupkof%24ki2%241%40FreeBSD.csie.NCTU.edu.tw&oe=UTF-8&output=gplain

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgp0.pgp
Description: PGP signature


Re: hello

2003-06-21 Thread Matthew Seaman
On Sun, Jun 22, 2003 at 02:43:35AM +0400, Tenkoff wrote:
> Hello freebsd-questions,
> 
>   how i can add my software to ports collections?
>   where i can get information about this?

Start by reading the Porter's Handbook --

http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index.html
This will tell you how to create the port directory with it's
Makefile, pkg-descr and pkg-plist (and possibly other) files.

Once you've developed a port skeleton that works correctly and that
portlint(1) is happy with, you can submit it via send-pr(1) -- see
section 2.6 of the Porter's Handbook for details.  It's a good thing
to volunteer to be the port's Maintainer as well as just submitting
it.

If you're thinking of working on ports, try subscribing to the
[EMAIL PROTECTED] and maybe [EMAIL PROTECTED]
mailing lists for a bit to get an idea of what's involved.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgp0.pgp
Description: PGP signature


sendmail config for desktop

2003-06-21 Thread Gary Schenk
I am running 4.7-RELEASE. When I installed freeBSD I made the localhost 
name fuzz.

I am now attempting to get mutt running on this computer.

I cannot send email to the outside world. My email is rejected because 
the doamin part of the address includes the localhost name "fuzz". So 
instead of "[EMAIL PROTECTED]", which is what the ISP expects, mail 
is sent out as being from "[EMAIL PROTECTED]".

In one attempt to get things working, I edited freebsd.mc in a couple of 
places. I defined 'SMART_HOST' as my isp, and included a line 
MASQUERADE_AS('socal.rr.com'). I did make cf, and make install. After 
running sendmail -q it gives me an error message in sendmail.cf "line 
66: unknown configuration line "\n"

I used ee editor to go to line 66 and deleted what was apparently blank. 
Now when I run sendmail -q it's as though nothing occurs, I don't even 
get a mail message telling me my email was rejected.

How can I remove fuzz from my address? Dynamite? I have very little hair 
left, and this day has been really rough on what is left. It's being 
ripped out in big chunks. Sendmail documentation seems to be setup for 
server configuration. I have not been able to find anything for a 
standalone desktop that answers these questions. I've spent two days 
studying about and configuring mutt. Should I just stick with kmail?

Thanks, I really needed to vent!
Gary

here is the error message:

Jun 21 17:32:05 fuzz sendmail[85]: NOQUEUE: SYSERR(root): 
/etc/mail/sendmail.cf: line 66: unknown configuration line "\n"

here is freebsd.mc:

divert(-1)
#
# Copyright (c) 1983 Eric P. Allman
# Copyright (c) 1988, 1993
#   The Regents of the University of California.  All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#notice, this list of conditions and the following disclaimer in the
#documentation and/or other materials provided with the 
distribution.
# 3. All advertising materials mentioning features or use of this 
software
#must display the following acknowledgement:
#   This product includes software developed by the University of
#   California, Berkeley and its contributors.
# 4. Neither the name of the University nor the names of its 
contributors
#may be used to endorse or promote products derived from this 
software
#without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' 
AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE 
LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 
GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 
STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY 
WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#

#
#  This is a generic configuration file for FreeBSD 4.X and later 
systems.
#  If you want to customize it, copy it to a name appropriate for your
#  environment and do the modifications there.
#
#  The best documentation for this .mc file is:
#  /usr/share/sendmail/cf/README or
#  /usr/src/contrib/sendmail/cf/README
#

divert(0)
VERSIONID(`$FreeBSD: src/etc/sendmail/freebsd.mc,v 1.10.2.16 2002/05/22 
16:39:14 gshapiro Exp $')
OSTYPE(freebsd4)
DOMAIN(generic)

FEATURE(access_db, `hash -o -T /etc/mail/access')
FEATURE(blacklist_recipients)
FEATURE(local_lmtp)
FEATURE(mailertable, `hash -o /etc/mail/mailertable')
FEATURE(virtusertable, `hash -o /etc/mail/virtusertable')

MASQUERADE_AS('socal.rr.com') dnl

dnl Uncomment to allow relaying based on your MX records.
dnl NOTE: This can allow sites to use your server as a backup MX without
dnl   your permission.
dnl FEATURE(relay_based_on_MX)

dnl DNS based black hole lists
dnl 
dnl DNS based black hole lists come and go on a regular basis
dnl so this file will not serve as a database of the available servers.
dnl For that, visit 
http://dmoz.org/Computers/Internet/Abuse/Spam/Blacklists/

dnl Uncomment to activate Realtime Blackhole List
dnl information available at http://www.mail-abuse.com/
dnl NOTE: This is a subscription service as of July 31, 2001
dnl FEATURE(dnsbl)
dnl Alternatively, you can provide your own server and rejection 
message:
dnl FEATURE(dnsbl, `blackholes.mail-abuse.org', `"550 Mail from " 
$&{client_addr} " rejected, see http://mail-abuse.org/

Small Database Software Recommendation

2003-06-21 Thread Rod Person
Hi Guys,

I'm looking for a small database application to create a database of all
may dvds and cds. I think mysql my be too much overkill, since it would
be running on my laptop. Any suggestions.

TIA

Rod

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


Where can I find libgcc_s.so.1 ?

2003-06-21 Thread P. U. Kruppa
Hi!

Where can I find libgcc_s.so.1 ?
(mozilla1.4rc2 seems to need it to run Sun's java plugin)

Regards,

Uli.

+---+
|Peter Ulrich Kruppa|
|  -  Wuppertal -   |
|  Germany  |
+---+
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Small Database Software Recommendation

2003-06-21 Thread Viktor Lazlo


On Sat, 21 Jun 2003, Rod Person wrote:

> Hi Guys,
>
> I'm looking for a small database application to create a database of all
> may dvds and cds. I think mysql my be too much overkill, since it would
> be running on my laptop. Any suggestions.

If that's all you're using it for you don't need anything more than a
simple formatted text file that can be queried by any perl, awk or shell
script.

Cheers,

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


Re: Small Database Software Recommendation

2003-06-21 Thread Ryan Thompson
Rod Person wrote to [EMAIL PROTECTED]:

> Hi Guys,
>
> I'm looking for a small database application to create a database of all
> may dvds and cds. I think mysql my be too much overkill, since it would
> be running on my laptop. Any suggestions.

Yes.

It's raining in Saskatoon. Feels like a rant coming on. :-)

Fully define the requirements before choosing the technology.

MySQL *might* be overkill. I could recommend anything from flat files to
Oracle, though, and be wrong, depending on exactly what it is you want
to accomplish. For a simple key/value hash that you might encounter in
the decades old "album catalogue" problem, Berkeley DB, or maybe Perl's
built-in %hash functions would be the way to go.

Consider your requirements. What is the system for? Who will be using
it? What hidden and evident features must it have? What *tasks* (a.k.a.
"use cases") will the users carry out? What other less tangible goals
are to be accomplished by the system? Which constraints and standards
must the system adhere to?

Once you have the above, you can begin to consider the architecture of
your system, and, once you've done that, choosing a specific technology
might be appropriate.

Requirements specification is *never* overkill.

As far as defining less tangible goals, though, "I want to learn ${X}"
is a valid goal.

Hope this helps,
- Ryan

-- 
  Ryan Thompson <[EMAIL PROTECTED]>

  SaskNow Technologies - http://www.sasknow.com
  901-1st Avenue North - Saskatoon, SK - S7K 1Y4

Tel: 306-664-3600   Fax: 306-244-7037   Saskatoon
  Toll-Free: 877-727-5669 (877-SASKNOW) North America

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


Re: FreeBSD vs "The Others" Brochure

2003-06-21 Thread Rob
You may be looking for the download link at the bottom of this article -
http://www.techtv.com/screensavers/showtell/story/0,24330,3421080,00.htm
l

(FreeBSD promo on TechTV earlier this year)

- Original Message -
From: "Peter Elsner" <[EMAIL PROTECTED]>
Subject: FreeBSD vs "The Others" Brochure


> I believe I have seen this before, but I'm not sure where.
>
> What I'm looking for is a advertising slick or brochure, that
> could be handed to a "clueless" sales prospect.  The first time
> you say the word FreeBSD, and all you get is that blank stare
> and a "huh?"...
>
> I believe it was in PDF format, but can't remember.
>
> If anyone knows where this is, please forward me a URL.
>
> Thank you,
>
>
> Peter

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


gnome2 running issues

2003-06-21 Thread Derrick Ryalls
Okay, I have gnome compiled and running and for the most part, things
seem to function okay.  However, on startup, there are several dialogs
telling me it cannot load certain applets (clock, tasklist, etc).  They
all reference the same missing file of:

/usr/X11R6/lib/libgen_util_applet-2.so

and what I have in that directory is libgen_util_applet-2.a.

Is it just a matter of finding that .so file and dropping it in (doubt
it), or did a dependancy fail and somehow everything finished without
error msgs?



Also, has anyone gotten /usr/ports/mail/evolution to work with current
/usr/ports/x11/gnome2?  Anytime I start it is fails out, the first
failure being it can't find libgnome.so.  I double checked, and
evolution 1.4 is supposed to be gnome2 complaint, so I am not sure why
it would be looking for gnome1 .so's.

System info:

FreeBSD homer 4.7-RELEASE FreeBSD 4.7-RELEASE #0
evolution-1.4.0_1
gnome2-2.2.1_1

-Derrick


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


Re: gnome2 running issues

2003-06-21 Thread Joe Marcus Clarke
On Sat, 2003-06-21 at 22:26, Derrick Ryalls wrote:
> Okay, I have gnome compiled and running and for the most part, things
> seem to function okay.  However, on startup, there are several dialogs
> telling me it cannot load certain applets (clock, tasklist, etc).  They
> all reference the same missing file of:
> 
> /usr/X11R6/lib/libgen_util_applet-2.so
> 
> and what I have in that directory is libgen_util_applet-2.a.
> 
> Is it just a matter of finding that .so file and dropping it in (doubt
> it), or did a dependancy fail and somehow everything finished without
> error msgs?
> 
> 
> 
> Also, has anyone gotten /usr/ports/mail/evolution to work with current
> /usr/ports/x11/gnome2?  Anytime I start it is fails out, the first
> failure being it can't find libgnome.so.  I double checked, and
> evolution 1.4 is supposed to be gnome2 complaint, so I am not sure why
> it would be looking for gnome1 .so's.

Looks like you have quite a few missing libraries. 
libgen_util_applet-2.so comes as part of x11/gnomepanel.  Evo is a GNOME
2 app, and should depend at all on libgnome.so, but rather
libgnome-2.so.  You might want to reinstal x11/libgnome, then reinstall
Evo.

Joe

> 
> System info:
> 
> FreeBSD homer 4.7-RELEASE FreeBSD 4.7-RELEASE #0
> evolution-1.4.0_1
> gnome2-2.2.1_1
> 
> -Derrick
> 
> 
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
-- 
PGP Key : http://www.marcuscom.com/pgp.asc


signature.asc
Description: This is a digitally signed message part


Re: Abit IT-7 motherboard

2003-06-21 Thread Vulpes Velox
http://www.freebsd.org/releases/4.8R/hardware-i386.html
http://www.freebsd.org/ports/index.html

There is info on what hardware is supported and a list of various programs that exist 
in the portstree.

>From my experience FreeBSD is far simpler to get up and running than windows is.
It is much quicker to install than windows is, too.

On Sat, 21 Jun 2003 18:10:15 -0400
Gilligan <[EMAIL PROTECTED]> wrote:

> I am a complete newbie when it comes to FreeBSD and I am interested in
> running it getting so I can't afford Windows pgms). I looked on the
> FreeBSD web site but I cannot find any info on if I can run it.
> (Windows requires the drivers (Highpoint 374) for the ide drives) Also
> if I will be able to use my HP DVD-R/W drive. (I just want to be able to
> use it as a CD-RW).
> Help!
> 
> Thanks
> Doug
> 
> 
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"

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


[no subject]

2003-06-21 Thread Paige King
forgot my login and password. what do I do to bypass the login.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


HID complient keyboard issue

2003-06-21 Thread The Supreme Fool.
hello.

I have an amd duron 750 with damaged onboard plugs for
keyboard and mouse. due to this, i am using a $40 device
for keyboard + mouse -> usb port. my bios is also set to 
emulate this as if it were the onboard keyboard. setup for
some reason comes up with an error when i press the 
down cursor on my keyboard.  it loses the 'face' of the setup
menu, and drops back to what seems like the underlying
command prompt system. with an error about a bad keystroke.

any idea's? or do i just disable keyboard emulation?

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


Re: Lost Passwd (was: )

2003-06-21 Thread Charlie Schluting
On Sat, 21 Jun 2003, Paige King wrote:
> forgot my login and password. what do I do to bypass the login.
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
>

Are you using an OpenBoot PROM?

My response is about as vague as your question was, huh?
Try asking the person who owns the "root" account to reset your password.

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


Re: your mail (was: no subj)

2003-06-21 Thread Kevin Kinsey, DaleCo, S.P.
Reboot and do NOT boot "automatically"
but press another key.

At a shell prompt, type 'boot-s' to
boot into single user mode.

Type 'passwd' and enter a new
password.

HTH,

Kevin Kinsey

DaleCo, S.P.

- Original Message -
From: "Paige King" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 21, 2003 10:22 PM


forgot my login and password. what do I do to bypass the login.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
"[EMAIL PROTECTED]"


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


Re: Abit IT-7 motherboard

2003-06-21 Thread Jud
On Sun, 22 Jun 2003 23:04:52 -0500, Vulpes Velox <[EMAIL PROTECTED]> 
wrote:

http://www.freebsd.org/releases/4.8R/hardware-i386.html
http://www.freebsd.org/ports/index.html
There is info on what hardware is supported and a list of various 
programs that exist in the portstree.

From my experience FreeBSD is far simpler to get up and running than 
windows is.
It is much quicker to install than windows is, too.

On Sat, 21 Jun 2003 18:10:15 -0400
Gilligan <[EMAIL PROTECTED]> wrote:
I am a complete newbie when it comes to FreeBSD and I am interested in
running it getting so I can't afford Windows pgms). I looked on the
FreeBSD web site but I cannot find any info on if I can run it.
(Windows requires the drivers (Highpoint 374) for the ide drives) Also
if I will be able to use my HP DVD-R/W drive. (I just want to be able to
use it as a CD-RW).
Help!
Thanks
Doug
Even if you don't see your hardware listed, why not make a partition 
("slice" in FreeBSD parlance) and try to install it?  If something doesn't 
work, well, you haven't lost any money.  At that point you might try Linux 
(Gentoo, while not necessarily the easiest distro to install, is probably 
the one most similar to some aspects of FreeBSD), because the larger Linux 
user base tends to result in quicker availability of drivers.

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


Re: rc.sendmail

2003-06-21 Thread John Von Essen
Okay, before people send more responses... Yes, I have looked at man 
rc.sendmail and I do understand how everything works. My question is 
WHY was it designed to behave they way it does?

Why isn't rc.sendmail setup such that you can start the listening 
daemon for inbound, queue runner for outbound, and the msp queue 
runner. (Currently, you cant start that config with rc.conf and 
rc.sendmail due to rc.sendmail's logic)

Obviously, you can't run the localhost submission daemon AND the port 
25 remote daemon listening for inbound. For that case, it is either one 
or the other - so that part of rc.sendmail makes sense. But if I select 
"YES" to enable both the mqueue runner and the clientmqueue runner in 
rc.conf, the rc.sendmail script will not perform this. The logic of 
rc.sendmail will only start mqueue if sendmail and sendmail submit are 
set to "NO". Likewise, if you select sendmail "YES", then the only 
other thing you can run is the clientmqueue runner.

In my case, I need to run the sendmail daemon, the mqueue runner, and 
the clientmqueue runner. In other words, I need the following at 
startup:

/usr/sbin/sendmail -L sm-mta -bd -q1h
/usr/sbin/sendmail -L sm-mqueue -qp5m
/usr/sbin/sendmail -L sm-clientmqueue -Ac -qp5m
rc.conf and rc.sendmail cannot startup what I want. As a result, I have 
to do sendmail_enable="NONE", and then from rc.local startup what I 
want manually.

Why can't rc.sendmail be designed such that whatever has "YES" in 
rc.conf will get started?

John

On Saturday, June 21, 2003, at 10:53 PM, Makoto Matsushita wrote:

john> Could someone please explain rc.sendmail to me?

Is rc.sendmail(8) not enough for you?

-- -
Makoto `MAR' Matsushita

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


Re: Small Database Software Recommendation

2003-06-21 Thread David Kelly
On Saturday 21 June 2003 08:45 pm, Ryan Thompson wrote:
>
> As far as defining less tangible goals, though, "I want to learn
> ${X}" is a valid goal.

And there is nothing quite as motivating as a task *you* want to do. 
Especially compared against "class assignment" or something the boss 
thinks should be done.

-- 
David Kelly N4HHE, [EMAIL PROTECTED]
=
The human mind ordinarily operates at only ten percent of its
capacity -- the rest is overhead for the operating system.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cvsup src-all fails on new, local cvsup repository (trying to cvsupRELENG_4_8)

2003-06-21 Thread Pat Young
We have ~50 freebsd servers here where I work.  Rather
than cvsup'ing all of 'em from geographically local
sites, I've built a box to house a cvs repository.

I built net/cvsup and net/cvsup-mirror, and installed
both.  It's done the initial cvsup of the entire
repository, and everything looks fine on that end.

Tonight, I wanted to test it, so decided to have the
box cvsup itself from it's repository.

It failed.  Here's the cvsup output:

mirrorbox# cvsup -g -L 2 ~/stable-supfile
Parsing supfile "/root/stable-supfile"
Connecting to localhost
Connected to localhost
Server software version: SNAP_16_1h
Negotiating file attribute support
Exchanging collection information
Server message: Unknown collection "src-all"
Establishing multiplexed-mode data connection
Running
Skipping collection src-all/cvs
Shutting down connection to server
Finished successfully

/var/log/cvsupd.log gives the same information, as
does syslog.  I've been working on this most of the
evening, finally decided to post a question to
-questions.

I'm using the supfile that net/cvsup-mirror provides,
and I'll paste it in at the bottom.

Please e-mail replies, I'm not a member of the
-questions list.

Many thanks in advance!
-Pat
--supfile follows--
#
# Standard supfile for CVSup FreeBSD mirrors.
#
*default delete use-rel-suffix umask=002
cvs-all  release=cvs
prefix=prefixes/FreeBSD.cvs
gnatsrelease=current
prefix=prefixes/FreeBSD-gnats.current
www  release=current
prefix=prefixes/FreeBSD-www.current
mail-archive release=current
prefix=prefixes/FreeBSD-mail.current
distrib  release=selfprefix=prefixes/distrib.self

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"