Re: adduser bikeshed

2001-04-22 Thread gerald stoller
From: Alfred Perlstein [EMAIL PROTECTED] To: Adrian Chadd [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Subject: Re: adduser bikeshed Date: Fri, 20 Apr 2001 05:29:31 -0700 * Adrian Chadd [EMAIL PROTECTED] [010420 05:22] wrote: http://www.freebsd.org/~adrian/adduser.patch It adds an option

Installing X windows along with FreeBSD 4.2

2001-01-18 Thread gerald stoller
I recently installed FreeBSD 4.2 and tried to install X windows along with it, but somehow or other that didn't work. Stuff in the Xf86336 directory of the FreeBSD 4.2 CDROM did get put onto my hard-drive in the XF86336 directory, but I don't know if everything that should

Re: Mounting a CDROM in freeBSD 4.2

2001-01-16 Thread gerald stoller
I'd like to thank every one who responded, and all those who were willing to respond but saw that they would be repeating information already sent. It turns out that the designation of the CDROM drive changed between versions 3.3 and 4.2 , and the only one I knew was the

Mounting a CDROM in freeBSD 4.2

2001-01-15 Thread gerald stoller
Please send the response directly back to me, in addition to sending it to hackers , as the volume of mail to hackers is so great that I could very easily miss the response if it were only sent there. I just installed freeBSD 4.2 and found that I couldn't mount a CDROM even

Re: Mounting a CDROM in freeBSD 4.2

2001-01-15 Thread gerald stoller
From: Soren Schmidt [EMAIL PROTECTED] To: [EMAIL PROTECTED] (gerald stoller) CC: [EMAIL PROTECTED] Subject: Re: Mounting a CDROM in freeBSD 4.2 Date: Mon, 15 Jan 2001 19:50:59 +0100 (CET) It seems gerald stoller wrote: Please send the response directly back to me, in addition

FreeBSD.ORG subscription lists

2001-01-15 Thread gerald stoller
Please send the response directly back to me, in addition to sending it to hackers , as the volume of mail to hackers is so great that I could very easily miss the response if it were only sent there. Once (when I had the time) I went to the FreeBSD.ORG website and found a

HELP: Disk/file-systems are loused up

2000-09-14 Thread gerald stoller
I started up my (version 3.3 ) freeBSD , and the first thing that I did was mount a MSDOS diskette and did a find on it (with -name "*hd*" ). I got three lines of output stating something like 'date error; month (14) out of range', then a long pause (during which I typed

RE: HELP: Disk/file-systems are loused up

2000-09-14 Thread gerald stoller
Koster, K.J. writes Subject: RE: HELP: Disk/file-systems are loused up Date: Thu, 14 Sep 2000 10:16:38 +0100 Hello Gerald, I started up my (version 3.3 ) freeBSD , and the first thing that I did was mount a MSDOS diskette and did a find on it (with -name "*hd*" ). I

Re: Passing values between shell-variables

2000-06-25 Thread gerald stoller
Dan Nelson [EMAIL PROTECTED] resonded on Thu, 22 Jun 2000 17:42:37 -0500with In the last episode (Jun 22), gerald stoller said: I want to take an integer value from one shell-variable and pass a modified value to another shell-variable. First I tried setint_v (after using local

Korn shell STDOUT

2000-06-20 Thread gerald stoller
I am trying to learn how the (Korn) shell is organized, so I put some printf statements in many places. They give a lot of output on STDOUT , so in order to be able to read it, I pipe it to a tee command which stores the output. I have found that the output pauses when the file

signals and traps

2000-06-20 Thread gerald stoller
I would like to play with the signals and traps of the Korn shell ; could someone please direct me quickly to the relevant areas? I expect that they are trap.c , sigact.[ch] , main.c , and siglist.* . I found runtraps (in the shell function of main.c ) and it calls runtrap

hashing a symbol before looking into a hashed table

2000-05-22 Thread gerald stoller
I've been looking at the source code for FreeBSD 3.3 and i noticed that a table-lookUp is called and given the name to look-up and also its hashed value. Why is the hashed value supplied, why should the caller even be aware of it (this is strictly internal to the table-lookUp)? Even if