using Firefox & Thunderbird already, I can I delete Mozilla Suite.

2004-03-14 Thread Rommel B. IKEDA
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hello,

I am presently using Mozilla Firefox as my Internet Browser and Mozilla
Thunderbird as my Email Client...
I used to be using Mozilla Internet Client Suite and it is still
installed...
I was wondering, should I desire to pkg_delete Mozilla 1.6 will it not
affect my Firefox and Thunderbird?
If it does, can I reinstall Mozilla without the Mail, Composer, and
other arguments available?
Thank you for any advice, answers, or anything...
- --
Rommel B. IKEDA
|-==Powered by FreeBSD=-|
| Mozilla Thunderbird   |
| Signature & Encrytion - GnuPG |
| BlackBox Window Manager   |
|---|
FreeBSD
HP: http://www.freebsd.org/
~  FREEDOM & POWER because we don't settle for anything LESS.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (FreeBSD)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFAVWF7X3UlWWOhkAoRAndEAKCTjJj7WaZ+MPNy2kEDPHko4tpn2ACfZj1b
0lqyxwFTPDbgcN1lu/DUKB4=
=LIyj
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Two-way Sync of Directories - how? (rsync?)

2004-03-14 Thread Stephen Liu
- snip -
> > Is the option
> > -P  --partial  -- progress
> > means 'incremental'???
>
> "-P" is the same as specifying both "--partial" and "--progress".
> "--progress" means to show a progress meter.  Normally, if you
> interrupt rsync while it is transferring a file, rsync will delete the
> partially transferred file.  If you give the "--partial" option, it
> will not do that.
>
> The advantage of specifying "--partial" is that you can interrupt it
> in the midst of transferring a 1G file, and then you can resume the
> transfer later.
>
> > What will be difference between
> > './ $remote:$directory'  and  '$remote:$directory/'
>
> This question does not make sense.  You should ask for the difference
> between './ $remote:$directory' and '$remote:$directory/ .'; note the
> trailing period.
>
> If you say "rsync a b" then this means copy from a to b, if you say
> "rsync b a", then this means copy from b to a.  In the above case, "a"
> was "." and "b" was "$remote:$directory" ...
>
> Explaining the trailing slash is more difficult.  I just remember a
> rule of thumb: if you want to copy directories with rsync, always
> specify a trailing slash.  On both the source and the destination.  Of
> course, "man rsync" has the full story...

Hi Kai and folks,

Thanks for your advice.

B.R.
Stephen

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


Re: Well-supported gigabit cards under 4-stable?

2004-03-14 Thread Craig Reyenga
I have two Intel Pro1000MT's, and they work flawless. I can say with a
straight face that I have never had a problem with them. They have only been
used with one another over a crossover cable, so I can't speak for how well
they play with switches or other brands. I beleive NCI (ncix.com) has them
on sale for about the price you mentioned. I actually got one of them off of
ebay for $43 after shipping. I use an MTU setting of 9014, and it helps
performance sustantially. This testimonial actually applies to both -stable
and -current.

Hope this helps.

-Craig


- Original Message -
From: "Tillman Hodgson" <[EMAIL PROTECTED]>
To: "FreeBSD-Questions" <[EMAIL PROTECTED]>
Sent: Monday, March 15, 2004 1:46 AM
Subject: Well-supported gigabit cards under 4-stable?


