Need syntax to change the rights ......

2003-11-22 Thread shrikant
Hi there , I have a group secret i want to remove all the RWX permissions for this group for all the folders in home directory and only keep RWX permission for his home directory . Can any body sujjest the syntax . Shri ___ [EMAIL

Mozilla 1.5 on FreeBSD 4.9 problems.

2003-11-22 Thread Yaron Zabary
Hi all, I sent this letter to freebsd-mozilla, with no lock, so I am trying here. I am compiling from sources on a newly installed FreeBSD 4.9 with the following commmands: setenv GTK_CONFIG /usr/X11R6/bin/gtk12-config setenv LIBIDL_CONFIG /usr/local/bin/libIDL-config-2 ./configure

Re: About setup FreeBSD 5.1 RELEASE to Sony notebook PCG-R505GCK

2003-11-22 Thread toor
On 21 Nov 2003 09:06:31 -0500 Lowell Gilbert [EMAIL PROTECTED] wrote: toor [EMAIL PROTECTED] writes: When I begin setup I see next message: eisa0: EISA bus on motherboard eisa0: unknown card [EMAIL PROTECTED] (0x0808) at slot 1 Fatal trap 9: general protection fault while in kernel mode

Re: tcp wrappers getaddrinfo

2003-11-22 Thread Antoine Jacoutot
Selon Lowell Gilbert [EMAIL PROTECTED]: Have you modified the rule at line 23 of /etc/hosts.allow? Normally, it's ALL : ALL : allow which as far as I recall, never does any hostname lookups at all. No, I never touched this line. this is why I'm asking some help. Thanks. Antoine

Re: Mozilla 1.5 on FreeBSD 4.9 problems.

2003-11-22 Thread Joe Marcus Clarke
On Sat, 2003-11-22 at 03:26, Yaron Zabary wrote: Hi all, I sent this letter to freebsd-mozilla, with no lock, so I am trying here. I am compiling from sources on a newly installed FreeBSD 4.9 with the following commmands: setenv GTK_CONFIG /usr/X11R6/bin/gtk12-config setenv

FBSD 5.1 and 4.8 sharing the same /home (and /var) possible?

2003-11-22 Thread Stefan A. Deutscher
Hi folks, I have a 5.1R install working and would like to keep a fall-back 4.8R on my system as well. From both, I want to be able to use the same /home, /scratch, and, possibly, /var or at least /var/mail to avoid duplication of mail. To be nice on my disks, I also ponder sharing swap space

Re: Need syntax to change the rights ......

2003-11-22 Thread Odhiambo Washington
* [EMAIL PROTECTED] [EMAIL PROTECTED] [20031122 10:10]: wrote: Hi there , I have a group secret i want to remove all the RWX permissions for this group for all the folders in home directory and only keep RWX permission for his home directory . Can any body sujjest the syntax . I

Perl configuration

2003-11-22 Thread Odhiambo Washington
I decided that I did not want perl 5.8.1 directory hanging around on my box, so I hosed the directories referring to it. That did not look quite suicidal though, since I though thet everything is configurable. Now the only thing I'd like is to change the perl configuration - I don't want any

Prototype system

2003-11-22 Thread Odhiambo Washington
Hi People, I have built a FreeBSD 5.1-REL box with all the stuff I want. Now I need to use this box as a prototype to create several other boxes. I am thinking about how to go about this. What I'd like to achieve is a situation where I make CD (which is a copy of this box, with all the apps) and

LONG - partition data on device hda is unreadable

2003-11-22 Thread ico
$SUBJECT is what Fedora Linux thought about my hd after install of FreeBSD 5.1. (freebsd)fdisk shows: Windows on ad0s1 ,NTFS, 4G Linux on ad0s2 ext2(actually ext3), 6G FreeBSD on ad0s3, 6G extended, ads04, rest of windows 3G First i installed windows, than linux(Fedora). ads03 prepared for

Re: Perl configuration

2003-11-22 Thread Matthew Seaman
On Sat, Nov 22, 2003 at 12:46:26PM +0300, Odhiambo Washington wrote: Where is the file to modify so that I can point to 5.8.2 and not 5.8.1 ? That would be /etc/make.conf -- the PERL_VER and PERL_VERSION variables ultimately control this behaviour. Set these correctly in /etc/make.conf by

Re: Static IP and fully qualified domain names

2003-11-22 Thread Cordula's Web
My ISP was so nice to give me a domain name (pukruppa.net) and assign it statically to an IP (213.146.114.24). [So now everybody in the world can telnet pukruppa.net and crack my private machine :-) ] From reading manuals one should think, that now I could give my machines names like

