Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Jun 1998 14:40:54 -0700 (PDT)
From:      dwhite@resnet.uoregon.ed
To:        freebsd-gnats-submit@FreeBSD.ORG
Subject:   docs/7083: More FAQ updates
Message-ID:  <199806262140.OAA10416@hub.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         7083
>Category:       docs
>Synopsis:       More FAQ updates
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-doc
>State:          open
>Quarter:
>Keywords:
>Date-Required:
>Class:          doc-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jun 26 14:50:01 PDT 1998
>Last-Modified:
>Originator:     Doug White
>Organization:
UO ResNet
>Release:        
>Environment:
>Description:
More FAQ changes are below.  They are unidiffs split by file -- hope
this helps committing them.

Logs for the files:
admin.sgml:  Add section on amd.

applications.sgml:  Add section on installing FrontPage.

hardware.sgml:  Added sections on CAM, Plug & Play modems, and serial
consoles.

install.sgml:  Added section on why not to remove sc0.

preface.sgml:  Updated versions graph to reflect current reality.

x.sgml:  Added sections on missing Imake.tmpl and how to reverse
the mouse buttons.


Index: admin.sgml
===================================================================
RCS file: /usr/local/cvs/doc/FAQ/admin.sgml,v
retrieving revision 1.5
diff -u -r1.5 admin.sgml
--- admin.sgml  1998/05/27 05:29:25     1.5
+++ admin.sgml  1998/06/26 21:26:32
@@ -821,6 +821,78 @@
     <tt>/etc/rc.conf</tt> to load this keymap explicitly for the change to
     take effect.  Of course if you are using an alternate keymap for your
     country, you should edit that one instead.
+
+  <sect1>
+   <heading>How do I set up <tt/amd/ to automatically mount devices?
+   </heading>
+
+    <p><url url="http://www.freebsd.org/cgi/man.cgi?amd" name="amd"> is a daemon that 
+    can automatically mount disks when they are accessed.
+    Placing removable devices like CDROMs and floppies simplifies their use, since
+    they don't have to be explicitly dismounted before removal.</p>
+
+    <p>The <tt/amd/ configuration file, called a map, is in /etc/amd.map by default.  <tt/amd/
+    is enabled in /etc/rc.conf.  <tt/amd/ maps are powerful, but are complex and not well documented
.</p>
+
+    <p>To set up <tt/amd/:
+    <enum>
+    <item>Modify /etc/fstab and change the mountpoints for the devices you want automounted so
+    they are mounted under /mnt.  For example, change the /cdrom mountpoint to /mnt/cdrom.
+    <item>Create directory /a. 
+    <item>Modify /etc/rc.conf and set the following:
+    <verb>
+    amd_enable="YES
+    amd_flags="-c 1800 -k i386 -l syslog /a /etc/amd.map"
+    </verb>
+    <item>Insert the following map, provided by Scott Mitchell 
+    &lt;<url url="mailto:scott@dcs.qmw.ac.uk" name="scott@dcs.qmw.ac.uk">&gt;:
+
+    <verb>
+    /defaults  type:=host;fs:=${autodir}/${rhost};rhost:=${key}
+    *          opts:=rw,grpid,resvport,nfsv2
+
+    cdrom      type:=program;\
+               fs:=/mnt/cdrom;\
+               mount:="/sbin/mount mount /mnt/cdrom";\
+               unmount:="/sbin/umount umount /mnt/cdrom"
+
+    floppy     type:=program;\
+               fs:=/mnt/floppy\
+               mount:="/sbin/mount mount /mnt/floppy";\
+               unmount:="/sbin/umount umount /mnt/floppy"
+
+    msdos      type:=program;\
+               fs:=/mnt/msdos;\
+               mount:="/sbin/mount_msdos mount_msdos /mnt/msdos";\
+               unmount:="/sbin/umount umount /mnt/msdos"
+</verb>
+
+   <item>If desired, symlink /a/cdrom to /cdrom.
+   <item>Reboot the system or start <tt/amd/ manually.
+   </enum>+ </p>
+   <p>Now to access filesystems served by amd, just access them under /a, ie
+   <tt>cd /a/cdrom</tt> will cause the CDROM to be mounted.  After approximately
+   five minutes, the CD will be automatically unmounted.  If you want to unmount
+   a filesystem early, use the command <tt>amq -u /a/cdrom</tt> to unmount it.</p>
+
+  <p>Although more complex, <tt/amd/ can be set up to automatically mount
+  NFS volumes.</p>
+
+   </sect1>
+
+   <sect1>
+   <heading>su's complaining about "kerberos not in root's ACL." What's up?
+   </heading>
+ 
+   <p>At some point you installed the kerberos distribution from the install set.
+   You can run su with the -k option to quiet the message.  If you want to fix it permanently,
+   though, you'll need to reinstall the bin distribution (and the des distribution if you
+   installed it previously and want your passwords to work).
+   </p>
+
+   <p>Kerberos is a distributed authentication system.
+   </p>
 
   </sect>