> Howdy,
>
> I found a few threads on this topic in google, but they were from a
> while ago (-stable and hardware are both moving targets, after all).
>
> I'm interesting in seeing what low-cost gigabit cards are supported
> under -stable and which cards might be recommended. I'm looking
> specifically at the Linksys EG1032, D-Link DGE-530T, Intel Pro1000MT,
> and the Micronet SP2612R. All are relatively cheap (Can$64 and lower),
> are easily obtained in Canada via the popular online merchants, and
> would be within reach a typical (though geeky) home network.
>
> Most of my computers will remain 100Mbit, but I'd like to move my main
> file server to 1000Mbit. All the other machines do full dumps to it
> every night (which eventually end up on tape), so it spends a fairly
> large portion of every day with it's interface completely saturated
> (and it's worse on weekly dump days).
>
> I'm primarily concerned with driver stability. For example, I noticed
> some messages in the archives about the nge driver causing problems ...
> that was some time ago, but I'd like to avoid that on a server which
> handles my backups ;-) I'm also interested in nice vlan and jumbo frame
> support, though I can get by without them.
>
> So what's recommended by folks running gigabit gear these days?
>
> -T
>
>
> --
> Page xxviii: Live with Unix long enough and you will change. You will
> become more creative, and you will come to understand the spirit of
> creation in others.
> - Harley Hahn, _The Unix Companion_
> ___
> [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: Two-way Sync of Directories - how? (rsync?)

2004-03-14 Thread Bill Campbell
On Mon, Mar 15, 2004, Kai Grossjohann wrote:
...
>Explaining the trailing slash is more difficult.  I just remember a
>rule of thumb: if you want to copy directories with rsync, always
>specify a trailing slash.  On both the source and the destination.  Of
>course, "man rsync" has the full story...

I find this is a bit tricky, and non-intuitive.  If I do:

rsync -var ./ system:dest/

Everything in the current directory is copied to the remote directory as it
appears in the current directory.

rsync -var subdir system:dest/

copies subdir to system:dest/subdir

rsunc -var subdir/ system:dest/

copies subdir/* to systems:dest

I often have use the ``-n'' option first to make sure it's going to do what
I want before doing the real transfer.

Incidently if one leaves off the trailing ``.'' for the destination when
copying from a remote system to the current directory, rsync will show what
it will copy if you have it set for verbose output, but won't do the copy.

rsync -vaP remote:/path/\*.sh

This will show which files it would copy

rsync -vaP remote:/path/\*.sh .

This will do the copy.

Bill
--
INTERNET:  [EMAIL PROTECTED]   Bill Campbell; Celestial Software LLC
UUCP:  camco!bill   PO Box 820; 6641 E. Mercer Way
FAX:   (206) 232-9186   Mercer Island, WA 98040-0820; (206) 236-1676

"Avoid revolution or expect to get shot.  Mother and I will grieve, but
we will gladly buy a dinner for the National Guardsman who shot you."
-- Dr. Paul Williamson, father of a Kent State student
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Well-supported gigabit cards under 4-stable?

2004-03-14 Thread Tillman Hodgson
Howdy,

I found a few threads on this topic in google, but they were from a
while ago (-stable and hardware are both moving targets, after all).

I'm interesting in seeing what low-cost gigabit cards are supported
under -stable and which cards might be recommended. I'm looking
specifically at the Linksys EG1032, D-Link DGE-530T, Intel Pro1000MT,
and the Micronet SP2612R. All are relatively cheap (Can$64 and lower),
are easily obtained in Canada via the popular online merchants, and
would be within reach a typical (though geeky) home network.

Most of my computers will remain 100Mbit, but I'd like to move my main
file server to 1000Mbit. All the other machines do full dumps to it
every night (which eventually end up on tape), so it spends a fairly
large portion of every day with it's interface completely saturated
(and it's worse on weekly dump days).

I'm primarily concerned with driver stability. For example, I noticed
some messages in the archives about the nge driver causing problems ...
that was some time ago, but I'd like to avoid that on a server which
handles my backups ;-) I'm also interested in nice vlan and jumbo frame
support, though I can get by without them.

So what's recommended by folks running gigabit gear these days?

-T


-- 
Page xxviii: Live with Unix long enough and you will change. You will
become more creative, and you will come to understand the spirit of
creation in others.
- Harley Hahn, _The Unix Companion_
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Two-way Sync of Directories - how? (rsync?)

2004-03-14 Thread Kai Grossjohann
Stephen Liu <[EMAIL PROTECTED]> writes:

> On Monday 15 March 2004 04:10, Bill Campbell wrote:
>
>> I would do this with two rsync runs from one machine
>>
>> cd $directory
>> rsync -e ssh -vaurP ./ $remote:$directory
>> rsync -e ssh -vaurP $remote:$directory/ .
>
> Hi Bill,
>
> Is the option
> -P  --partial  -- progress
> means 'incremental'???

"-P" is the same as specifying both "--partial" and "--progress".
"--progress" means to show a progress meter.  Normally, if you
interrupt rsync while it is transferring a file, rsync will delete the
partially transferred file.  If you give the "--partial" option, it
will not do that.

The advantage of specifying "--partial" is that you can interrupt it
in the midst of transferring a 1G file, and then you can resume the
transfer later.

> What will be difference between
> './ $remote:$directory'  and  '$remote:$directory/'

This question does not make sense.  You should ask for the difference
between './ $remote:$directory' and '$remote:$directory/ .'; note the
trailing period.

If you say "rsync a b" then this means copy from a to b, if you say
"rsync b a", then this means copy from b to a.  In the above case, "a"
was "." and "b" was "$remote:$directory" ...

Explaining the trailing slash is more difficult.  I just remember a
rule of thumb: if you want to copy directories with rsync, always
specify a trailing slash.  On both the source and the destination.  Of
course, "man rsync" has the full story...

Kai



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


weird USB mass storage problems

2004-03-14 Thread Alexei Khalimov
Hello, all!


Got external USB2 disk 80Gb drive, which is detected as:

uhci0:  port 0x10a0-0x10bf irq 9
at device 7.2 on pci0 usb0:  on
uhci0 usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2
ports with 2 removable, self powered

umass0: vendor 0x0840 USB 2.0 Storage Device, rev 2.00/0.01, addr 2
GEOM: create disk da0 dp=0xc26de450
da0 at umass-sim0 bus 0 target 0 lun 0
da0:  Fixed Direct Access SCSI-0 device 
da0: 1.000MB/s transfers
da0: 78533MB (160836480 512 byte sectors: 255H 63S/T 10011C)

(USB port on this laptop is USB 1.1)

The drive is formatted as FAT32 filesystem.
First of all it takes about 15 secounds to mount it. Is it normal?

And every 1 of 3 attempts, after mounting it and doing cd /mnt/usb
(mount point for it)

system panics with following output:

 panic: uhci_abort_xfer: not in process context
 
 syncing disks, buffers remaining... 1794 1794 1794 1794 1794 
 1794 1794 1794 1794 1794 1794 1794 1794 1794 1794 1794 (null): BBB reset
 failed, STALLED
 (null): BBB bulk-in clear stall failed, STALLED 
 uhub0: device problem, disabling port 1
 
 
 Fatal trap 12: page fault while in kernel mode fault virtual address =
 0x1c
 fault code= supervisor read, page not present instruction
 pointer   = 0x8:0xc04d7072 stack pointer = 0x10:0xcb628c90 frame
 pointer = 0x10:0xcb628c9c code segment  = base 0x0, limit
 0xf, type 0x1b
   = DPL 0, pres 1, def32 1, gran 1
 processor eflags  = interrupt enabled, resume, IOPL = 0 current
 process   = 20 (irq9: fxp0 ltmdm0++) trap number   =
 12
 panic: page fault
 Uptime: 19m15s
 
[SNIP]
(Repeated several times with different stack pointer)
 
 Fatal double fault:
 eip = 0xc0680713
 esp = 0xcb627000
 ebp = 0xcb627014
 panic: double fault
 Uptime: 19m16s
 kernel trap 12 with interrupts disabled
 
 
 Fatal trap 12: page fault while in kernel mode fault virtual address =
 0x29c
 fault code= supervisor read, page not present instruction
 pointer   = 0x8:0x29c
 stack pointer = 0x10:0xc0733878 frame pointer =
 0x10:0xc0733890 code segment  = base 0x0, limit 0xf, type
 0x1b
   = DPL 0, pres 1, def32 1, gran 1
 processor eflags  = nested task, resume, IOPL = 0 current process
   = 20 (irq9: fxp0 ltmdm0++) trap number   = 12
 panic: page fault
 Uptime: 19m16s
 kernel trap 12 with interrupts disabled

[SNIP]
(repeats several more times)


System is FreeBSD 5.2.1-release


Cheers,
  ALex.
sunbug(AT)ns.divo.ru


-- 
My PGP public key is avaible at:
http://www.divo.ru/~lesha/4A2620A5.key

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


Re: Two-way Sync of Directories - how? (rsync?)

2004-03-14 Thread Steven N. Fettig
-P appears to allow you to show progress graphically with the -v switch 
also chosen.

I think his example:

cd $directory
rsync -e ssh -vaurP ./ $remote:$directory
rsync -e ssh -vaurP $remote:$directory/ .
was meant to look like:

cd $directory
rsync -e ssh -vaurP ./ $remote:$directory
rsync -e ssh -vaurP $remote:$directory ./ <-- (dot)(slash) not (slash)(space)(dot)
a trailing slash copies directory contents whereas not having the slash copies that directory, too.  (I.E. if I am rsyncing /home/me on two machines, /home/me will copy everything including the me directory, whereas /home/me/ will only copy the contents of me.  This becomes important - as I have learned the hard way - when syncronizing two dissimilar directories - i.e. /home/me to /backup/me/date.)  

hth,
Steve Fettig
p.s.  I hope I got Bill's message correctly...



Stephen Liu wrote:

On Monday 15 March 2004 04:10, Bill Campbell wrote:

 

I would do this with two rsync runs from one machine

cd $directory
rsync -e ssh -vaurP ./ $remote:$directory
rsync -e ssh -vaurP $remote:$directory/ .
   

Hi Bill,

Is the option
-P  --partial  -- progress
means 'incremental'???
What will be difference between
'./ $remote:$directory'  and  '$remote:$directory/'
TIA

B.R.
Stephen Liu


 

Better yet, set up the directories in the rsyncd.conf files on
each machine:
cd $directory
rsync -vaurP ./ ${remote}::dir_module/
rsync -vaurP ${remote}::dir_module/ .
Bill
   

___
[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: pkg_update missing?

2004-03-14 Thread Kris Kennaway
On Sun, Mar 14, 2004 at 11:00:53PM -0600, Jason Zimberoff wrote:
> Hello all.
> 
> I am very new to FreeBSD - so apologies for being a newbie and all...
> 
> Here is my uname output:
> 
> FreeBSD freeBSD.comcast.com 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Thu Jan 16 22:16:53 
> GMT 2003 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386
> 
> I have tons of questions, but I will start with 2:
> 
> 1. the book I bought "FreeBSD unleashed" by Urban and Tiemann says that I
> should be able to use the command "pkg_update" to install newer versions
> of things that are already installed.  On my machine right now, it just
> returns "command not found" when  try to run pkg_update.
> 
> pkg_add is working fine.

pkg_update was removed a while ago..it was incomplete and no-one was
working on it.  Most people use the portupgrade port to update their
ports thesedays.

> 2. Is this the best place to ask questions like this?

Yes.

Kris


pgp0.pgp
Description: PGP signature


Deskjet 3320

2004-03-14 Thread Owen Becker
Greetings All,
Anyone managed to get an HP Deskjet 3320 working under FreeBSD 5.2.1?
It's nicely plugged in, previously recognised and printed upon by windows 2000.
It's also sadly not working.
Dmesg reports:
ulpt0: hp deskjet 3320, rev 2.00/1.00, addr 2, iclass 7/1
ulpt0: using bi-directional mode
ulpt0: at uhub0 port 1 (addr 2) disconnected
ulpt0: detached
ulpt0: hp deskjet 3320, rev 2.00/1.00, addr 2, iclass 7/1
ulpt0: using bi-directional mode
ulpt0: output error

Also, 
cat /home/foo/foo.txt > /dev/u[n]lpt0 

returns zilch. Anyone figured out how to get this cheap piece of crap^W 
hardware printing or is it on of these damn windows only printer I keep 
reading about?
TIA,
Owen
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


pkg_update missing?

2004-03-14 Thread Jason Zimberoff
Hello all.

I am very new to FreeBSD - so apologies for being a newbie and all...

Here is my uname output:

FreeBSD freeBSD.comcast.com 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Thu Jan 16 22:16:53 
GMT 2003 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

I have tons of questions, but I will start with 2:

1. the book I bought "FreeBSD unleashed" by Urban and Tiemann says that I
should be able to use the command "pkg_update" to install newer versions
of things that are already installed.  On my machine right now, it just
returns "command not found" when  try to run pkg_update.

pkg_add is working fine.

2. Is this the best place to ask questions like this?  If there is a good forum
or something else that I should go to - please let me know.

Thanks in advance!

-Jason Z.



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


[OT?] write C program with UTF16LE

2004-03-14 Thread Zhang Weiwu
Hello. Although I write some php/perl script, I don't write C program. Now 
I have a very large text file in UTF16LE format, the rule is strings are 
seperated by numbers. Say

0300 6100 6200 6300 0400 6700 5400 9800 7400 0300 

Leading 0300 means the following 3 characters (6 bytes) is a string, and 
the next 0400 means the following 4 characters makes another string.

I need to read the file and replace every number-style string seperator 
with a linefeed. I decide to use C, it is a good chance to start some 
practice on C. The old getc() I learnt from school is not my cup of tea, 
because I always need to do two getcs at once, and for the seperators I 
need to do getc()+getc()*256. What is the best practics to deal with such 
number/UTF16 mixed text? 

I googled around and find some tutorials, most i18n toturials think I'm 
already a C expert:( I find the glibc manual looks good learning resource, 
but I am the kind of newbie don't know if I am using glibc at all. When I 
just write 
#include 
Am i using the stdio.h from glibc?

I think simply point me a tutorial that fits me will do me more help.

Thank you.

_
与联机的朋友进行交流,请使用 MSN Messenger:  http://messenger.msn.com/cn  

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


howto serve vnc ipv4

2004-03-14 Thread mario
on freebsd 4.9 kde 3.2 or less for that matter i only get desktop
sharing (vnc:5[98]00) on ipv6 does anyone now how to get this to
work on ipv4

thanx

mario;>

- - - - - - - -   House Of Sites   - - - - - - - -
Web Design :: Programming :: Hosting :: Maintenance

Web site: http://www.HouseOfSites.net
Email: [EMAIL PROTECTED]
Tel: 415-242-3376


Do you schmut!?
http://www.schmut.com
http://blog.schmut.com



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


Installing 5.1.2 on Samsung X30 laptop

2004-03-14 Thread Ali
Hello,

I've tried installing 5.1.2 on my samsung X30 Laptop without success :

It timeout when trying to mount md0.
I've tried disabling many options in bios but nothing changed!

Could you help me with that?

Cordially,

Ali Mdidech.

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


Re: Two-way Sync of Directories - how? (rsync?)

2004-03-14 Thread Stephen Liu
On Monday 15 March 2004 04:10, Bill Campbell wrote:

> I would do this with two rsync runs from one machine
>
> cd $directory
> rsync -e ssh -vaurP ./ $remote:$directory
> rsync -e ssh -vaurP $remote:$directory/ .

Hi Bill,

Is the option
-P  --partial  -- progress
means 'incremental'???

What will be difference between
'./ $remote:$directory'  and  '$remote:$directory/'

TIA

B.R.
Stephen Liu




>
> Better yet, set up the directories in the rsyncd.conf files on
> each machine:
>
> cd $directory
> rsync -vaurP ./ ${remote}::dir_module/
> rsync -vaurP ${remote}::dir_module/ .
>
> Bill

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


Re: vinum messages

2004-03-14 Thread Ben
sorry i didn't use the proper format, and sorry for being a dumb user.
i eventually figured it out, i hadn't read the Gotcha's section of
your man page.

for those who are interested: i took the volume offline, reset the
configuration (somehow one of my subdisks had gotten into a state
where it was pointing to an invalid drive), redid the configuration,
and did the all important

vinum start

on the secondary volume.  it revived, and now i have a RAID-1 mirror.

thanks for the help,
Ben


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


Re: Mounting a 4.5R FS during 5.2.1 installation

2004-03-14 Thread Alex de Kruijff
On Sat, Mar 13, 2004 at 10:56:34AM -0500, Charles Bacon wrote:
> Situation: An old remotherboarded PC, Tomato, has an old 4.5R
> on a 20GB disk.  I also have an unused 2940 SCSI controller and
> a 2GB SCSI disk.  On my LAN there's another old remoboed box,
> Daisy, with a functioning CD.
> 
> I tried NFS-mounting it during the 5.2.1R installation ceremony.
> NG (Operation not permitted).
> 
> Tried copying the CD onto Tomato's 4.5 system, then mounting
> /cdrom1 as /xmnt.  Again, Operation not Permitted.
> 
> Finally, moved the good CD drive from Daisy to Tomato.  Bingo.
> Installation went fine until inodes exhausted.  But kernel was
> never installed!  It gets done after everything else!
> 
> Problem: no info why "Operation not permitted".  Finally found
> that fsck was needed on the 40GB (although nothing was wrong).
> 
> BIG PROBLEM:  Is there a safe way to mount a 4.5 FS onto 5.2.1?
> It seemed to work OK, but later, booting the 4.5 system, fsck
> complained bigtime.  Trashed boot block, so used the one at 32.
> 
> For a while I'd like to be able to dual-boot 4.5 and 5.2.1, before
> committing my 40GB disk to 5.x.  Suggestions?
> 
> AND THANKS FOR RESPONSES I'VE GOTTEN IN THE PAST!

Dear Chuck,

I would go for the NFS mounting. Is it posible that you didn't setup the
NFS server correctly? The handbook has a good section on this topic!

-- 
Alex

Articles based on solutions that I use:
http://www.kruijff.org/alex/index.php?dir=docs/FreeBSD/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [OT] sed question

2004-03-14 Thread Warren Block
On Sun, 14 Mar 2004, Rob Ellis wrote:

> This works with sed in /bin/sh and ksh:
>
> sed -e 's/  */\
> /g' my_test_text_document.txt
>
> I.e., escape an actual newline.

I used to do that, or include an actual newline in a script, but it just
seems wrong from maintainability and readability standpoints.

It seems slightly better to get a newline in a shell variable and then
use that.

-Warren Block * Rapid City, South Dakota USA
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: vinum messages

2004-03-14 Thread Greg Lehey
[Format recovered--see http://www.lemis.com/email/email-format.html]

Messages wrapped.

On Sunday, 14 March 2004 at 14:07:37 -0500, Ben wrote:
> i just set up my first software RAID-1 setup.  everything seems to run
> great, but i'm getting a messages at reboot on the console:
>
> Mar  4 18:02:21 archer1 /kernel: Mar  4 18:02:21 archer1 reboot: rebooted by toor
> Mar  4 18:03:10 archer1 /kernel: vinum: /dev is mounted read-only, not rebuilding 
> /dev/vinum
> Mar  4 18:03:10 archer1 /kernel: Warning: defective objects
> Mar  4 18:03:10 archer1 /kernel:
> Mar  4 18:03:10 archer1 /kernel: P local.p1C State: faulty  Subdisks :   
>   1 Size: 26 GB
> Mar  4 18:03:10 archer1 /kernel: S local.p1.s0   State: empty   PO:0  B 
> Size: 26 GB
>
> afterwhich i get
>
> Mar  4 18:03:10 archer1 /kernel: /dev/vinum/local:
> Mar  4 18:03:10 archer1 /kernel: FILESYSTEM CLEAN; SKIPPING CHECKS
> Mar  4 18:03:10 archer1 /kernel: /dev/vinum/local:
> Mar  4 18:03:10 archer1 /kernel: clean, 26864509 free
> Mar  4 18:03:10 archer1 /kernel: (45 frags, 3358058 blocks, 0.0% fragmentation)
>
> so i can't tell if i'm being paranoid but is everything OK?  here's my
> vinum.conf:

This doesn't help.  See
http://www.vinumvm.org/vinum/how-to-debug.html.

The messages above are (for once) quite clear.  You have a plex down
on your drive local.  'vinum list' will show that.  You need to fix
it.  That's done with the 'vinum start' command, after you fix the
problem, which may be a simple matter, or it may indicate a defective
disk.

> drive mainlocal device /dev/ad0s1g
> drive backuplocal device /dev/ad2s2e
> volume local
>  plex org concat
>   sd length 55487111s drive mainlocal
>  plex org concat
>   sd length 55487111s drive backuplocal
>
> it's important that this RAID-1 setup be fault-tolerant, after all
> that's why i want software RAID!

It currently isn't.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ssh

2004-03-14 Thread Robert Storey
Can machine B ping the other machine? Even if it can, you might still be
blocking ssh (port 22) with your firewall (if you've installed a
firewall on B). If you do have a firewall, shut it down temporarily and
then see if ssh works.

regards,
Robert


On Sun, 14 Mar 2004 10:37:01 -0600 (CST)
Eduardo Viruena Silva <[EMAIL PROTECTED]> wrote:

> 
> Hello FreeBSD gurus!
> 
> I have a question for you.
> 
> I have two computers, both of them running FreeBSD 2.5.1-RELEASE.
> Let us call them A and B.
> 
> Computer A receives ssh connections from computers running
> Linux, Solaris and even Windows; it also receives connections
> from FreeBSD 4.x and 5.1  but it does not receive
> ssh connections from B.
> 
> A ask for password and then it takes a long time to say
> "Operation timmed out"
> "Connection to A closed".
> 
> Enabling "sshd" in rc.d or using it from inetd makes no difference.
> 
> Strange, isn't it?
> 
> Hope you can help me.
> Thanks in advance:
> 
> PD.  Here you will find what "ssh -v A" dislays:
> 
> 
> B:/home/mrspock> ssh -v A
> OpenSSH_3.6.1p1 FreeBSD-20030924, SSH protocols 1.5/2.0, OpenSSL
> 0x0090703f
> debug1: Reading configuration data /etc/ssh/ssh_config
> debug1: Rhosts Authentication disabled, originating port will not be
> trusted.
> debug1: Connecting to A.esfm.ipn.mx [148.204.102.61] port 22.
> debug1: Connection established.
> debug1: identity file /home/mrspock/.ssh/identity type -1
> debug1: identity file /home/mrspock/.ssh/id_rsa type -1
> debug1: identity file /home/mrspock/.ssh/id_dsa type -1
> debug1: Remote protocol version 1.99, remote software version
> OpenSSH_3.6.1p1 FreeBSD-20030924
> debug1: match: OpenSSH_3.6.1p1 FreeBSD-20030924 pat OpenSSH*
> debug1: Enabling compatibility mode for protocol 2.0
> debug1: Local version string SSH-2.0-OpenSSH_3.6.1p1 FreeBSD-20030924
> debug1: SSH2_MSG_KEXINIT sent
> debug1: SSH2_MSG_KEXINIT received
> debug1: kex: server->client aes128-cbc hmac-md5 none
> debug1: kex: client->server aes128-cbc hmac-md5 none
> debug1: SSH2_MSG_KEX_DH_GEX_REQUEST sent
> debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
> debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
> debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
> debug1: Host 'A.esfm.ipn.mx' is known and matches the DSA host key.
> debug1: Found key in /home/mrspock/.ssh/known_hosts:3
> debug1: ssh_dss_verify: signature correct
> debug1: SSH2_MSG_NEWKEYS sent
> debug1: expecting SSH2_MSG_NEWKEYS
> debug1: SSH2_MSG_NEWKEYS received
> debug1: SSH2_MSG_SERVICE_REQUEST sent
> debug1: SSH2_MSG_SERVICE_ACCEPT received
> debug1: Authentications that can continue:
> publickey,password,keyboard-interactive
> debug1: Next authentication method: publickey
> debug1: Trying private key: /home/mrspock/.ssh/identity
> debug1: Trying private key: /home/mrspock/.ssh/id_rsa
> debug1: Trying private key: /home/mrspock/.ssh/id_dsa
> debug1: Next authentication method: keyboard-interactive
> Password:
> debug1: Authentication succeeded (keyboard-interactive).
> debug1: channel 0: new [client-session]
> debug1: Entering interactive session.
> debug1: channel 0: request pty-req
> debug1: channel 0: request shell
> debug1: channel 0: open confirm rwindow 0 rmax 32768
> debug1: channel_free: channel 0: client-session, nchannels 1
> Read from remote host A.esfm.ipn.mx: Operation timed out
> Connection to A.esfm.ipn.mx closed.
> debug1: Transferred: stdin 0, stdout 0, stderr 101 bytes in 326.2
> seconds debug1: Bytes per second: stdin 0.0, stdout 0.0, stderr 0.3
> debug1: Exit status -1
> ___
> [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: [OT] sed question

2004-03-14 Thread Bill Campbell
On Sun, Mar 14, 2004, Warren Block wrote:
>On Sun, 14 Mar 2004, Steven N. Fettig wrote:
>
>> I can't figure out what the newline character is... I've tried \n \r &\,
>> etc. with no avail.  I run the following:
>>
>> sed 's/[ ]/\n/g' my_test_text_document.txt
>
>>From the sed man page:
>
>"2.   The escape sequence \n matches a newline character embedded in
>  the pattern space.  You can't, however, use a literal newline
>  character in an address or in the substitute command."
>
>I think this is a BSD thing, and sed on other systems does handle \n and
>other literals in substitutions.  It's annoying enough that I just use
>Perl instead.

I thought it was the other way around, that the gnu version of
sed accepts the standard ``C'' escape sequences, but the FreeBSD
version doesn't.  I always use the gnu tools configured with the
program-prefix='g' option, and referenced as ``gsed'' rather than
depending the the native ``sed'' doing what I expect.

Bill
--
INTERNET:   [EMAIL PROTECTED]  Bill Campbell; Celestial Software LLC
UUCP:   camco!bill  PO Box 820; 6641 E. Mercer Way
FAX:(206) 232-9186  Mercer Island, WA 98040-0820; (206) 236-1676
URL: http://www.celestial.com/

``Never chastise a Windows user...just smile at them kindly as you would a
disadvantaged child.'' WBM
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [OT] sed question

2004-03-14 Thread Rob Ellis
On Sun, Mar 14, 2004 at 04:50:40PM -0700, Warren Block wrote:
> On Sun, 14 Mar 2004, Steven N. Fettig wrote:
> 
> > I can't figure out what the newline character is... I've tried \n \r &\,
> > etc. with no avail.  I run the following:
> >
> > sed 's/[ ]/\n/g' my_test_text_document.txt
> 
> >From the sed man page:
> 
> "2.   The escape sequence \n matches a newline character embedded in
>   the pattern space.  You can't, however, use a literal newline
>   character in an address or in the substitute command."
> 
> I think this is a BSD thing, and sed on other systems does handle \n and
> other literals in substitutions.  It's annoying enough that I just use
> Perl instead.
> 

This works with sed in /bin/sh and ksh:

sed -e 's/  */\
/g' my_test_text_document.txt

I.e., escape an actual newline. Two spaces before the '*'.

It doesn't work in csh. Don't know why...

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


log rotation

2004-03-14 Thread Bart Silverstrim
Quick questions:
I've run across some mumblings in the ClamAV lists about Clamd not
logging anymore (or not scanning anymore?) when the maximum
logfile size is reached.  Is anyone in FreeBSD running this, and if so,
are you using Newsyslog to rotate the logs?  What are your settings
(how would I set it up)?
Elaborations:
I didn't know what would be a safe way to do this, since I also have
an every-four-hour update running for the clamav and I didn't know
 what would happen if
A) the update for the database falls at a moment when the log is
 rotating
B) I didn't find the "proper" way to rotate the log so Clamd doesn't
have an open file handle on a log being rotated and/or have clamd
try writing to the file while it's being rotated
C) how can clamd have the file rotated without being "temporarily
disabled" running into problems because that disabled clamd may
be called on in that period by amavisd-new to do a virus scan on
a mail message...
Anyone got a good log rotation scheme in place to handle this
automatically without running into problems?
Thanks!
-Bart
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [OT] sed question