newbie: use CR in RE?

2003-11-22 Thread Zhang Weiwu
Hello. Just want to know how to use special character in Regular Expression. I wish to remove all the carrier returns from a text file, I can use: tr -d \r text_file modified_text_file But if I do: sed -i s/\r//g text_file it actually removes all the character r from the file. This is also a

newbie: to pipe the result of a program as commandline parameter for another.

2003-11-22 Thread Zhang Weiwu
Hello. I just checkouted a big program. What I want to do is to remove all CVS/ folders from the hierarchy. There might be other ways to do so (give me a hint?). What I can think of is to run find(1) to find out all CVS folders, and pass them as parameters of rm(1), but I don't know how to do

Modem problems

2003-11-22 Thread Shaun Alcaster (ECI Support)
We have a lease line directly connected to out internet survice provider. Both have 56k lease line modems, but can only connect at about 33.3Kbs how do we change this. Regards shaun ___ [EMAIL PROTECTED] mailing list

Re: newbie: use CR in RE?

2003-11-22 Thread Jez Hancock
On Sat, Nov 22, 2003 at 09:00:26PM +0800, Zhang Weiwu wrote: snip This is also a problem in vi(1). Besides CR I wish to manipulate tabstops and line-feeds with RE too. I'm not sure about vi, but in vim this works: :%s/\n// to remove all newlines throughout a document. To substitute all

Re: newbie: to pipe the result of a program as commandline parameter for another.

2003-11-22 Thread Jez Hancock
On Sat, Nov 22, 2003 at 09:02:41PM +0800, Zhang Weiwu wrote: Hello. I just checkouted a big program. What I want to do is to remove all CVS/ folders from the hierarchy. There might be other ways to do so (give me a hint?). What I can think of is to run find(1) to find out all CVS folders,

Re: newbie: to pipe the result of a program as commandlineparameter for another.

2003-11-22 Thread Herculano de Lima Einloft Neto
You can use: find [whatever] -exec rm -rf '{}' \; or find [whatever] | xargs rm -rf Usually, the answer to your question would be: use xargs or put the second command between apostrophes. Something like: vi `which mozilla` I think if you use rm -rf `find [whatever]` it might work.. DON'T

Re: Samba question

2003-11-22 Thread Ilya Varlashkin
On Sun, Nov 16, 2003 at 09:08:12PM -0500, Marty Landman wrote: No. Now I did rebooted. Same symptom, i.e. windoz explorer tells me \\Swamisalami is not accessible. ... The account is not authorized to log in from this station. Martin, following line in your smb.conf should solve this

name server on alternate port

2003-11-22 Thread Mark
Hello, If I want to install a second name server, on a different listening port, how can I get the resolver libraries to consult the other port too? I want to add rbldsnd, next to bind, for a large zone. Thanks, - Mark ___ [EMAIL PROTECTED] mailing

Re: login question

2003-11-22 Thread Lowell Gilbert
Vulpes Velox [EMAIL PROTECTED] writes: On 21 Nov 2003 22:22:38 -0500 Lowell Gilbert [EMAIL PROTECTED] wrote: This is exactly what Kerberos is good at. It's harder to administer than NIS, but doesn't require as much trust of the client machines. For yet another set of security profiles,

Re: About setup FreeBSD 5.1 RELEASE to Sony notebook PCG-R505GCK

