Re: anyone uses fsck_y_enable=YES ?

2003-07-14 Thread Steve Coile
an unstable filesystem and won't be able to use it safely. If you answer yes, the contents may be wrong, but the filesystem itself will be stable and usable. Thoughts? -- Steve Coile ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo

Re: Attn: sed(1) regular expression gurus

2003-07-15 Thread Steve Coile
\}*\)\{3\}\)\]$/ipaddr:\1/ # discard if no valid hostname or IP address /\(^host:\| ipaddr:\)/!d # if valid IP address, discard anything else s/^.* ipaddr:// # if valid hostname, discard anything else s/^host:\([^ ]*\).*$/\1/ -- Steve Coile Systems Administrator Nando Media ph: 919-861-1200 fax

RE: shell scripting while if string length != 0

2003-08-01 Thread Steve Coile
included in your original posting included commands that include shell special characters, such as the pipe (|). Without the eval command, those characters would not be treated the way you appear to want them treated (as special characters). -- Steve Coile Systems Administrator Nando Media ph

Re: converting %20 to a space in directory names

2003-08-14 Thread Steve Coile
/%20/ /g'` ( set -x; mv ${old} ${new} ) done -- Steve Coile ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: passwd

2003-06-06 Thread Steve Coile
to the acceptable executables. You might also want to review the files that the program is trying to open. In your zeal, you might have inadvertently changed the permissions on a data file. You can find these using the output from strace, too: grep -w 'f?open' /tmp/passwd.strace -- Steve Coile

Re: How to tailor installation set?

2003-06-13 Thread Steve Coile
install what will be used. I'd like a clean way to remove a component--for instance development tools, or X, or printing support--from the system without breaking any dependencies. -- Steve Coile Systems Administrator Nando Media ph: 919-861-1200 fax: 919-861-1300 e-mail: [EMAIL PROTECTED] http

truss man doesn't show *anything*

2003-06-16 Thread Steve Coile
I've just installed a new software package that includes manual pages. When I try to read the pages with man -M path page, I'm told the manual page doesn't exist. When I use truss man -M path page, truss generates *NO* output. Is that normal? -- Steve Coile Systems Administrator Nando Media ph

Re: ssh keepalives

2003-07-02 Thread Steve Coile
these connections get dropped? -- Steve Coile ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]