2004-03-14 Thread Warren Block
On Sun, 14 Mar 2004, Steven N. Fettig wrote:

> I can't figure out what the newline character is... I've tried \n \r &\,
> etc. with no avail.  I run the following:
>
> sed 's/[ ]/\n/g' my_test_text_document.txt

>From the sed man page:

"2.   The escape sequence \n matches a newline character embedded in
  the pattern space.  You can't, however, use a literal newline
  character in an address or in the substitute command."

I think this is a BSD thing, and sed on other systems does handle \n and
other literals in substitutions.  It's annoying enough that I just use
Perl instead.

perl -pe 's/ /\n/g' my_test_text_document.txt

which actually would be better as

perl -pe 's/\s./\n/g' my_test_text_document.txt

-Warren Block * Rapid City, South Dakota USA
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [OT] sed question

2004-03-14 Thread Matthew Seaman
On Sun, Mar 14, 2004 at 04:30:40PM -0600, Steven N. Fettig wrote:
> Sorry for posting an off-topic question to the list, but this is 
> somethin that has been driving me nuts for weeks now and I can't figure 
> it out.  I want to pass a text file through sed that replaces all 
> whitespaces with a carriage return.  I.e., if I have the file 
> my_test_text_document.txt that is a few paragraphs of writing, I want to 
> take the following input:
> 
> I have just written five paragraphs of absolute jibberish and wish that 
> I could get sed to work the way that I want.  Oh how this question has 
> plagued me!
> 
> And have sed output:
> I
> have
> just
> written
> five
> paragraphs
> of
> absolute
> jibberish
> and
> ... you get the point.
> 
> I can't figure out what the newline character is... I've tried \n \r &\, 
> etc. with no avail.  I run the following:
> 
> sed 's/[ ]/\n/g' my_test_text_document.txt
> 
> and the output never has a newline added regardless of what I have 
> substituted \n with.  I have also used " instead of ' and that hasn't 
> helped...
> Sorry for the question, but I'd really appreciate the help!

sed(1) can do it, but it's cleaner and simpler to use tr(1):

% cat foo
I have just written five paragraphs of absolute jibberish and wish that 
I could get sed to work the way that I want.  Oh how this question has 
plagued me!
% tr -s ' ' '\n' < foo
I
have
just
written
five
paragraphs
of
absolute
jibberish
and
wish
that
I
could
get
sed
to
work
the
way
that
I
want.
Oh
how
this
question
has
plagued
me!

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: Warning in fstream header file

2004-03-14 Thread Gregory Harris
Ah, I found that upgrading from freebsd 5.1 to 5.2.1 fixes this issue. 
Thanks

Greg


On Sun, 2004-03-14 at 07:53, Lowell Gilbert wrote:
> Gregory Harris <[EMAIL PROTECTED]> writes:
> 
> > Hello.  I'm not sure if this is the appropriate spot to ask, but I don't
> > seen any alternative places since it is a freebsd-specific programming
> > problem.  When I compile the following simple program:
> > 
> > #include 
> >  
> > int main()
> > {
> > }
> > 
> > I get this output:
> > 
> > -bash-2.05b$ g++ -Wall -o fstream-warnings fstream-warnings.cpp
> > In file included from fstream-warnings.cpp:1:
> > /usr/include/g++/fstream:304: warning: `typename
> > std::basic_filebuf<_CharT,
> >_Traits>::int_type' is implicitly a typename
> > /usr/include/g++/fstream:304: warning: implicit typename is deprecated,
> > please
> >see the documentation for details
> > /usr/include/g++/fstream:309: warning: `typename
> > std::basic_filebuf<_CharT,
> >_Traits>::int_type' is implicitly a typename
> > /usr/include/g++/fstream:309: warning: implicit typename is deprecated,
> > please
> >see the documentation for details
> > 
> > How can I get rid of these warnings in the header file?  Is fstream
> > itself deprecated or is it just an error in the header file?  Thanks.
> 
> There is no error involved here, just warnings.
> 
> You could update your compiler, and the warnings should go away.
> [I think -- you didn't mention anything about your system, so it's
> impossible to be sure.]

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


Re: Two-way Sync of Directories - how? (rsync?)

2004-03-14 Thread Steven N. Fettig
Bill Campbell wrote:



I would do this with two rsync runs from one machine

cd $directory
rsync -e ssh -vaurP ./ $remote:$directory
rsync -e ssh -vaurP $remote:$directory/ .
Better yet, set up the directories in the rsyncd.conf files on
each machine:
cd $directory
rsync -vaurP ./ ${remote}::dir_module/
rsync -vaurP ${remote}::dir_module/ .
Bill
--
INTERNET:   [EMAIL PROTECTED]  Bill Campbell; Celestial Software LLC
UUCP:   camco!bill  PO Box 820; 6641 E. Mercer Way
FAX:(206) 232-9186  Mercer Island, WA 98040-0820; (206) 236-1676
URL: http://www.celestial.com/
More laws, less justice.  -- Marcus Tulius Ciceroca (42 BD)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
 

I don't know why I didn't think of reversing the src and dest input on 
the command...  Thanks!

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


[OT] sed question

2004-03-14 Thread Steven N. Fettig
Sorry for posting an off-topic question to the list, but this is 
somethin that has been driving me nuts for weeks now and I can't figure 
it out.  I want to pass a text file through sed that replaces all 
whitespaces with a carriage return.  I.e., if I have the file 
my_test_text_document.txt that is a few paragraphs of writing, I want to 
take the following input:

I have just written five paragraphs of absolute jibberish and wish that 
I could get sed to work the way that I want.  Oh how this question has 
plagued me!

And have sed output:
I
have
just
written
five
paragraphs
of
absolute
jibberish
and
... you get the point.
I can't figure out what the newline character is... I've tried \n \r &\, 
etc. with no avail.  I run the following:

sed 's/[ ]/\n/g' my_test_text_document.txt

and the output never has a newline added regardless of what I have 
substituted \n with.  I have also used " instead of ' and that hasn't 
helped...
Sorry for the question, but I'd really appreciate the help!

Steve Fettig

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


RE: PPP Question - should be easy...

2004-03-14 Thread JJB
Killall ppp  followed by ppp -ddial xxx

Where xxx is the section header name in the ppp.conf you want to
exec.

User ppp always reads the default: section name, just add other
section names containing your different values.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chris Knipe
Sent: Sunday, March 14, 2004 4:52 PM
To: FreeBSD Questions
Subject: PPP Question - should be easy...

Hi all,

I was just wondering, I run ppp from rc.conf with -ddial, and it is
working brilliantly. However,
I need to change ppp configurations quite frequently, is there a
quick way to tell ppp to reload
the configuration without killing it?

I am specifically looking to change values in the label that is run
from rc.conf with -ddial...
I'm hoping in some way that I can send ppp a -HUP and it will use
the new values when the ppp
process reconnects automatically in -ddial mode.

Thanks for your time, and I look forward to some possible answers.

Regards,
Chris.

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


PPP Question - should be easy...

2004-03-14 Thread Chris Knipe
Hi all,

I was just wondering, I run ppp from rc.conf with -ddial, and it is working 
brilliantly. However,
I need to change ppp configurations quite frequently, is there a quick way to tell ppp 
to reload
the configuration without killing it?

I am specifically looking to change values in the label that is run from rc.conf with 
-ddial... 
I'm hoping in some way that I can send ppp a -HUP and it will use the new values when 
the ppp
process reconnects automatically in -ddial mode.

Thanks for your time, and I look forward to some possible answers.

Regards,
Chris.

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


Re: user setup question