2003-11-22 Thread Lowell Gilbert
toor [EMAIL PROTECTED] writes: On 21 Nov 2003 09:06:31 -0500 Lowell Gilbert [EMAIL PROTECTED] wrote: toor [EMAIL PROTECTED] writes: When I begin setup I see next message: eisa0: EISA bus on motherboard eisa0: unknown card [EMAIL PROTECTED] (0x0808) at slot 1 Fatal trap 9:

Re: name server on alternate port

2003-11-22 Thread Matthew Seaman
On Sat, Nov 22, 2003 at 01:55:01PM +, Mark wrote: If I want to install a second name server, on a different listening port, how can I get the resolver libraries to consult the other port too? I want to add rbldsnd, next to bind, for a large zone. I don't think that's really going to work.

Re: Mozilla 1.5 on FreeBSD 4.9 problems.

2003-11-22 Thread Yaron Zabary
On Sat, 22 Nov 2003, Joe Marcus Clarke wrote: Hints anyone ? cd /usr/ports/www/mozilla make install clean The port is of Mozilla 1.4, not 1.5: tester# cd /usr/ports/www/mozilla tester# grep 1.4 * Makefile:# $FreeBSD: ports/www/mozilla/Makefile,v 1.144 2003/09/06 18:34:37 marcus Exp $

RE: About setup FreeBSD 5.1 RELEASE to Sony notebook PCG-R505GCK

2003-11-22 Thread fbsd_user
Well I will come right out and say it. Yes you should be using version 4.9, it's the current production version. All of the 5.x versions are used by the development team to test code changes to the basic system and your problem may be caused because of this testing environment. The odds are in

Re: Mozilla 1.5 on FreeBSD 4.9 problems.

2003-11-22 Thread Lowell Gilbert
Yaron Zabary [EMAIL PROTECTED] writes: On Sat, 22 Nov 2003, Joe Marcus Clarke wrote: Hints anyone ? cd /usr/ports/www/mozilla make install clean The port is of Mozilla 1.4, not 1.5: tester# cd /usr/ports/www/mozilla tester# grep 1.4 * Makefile:# $FreeBSD:

Re: a good way to save a keystroke?

2003-11-22 Thread Marty Landman
At 09:11 PM 11/21/2003, Kevin D. Kinsey, DaleCo, S.P. wrote: Which shell are you using? C shell. Maybe I should switch to Bash? I mostly ssh in using my user acct and then have at least one screen session where I su to root. However to the extent that I'd like to write shell scripts that are

Re: 200gb hard drive?

2003-11-22 Thread Sergey 'DoubleF' Zaharchenko
On Fri, 21 Nov 2003 15:05:51 -0500 Robert Huff [EMAIL PROTECTED] probably wrote: Sergey 'DoubleF' Zaharchenko writes: A better question for the list: did something change in df sometime in 5.x? Because the numbers in the three columns used to match (modulo rounding error); if

Re: newbie: use CR in RE?

2003-11-22 Thread Jerry McAllister
Hello. Just want to know how to use special character in Regular Expression. I wish to remove all the carrier returns from a text file, I can use: tr -d \r text_file modified_text_file But if I do: sed -i s/\r//g text_file it actually removes all the character r from the file. This

Re: a good way to save a keystroke?

2003-11-22 Thread Luke Kearney
On Sat, 22 Nov 2003 09:44:30 -0500 Marty Landman [EMAIL PROTECTED] granted us these pearls of wisdom: At 09:11 PM 11/21/2003, Kevin D. Kinsey, DaleCo, S.P. wrote: Which shell are you using? C shell. Maybe I should switch to Bash? I mostly ssh in using my user acct and then have at least

Re: FBSD 5.1 and 4.8 sharing the same /home (and /var) possible?

2003-11-22 Thread Lowell Gilbert
Stefan A. Deutscher [EMAIL PROTECTED] writes: (a) Is it OK to have the slices to be shared on ufs2, or will 4.8R wreck havoc when accessing those (or, better: just not be able to see them) 4.x won't understand UFS2. (b) If ufs2 is not OK for use on both systems, are there any