Index: applications.sgml
===================================================================
RCS file: /usr/local/cvs/doc/FAQ/applications.sgml,v
retrieving revision 1.3
diff -u -r1.3 applications.sgml
--- applications.sgml   1998/04/27 16:13:58     1.3
+++ applications.sgml   1998/06/26 21:26:32

@@ -126,6 +126,17 @@
       <p>After installing the inn package or port, an excelent place to
       start is <url url="http://www.cis.ohio-state.edu/~barr/INN.html"
       name="Dave Barr's INN Page"> where you'll find the INN FAQ.
+
+    </sect1>
+    <sect1>
+    
+     <heading>What version of Microsoft FrontPage should I get?
+     </heading>
+     
+     <p>Use the Port, Luke!  A pre-patched version of Apache is available in the ports tree.
+     </p>
+    
+    </sect1> 
 
   </sect>

Index: hardware.sgml
===================================================================
RCS file: /usr/local/cvs/doc/FAQ/hardware.sgml,v
retrieving revision 1.7.2.1
diff -u -r1.7.2.1 hardware.sgml
--- hardware.sgml       1998/06/26 18:57:36     1.7.2.1
+++ hardware.sgml       1998/06/26 21:34:06
@@ -1,4 +1,4 @@
-<!-- $Id: hardware.sgml,v 1.7.2.1 1998/06/26 18:57:36 dwhite Exp $ -->
+<!-- $Id: hardware.sgml,v 1.7 1998/06/18 10:07:09 jkoshy Exp $ -->
 <!-- The FreeBSD Documentation Project -->
 
   <sect>
@@ -334,5 +334,56 @@
          name="http://cesdis.gsfc.nasa.gov/linux/drivers/vortex.html#micron">;
        </sect2>
     </sect1>