2004-03-14 Thread Loren M. Lang
On Sun, Mar 14, 2004 at 10:58:05AM -0500, Louis LeBlanc wrote:
> On 03/13/04 04:29 PM, Lars Eighner sat at the `puter and typed:
> > On Sat, 13 Mar 2004, Louis LeBlanc wrote:
> > 
[..]
> That is exactly what I'm trying to do.  I did find the login.access
> file, but it didn't seem to work.
> 
> I set the user up as follows:
> -:userid:ALL EXCEPT LOCAL
> 
> which I understand is the correct syntax.  Problem is how to get it to
> take effect without a reboot.  The manpage doesn't say anything about
> restarting or HUPing a process - like you would inetd after changing
> inetd.conf.
> 
> A quick Google revealed that sshd doesn't honor the login.access by
> default.  I set UseLogin to 'yes' in /etc/ssh/sshd_config, HUPed sshd,
> and it seems to work fine.
> 
> Seems to me this should be cause for concern.  Why would sshd ignore
> login.access by default?  Shouldn't all shell access methods honor any
> form of access restriction by default?
> 

Because not all OSes have login.access, openssh runs on many platforms
like linux which has no login.access.  Does openbsd have a login.access?
Since that is it's native os then that gives even more reason.  And, for
security reasons openssh uses it's own login procedure and doesn't trust
the systems login command.  By adding UseLogin true, it will use the
system login command which, of course, obeys all the system policies
like login.allow.

> Thanks.
> Lou
> -- 
> Louis LeBlanc   [EMAIL PROTECTED]
> Fully Funded Hobbyist, KeySlapper Extrordinaire :)
> http://www.keyslapper.org 
> 
> Recursion n.:
>   See Recursion.
> -- Random Shack Data Processing Dictionary
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
> 
> 
> !DSPAM:40548205229492008732744!
> 

-- 
I sense much NT in you.
NT leads to Bluescreen.
Bluescreen leads to downtime.
Downtime leads to suffering.
NT is the path to the darkside.
Powerful Unix is.

Public Key: ftp://ftp.tallye.com/pub/lorenl_pubkey.asc
Fingerprint: B3B9 D669 69C9 09EC 1BCD  835A FAF3 7A46 E4A3 280C
 


pgp0.pgp
Description: PGP signature


Re: FreeBSD 5.2.1 locks up during installation CD boot

2004-03-14 Thread Lowell Gilbert
Lucas Holt <[EMAIL PROTECTED]> writes:

> I'm having a problem booting FreeBSD 5.2.1 using a 5.2.1 release CD.
> The system hangs when mounting the / partition on md0.  (memory disk i
> think)  I never make it to the gui installer.  It does work if i use
> safe mode.
> 
> System hardware:
> Athelon XP 2000+   (266mhz fsb)
> PC2100  256mb ram
> 40 gig maxtor ata 133 hdd
> ASUS nforce2 based motherboard with onboard NIC
> Nvidia geforce 2 AGP video  64mb
> 
> Looking on the freebsd website, I noticed that it could be a problem
> with ACPI or maybe the IDE controller.  Is there a way to disable this
> on the installed version?  I'm hoping its the ACPI and not the ata133
> ide controller.  The ide controller is the nforce2 which the release
> notes say it supports.

There's a boot menu with ASCII art of the FreeBSD daemon, 
at which you can select "no ACPI"...
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD in the travelling industry

2004-03-14 Thread Kevin D. Kinsey, DaleCo, S.P.
Matthew Seaman wrote:

On Sat, Mar 13, 2004 at 04:58:46PM -0600, Kevin D. Kinsey, DaleCo, S.P. wrote:
 

jsha wrote:
   

Are there anyone out there with experience in using Open Source
software on top of FreeBSD to manage a travel agency?
I have searched through Google and Freshmeat without really finding
any decent Open Source booking systems. I was hoping someone could
give me any hints as where to start my journey.
 

I wonder if there's a niche for this?

You could probably get some guys
over at sourceforge interested in
an app ... web based, perhaps?
PHP?  Or Perl?
Heck, if I knew anything about
the travel business .
   

There are niches like this for all sorts of business applications --
Customer Relationship Management, Payroll, Account Books, Billing
Systems, Business Development Information Management, Trouble Ticket
Management.  The common characteristics seem to be:
   * That they are or can be generally structured as 3-tier systems
 (Data -- usually a RDBMS backend, Logic -- business logic middle
 ware: web based applications in Perl, Java or PHP are becoming
 popular in this role; and Presentation -- either a specialised
 'thick' client application or more and more often nowadays a web
 browser (the ultimate 'thin' client)).
   * Generally require a degree of bespoke work for each client -- if
 not writing the entire system from scratch, then assembling it
 from a library of modules and customising various parts to the
 clients specific needs.
   * Very rarely done as Free or Open Source projects.  About the
 only good example I can think of is the 'RT' Trouble Ticket
 management system: http://www.bestpractical.com/rt/ Usually such
 projects are done on a contract basis for each specific client.
 Most companies supplying such software will have a generic
 version available more as a shop window than as a serious sales
 proposition -- RT is towards the generic end of the spectrum.
This sort of software business is huge, and lucrative.  Up at the top
end, this is where the likes of Oracle and SAP make the majority of
their money.  But businesses of all scales need these sorts of
applications, and there are certainly opportunities for people willing
to exploit the freedoms (and lack of licensing costs) of open source
software.  If you can provide an effective and cost effective solution
to a small business, they aren't going to quibble too much about it
running on some weird system like FreeBSD that they've never heard of
before.  And you aren't going to have too many worries about costs and
OS problems and dealing with viruses etc. making it uneconomic to take
their money in order to provide a support service for a system running
on our favourite OS.
While such applications need not be 'free' in the free-beer sense, or
even generally published to the 'net at large, there's no overriding
reason for them not to be open source between the customer and vendor
-- in fact, that would generally prove a great selling point at the
low end: even if the vendor goes bust, the client is not left entirely
high and dry if they have access to the source code.
This is perhaps the next great opening where Free software can make
in-roads, after the 'generic server' market and the network appliance
market.  It's certainly a much more tractable proposition at the
moment than attempting to conquer the desktop market.
	Cheers,

	Matthew
 

Excellent post, Matthew; and this is most certainly
what I was hinting at. I currently have lots on my
plate, but one project I'm excited about, if not quite
worked up enough to finish (!) is a web-app for a
particular warehousing niche.  Many retail business
are utilizing web-based/browser apps on the sales
floor; I see no reason why this shouldn't hold true
in the warehouse.  Almost every job seeker in most locales
within a few more years (if not already) will be at least
"passing" familiar with the interface
I already have created a grotesque monster in
PHP that tracks my appointments, submits my
worklogs to my billing service, calcs my checkbook,
manages customer data & domains, monitors
my servers, reports my yearly income/diem, holds a
document repository for FreeBSD, PHP, MySQL, etc.
As you've noted, the real issue is that anything
generic enough to apply to "most any" niche is
not specific enough to be useful to the average
user, (e.g. nola, dea, etc., well, possibly!)
My two pennies (and thanks for your GBP!)

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


Re: Two-way Sync of Directories - how? (rsync?)

2004-03-14 Thread Bill Campbell
On Sun, Mar 14, 2004, Steven N. Fettig wrote:
>I have two workstations I use (one at home and one at work) connected 
>via a private DSL link that each have the directories /home/me.  I want 
>to run a cron job to sync the directories (bi-directionally).  Rsync 
>seems to work only in one direction (I know I could set up the script on 
>both machines), but I wanted to see if I could run the script on one 
>machine and simply copy new files over to the lacking machine or update 
>files via checksums (where a file has been updated on one machine and I 
>want that updated file to be copied over the old file on the other 
>machine).  I am not worried about the case where I might update a given 
>file on both machines at the same time - it doesn't happen.
>Any advice and scripts that you use to accomplish this?

I would do this with two rsync runs from one machine

cd $directory
rsync -e ssh -vaurP ./ $remote:$directory
rsync -e ssh -vaurP $remote:$directory/ .

Better yet, set up the directories in the rsyncd.conf files on
each machine:

cd $directory
rsync -vaurP ./ ${remote}::dir_module/
rsync -vaurP ${remote}::dir_module/ .

Bill
--
INTERNET:   [EMAIL PROTECTED]  Bill Campbell; Celestial Software LLC
UUCP:   camco!bill  PO Box 820; 6641 E. Mercer Way
FAX:(206) 232-9186  Mercer Island, WA 98040-0820; (206) 236-1676
URL: http://www.celestial.com/

More laws, less justice.  -- Marcus Tulius Ciceroca (42 BD)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Two-way Sync of Directories - how? (rsync?)

2004-03-14 Thread Kai Grossjohann
Port net/unison.

Kai

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


Re: Two-way Sync of Directories - how? (rsync?)

2004-03-14 Thread Craig Reyenga
Is NFS an option? It does mean that the client will have slower file access,
but it would appear to do exactly what you are after...

Hope this at least partially helps.

-Craig


- Original Message -
From: "Steven N. Fettig" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, March 14, 2004 2:46 PM
Subject: Two-way Sync of Directories - how? (rsync?)
> I have two workstations I use (one at home and one at work) connected
> via a private DSL link that each have the directories /home/me.  I want
> to run a cron job to sync the directories (bi-directionally).  Rsync
> seems to work only in one direction (I know I could set up the script on
> both machines), but I wanted to see if I could run the script on one
> machine and simply copy new files over to the lacking machine or update
> files via checksums (where a file has been updated on one machine and I
> want that updated file to be copied over the old file on the other
> machine).  I am not worried about the case where I might update a given
> file on both machines at the same time - it doesn't happen.
> Any advice and scripts that you use to accomplish this?
>
> Thanks,
> Steve Fettig
> ___
> [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]"


Two-way Sync of Directories - how? (rsync?)

2004-03-14 Thread Steven N. Fettig
I have two workstations I use (one at home and one at work) connected 
via a private DSL link that each have the directories /home/me.  I want 
to run a cron job to sync the directories (bi-directionally).  Rsync 
seems to work only in one direction (I know I could set up the script on 
both machines), but I wanted to see if I could run the script on one 
machine and simply copy new files over to the lacking machine or update 
files via checksums (where a file has been updated on one machine and I 
want that updated file to be copied over the old file on the other 
machine).  I am not worried about the case where I might update a given 
file on both machines at the same time - it doesn't happen.
Any advice and scripts that you use to accomplish this?

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


RE: Sound

2004-03-14 Thread Dan MacMillan
Put the following line in /boot/loader.conf:

snd_emu10k1_load="YES"

You shouldn't need to compile pcm into your kernel -- there's a kld for it.
It won't hurt though.

-
Danny MacMillan

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Teilhard Knight
Sent: March 14, 2004 11:39
To: FreeBSD
Subject: Sound


I just checked my post with header: "no sound", and I didn't mean to send
that. Lately Outlook express is not playing fair with me. Here is what I
wanted to send:

Now, I did my homework. I did exactly what the Handbook says, but I cannot
make my Creative Platinum Live SoundBlater card to produce sounds. I
compiled my kernel with the pcm driver, just that. And then I added what the
handbook says for non PnP ISA cards. Could you help?

Teilhard



30MB & 250MB Web based, POP3 & IMAP4 e-mail.

Sign up now: http://www.ghostmailbox.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: Pernicious problem with vfork / qmail / qmail-scanner (RESOLVED)

2004-03-14 Thread Justin Baugh, KSC
Happen to catch this, this morning... Good dig on this..

Tcpserver *defaults* to a maximum of 40 simultaneous connections, so 
this could very well be where your problem is.. Sorry, should have 
thought of this earlier.

You can raise this limit with the -c n (n=number) option..

Please see


Nope, I'm aware of that limit, and -c was set to 120. The problem
would arise with any number for n...no matter what, it would still get
caught up at 40 connections.
The fact that I couldn't replicate the problem with the exact same setup
under 5.2.1R makes me think it's something related to the version that
came with the machine.
Thanks,

-Justin

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


Re: Binary upgrades?

2004-03-14 Thread Kai Grossjohann
Matthew Seaman <[EMAIL PROTECTED]> writes:

> On Sun, Mar 14, 2004 at 05:37:56PM +0100, Kai Grossjohann wrote:
>
>> I wonder if this could be made easier.  I'd be surprised if there
>> wasn't a method of doing binary upgrades already.  For example, if we
>> decided to track releases, would that enable us to do binary upgrades
>> using sysinstall, say?  I vaguely remember having seen an upgrade
>> option in there...
>
> http://www.daemonology.net/freebsd-update

Yes, being able to install security updates is a cool thing.  I've now
installed it and read the freebsd-update(8) and freebsd-update.conf(5)
man pages.

Alas, I don't grok it, yet.

  - Is the intent that I can make my own server?  Or is it "just" a
convenient way to receive binary upgrades for releases?  (I put
the quotes there because I think it is not a small feat.)

  - If I'm supposed to be able to make my own server, how to put stuff
there?

  - What does it do with config files during the upgrade?  (Actually,
I think for me it would be sufficient for the thing to install
default config files -- I've got cfengine to handle the rest...)

  - Can it upgrade from one version to another, or is it for security
fixes only?

Regardless of the answers, however, I can already see that it will
help us tremendously: we just install a release, then let
freebsd-update handle the rest for the base system.  And for the
ports, we think of another way, such as the "portupgrade -avRPP"
command that I mentioned before.

Now the only thing missing is my ability to convince them ;-)

Kai

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


vinum messages

2004-03-14 Thread Ben
i just set up my first software RAID-1 setup.  everything seems to run
great, but i'm getting a messages at reboot on the console:

Mar  4 18:02:21 archer1 /kernel: Mar  4 18:02:21 archer1 reboot: rebooted by too
r
Mar  4 18:03:10 archer1 /kernel: vinum: /dev is mounted read-only, not rebuildin
g /dev/vinum
Mar  4 18:03:10 archer1 /kernel: Warning: defective objects
Mar  4 18:03:10 archer1 /kernel:
Mar  4 18:03:10 archer1 /kernel: P local.p1C State: faulty  Subdisks
: 1 Size: 26 GB
Mar  4 18:03:10 archer1 /kernel: S local.p1.s0   State: empty   PO:
   0  B Size: 26 GB

afterwhich i get

Mar  4 18:03:10 archer1 /kernel: /dev/vinum/local:
Mar  4 18:03:10 archer1 /kernel: FILESYSTEM CLEAN; SKIPPING CHECKS
Mar  4 18:03:10 archer1 /kernel: /dev/vinum/local:
Mar  4 18:03:10 archer1 /kernel: clean, 26864509 free
Mar  4 18:03:10 archer1 /kernel: (45 frags, 3358058 blocks, 0.0% fragmentation)

so i can't tell if i'm being paranoid but is everything OK?  here's my
vinum.conf:

drive mainlocal device /dev/ad0s1g
drive backuplocal device /dev/ad2s2e
volume local
 plex org concat
  sd length 55487111s drive mainlocal
 plex org concat
  sd length 55487111s drive backuplocal

it's important that this RAID-1 setup be fault-tolerant, after all
that's why i want software RAID!

thanks in advance,
Ben Lee

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


Need to reboot to restart apache after crash

2004-03-14 Thread Ben
i sent this before, somehow it didn't get through. - B

-- Forwarded message --
Date: Thu, 11 Mar 2004 19:59:20 -0500 (EST)
From: Ben <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Need to reboot to restart apache after crash

this is a strange situation i thought i'd post and try to get some
expertise on.

the short version is, i do something to get mod_python to crash.  i
then try to clean up all the tmp files, look for open files, sysv ipc
stuff, etc.  but even after all that i can't get apache to run again
without a full reboot.  it seems very strange that the runs of apache
should be any different!  i'm looking for ways to clean up the system
without rebooting, ala ipcrm, etc.

the details:

i'm debugging something right now which seems to crash apache 2.0.48
(pre-fork) and mod_python 3.1.3 on FreeBSD 4.9-STABLE x86.  i'm not
terribly worried about that.  but after i crash it, when i try to run
it again i get log msgs like:

[Thu Mar 11 10:08:51 2004] [notice] mod_python: Creating 32 session mutexes
based on 50 max processes and 0 max threads.
(24)Too many open files: mod_python: Failed to reinit global mutex
/tmp/mpmtx84815.
'import site' failed; use -v for traceback
[Thu Mar 11 10:08:52 2004] [error] make_obcallback: could not import
mod_python.apache.
ImportError: No module named mod_python.apache
[Thu Mar 11 10:10:38 2004] [error] (24)Too many open files: apr_accept: (client
socket)

i've cleaned up /tmp/mpm*, /var/run/httpd.scoreboard, etc.  i've also
verified that in fact

kern.openfiles: 68
kern.maxfiles: 12328
kern.maxfilesperproc: 11095

and raised the openfiles limit on the www process, and checked lsof
which says there isn't much open.  so it looks like some kind of
shared memory / locking thing, except that ipcs tells me not much: i
guess it's not a sysv ipc thing.

does anyone know how to clean house for this kind of stuff?

thanks in advance, B


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


Data recovery.

2004-03-14 Thread Lewis Thompson
Hi,

I've just had a disk (pretty much) fail on me.

  I'd been suspect of it for some time now, but finally confirmed it
with a reinstall to 5.2.1 when GEOM started removing it for me ;)  Some
more tests with smartmontools (http://smartmontools.sourceforge.net/)
indicate read failures at the same position on the disk.

  This problem is made worse by the fact that this is a 100GB disk, part
of a Vinum RAID-0 array (together with two more 120GB disks).

  I have managed to get my hands on a 123GB disk for backing up the data
to to.  I know I am going to have to use dd for this, but this is
something I've never done before (short of a quick flirt with floppy
images, etc.)

  Since GEOM has previously removed the volume when it hit the bad area
I need to know if I can disable this to recover as much data as possible
(some is better than none).  If this requires installing 4 then that's
how I'll have to do it.

  Basically I would like to ask -questions if anybody has any advice
(other than ``you should have made backups'' -- I was in the process of
buying a 3Ware RAID card for this purpose ;) as to how I should go about
this.  Anything at all... I'm pretty desperate at this point!

  Thanks very much,

-lewiz.

-- 
I was so much older then, I'm younger than that now.  --Bob Dylan, 1964.

-| msn:[EMAIL PROTECTED] | jabber:[EMAIL PROTECTED] | url:www.lewiz.org |-


pgp0.pgp
Description: PGP signature


Sound

2004-03-14 Thread Teilhard Knight
I just checked my post with header: "no sound", and I didn't mean to send
that. Lately Outlook express is not playing fair with me. Here is what I
wanted to send:

Now, I did my homework. I did exactly what the Handbook says, but I cannot
make my Creative Platinum Live SoundBlater card to produce sounds. I
compiled my kernel with the pcm driver, just that. And then I added what the
handbook says for non PnP ISA cards. Could you help?

Teilhard



30MB & 250MB Web based, POP3 & IMAP4 e-mail.

Sign up now: http://www.ghostmailbox.com


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


Re: running DBDesigner4 on FreeBSD

2004-03-14 Thread Jeremy Faulkner
Terry L. Tyson Jr. wrote:
On Fri, Mar 12, 2004 at 11:25:24AM -0500, Jeremy Faulkner wrote:

Not to long ago someone asked about free database design software, one 
of the responses mentioned DBDesigner. I was wondering if anyone on had 
managed to get it to run on FreeBSD?
--
Jeremy Faulknerhttp://www.gldis.ca


I saw that and am going to try it out this weekend. I'll let you know
how it goes. Have you tried installing it? What problems?
Terry
Need:

shells/bash
graphics/linux-libmng ->
http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/62710
The original fix, not the subsequent post
x11-font/linux-fontconfig
textproc/linux-expat
Possibly others, see attachment.

Decompress the DBDesigner4.0.5.4.tar.gz tarball, change startdbd's first 
line to #!/usr/local/bin/bash then run the script. Read 
~/.DBDesigner4/DBD4.log for error messages, find the appropriate port 
for the missing library and run startdbd again. Rinse, lather, repeat.

--
Jeremy Faulkner http://www.gldis.ca
ImageMagick-5.5.7.16
ORBit-0.5.17_1
ORBit2-2.8.3_1
TenDRA-4.20040128
WWWdb-0.8.2
XFree86-4.3.0,1
XFree86-FontServer-4.3.0_3
XFree86-Server-4.3.0_14
XFree86-clients-4.3.0_6
XFree86-documents-4.3.0
XFree86-font100dpi-4.3.0
XFree86-font75dpi-4.3.0
XFree86-fontCyrillic-4.3.0
XFree86-fontDefaultBitmaps-4.3.0
XFree86-fontEncodings-4.3.0
XFree86-fontScalable-4.3.0
XFree86-libraries-4.3.0_6
Xft-2.1.2_1
aalib-1.4.r5_1
amsn-0.90
apache-1.3.29_1
apache-ant-1.6.1
arts-1.1.4_2,1
aspell-0.50.4.1_1
atk-1.4.1_2
autoconf-2.13.000227_5
autoconf-2.53_1
automake-1.4.5_9
automake-1.5,1
bash-1.14.7
bbconf-1.8
bbkeys-0.8.5
bbpager-0.3.1
bchunk-1.1.1
bison-1.75_2
blackbox-0.65.0
boxtools-0.65.0
cam-1.02
compat4x-i386-5.0.20030328
ctorrent-1.3.2
cube-2002.10.20
cups-base-1.1.20.0
cups-pstoraster-7.07_1
cvsup-without-gui-16.1h
dagrab-0.3.5_1
db41-4.1.25_1
diction-1.02
docbook-sk-4.1.2_2
docbook-xml-4.2_1
docbook-xsl-1.63.0_1
dri-4.3.0,1
eclipse-2.1.2
eclipse-cdt-1.2
eclipse-emf-1.1.1
eclipse-gef-2.1.2
eclipse-vep-0.5.0
en-ooodict-CA-1.2
esound-0.2.32_1
expat-1.95.6_1
faad2-1.1_2
fastest_cvsup-0.2.8
fl_editor-0.4.5_1
flac-1.1.0_3
fltk-1.1.4
flvw-2224_2
fontconfig-2.2.90_4
freetype2-2.1.5_2
gaim-0.75_4
gawk-3.1.1_1
gconf-1.0.9_7
gconf2-2.4.0.1_1
gd-1.8.4,2
gdbm-1.8.3_1
gdk-pixbuf-0.22.0_1
gettext-0.13.1
ghostscript-gnu-7.07_6
gimp-1.2.5_1,1
gimp-print-4.2.6_2
glib-1.2.10_10
glib-2.2.3_1
gmake-3.80_2
gnome-icon-theme-1.0.9_1
gnomecanvas-0.22.0_1
gnomehier-1.0_13
gnomelibs-1.4.2_2
gnomemimedata-2.4.1_1
gnomeprint-0.37_1
gnomevfs2-2.4.2_1
gnutls-0.8.10_1
gtk-1.2.10_11
gtk-2.2.4_2
gtk-gnutella-0.93.3
gtkglarea-1.99.0_3
gtkspell2-2.0.4_1
guile-1.6.4_4
guilib-1.1.1_1
help2man-1.29
imake-4.3.0_2
imlib-1.9.14_2
intltool-0.30_1
jasper-1.700.5
javavmwrapper-1.4
jbigkit-1.5
jce-aba-1.1
jdk-1.4.2p6_3
jpeg-6b_1
junit-3.8.1
lame-3.95.1_1
lcms-1.09_1,1
lftp-2.6.12
libIDL-0.8.3_1
libao-0.8.4_1
libart_lgpl2-2.3.16
libaudiofile-0.2.5
libbonobo-2.4.3_1
libbonoboui-2.4.3_1
libchk-1.8
libdv-0.9.9_1
libdvdcss-1.2.8_1
libfpx-1.2.0.9
libgcrypt-1.1.12
libglade2-2.0.1_2
libglut-5.0.2
libgmp-4.1.2_3
libgnome-2.4.0_4
libgnomecanvas-2.4.0_1
libgnomeui-2.4.0.1_2
libiconv-1.9.1_3
libid3tag-0.15.0b_1
libijs-0.34_1
libiodbc-3.0.5_2
libltdl-1.5
libmad-0.15.0b
libmcve-3.2.2_1
libmikmod-esound-3.1.10_2
libmng-1.0.6
libmpeg2-0.3.1_1
libogg-1.1,3
libslang-1.4.9
libsndfile-1.0.5
libtool-1.3.5_1
libtool-1.4.3_2
libtool-1.5
libungif-4.1.0b1_1
libvorbis-1.0.1,3
libwmf-0.2.8.2
libxml-1.8.17_2
libxml2-2.6.5_1
libxslt-1.1.2_3
linc-1.0.3_1
linux-XFree86-libs-4.3.0_2
linux-esound-0.2.22_2
linux-expat-1.95.5_1
linux-fontconfig-2.1_1
linux-gnomelibs-1.2.8_2
linux-jpeg-6b.15_1
linux-libaudiofile-0.1.11_1
linux-libmng-1.0.0_2
linux-png-1.0.14_1
linux-realplayer-8.cs2_4
linux-tiff-3.5.5_1
linux_base-8-8.0_4
lsof-4.70
m4-1.4_1
mad-0.15.0b
madplay-esound-0.15.0b_2
mc-4.6.0_7
mdbtools-gnome-0.5_4
mozilla-gtk1-1.6_2,2
mpg123-esound-0.59r_12
mplayer-gtk-esound-0.92.0_6
mplayer-skins-1.1.0
mysql++-1.7.9_2
mysql-client-4.1.1
mysql-connector-java-3.0.10
mysql-server-4.1.1
nasm-0.98.38_1,1
nessus-gtk-2.0.10a_1
nessus-libnasl-2.0.10a_1
nessus-libraries-2.0.10a_1
nmap-3.50
nspr-4.4.1_1
nss-3.8_2
oaf-0.6.10_2
open-motif-2.2.2_2
openldap-client-2.1.26
openoffice-1.1.0_1
outguess-0.2
p5-Authen-SASL-2.06
p5-Bit-Vector-6.3
p5-DBD-CSV-0.2002
p5-DBD-Excel-0.06
p5-DBD-ODBC-1.06_1
p5-DBD-mysql41-2.9003
p5-DBI-1.40
p5-Date-Calc-5.3
p5-Date-Manip-5.42a
p5-Digest-1.05
p5-Digest-HMAC-1.01
p5-Digest-SHA1-2.07
p5-File-Temp-0.12_1
p5-HTML-Parser-3.34
p5-HTML-TableExtract-1.08
p5-HTML-Tagset-3.03
p5-IO-stringy-2.108
p5-MIME-Base64-3.00
p5-Mail-Bulkmail-3.09
p5-Mail-CheckUser-1.21
p5-Mail-Sender-0.8.10
p5-Net-1.17,1
p5-Net-DNS-0.45
p5-OLE-Storage_Lite-0.11
p5-Parse-RecDescent-1.94
p5-SQL-Statement-1.005
p5-Spreadsheet-ParseExcel-0.2602
p5-Spreadsheet-WriteExcel-0.42
p5-Test-Harness-2.38_1
p5-Test-Simple-0.47_1
p5-Text-Balanced-1.95
p5-Text-CSV_XS-0.23
p5-Time-HiRes-1.55,1
p5-Time-Piece-1.08
p5-Time-Pie

Re: Binary upgrades?

2004-03-14 Thread Thorsten von Plotho-Kettner
On Sun, 14 Mar 2004 17:37:56 +0100
Kai Grossjohann <[EMAIL PROTECTED]> wrote:

> I'm trying to convince my cow-orkers and my boss to switch to
^^

> FreeBSD from Debian GNU/Linux.  The systems we are talking about
> are workstations (desktop or laptop PCs), our servers are running
> Solaris.

Oh, I love this one ;)

Regards,

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


Re: pakages questione, 2

2004-03-14 Thread Mark Weinem
> I've `./configure && gmake && gmake install`-ed lot of tools (have a
> fun of such kind :-)..

Some of us prefer the ports system ;-)


> later when I wanted to use a pkg_add ability to add some pkg, I found
> that I have a poor registerd pkgs on my box. So: I know -- I do really
> have such util, but it's unregistered. And the pkg, I want to add
> depends on it, but a pkg_add says ``was not found''. I use a force
> method of pkg_add

I'm not sure if I understand your problem correctly: 

You want to pkg_ add a package but it needs additional software you
have already installed "by hand" (configure, make, make install)

or do you want to install (register?) "hand-built" software as
a package via pkg_add? 

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


Re: Binary upgrades?

2004-03-14 Thread Matthew Seaman
On Sun, Mar 14, 2004 at 05:37:56PM +0100, Kai Grossjohann wrote:

> I wonder if this could be made easier.  I'd be surprised if there
> wasn't a method of doing binary upgrades already.  For example, if we
> decided to track releases, would that enable us to do binary upgrades
> using sysinstall, say?  I vaguely remember having seen an upgrade
> option in there...

http://www.daemonology.net/freebsd-update

It's still in development, so it hasn't been adopted yet as an
official FreeBSD thing, but that surely is just a matter of time.
Works exceedingly well, and because of Colin Percival's binary diff
tool, it's really very light weight in the bandwidth usage stakes.

It's available from ports, of course:

security/freebsd-update

The 'binary upgrade' option in sysinstall is a different thing: it's
essentially a mechanism for wiping and replacing your current system
with that release version, backing up various important config files
as it does so.  You still need to repopulate your /etc directory by
merging the updated default contents with the saved versions, and it's
generally not as smooth to do as the more usual means of
{build,install} {world,kernel} and running mergemaster. (Unless you're
upgrading over a large number of versions or across a major version
number change).

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: Pernicious problem with vfork / qmail / qmail-scanner (RESOLVED)

2004-03-14 Thread Gary
Hi Justin,

--On Sunday, March 14, 2004 11:37:13 AM -0500 "Justin Baugh, KSC" 
<[EMAIL PROTECTED]> wrote:

So, after much testing & debugging:

* The problem only happens with tcpserver
* The problem is not replicable in any way under 5.2.1R
* The problem happens with any service/user with tcpserver, not just
   qmail-smtpd/qmaild
I set up a testbed on my home box with a vanilla qmail install, and I
wasn't able to get it to choke up. As a workaround (until I can upgrade
the other box to 5.2.1R) I am running qmail through xinetd /
tcpwrappers (heresy, I know), and all is well.
Happen to catch this, this morning... Good dig on this..

Tcpserver *defaults* to a maximum of 40 simultaneous connections, so this 
could very well be where your problem is.. Sorry, should have thought of 
this earlier.

You can raise this limit with the -c n (n=number) option..

Please see



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


RE: ssh

2004-03-14 Thread Michael Pinnella
Eduardo,
Make sure that the name and IP addresses are in each other's hosts file. 

Mike

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eduardo Viruena
Silva
Sent: Sunday, March 14, 2004 8:37 AM
To: [EMAIL PROTECTED]
Subject: ssh


Hello FreeBSD gurus!

I have a question for you.

I have two computers, both of them running FreeBSD 2.5.1-RELEASE.
Let us call them A and B.

Computer A receives ssh connections from computers running
Linux, Solaris and even Windows; it also receives connections
from FreeBSD 4.x and 5.1  but it does not receive
ssh connections from B.

A ask for password and then it takes a long time to say
"Operation timmed out"
"Connection to A closed".

Enabling "sshd" in rc.d or using it from inetd makes no difference.

Strange, isn't it?

Hope you can help me.
Thanks in advance:

PD.  Here you will find what "ssh -v A" dislays:


B:/home/mrspock> ssh -v A
OpenSSH_3.6.1p1 FreeBSD-20030924, SSH protocols 1.5/2.0, OpenSSL
0x0090703f
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Rhosts Authentication disabled, originating port will not be
trusted.
debug1: Connecting to A.esfm.ipn.mx [148.204.102.61] port 22.
debug1: Connection established.
debug1: identity file /home/mrspock/.ssh/identity type -1
debug1: identity file /home/mrspock/.ssh/id_rsa type -1
debug1: identity file /home/mrspock/.ssh/id_dsa type -1
debug1: Remote protocol version 1.99, remote software version
OpenSSH_3.6.1p1 FreeBSD-20030924
debug1: match: OpenSSH_3.6.1p1 FreeBSD-20030924 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_3.6.1p1 FreeBSD-20030924
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'A.esfm.ipn.mx' is known and matches the DSA host key.
debug1: Found key in /home/mrspock/.ssh/known_hosts:3
debug1: ssh_dss_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue:
publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Trying private key: /home/mrspock/.ssh/identity
debug1: Trying private key: /home/mrspock/.ssh/id_rsa
debug1: Trying private key: /home/mrspock/.ssh/id_dsa
debug1: Next authentication method: keyboard-interactive
Password:
debug1: Authentication succeeded (keyboard-interactive).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: channel 0: request pty-req
debug1: channel 0: request shell
debug1: channel 0: open confirm rwindow 0 rmax 32768
debug1: channel_free: channel 0: client-session, nchannels 1
Read from remote host A.esfm.ipn.mx: Operation timed out
Connection to A.esfm.ipn.mx closed.
debug1: Transferred: stdin 0, stdout 0, stderr 101 bytes in 326.2 seconds
debug1: Bytes per second: stdin 0.0, stdout 0.0, stderr 0.3
debug1: Exit status -1
___
[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]"


Binary upgrades?

2004-03-14 Thread Kai Grossjohann
I'm trying to convince my cow-orkers and my boss to switch to FreeBSD
from Debian GNU/Linux.  The systems we are talking about are
workstations (desktop or laptop PCs), our servers are running Solaris.

So far, my experience with FreeBSD has been running on my home
computer.  There, I use "portupgrade -avR" for upgrading the ports,
and the procedure described in /usr/src/UPDATING for upgrading the
base system.

Some of us will want to just use the machine, without bothering about
the configuration.  Others will act as sysadmins, tweaking the
configuration.  I've already pretty much decided that cfengine will be
our friend -- it allows us to tweak the configuration incrementally,
and all those who don't want to think about it will get the config
changes automatically.

Now comes the issue of upgrading the system.

I understand that this will be fairly easy for the ports collection:
just nfs-mount the right directories, and pass "-pP" to the
portupgrade program.  Maybe those who don't want to think about it can
say "portupgrade -avRPP".  (Is this the right command?)

But for the base system, I'm not so sure.  I've read the chapter in
the handbook talking about nfs-mounting /usr/obj and /usr/src.  But
that still requires people to do

shutdown now
cd /usr/src
mergemaster -p
make installkernel installworld
mergemaster

Is this correct?

I wonder if this could be made easier.  I'd be surprised if there
wasn't a method of doing binary upgrades already.  For example, if we
decided to track releases, would that enable us to do binary upgrades
using sysinstall, say?  I vaguely remember having seen an upgrade
option in there...

I guess I just haven't read the right documentation, yet.  Normally,
with FreeBSD, one doesn't need to ask the community, one just reads
the documentation ;-)

Kai

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


ssh

2004-03-14 Thread Eduardo Viruena Silva

Hello FreeBSD gurus!

I have a question for you.

I have two computers, both of them running FreeBSD 2.5.1-RELEASE.
Let us call them A and B.

Computer A receives ssh connections from computers running
Linux, Solaris and even Windows; it also receives connections
from FreeBSD 4.x and 5.1  but it does not receive
ssh connections from B.

A ask for password and then it takes a long time to say
"Operation timmed out"
"Connection to A closed".

Enabling "sshd" in rc.d or using it from inetd makes no difference.

Strange, isn't it?

Hope you can help me.
Thanks in advance:

PD.  Here you will find what "ssh -v A" dislays:


B:/home/mrspock> ssh -v A
OpenSSH_3.6.1p1 FreeBSD-20030924, SSH protocols 1.5/2.0, OpenSSL
0x0090703f
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Rhosts Authentication disabled, originating port will not be
trusted.
debug1: Connecting to A.esfm.ipn.mx [148.204.102.61] port 22.
debug1: Connection established.
debug1: identity file /home/mrspock/.ssh/identity type -1
debug1: identity file /home/mrspock/.ssh/id_rsa type -1
debug1: identity file /home/mrspock/.ssh/id_dsa type -1
debug1: Remote protocol version 1.99, remote software version
OpenSSH_3.6.1p1 FreeBSD-20030924
debug1: match: OpenSSH_3.6.1p1 FreeBSD-20030924 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_3.6.1p1 FreeBSD-20030924
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'A.esfm.ipn.mx' is known and matches the DSA host key.
debug1: Found key in /home/mrspock/.ssh/known_hosts:3
debug1: ssh_dss_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue:
publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Trying private key: /home/mrspock/.ssh/identity
debug1: Trying private key: /home/mrspock/.ssh/id_rsa
debug1: Trying private key: /home/mrspock/.ssh/id_dsa
debug1: Next authentication method: keyboard-interactive
Password:
debug1: Authentication succeeded (keyboard-interactive).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: channel 0: request pty-req
debug1: channel 0: request shell
debug1: channel 0: open confirm rwindow 0 rmax 32768
debug1: channel_free: channel 0: client-session, nchannels 1
Read from remote host A.esfm.ipn.mx: Operation timed out
Connection to A.esfm.ipn.mx closed.
debug1: Transferred: stdin 0, stdout 0, stderr 101 bytes in 326.2 seconds
debug1: Bytes per second: stdin 0.0, stdout 0.0, stderr 0.3
debug1: Exit status -1
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Pernicious problem with vfork / qmail / qmail-scanner (RESOLVED)

2004-03-14 Thread Justin Baugh, KSC
Justin Baugh wrote:

I did some testing. I wrote a small program in C to fork off a 
specified number of processes and leave them there. I find that 
I can run exactly 39 processes as qmaild before tcpserver begins 
to barf, saying it cannot fork.
So, after much testing & debugging:

* The problem only happens with tcpserver
* The problem is not replicable in any way under 5.2.1R
* The problem happens with any service/user with tcpserver, not just
  qmail-smtpd/qmaild
I set up a testbed on my home box with a vanilla qmail install, and I 
wasn't able to get it to choke up. As a workaround (until I can upgrade 
the other box to 5.2.1R) I am running qmail through xinetd /
tcpwrappers (heresy, I know), and all is well.

For reference, the box in question was at 5.1-RELEASE-p10, the 
vendor-supplied version.

Thanks,

-Justin

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


Re: user setup question

2004-03-14 Thread Louis LeBlanc
On 03/13/04 04:29 PM, Lars Eighner sat at the `puter and typed:
> On Sat, 13 Mar 2004, Louis LeBlanc wrote:
> 
> > I have an odd question.
> >
> > I need to add a user to a system, but I don't want this user to be
> > able to log in from outside - meaning only from the console itself.
> >
> > I know root is set up this way, but I'm not sure how to do this.
> >
> > Any pointers?
> >
> > TIA
> > Lou
> >
> 
> see login.access file in /etc, also man 5 login.access
> 
> You can restrict the user to logging in only from the console,
> or to logging in only locally.  I suppect you really do not mean
> to restrict the user to logging in only at the console, but that
> you mean the user should be able to log into to any local terminal.