Re: Create Boot Disk Like mkbootdisk in Linux ....

2003-11-22 Thread Lowell Gilbert
Vahric MUHTARYAN [EMAIL PROTECTED] writes: I'm looking for How can I create boot disk in FreeBSD . I'm not talking about installation FreeBSD ... I mean When some problems occur I want to boot FreeBSD from floppy disk ... like Linux mkbootdisk ... At this moment I checked

Re: Installation : CD drive not detected

2003-11-22 Thread Lowell Gilbert
[EMAIL PROTECTED] writes: I am trying to install the FreeBSD 4.8 Release on a i386 m/c. I have burnt the iso images onto a CD. My problem The m/c boots uncompressing the kernel and takes me thru the menu. While choosing the installation Media I get the message No CD/DVD devices found

Re: DMA issue caused crash and file system inconsistency

2003-11-22 Thread Lowell Gilbert
Bert Lagaisse [EMAIL PROTECTED] writes: I did some stupid newbie things: I have 2 cdroms, a plextor 8/4/32A and a 50x aopen cdrom. I added the line hw.ata.atapi_dma=1 to loader.conf The plextor now uses WDMA2 The aopen cdrom still uses PIO4 (dma worked under wintendo 2000) After I

Re: newbie: use CR in RE?

2003-11-22 Thread Scott W
Jerry McAllister wrote: Hello. Just want to know how to use special character in Regular Expression. I wish to remove all the carrier returns from a text file, I can use: tr -d \r text_file modified_text_file But if I do: sed -i s/\r//g text_file it actually removes all the character r from

Re: newbie: use CR in RE?

2003-11-22 Thread Robin Schoonover
On Sat, 22 Nov 2003 10:44:30 -0500, Scott W [EMAIL PROTECTED] wrote: Jerry McAllister wrote: So why not just use tr? \t should get tabs, as you noted \r gets CRs I don't know linefeed off hand, but wouldn't be surprised if it was \l. It follows the usual conventions. There are more

Re: newbie: to pipe the result of a program as commandlineparameter for another.

2003-11-22 Thread Scott W
Herculano de Lima Einloft Neto wrote: You can use: find [whatever] -exec rm -rf '{}' \; or find [whatever] | xargs rm -rf Usually, the answer to your question would be: use xargs or put the second command between apostrophes. Something like: vi `which mozilla` I think if you use rm -rf

Cover graphics question

2003-11-22 Thread rpladers
Good afternoon, I have just prepared to try again FreeBSD OS, it was some 5 years ago when I had this OS in use. So I downloaded the 4.8 version disks. The question may seem weird, sorry. Where can I get some commonly used (recommended) CD case/disk label images? I like to have my CDs to be

splash screensaver

2003-11-22 Thread Dru
Does anyone know the cure for this behaviour? Splash screen loads nicely and acts as screensaver as it should. However, when I press a key to exit the screensaver, the contents of all of my terminals look like they're running by at a high rate of speed. The only way to get my terminal back is to

Re: newbie: to pipe the result of a program as commandlineparameter for another.

2003-11-22 Thread Richard Coleman
Zhang Weiwu wrote: Hello. I just checkouted a big program. What I want to do is to remove all CVS/ folders from the hierarchy. There might be other ways to do so (give me a hint?). What I can think of is to run find(1) to find out all CVS folders, and pass them as parameters of rm(1), but I

Re: splash screensaver

2003-11-22 Thread Nathan Kinkade
On Sat, Nov 22, 2003 at 12:32:00PM -0500, Dru wrote: Does anyone know the cure for this behaviour? Splash screen loads nicely and acts as screensaver as it should. However, when I press a key to exit the screensaver, the contents of all of my terminals look like they're running by at a

Re: FreeBSD, FHS, and /mnt/cdrom