+
+    <sect1>
+    <heading>I have a newer Adaptec controller and FreeBSD can't find it.
+    </heading>
+
+    <p>The newer AIC789x series Adaptec chips are supported under the CAM SCSI
+    framework making it's debut in 3.0. Patches against 3.0-CURRENT and 2.2-STABLE
+    are in <url url="ftp://ftp.freebsd.org/pub/FreeBSD/cam/" name="ftp://ftp.freebsd.org/pub/FreeBSD/cam/">.
+    A CAM-enhanced boot floppy is available at <url url="http://www.freebsd.org/~abial/cam-boot/"
+    name="http://www.freebsd.org/~abial/cam-boot/">.  In both cases read the README before
+    beginning. </p>
+
+   </sect1>
+
+   <sect1>
+   <heading>I have an internal Plug & Play modem and FreeBSD can't find it.
+   </heading>
+
+   <p>You will need to add the modem's PnP ID to the PnP ID list in the serial driver.
+   To enable Plug & Play support, compile a new kernel with <tt/controller pnp0/ in 
+   the configuration file, then reboot the system.  The kernel will print the PnP IDs
+   of all the devices it finds.  Copy the PnP ID from the modem to the table in 
+   <tt>/sys/i386/isa/sio.c</tt>, at about line 1200.  Look for the string "SUP1310" 
+   in the structure "siopnp_ids[]" to 
+   find the table.  Build the kernel again, install, reboot, and your modem should be found.</p>
+
+   <p>You may have to manually configure the PnP devices using the `pnp' command in the 
+   boot-time configuration with a command like
+   <verb>
+   pnp 1 0 enable os irq0 3 drq0 0 port0 0x2f8
+   </verb>
+   to make the modem show.</p>
+
+   </sect1>
+
+   <sect1>
+   <heading>How do I get the boot: prompt to show on the serial console?
+   </heading>
+  
+   <p><enum>
+   <item>Build a kernel with <tt/options COMCONSOLE/.
+   <item>Create /boot.config and place <tt/-P/ as the only text in the file.
+   <item>Unplug the keyboard from the system.
+   </enum></p>
+
+   <p>See <tt>/usr/src/sys/i386/boot/biosboot/README.serial</tt> for information.</p>
+
+   </sect1>
+
   </sect>
+
+  

Index: install.sgml
===================================================================
RCS file: /usr/local/cvs/doc/FAQ/install.sgml,v
retrieving revision 1.2.2.1
diff -u -r1.2.2.1 install.sgml
--- install.sgml        1998/06/26 18:58:02     1.2.2.1
+++ install.sgml        1998/06/26 21:34:06
@@ -1,4 +1,4 @@
-<!-- $Id: install.sgml,v 1.2.2.1 1998/06/26 18:58:02 dwhite Exp $ -->
+<!-- $Id: install.sgml,v 1.2 1998/05/19 01:45:17 jkh Exp $ -->
 <!-- The FreeBSD Documentation Project -->
 
   <sect>
@@ -459,6 +459,17 @@
     The boot floppy can get confused by the drives.
     After the system is installed you can reconnect the drive.  Hopefully
     this will be fixed in a later release.
+
+   </sect1>
+
+   <sect1>
+   <heading>After configuring the devices and the kernel finishes booting, the screen freezes.
+   </heading>
+
+   <p>You may have removed `sc0', the system console.  Don't remove it, even if it
+   shows a conflict with the psm0 mouse driver; this is normal.  </p>
+
+   </sect1>
 
   </sect>
Index: preface.sgml
===================================================================
RCS file: /usr/local/cvs/doc/FAQ/preface.sgml,v
retrieving revision 1.12
diff -u -r1.12 preface.sgml
--- preface.sgml        1998/06/05 03:53:37     1.12
+++ preface.sgml        1998/06/26 21:34:06
@@ -180,14 +180,14 @@
                    |
                    |
                    |  [2.2-stable]
-  *BRANCH*      2.2.1 -> 2.2.2-RELEASE -> 2.2.5-RELEASE -> ...
-                   |       (Mar 1997)      (Oct 1997)
+  *BRANCH*      2.2.1 -> 2.2.2-RELEASE -> 2.2.5 -> 2.2.6 -> 2.2.7
+                   |       (Mar 1997)   (Oct 97)  (Apr 98)  (Jul 98) 
                    |
                    |
                 3.0-SNAPs  (started Q1 1997)
                    |
                    |
-              3.0.0-RELEASE (Q1 1998)
+              3.0.0-RELEASE (Oct 1998)
                    |
                   \|/
                    +
Index: x.sgml
===================================================================
RCS file: /usr/local/cvs/doc/FAQ/x.sgml,v
retrieving revision 1.2
diff -u -r1.2 x.sgml
--- x.sgml      1998/02/01 23:02:37     1.2
+++ x.sgml      1998/06/26 21:34:06
@@ -343,5 +343,23 @@
       <p>See the previous section for another possible cause of mouse
       problems.
 
+   <sect1>
+    <heading>When building an X app, <tt/imake/ can't find <tt/Imake.tmpl/.  Where is it?
+    </heading>
+
+    <p>Imake.tmpl is part of the Imake package, a standard X application building tool.  
+    Imake.tmpl, as well as several header files that are required to build X apps, 
+    is contained in the X prog distribution. You can install this from sysinstall or
+    manually from the X distribution files. </p>
+
+  </sect1> 
+
+  <sect1>
+   <heading>How do I reverse the mouse buttons?
+   </heading>
+ 
+   <p>Run the command <tt/ xmodmap -e "pointer = 3 2 1"/ from your .xinitrc or .xsession.
+   </p>
+  </sect1>
   </sect>

>How-To-Repeat:

>Fix:

>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-doc" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199806262140.OAA10416>