That is exactly what I'm trying to do.  I did find the login.access
file, but it didn't seem to work.

I set the user up as follows:
-:userid:ALL EXCEPT LOCAL

which I understand is the correct syntax.  Problem is how to get it to
take effect without a reboot.  The manpage doesn't say anything about
restarting or HUPing a process - like you would inetd after changing
inetd.conf.

A quick Google revealed that sshd doesn't honor the login.access by
default.  I set UseLogin to 'yes' in /etc/ssh/sshd_config, HUPed sshd,
and it seems to work fine.

Seems to me this should be cause for concern.  Why would sshd ignore
login.access by default?  Shouldn't all shell access methods honor any
form of access restriction by default?

Thanks.
Lou
-- 
Louis LeBlanc   [EMAIL PROTECTED]
Fully Funded Hobbyist, KeySlapper Extrordinaire :)
http://www.keyslapper.org ԿԬ

Recursion n.:
  See Recursion.
-- Random Shack Data Processing Dictionary
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


possible sendmail config problem/Perl

2004-03-14 Thread Timothy E Bogue
Hi,

Using FreeBSD 5.1

Acting as a mailserver, which runs a Perl 'application' to answer
questions from the public

I'm a Perl novice. I switched from a SuSE Linux Distribution as the
application constantly crashed.