2003-11-22 Thread Jeff Penn
On Fri, Nov 21, 2003 at 10:07:31AM -0500, Jerry McAllister wrote: Less Good: - All mount points in /mnt (e.g. /mnt/cdrom, /mnt/camera, /mnt/windows/C) - breaks FreeBSD standard for an empty /mnt /mnts ___ [EMAIL PROTECTED] mailing list

Re: 200gb hard drive?

2003-11-22 Thread Robert Huff
Sergey 'DoubleF' Zaharchenko writes: BTW what's the point in printing 3 numbers that match? If they match, then one of them is redundant:) And if they don't? Robert Huff ___ [EMAIL PROTECTED] mailing

FBSD web site man lookup ipfilter

2003-11-22 Thread fbsd_user
IPFILTER is built into the base release of FBSD. I can do (man ipf) or (man ipnat) on a fresh install of FBSD and get the manual info. But when I go to http://www.freebsd.org/cgi/man.cgi to look up the manuals on ipfilter they are all missing. Is there some good reason for this, or has it just

apache mod_ssl and cloned interfaces

2003-11-22 Thread John
Hi freebsd-users I need to run several SSL servers out of one box. That box has one NIC. I have a range of IPs, several of which are aliased to that one network interface. I need to know whether I can run each of those SSL servers on the same port (443). i hope that I can because each server is

Re: apache mod_ssl and cloned interfaces

2003-11-22 Thread Rus Foster
On Sat, 22 Nov 2003, John wrote: Hi freebsd-users I need to run several SSL servers out of one box. That box has one NIC. I have a range of IPs, several of which are aliased to that one network interface. I need to know whether I can run each of those SSL servers on the same port (443). i

Re: FBSD web site man lookup ipfilter

2003-11-22 Thread Kevin D. Kinsey, DaleCo, S.P.
fbsd_user wrote: IPFILTER is built into the base release of FBSD. I can do (man ipf) or (man ipnat) on a fresh install of FBSD and get the manual info. But when I go to http://www.freebsd.org/cgi/man.cgi to look up the manuals on ipfilter they are all missing. Is there some good reason for this,

Re: Cover graphics question

2003-11-22 Thread Peter Ulrich Kruppa
On Sat, 22 Nov 2003 [EMAIL PROTECTED] wrote: Good afternoon, I have just prepared to try again FreeBSD OS, it was some 5 years ago when I had this OS in use. So I downloaded the 4.8 version disks. The question may seem weird, sorry. Where can I get some commonly used (recommended) CD

Re: FreeBSD, FHS, and /mnt/cdrom

2003-11-22 Thread Charles Swiger
On Nov 21, 2003, at 9:41 AM, Frank Murphy wrote: The folks at the Filesystem Hierarchy Standard (FHS) are discussing (again) where directories for recurring temporary mount points should go. Recurring temporary mount points are for things like cdroms, floppies, and digital cameras as well as HD

getting an ls -l from a dump type file system backup...

2003-11-22 Thread Bruce Campbell
I use dump/restore for file system backups, and I'd like to be able to get a detailed ls -l type listing from the backup. (ie something with dates/times/sizes, unlike what restore -t or ls in restore -i does) Does anyone know of any utilities to do this ? After each backup, I'd like to be able

Re: newbie: to pipe the result of a program as commandline parameter for another.

2003-11-22 Thread Charles Swiger
On Nov 22, 2003, at 8:02 AM, Zhang Weiwu wrote: Hello. I just checkouted a big program. What I want to do is to remove all CVS/ folders from the hierarchy. There might be other ways to do so (give me a hint?). Do a cvs export instead: export Prepare copies of a set of source files for

pidentd troubles

2003-11-22 Thread Ben Dover
I was running pidentd server in fbsd 5.1 and ran into a problem. On reboot thousands of identd processes would be created. This caused an enormous problem as you can imagine. I ended up doing a pkg_delete of pidentd. Has anyone had this happen? I need a reliable ident server; can anyone

(Semi)hot swap IDE

2003-11-22 Thread Toomas Aas
Hello! I'm looking for a cheap solution to back up a FreeBSD 4.8 machine. Cheap meaning that tape drives are out of question. Even external FireWire drives are deemed a bit too expensive by the folks for whom I'm doing this research. This leaves one option I can think of - standard IDE drive

driver for webcam?

2003-11-22 Thread chailu2000
Hi all, I ran into a wall when I tried to set up the Intel webcam on my freebsd 4.9 STABLE box. I googled and googled, not much information came up. The webcam I have is a USB Intel CS330 create and share. usbdevs -v shows 'power 500mA, config 1, product 0x0401(0x0401), vendor 0x0733(0x0733),

Re: driver for webcam?

2003-11-22 Thread Nils Vogels
[EMAIL PROTECTED] wrote: 1) if I can use the linux driver on freebsd Not without modification, the kernels are *very* different 2) is there a freebsd driver for it http://www.freebsd.org/releases/4.9R/hardware-i386.html#AEN1838 3) is it possible to port the linux driver to freebsd and

Re: splash screensaver

2003-11-22 Thread Dru
On Sat, 22 Nov 2003, Nathan Kinkade wrote: On Sat, Nov 22, 2003 at 12:32:00PM -0500, Dru wrote: Does anyone know the cure for this behaviour? Splash screen loads nicely and acts as screensaver as it should. However, when I press a key to exit the screensaver, the contents of all of

Re: (Semi)hot swap IDE

2003-11-22 Thread Scott W
Toomas Aas wrote: Hello! I'm looking for a cheap solution to back up a FreeBSD 4.8 machine. Cheap meaning that tape drives are out of question. Even external FireWire drives are deemed a bit too expensive by the folks for whom I'm doing this research. This leaves one option I can think of -

Re: driver for webcam?

2003-11-22 Thread Dirk-Willem van Gulik
On Sat, 22 Nov 2003 [EMAIL PROTECTED] wrote: The webcam I have is a USB Intel CS330 create and share. usbdevs -v shows 'power 500mA, config 1, product 0x0401(0x0401), vendor 0x0733(0x0733), rev 0.90', so I guess my kernel setting is correct. This is a SPCA561 camera. See this page for

Re: a good way to save a keystroke?

2003-11-22 Thread Marty Landman
At 10:39 AM 11/22/2003, Scott W wrote: I know there are some people that refuse to use anything other than csh/tcsh, but when it comes down to writing shell scripts going out to customers, or part of any software, you write for sh.or if Linux only, for bash. Why can't we all just get

Opera reg number

2003-11-22 Thread Valerian Galeru
How can i get the opera registration number? Of course without buying it : __ Do you Yahoo!? Free Pop-Up Blocker - Get it now http://companion.yahoo.com/ ___ [EMAIL PROTECTED] mailing list

Re: Opera reg number

2003-11-22 Thread Rus Foster
On Sat, 22 Nov 2003, Valerian Galeru wrote: How can i get the opera registration number? Of course without buying it : Well what I suggest you do is call up Opera and ask them for it. I'm sure they would be more than willing to supply it Rus -- w: http://www.jvds.com | Dedicated

Re: Opera reg number

2003-11-22 Thread Kris Kennaway
On Sat, Nov 22, 2003 at 02:29:39PM -0800, Valerian Galeru wrote: How can i get the opera registration number? Of course without buying it : Go to this site: ftp://2130706433/pub/juarez/FreeBSD and look in that directory. This FTP site is very busy, so if you can't get in straight

Re: Opera reg number

2003-11-22 Thread Rus Foster
On Sat, 22 Nov 2003, Kris Kennaway wrote: ftp://2130706433/pub/juarez/FreeBSD and look in that directory. This FTP site is very busy, so if you can't get in straight away then just keep trying! I've setup a mirror site at ftp://warez.jvds.com as well for you just incase Rgds Rus -- w:

Monitoring a file?

2003-11-22 Thread Cordula's Web
Hello list, maybe someone knows the answer for the following problem already? Summary: What is the canonical way to monitor accesses to a file? Problem description: A file, let's say, /path/to/a/file, is being modified by an unknown process P(u) at random