Sendmail has the following complaint:

dosmirror# more maillog
Mar 14 08:53:07 dosmirror sm-mta[56111]: starting daemon (8.12.10):
[EMAIL PROTECTED]:30:00
Mar 14 08:53:07 dosmirror sm-mta[56112]: grew WorkList for
/var/spool/mqueue to 2000
Mar 14 08:53:07 dosmirror sm-msp-queue[56114]: starting daemon (8.12.10):
[EMAIL PROTECTED]:30:00
Mar 14 08:53:08 dosmirror sm-mta[56112]: grew WorkList for
/var/spool/mqueue to 3000
Mar 14 08:53:08 dosmirror sm-mta[56112]: grew WorkList for
/var/spool/mqueue to 4000
Mar 14 08:53:08 dosmirror sm-mta[56112]: grew WorkList for
/var/spool/mqueue to 5000
Mar 14 08:53:08 dosmirror sm-mta[56112]: grew WorkList for
/var/spool/mqueue to 6000
Mar 14 08:53:08 dosmirror sm-mta[56112]: grew WorkList for
/var/spool/mqueue to 7000
Mar 14 08:53:08 dosmirror sm-mta[56112]: grew WorkList for
/var/spool/mqueue to 8000
Mar 14 08:53:08 dosmirror sm-mta[56112]: grew WorkList for
/var/spool/mqueue to 9000
Mar 14 08:53:08 dosmirror sm-mta[56116]: i2EETVZX047626: SYSERR(root):
Cannot exec /home/qrc/bin/qrcmailin: Exec format error
Mar 14 08:53:08 dosmirror sm-mta[56112]: i2EETVZX047626: to=root,
ctladdr=root (26/0), delay=00:17:02, xdelay=00:00:00, mailer=qrc,
pri=123562, relay=localhost, dsn=4.0.0, stat=Operating system error
Mar 14 08:53:08 dosmirror sm-mta[56117]: i2EETVZW047626: SYSERR(root):
Cannot exec /home/qrc/bin/qrcmailin: Exec format error

using
perl-5.8.2_2.tbz, did a use.perl port

pkg_add -r sendmail

Modify the default .mc file: freebsd.mc, Add necessary parts from
qrc-dosref.mc, Create a combined file,copy the combined file using the
domain (dosmirror.lib.uic.edu)

cp /home/bogue/local-host-names /etc/mail/local-host-names
cp /home/bogue/dosmirror.lib.uic.edu.mc dosmirror.lib.uic.edu.mc

The new .mc file:

start here **

dosmirror# more dosmirror.lib.uic.edu.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 5.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.28 2003/04/18
01:25:41 gshapiro Exp $')
OSTYPE(freebsd5)
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')

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
dnl

Re: cvs tags and versions

2004-03-14 Thread Lowell Gilbert
"Loren M. Lang" <[EMAIL PROTECTED]> writes:

> A couple of questions that I could find answers for in the handbook:
> 
> 1.  What are the _BP cvs tags used for in the freebsd cvs repository?

"BranchPoint" -- it's a baseline for creating a set of release tags.
Normally, those tags will only be of interest to release engineers.

> 2.  I've seen someone with a version of FreeBSD 5.2.1-p1.  Is there a
> minor update patch for 5.2.1, or is that just the name of current?

The former.  RELENG_5_2 is the tag for the patches.
[The update may not be that "minor," depending on your particular
needs.  See the release errata.]

> 3.  And on a seperate note, how do I turn off the debugging code in 5.x?
> The kernel has a makeoptions=-g, but it's commented out in my custom
> kernel.  Is there anything else to do?  Will I need to completely build
> world to get my system up to speed.  I have a really old system I'm
> using freebsd on, and the only reason I'm using 5.x is for bluetooth.

See /usr/src/UPDATING

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


Re: Checking hard disks for bad sectors?

2004-03-14 Thread Lowell Gilbert
Chad M Stewart <[EMAIL PROTECTED]> writes:

> I've wiped Linux from my older server and am going to be putting
> FreeBSD 4.9 on it.  I've got 4 drives of various sizes and some are
> quite old.  I'd like to run some sort of utility on the drives to
> check for and mark bad sectors.  Is there something in the ports
> collection to enable me to do this?

Well, there are some ways to do this, but you're almost certainly
wrong about wanting to do it at all.

See the FAQ entry 
 "What do I do when I have bad blocks on my hard drive?": 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/troubleshoot.html#AWRE
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: network routing and vpn connectivity