Re: SCO going after BSD???

2003-11-22 Thread Kris Kirby
On Wed, 19 Nov 2003, Kris Kennaway wrote: There's no possible sense in which this can be true. Plain text attachments do not create a security or virus risk. Give Microsoft some time -- Kris Kirby, KE4AHR [EMAIL PROTECTED] TGIFreeBSD IM: 'KrisBSD' BIG BROTHER IS

Re: Monitoring a file?

2003-11-22 Thread Scott W
Cordula's Web wrote: Hello list, maybe someone knows the answer for the following problem already? Summary: What is the canonical way to monitor accesses to a file? Problem description: A file, let's say, /path/to/a/file, is being modified by an unknown process

PHP Auth

2003-11-22 Thread Grant Peel
Hi all, Two questions I have been reading as much as I can find on paswwd, master.passwd, shadow, crypt etc etc etc. and am Still stuck on one point. If the encrypted password is normally aslways different, due to 'salt', then how does one get a match?? Does anyone have posession of

Re: Opera reg number

2003-11-22 Thread Alex de Kruijff
On Sat, Nov 22, 2003 at 02:29:39PM -0800, Valerian Galeru wrote: How can i get the opera registration number? Of course without buying it : Your asking me to break the law. -- Alex Articles based on solutions that I use: http://www.kruijff.org/alex/index.php?dir=docs/FreeBSD/

Re: PHP Auth

2003-11-22 Thread Alex de Kruijff
On Sat, Nov 22, 2003 at 06:20:00PM -0500, Grant Peel wrote: Hi all, Two questions I have been reading as much as I can find on paswwd, master.passwd, shadow, crypt etc etc etc. and am Still stuck on one point. If the encrypted password is normally aslways different, due to 'salt',

Re: FBSD web site man lookup ipfilter

2003-11-22 Thread horio shoichi
On Sat, 22 Nov 2003 13:49:33 -0500 fbsd_user [EMAIL PROTECTED] wrote: IPFILTER is built into the base release of FBSD. I can do (man ipf) or (man ipnat) on a fresh install of FBSD and get the manual info. But when I go to http://www.freebsd.org/cgi/man.cgi to look up the manuals on ipfilter

Bad power down in 5.0, missing xl0

2003-11-22 Thread Chris Neustrup
I've got a Thinkpad T20, running 5.0 early release. It is a dual boot with Win98 on the other partition. It seemed pretty strong, but I have some problems: 1. The power down sequence seems to hose some part of the bios or whatever. When I shutdown and then reboot to Win98 it thinks it has

Re: Monitoring a file?

2003-11-22 Thread Marty Landman
At 05:58 PM 11/22/2003, Cordula's Web wrote: A file, let's say, /path/to/a/file, is being modified by an unknown process P(u) at random times. Unfortunately, the name of the program ran by P(u) is unknown. Being a newbie I'm going against my better judgement by offering my thoughts. The

Re: Perl configuration

2003-11-22 Thread paul beard
On Nov 22, 2003, at 3:11 AM, Matthew Seaman wrote: However, the values in make.conf only have an effect at compile time, so if you want all of your perl modules to live under /usr/local/lib/perl5/{,site_perl/}5.8.2 then you're going to have to reinstall all of the ports that put files into

Re: Monitoring a file?

2003-11-22 Thread Greg 'groggy' Lehey
On Saturday, 22 November 2003 at 23:58:10 +0100, Cordula's Web wrote: Hello list, maybe someone knows the answer for the following problem already? Summary: What is the canonical way to monitor accesses to a file? Problem description: A file, let's

Re: FreeBSD, FHS, and /mnt/cdrom

2003-11-22 Thread Tillman Hodgson
On Sat, Nov 22, 2003 at 02:18:30PM -0500, Charles Swiger wrote: Obviously, a standard that says place mount points anywhere you want isn't very useful. But if you did come up with a standard, who should follow it and what would they gain? I don't want to speak for the FHS, but I do want to

Re: Samba question

2003-11-22 Thread Marty Landman
At 08:47 AM 11/22/2003, Ilya Varlashkin wrote: Martin, following line in your smb.conf should solve this problem: encrypt passwords = yes Ilya, I almost forgot to reply... sorry. I may not have mentioned on earlier postings that smbd was not running as I eventually discovered - only nmbd. I

Re: Bad power down in 5.0, missing xl0

2003-11-22 Thread Kris Kennaway
On Sat, Nov 22, 2003 at 04:03:21PM -0500, Chris Neustrup wrote: I've got a Thinkpad T20, running 5.0 early release. It is a dual boot with Win98 on the other partition. It seemed pretty strong, but I have some problems: 1. The power down sequence seems to hose some part of the bios or

Re: Monitoring a file?

2003-11-22 Thread Robert Huff
Problem description: A file, let's say, /path/to/a/file, is being modified by an unknown process P(u) at random times. Unfortunately, the name of the program ran by P(u) is unknown. The goal is to catch P(u) red-handed, just the moment it accesses

make vs. pkg_add

2003-11-22 Thread Patrick Burnett
Hi all, Not that I expect to be swayed one way or the other here, but... I'm curious to see what other users think of using either the 'make' commands or 'pkg_add' for compiling and installing software. I'm admittedly a bit of a newbie, and I've tried it both ways, after CVSup-ing the source

Re: make vs. pkg_add

2003-11-22 Thread paul beard
On Nov 22, 2003, at 8:00 PM, Patrick Burnett wrote: I'm probably doing something wrong such that 'make' isn't playing nice, but I'd still appreciate some further insight from more experienced users. Perhaps you could explain more about what difficulties you're having. I have used both pkg_add

Re: 200gb hard drive?

2003-11-22 Thread Sergey 'DoubleF' Zaharchenko
On Sat, 22 Nov 2003 13:47:40 -0500 Robert Huff [EMAIL PROTECTED] probably wrote: Sergey 'DoubleF' Zaharchenko writes: BTW what's the point in printing 3 numbers that match? If they match, then one of them is redundant:) And if they don't? Then they all carry some

Re: Opera reg number

2003-11-22 Thread Ion-Mihai Tetcu
On Sat, 22 Nov 2003 14:29:39 -0800 (PST) Valerian Galeru [EMAIL PROTECTED] wrote: How can i get the opera registration number? Of course without buying it : #1 This kind of question shuldn't be asked on this list. #2 I don't see why. Upgrade to the 7.2x end choose Google text ads, if

Re: Opera reg number

2003-11-22 Thread Peter Ulrich Kruppa
On Sun, 23 Nov 2003, Alex de Kruijff wrote: On Sat, Nov 22, 2003 at 02:29:39PM -0800, Valerian Galeru wrote: How can i get the opera registration number? Of course without buying it : Your asking me to break the law. Yes, and in such such an evident way. I would have preferred to

Re: Opera reg number

2003-11-22 Thread Ion-Mihai Tetcu
On Sat, 22 Nov 2003 22:39:40 + (GMT) Rus Foster [EMAIL PROTECTED] wrote: On Sat, 22 Nov 2003, Kris Kennaway wrote: ftp://2130706433/pub/juarez/FreeBSD and look in that directory. This FTP site is very busy, so if you can't get in straight away then just keep trying! I've

Re: PHP Auth

2003-11-22 Thread Sergey Sysoev
Hello Grant, GP Two questions GP I have been reading as much as I can find on paswwd, master.passwd, GP shadow, crypt etc etc etc. and am Still stuck on one point. If the encrypted GP password is normally aslways different, due to 'salt', then how does one get GP a match?? GP Does

still about Newbie USB Printer Problem

2003-11-22 Thread Zhang Weiwu
Hello. I read the previous post Newbie USB Printer Problem and its follow-ups, well, I am more newbie than him:). Now I wish to connect my Canon S400SP printer with my Thinkpad 600X notebook (running 5.1-RELEASE), since I never printed anything with FreeBSD before, 1. Do I need a specific