2004-03-14 Thread Louis LeBlanc
On 03/14/04 08:35 AM, Lowell Gilbert sat at the `puter and typed:
> Louis LeBlanc <[EMAIL PROTECTED]> writes:
> 
> > I have a strange network question.
> > 
> > I finally found the vpn client that actually manages to open a
> > connection to the Cisco vpn appliance my employer uses with a minimum
> > of pain (security/vpnc).  The problem I'm having is making it possible
> > for my FreeBSD desktop at work to retain access to my FreeBSD desktop
> > at home while the vpn connection is active - in other words, I can
> > only get one way access.
> > 
> > This is why:
> > With the vpn connection established, the only way the home machine can
> > connect to the work machine (via ssh, for example) is if I route the
> > work IP through the vpn device (tun1 in my case).  Problem is that
> > when work tries to connect, home tries to route the response through
> > the vpn.
> 
> Why shouldn't it do just that?  It's sending a packet to the same
> address, why wouldn't it send the packet the same way?

This is how I understand the problem:

Home connects to vpn1 at work, creating a tun1 device.  Problem is
that vpnc doesn't create a default route to vpn1.  Point is that I
don't want EVERYTHING going through tun1, because that would cause
problems with mail traffic coming from other places (this is my home
network gateway).

Once I set up routes to the vlan that Work belongs to, setting up the
IP given to tun1 as the gateway, Home can connect to work.

Problem is that the default route still goes to tun0 (my dsl device)
which cannot change without interfering with all other traffic into
the box.

The question is can I set things up so that Work will come through the
VPN pipe to get to Home?

I'm starting to think I can't.

Lou
-- 
Louis LeBlanc   [EMAIL PROTECTED]
Fully Funded Hobbyist, KeySlapper Extrordinaire :)
http://www.keyslapper.org ԿԬ
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: kbdcontrol -f and escape sequences

2004-03-14 Thread Dan MacMillan
Excellent!  That does it.  Thank you very much for your help.

-
Danny MacMillan

-Original Message-
From: Matthew Seaman

On Sat, Mar 13, 2004 at 11:18:42PM -0700, Dan MacMillan wrote:

> I'm having some trouble using kbdcontrol to redefine function keys to
> strings that include escape sequences.  For example, suppose I want to
> redefine "F1" to be equivalent to pressing the left arrow key twice in a
> row.  I naiively thought this would work:
> 
> kbdcontrol -f 1 "\033[D\033[D"

Try:

kbdcontrol -f 1 `printf "\033[D\033[D"`

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

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


Re: pakages questione

2004-03-14 Thread Matthew Seaman
On Sun, Mar 14, 2004 at 01:20:18PM +0300, CBuH. wrote:


> have a question: suppose I've pkg_add'ed a pkg-B-1.1 on which a pkg-A depends, 
> later I've pkg_add'ed the next v. of pkg-B-1.2 now `pkg_delete pkg-B-1.1` 
> says that pkg-A depends on it
> 
> May I use ``force'' to deinstall oldest version... or I must keep all the tree 
> for old dependant pkgs to work fine?

Essentially yes.  However, you should 'pkg_delete -f' the old version
of pkg-B first, and then pkg_add the new one.  (Mostly because the
different versions of pkg-B will have a large number of files in
common, and pkg_delete will delete them even if they really belong to
the newer version.)

You'll still find that pkg-A says it depends on the older version of
pkg-B -- you can either ignore this, as it has no effect on the
functionality of pkg-A, or you can delete and re-install pkg-A after
you do pkg-B, or you can go into /var/db/pkg/pkg-A/ and edit the
+REQUIRED_BY file to correct the version numbers.

Or you can install portupgrade, in which case all you need to do is
copy the pkg-B-1.2.tgz file to /usr/ports/packages/All and then run
the command:

# portupgrade -f -P pkg-B

and all of the necessary deleting and re-installing and fiddling with
the /var/db/pkg/ files will be done for you.

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: kbdcontrol -f and escape sequences

2004-03-14 Thread Matthew Seaman
On Sat, Mar 13, 2004 at 11:18:42PM -0700, Dan MacMillan wrote:

> I'm having some trouble using kbdcontrol to redefine function keys to
> strings that include escape sequences.  For example, suppose I want to
> redefine "F1" to be equivalent to pressing the left arrow key twice in a
> row.  I naiively thought this would work:
> 
> kbdcontrol -f 1 "\033[D\033[D"

Try:

kbdcontrol -f 1 `printf "\033[D\033[D"`

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: ask for a problem

2004-03-14 Thread Remko Lodder
I'm sorry but what do you use?
What package is that you are describing?

"Did this help _immediatly?_"


For me you are very unclear in what you try to do, you don't give any
information
at all, and want us to respond immediatly sorry no can do {not for me
that is,
please provide more details first }

Cheers
--

Kind regards,

Remko Lodder
Elvandar.org/DSINet.org
www.mostly-harmless.nl Dutch community for helping newcomers on the
hackerscene

-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] mehrdad ghasemy
Verzonden: zaterdag 13 maart 2004 15:19
Aan: [EMAIL PROTECTED]
Onderwerp: ask for a problem


Hi dear sir,
   I want to delete a line from the terminal configuration terminal that is:
"ip nat inside source static tcp 192.168.0.210 80 217.218.46.1 80
extendable"
I used the "no" command at the first of this line but this message apeared
"%static entry in use ,cann't remove"
please help me immediately to solve my problem


thanks & best ragards
m.ghasemy


M.GH
Do you Yahoo!?
Yahoo! Mail - More reliable, more storage, less spam
___
[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: Time

2004-03-14 Thread Warren Block
On Sun, 14 Mar 2004, Kurt Stas wrote:

> It seems that i can't set my time to my local time.
> [EMAIL PROTECTED] ~ # date
> Sun Mar 14 09:55:36 CET 2004
> [EMAIL PROTECTED] ~ # ntpdate ntp.belnet.be
> 14 Mar 09:55:38 ntpdate[6682]: step time server 193.190.198.10
> offset -6935.981216 sec
> [EMAIL PROTECTED] ~ # date
> Sun Mar 14 09:55:40 CET 2004
> [EMAIL PROTECTED] ~ #

Don't know about the time zone issue, but if the time offset is too
large, ntpdate can't "slew" to it.  Try the -b flag for ntpdate, and
note that the ntpdate is to be retired in favor of ntpd.

-Warren Block * Rapid City, South Dakota USA
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


ask for a problem

2004-03-14 Thread mehrdad ghasemy
Hi dear sir,
   I want to delete a line from the terminal configuration terminal that is:
"ip nat inside source static tcp 192.168.0.210 80 217.218.46.1 80 extendable"
I used the "no" command at the first of this line but this message apeared
"%static entry in use ,cann't remove"
please help me immediately to solve my problem
 
 
thanks & best ragards
m.ghasemy


M.GH
Do you Yahoo!?
Yahoo! Mail - More reliable, more storage, less spam
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Warning in fstream header file

2004-03-14 Thread Lowell Gilbert
Gregory Harris <[EMAIL PROTECTED]> writes:

> Hello.  I'm not sure if this is the appropriate spot to ask, but I don't
> seen any alternative places since it is a freebsd-specific programming
> problem.  When I compile the following simple program:
> 
> #include 
>  
> int main()
> {
> }
> 
> I get this output:
> 
> -bash-2.05b$ g++ -Wall -o fstream-warnings fstream-warnings.cpp
> In file included from fstream-warnings.cpp:1:
> /usr/include/g++/fstream:304: warning: `typename
> std::basic_filebuf<_CharT,
>_Traits>::int_type' is implicitly a typename
> /usr/include/g++/fstream:304: warning: implicit typename is deprecated,
> please
>see the documentation for details
> /usr/include/g++/fstream:309: warning: `typename
> std::basic_filebuf<_CharT,
>_Traits>::int_type' is implicitly a typename
> /usr/include/g++/fstream:309: warning: implicit typename is deprecated,
> please
>see the documentation for details
> 
> How can I get rid of these warnings in the header file?  Is fstream
> itself deprecated or is it just an error in the header file?  Thanks.

There is no error involved here, just warnings.

You could update your compiler, and the warnings should go away.
[I think -- you didn't mention anything about your system, so it's
impossible to be sure.]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: performance with less than 8% minfree

2004-03-14 Thread Lowell Gilbert
Thomas Vogt <[EMAIL PROTECTED]> writes:

> FreeBSD 4.9 man tunefs(8) explains in section "-m minfree" that by
> default, 8% disk space is reserved for root. The man page also says
> clearly that I'll lose performance if I reduce minfree. My mailserver
> has one drive for the base system and a raid enviroment with 500GB
> space for the users mailboxes. 8% of 500gb space is a lot of space
> which I can't use anymore for my users mailboxes.
> So if I set this minfree to < 8% is there any other option I have to
> set that I don't lose too much performance. We're talking about a lot
> of write procedures for small files.

Not really.  Note, however, that it's the actual free space that can
cut into performance, rather than the minimum free setting.  You will
only take the hit when the disk is getting close to full.

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


Re: sophos anti virus and mailmonitor on freebsd

2004-03-14 Thread Martin Schweizer
Hello Scott

I asked the Sophos support. I will _not_ works.


Am Wed, Mar 03, 2004 at 12:50:18PM + Scott schrieb:
> Hi all,
> 
> I'm trying to get Sophos Mailmonitor running on my 5.2 box, but to no avail.
> 
> Below is a sequence of events...
> 
> Installed Sophos Anti-virus for FreeBSD 3+.  Sweep (the executable) works fine.
> File '/usr/local/bin/sweep' is of brand 'SVR4' (0).
> File '/usr/local/lib/libsavi.so.3.2.07.054' is of brand 'SVR4' (0).  This is a 
> library both SAV and MailMonitor use.
> 
> Installed MailMonitor for Linux (there is no FreeBSD version).  The install works a 
> treat.
> The executable is called mmsmtpd, there is also a (library?) file called mmsmtp.out.
> File '/usr/local/sophos/mmsmtp/bin/mmsmtp.out' is of brand 'SVR4' (0).
> 
> Installed linux_base-6.1_5 via packages
> Loaded linux.lo
> kldstat says:
> Id Refs AddressSize Name
>  19 0xc040 5d7f1c   kernel
>  21 0xc09d8000 51a18acpi.ko
>  31 0xc24bb000 2000 dragon_saver.ko
>  41 0xc24e7000 19000linux.ko
> 
> >From /usr/local/sophos/mmsmtp/bin/ ran ./mmstpd -start
> Got the following error:
> /usr/local/sophos/mmsmtp-1.2.2/Linux-x86/bin/mmsmtp.out: error in loading shared 
> libraries: libsavi.so.2: cannot open shared object file: No such file or directory
> 
> Created symlink /lib/ (was this correct?)
> ln -s /usr/local/lib/libsavi.so.3.2.07.054 /lib/libsavi.so.2
> 
> >From /usr/local/sophos/mmsmtp/bin/ ran ./mmstpd -start
> Got the following error:
> /usr/local/sophos/mmsmtp-1.2.2/Linux-x86/bin/mmsmtp.out: error in loading shared 
> libraries: libsavi.so.2: ELF file ABI version invalid.
> 
> Then I started trying everything...
> 
> brandelf -t Linux /usr/local/lib/libsavi.so.3.2.07.054
> >From /usr/local/sophos/mmsmtp/bin/ ran ./mmstpd -start
> Got the following error:
> /usr/local/sophos/mmsmtp-1.2.2/Linux-x86/bin/mmsmtp.out: error in loading shared 
> libraries: libsavi.so.2: ELF file OS ABI invalid.
> 
> So now I'm stuck.  I'd appreciate any help anyone might have!
> I've done a search on freebsd-emulation but no luck.
> 
> Thanks in advance
> Scott
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"

-- 

Regards
Gruss
Mit freundlichen Grüssen

Martin Schweizer
<[EMAIL PROTECTED]>

PC-Service M. Schweizer; Gewerbehaus Schwarz; CH-8608 Bubikon
Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch;
public key : http://www.pc-service.ch/pgp/public_key.asc; 
fingerprint: EC21 CA4D 5C78 BC2D 73B7  10F9 C1AE 1691 D30F D239;



pgp0.pgp
Description: PGP signature


Re: network routing and vpn connectivity

2004-03-14 Thread Lowell Gilbert
Louis LeBlanc <[EMAIL PROTECTED]> writes:

> I have a strange network question.
> 
> I finally found the vpn client that actually manages to open a
> connection to the Cisco vpn appliance my employer uses with a minimum
> of pain (security/vpnc).  The problem I'm having is making it possible
> for my FreeBSD desktop at work to retain access to my FreeBSD desktop
> at home while the vpn connection is active - in other words, I can
> only get one way access.
> 
> This is why:
> With the vpn connection established, the only way the home machine can
> connect to the work machine (via ssh, for example) is if I route the
> work IP through the vpn device (tun1 in my case).  Problem is that
> when work tries to connect, home tries to route the response through
> the vpn.

Why shouldn't it do just that?  It's sending a packet to the same
address, why wouldn't it send the packet the same way?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: After xwindow is up.

2004-03-14 Thread Danny Pansters
On Sunday 14 March 2004 04:03, Marwan Sultan wrote:
> Hello everyone,
>
>Im new to Xwindow system, im using Kde, with FBSD-5.1R
>
>Installation of xserver and kde, everything went fine, and works great
>I had few small troubles, I would appreciate if someone could give me
>some notices/hints what I should do, or install after this point.
>
>Just now the installation finished, i checked few webpages,
>and few doesnt work,
>
>Flash / Java not supported? If yes How to do so and enable it?

They are supported but not out-of-the-box. I'm assuming you already know about 
the ports collection. If you haven't installed it yet, you should. 

For Flash you'll probably want to install www/linux-flashplugin6 and the 
www/linuxpluginwrapper ports. Make sure to read the blurb about 'libmap.conf' 
that shows after it installs and follow the directions (basically you just 
copy and paste the example, it's not that hard). This stuff is needed to make 
the FreeBSD browser able to work with binary plugins for linux. I take it you 
want it to work in Konqueror. Go to Settings -> Configure -> Plugins. Make 
sure it has the correct path to libflashplayer.so, then tell it to scan for 
plugins and itt should be found. You may also need to go to File associations 
(mimetypes) and explicitly select the Netscape plugin for embedded playing of 
the types application/futuresplash and application/x-shockwave-flash. 

For Java, you'll need to install it first. Unfortunately, it's not legally 
possible for the FreeBSD people to distribute a binary Java package yet for 
5.X, that's JDK 1.4). It involves dowloading a Linux JRE to be able to 
bootstrap the build, as well as the source and some FreeBSD specific patches. 
If you follow the directions you shouldn't have much trouble, except that it 
takes a long time to build (once it's compiling you can leave it unattended). 
It can take a day or longer depending on how fast your computer is. Once 
that's all done, you'll only need to tell Konqueror where to look for java, 
just give it the full path, something like /usr/local/jdk1.4.2/bin/java.

>Other languages? how to enable it? Turkish/Arabic?

There are ports for a lot of the available language versions of KDE. 
See /usr/ports/misc/kde3-i18n* and for KOffice /usr/ports/misc/koffice-i18n*
If you install any of them, they will appear as a language choice in your KDE 
wizard. At least there's Turkish: kde3-i18n-tr. I had a quick look at 
i18n.kde.org and there's also an arabic (i18n-ar) but it's not in ports yet.

>When everything done, I could go to my KDE window from root access.
>but when I use my user access, it doesnt go to KDE, and just comes back
>to the xwindow (the small 3 terminal windows).
>Should I do something to enable it?

You're getting a plain twm with xterms. Look at /home/you/.xinitrc, it's in 
there. To have KDE start when you type 'startx' as a user simply do this:

% echo startkde > ~/.xinitrc

>Any Advises after this stage?

Here's a few links:

KDE on FreeBSD: http://freebsd.kde.org/
Java on FreeBSD: http://www.freebsd.org/java/index.html
FreeBSD Handbook: 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html


Have fun,

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


Re: Xbox & freebsd

2004-03-14 Thread Kris Kennaway
On Sun, Mar 14, 2004 at 12:27:32PM -, Thomas Beer wrote:
> Dear All,
> 
> I was wondering if anyone managed to install freebsd
> on a xbox. Any resources are highly appreciated.

Erm, no :)

Kris


pgp0.pgp
Description: PGP signature


Re: FreeBSD in the travelling industry

2004-03-14 Thread Matthew Seaman
On Sat, Mar 13, 2004 at 04:58:46PM -0600, Kevin D. Kinsey, DaleCo, S.P. wrote:
> jsha wrote:

> >Are there anyone out there with experience in using Open Source
> >software on top of FreeBSD to manage a travel agency?
> >
> >I have searched through Google and Freshmeat without really finding
> >any decent Open Source booking systems. I was hoping someone could
> >give me any hints as where to start my journey.

> I wonder if there's a niche for this?
> 
> You could probably get some guys
> over at sourceforge interested in
> an app ... web based, perhaps?
> PHP?  Or Perl?
> 
> Heck, if I knew anything about
> the travel business .

There are niches like this for all sorts of business applications --
Customer Relationship Management, Payroll, Account Books, Billing
Systems, Business Development Information Management, Trouble Ticket
Management.  The common characteristics seem to be:

* That they are or can be generally structured as 3-tier systems
  (Data -- usually a RDBMS backend, Logic -- business logic middle
  ware: web based applications in Perl, Java or PHP are becoming
  popular in this role; and Presentation -- either a specialised
  'thick' client application or more and more often nowadays a web
  browser (the ultimate 'thin' client)).

* Generally require a degree of bespoke work for each client -- if
  not writing the entire system from scratch, then assembling it
  from a library of modules and customising various parts to the
  clients specific needs.

* Very rarely done as Free or Open Source projects.  About the
  only good example I can think of is the 'RT' Trouble Ticket
  management system: http://www.bestpractical.com/rt/ Usually such
  projects are done on a contract basis for each specific client.
  Most companies supplying such software will have a generic
  version available more as a shop window than as a serious sales
  proposition -- RT is towards the generic end of the spectrum.

This sort of software business is huge, and lucrative.  Up at the top
end, this is where the likes of Oracle and SAP make the majority of
their money.  But businesses of all scales need these sorts of
applications, and there are certainly opportunities for people willing
to exploit the freedoms (and lack of licensing costs) of open source
software.  If you can provide an effective and cost effective solution
to a small business, they aren't going to quibble too much about it
running on some weird system like FreeBSD that they've never heard of
before.  And you aren't going to have too many worries about costs and
OS problems and dealing with viruses etc. making it uneconomic to take
their money in order to provide a support service for a system running
on our favourite OS.

While such applications need not be 'free' in the free-beer sense, or
even generally published to the 'net at large, there's no overriding
reason for them not to be open source between the customer and vendor
-- in fact, that would generally prove a great selling point at the
low end: even if the vendor goes bust, the client is not left entirely
high and dry if they have access to the source code.

This is perhaps the next great opening where Free software can make
in-roads, after the 'generic server' market and the network appliance
market.  It's certainly a much more tractable proposition at the
moment than attempting to conquer the desktop market.

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


packages system

2004-03-14 Thread CBuH.
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



Hello again, all.

Consider a bad package management system... or .. I don't know!

1) Why, if the package P depends on A-1.2.3 and I manually `pkg_add 
A-1.2.3_1`, the package P still look for A-1.2.3 and don't want to install?

Suppose version of A-1.2.3_X includes the minor patches to version 1.2.3. So 
why such an issue is held?

2) Why If I have pkg_add-ed packages C-1.2.3 and C-1.2.4 and later hoped to 
pkg_update C-1.2.4 ... it found dis-MD5'n in +CONTENTS's files (I 
understand why) but deletes any way them and C-1.2.3, then pkg_add (in 
script) C-1.2.4,... but _does_not_ resign +REQUIRED_BY file for C-1.2.4 from 
C-1.2.3 and does not resample their (pkgs from +REQUIRED_BY) +REQUIRES files?


Or I have wrong seeing of the packages world?  Direct me right.

Sorry for *may be* strong speach.
- -- 

CBuH. CG[CX] XVyGYjau 479001600(at)mail.ru, ICQ#70929413
GnuPG(PGP) public key is: http://www.vinnied.narod.ru/pubkey.asc
http://www.vinnied.narod.ru


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.3 (FreeBSD)

iD8DBQFAVFID5Cj3gqxcdCoRAq4LAKCCAgmm0Lmotaj64rom8Ixc+OneaQCeNydp
UK5PRWnItueF/w5Bv5D3RTc=
=tRvP
-END PGP SIGNATURE-

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


Xbox & freebsd

2004-03-14 Thread Thomas Beer
Dear All,

I was wondering if anyone managed to install freebsd
on a xbox. Any resources are highly appreciated.

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


Re: using samba for backups

2004-03-14 Thread Matthew Seaman
On Sat, Mar 13, 2004 at 07:32:51PM -0500, Marty Landman wrote:

> There was an article around a couple of years ago I think about some 
> disgruntled MS employee who put code into W95 to make it crash after 41 
> days or something.The funny part of course was how nobody interviewed could 
> even imagine a 95 box staying up that long.

I don't think there was deliberate sabotage.  It was a programming
error that led to some early versions of NT4 having a counter
roll-over every 42 days, causing the system to crash.  The greatest
irony of all was that Microsoft were touting NT4 at the time as a
"Unix killer" and promising that five-nines uptimes could be achieved,
at the same time as officially advising all users to reboot their
systems every 30-something days.  Somebody calculated that meant that
NT4 would have to be able reboot in well under a minute...

Cheers,

Matthew

Note: followup to freebsd-chat, as this is getting off-topic.

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


Checking hard disks for bad sectors?

2004-03-14 Thread Chad M Stewart
I've wiped Linux from my older server and am going to be putting 
FreeBSD 4.9 on it.  I've got 4 drives of various sizes and some are 
quite old.  I'd like to run some sort of utility on the drives to check 
for and mark bad sectors.  Is there something in the ports collection 
to enable me to do this?

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


Re: I have some questions about telnet/telnetd/libtelnet/tn3270 and why FreeBSD is different than other BSDs in this regard

2004-03-14 Thread Matthew Seaman
On Sun, Mar 14, 2004 at 06:01:37AM +0100, Alex de Kruijff wrote:
> On Sun, Mar 14, 2004 at 05:52:04AM +0100, Alex de Kruijff wrote:
> > On Thu, Mar 11, 2004 at 09:34:16PM -0600, Paul Seniura wrote:

> > > I hope this is not too technical:
> > > All BSDs (except for this 'Free' one) presently have tn3270.c
> > > together with telnet.c for reasons that become apparent when
> > > studying how it works and how it is compiled etc.  As they are
> > > presently written, all of telnet[d].c and tn3270.c must use the
> > > same macros and other source files from the same 'level' subdir. 
> > > That means if something changes for the sake of 'telnet', it had
> > > better work with 'tn3270' also.
> 
> Yes, this is too technical. I would have to study the file, which i'm
> not going to. If you say that it couldn't posibly be a port, like perl5
> can, then i will take your word for this.

This shouldn't be an impassable obstacle to making a tn3270 port --
there is precedent in the ports tree for having the port require
various parts of the system sources to be present in order to build.
See, for instance, the net/ng_netflow or the devel/linuxthreads ports.

Having a good, well maintained port available will go a long way
towards persuading most committers that the tn3270 application should
be restored to the base system.  Not all the way, but it will make a
difference.

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: freebsd-questions Digest, Vol 51, Issue 30

2004-03-14 Thread Gerard Seibert
On Saturday, March 13, 2004 10:18:07 PM Teilhard Knight wrote:

|>Message: 16
|>Date: Sat, 13 Mar 2004 16:43:54 -0600
|>From: "Teilhard Knight" <[EMAIL PROTECTED]>
|>Subject: No sound
|>To: "FreeBSD" <[EMAIL PROTECTED]>
|>Message-ID: <[EMAIL PROTECTED]>
|>Content-Type: text/plain; charset="iso-8859-1"
|>
|>This seems to be the only place in the Creative news server in which I can
|>ask about a modem. It also seems deserted. I hope someone can ask my very
|>simple question.
|>
|>Is the Creative Modem Blaster PCI DI5652 a Winmodem?
|>
|>I think not, that's why I bought it. But I want to be sure.
|>
|>Teilhard.


** Reply Separator **
Sunday, March 14, 2004 6:13:09 AM

Please read the requirements below:

Product Specification


 

Modem Blaster V.92 PCI Value offers System Integrators, VARs, and Government users an 
affordable PCI modem with complete V.92 support. The improved V.92 speed features 
offer faster web surfing, searching, and sending as well as shorter dial-up times. The 
convenient Modem-On-Hold feature lets you pause the Internet connection to use the 
phone!

More Info & Product Specification 
Model: DI5652

INTERFACE - 32-bit PCI slot;

CHIPSET - Conexant;

DATA SPEEDS - 300 to 56,000bps receive/48,600 send with auto-negotiation of V.92 and 
V.90. 300 to 33,600bps full-duplex. Software upgradeable DSP chip for easy upgrade;

FAX SPEED - 300 to 14,400 bps, Group 3, Class 1;

STANDARDS - Fax: V.33, V.29, V.17, V.27ter, V.21 channel 2; Data: V.92, V.90, K56Flex, 
V.34, V.32bis, V.32, V.22bis, V.22 A/B, V.22, V.23, V.21, Bell 103/212A;

Compression: V.44, V.42bis, MNP5;

Error Control: V.42, MNP 2-4, Hayes AT and extended AT command set compatible. V.80 
for H.324 (videophone) compatibility.;

CONNECTIONS - includes slim cord for connecting to standard RJ11 jack;

VIDEO SPECS - V.80 (required for point-to-point H.324 video over standard phone lines);

O/S SUPPORT - Windows 98/Me/NT 4.0 and 2000;

SOFTWARE - None;

REQUIRES - 300 MHz Pentium® II, AMD K6®-2 or higher IBM® compatible PC 64 MB RAM (128 
MB recommended) 50 MB of free hard disk space; Windows® 98(SE)/Me/2000/XP; Available 
PCI 2.1 compliant slot; CD-ROM drive for drivers and software installation; V.92 
features, V.44 Compression, Quick Connect, Modem-on-hold, and PCM Upstream, require 
V.92 support from your Internet Service Provider. Modem-on-hold feature also requires 
call-waiting service from your telephone company. Internet software requires 
connection to the Internet through an Internet Service Provider (ISP) and any charges 
incurred to connect are the responsibility of the end-user. Software may have 
additional system requirements;

APPROVALS: FCC Parts 15B & 68, UL, CUL, CE;

Pictures are for illustration purposes only.

--

Gerard Seibert
[EMAIL PROTECTED]



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


Re: Changing configuration options for ports

2004-03-14 Thread Dancho Penev
On Sat, Mar 13, 2004 at 12:00:40PM -0500, Robert Fitzpatrick wrote:
From: Robert Fitzpatrick <[EMAIL PROTECTED]>
To: FreeBSD <[EMAIL PROTECTED]>
Date: Sat, 13 Mar 2004 12:00:40 -0500
Subject: Changing configuration options for ports
I've posted this question about building GSSAPI into my Cyrus-SASL port
On principle to compile any port with kerberos support (if the port has
such) it is enogh to set KRB5_HOME variable in /etc/make.conf. For
illiustration I use MIT Kerberos and in my make.conf I have:
...
KRB5_HOME=  /usr/local
...
According to sasl2 Makefile that will do the trick, but I'm not sure
because I don't use sasl2.
installation a couple of times, but not receiving any response to how to
make the changes to the port install. I just need to confirm what I'm
doing is correct, can't seem to find anything in the Handbook related to
re-installing the same port to enable support options.
Right now, I am just editing the Makefile and adding the config options
I need and then 'make deinstall' and 'make reinstall'. But this doesn't
seem to work. The port builds OK, but no support for the option enabled.
For instance, Cyrus-IMAPD, I add to the Makefile
'--with-krb=/usr/local/lib' under the CONFIGURE_ARGS section, but
afterward, no support for Kerberos. Can someone just tell me what I'm
doing wrong.
--
Robert
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
--
Dancho Penev
GnuGP public key: http://www.mnet.bg/~dpenev/gnupg.key
Key fingerprint: E88D 8B7B 3EF6 E9C8 C5D2 7554 2AA8 C347 71A1 4277


pgp0.pgp
Description: PGP signature


Re: Time

2004-03-14 Thread Hong MingJian

cp /usr/share/zoneinfo/   /etc/localtime

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


Re: Make depend ok..."make all install" is a no go...(newbie)

2004-03-14 Thread Alexei Khalimov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Greetings!

>I am able to configure the kernel ("make depend"), however, when I try to 
>perform a "make all install"...I get the following stream of errors:
>===
>linking kernel
>umass.o: In function 'umass_cam_attach_sim'
>umass.o(.text+0x152f): undefined reference to 'cam_simq_alloc'
>umass.o(.text+xx): '' " "  'cam_sim_alloc'
>umass.o(.text+xx): " " "  'cam_simq_free'

[snip]
umass depends on scsi subsystem, so you should add
device scbus
to your kernel configuration.

hope this helps.

Cheers,
ALex.

- -- 
My PGP public key is avaible at:
http://www.divo.ru/~lesha/4A2620A5.key

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.3 (FreeBSD)

iD8DBQFAVDfQkePr2UomIKURAhmzAKDFiNPXcYHFb93pUNf5OOa3krMDfwCgoV0w
8sdxZh8JcE9U5YROJAjlN4M=
=6Ati
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


mylex driver

2004-03-14 Thread Marek Šplíchal
Hello,
i have question about using Mylex AcceleRaid 400 in FreeBSD. I tried find
driver for this device, but i can't. Do you know, how to put this device to
work?

Thank you

Marek Splichal
--
Odchozí zpráva neobsahuje viry.
Zkontrolováno Antivirovým systémem AVG (http://www.grisoft.cz).
Verze: 7.0.225 / Virová báze: 262.4.3 - datum vydání: 11.3.2004

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


pakages questione

2004-03-14 Thread CBuH.
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



Hi all,... 
have a question: suppose I've pkg_add'ed a pkg-B-1.1 on which a pkg-A depends, 
later I've pkg_add'ed the next v. of pkg-B-1.2 now `pkg_delete pkg-B-1.1` 
says that pkg-A depends on it

May I use ``force'' to deinstall oldest version... or I must keep all the tree 
for old dependant pkgs to work fine?


- -- 

CBuH. CG[CX] XVyGYjau 479001600(at)mail.ru, ICQ#70929413
GnuPG(PGP) public key is: http://www.vinnied.narod.ru/pubkey.asc
http://www.vinnied.narod.ru


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.3 (FreeBSD)

iD8DBQFAVDHj5Cj3gqxcdCoRAmkHAJ98qonTiTmmzYG+Bpy9l/13QjzWSACcDn0Z
PqYeKG2aZlUdo82MOUz+InU=
=4SDB
-END PGP SIGNATURE-

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


Re: (nevermind) sis ethernet card hangs with "Applying short cable fix"

2004-03-14 Thread Tom McLaughlin
Okay, nevermind...  At some point this evening my router farted out and
stopped serving up DHCP.  Installed and happy now.  :)

Tom

On Sun, 2004-03-14 at 03:03, Tom McLaughlin wrote:
> Hi all, I'm trying to start running -CURRENT on a spare machine of mine
> but I'm having problems with my Netgear FA311 (sis) ethernet card. 
> During the install it hung while trying to dhcp so I ctrl-c'ed figuring
> it was a problem with the installer.  When I boot though it hangs with:
> 
> sis0: Applying short cable fix (reg=f6)
> 
> I have to ctrl-c in order to finish the boot process.  I've tried 5.2
> and 5.2.1 on the machine.  Both have the same problem.  I did some
> googling and found mention of this same problem before and there was a
> change committed to sys/pci/if_sis.c for this problem but it doesn't
> seem to have fully corrected it.  Below is a portion of the dmesg and
> attached is the entire dmesg.  Thanks.
> 
> Tom
> 
> dmesg:
> 
> pci0:  at device 7.4 (no driver attached)
> sis0:  port 0xec00-0xecff mem
> 0xd800-0xd8000fff irq 11 at device 11.0 on pci0
> sis0: Silicon Revision: DP83815D
> sis0: Ethernet address: 00:09:5b:19:d3:ec
> miibus0:  on sis0
> ukphy0:  on miibus0
> ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
> 
> sis0: Applying short cable fix (reg=f6)
> 
> __
> ___
> [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: NVIDIA or ATI

2004-03-14 Thread Alastair G. Hogge
On Friday, 12 March 2004 03:50, Kenneth Culver wrote:
> Well, ATI probably won't ever release FreeBSD drivers. I've been in
> contact with
> a couple of ATI employees, and the most I've been able to get is that one
> guy at ATI might write some drivers in his spare time... if ATI will let
> him release them.
Just recently I read somewhere that there were a couple of guys working on 
porting the ATI Linux FireGL drivers to FreeBSD. Apparently they hang out in 
#ati on irc.freenode.org. I dropped by there and was unable to find out who 
they were, but they do show up.

Also on OSNews or Rage3D some time ago there was talk of an ATI employee (I 
think) who was having problems with the FreeBSD kernel module development of 
the FireGL driver.

Lets hope something comes from all of this.

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


The FreeBSD Diary: 2004-02-22 - 2004-03-13

2004-03-14 Thread Dan Langille
The FreeBSD Diary contains a large number of practical 
examples and how-to guides.  This message is posted weekly
to [EMAIL PROTECTED] with the aim of letting people
know what's available on the website.  Before you post a question
here it might be a good idea to first search the mailing list 
archives  
and/or The FreeBSD Diary . 


-- 
Dan Langille
BSDCan - http://www.BSDCan.org/ - BSD Conference

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