home *** CD-ROM | disk | FTP | other *** search
/ Freelog 2 / Freelog002.iso / Linux / Slackware / FAQ.TXT < prev    next >
Text File  |  1999-02-08  |  26KB  |  653 lines

  1.  
  2. These are questions people ask me quite often. Hopefully now that they're
  3. answered here that won't be the case. :^)
  4.  
  5. -----
  6.  
  7. Q: After installation, my ethernet, CDROM drive, and/or other hardware that I
  8.    thought Linux supported doesn't work.  Why?
  9.  
  10. A: Probably because the kernel you're running doesn't contain the support. 
  11.    To fix the problem, you'll have to install a kernel that does.  There might
  12.    a suitable kernel in the /kernels directory on the CDROM, or you can compile
  13.    a custom kernel for your machine.  This isn't too difficult -- see the 
  14.    instructions below about compiling a new kernel.  
  15.  
  16.    You can also try loading the device driver in the form of a kernel module.
  17.    There are drivers for nearly all the hardware supported by Linux in the
  18.    /modules directory on the CDROM, or in your /lib/modules directory if you've
  19.    installed the modules.tgz package.  Take a look at your /etc/rc.d/rc.modules
  20.    file for examples of how to load these.
  21.  
  22. -----
  23.  
  24. Q: Is it possible to install this operating system without a floppy drive?
  25.  
  26. A: Yes!  And it's not much harder, either.
  27.  
  28. First, you'll need a DOS partition.  Install Loadlin in a directory such
  29. as C:\LOADLIN (the Loadlin package is available as a ZIP file in the kernels/
  30. directory).  Once you have Loadlin installed, you'll need to copy a Linux
  31. kernel and a Slackware rootdisk image into the C:\LOADLIN directory.  We'll
  32. describe this process next:
  33.  
  34. You can find many kernels in the kernels/ directory on the CD.  The 
  35. subdirectories have the same names as the Slackware bootdisks, and contain
  36. the kernel used to make that bootdisk.  You might want to refer to the README
  37. files in a bootdisks directory (such as bootdsks.144/) to decide which kernel 
  38. will work best for your system.  Once you've picked a kernel (zImage or 
  39. bzImage), copy it into the C:\LOADLIN directory.  Next, select a rootdisk image
  40. from the rootdsks/ directory, such as the color rootdisk image (color.gz).
  41. Copy the file into your Loadlin directory.
  42.  
  43. Now, to start the installation process you'll need to boot DOS.  If you run
  44. Windows95, restarting the computer in MS-DOS mode is an option on the Start
  45. button menu.  (NOTE:  If you miss the good-old-days when you got DOS 
  46. automatically when you booted your computer and had to type "win" to actually
  47. start Windows, it's easy to fix Windows95 to work that way again.  Edit the 
  48. file C:\MSDOS.SYS and change where it says BootGUI=1 to read BootGUI=0)
  49.  
  50. Once you have DOS started, change into the Loadlin directory and use a command
  51. like this one to start the installation rootdisk:
  52.  
  53. loadlin zimage rw root=/dev/ram initrd=color.gz load_ramdisk=1
  54.  
  55. Usually the installation copies the kernel from the bootdisk, so when you use
  56. this method you'll have to skip that menu, as well as the bootdisk creation
  57. menu.  It's also advisable to skip the LILO menu, since the /vmlinuz will
  58. probably not be the one you want.  You best bet is to use Loadlin, since it's
  59. gotten you this far.  Just edit the LINUX.BAT file to point to your root Linux
  60. partition.
  61.  
  62. -----
  63.  
  64. Q: When I installed Slackware, the system could see my CD-ROM just fine.  But,
  65.    when I try to boot using LILO or the bootdisk the system doesn't find the
  66.    CD-ROM drive anymore!  How can I fix this?
  67.  
  68. A: The problem is probably that you used a bootkernel disk with support for your
  69.    CD-ROM drive, but didn't install a kernel with support.  
  70.  
  71.    If you're ready to try compiling a kernel, you can easily solve this problem
  72.    by compiling a custom kernel (see the section about compiling a Linux kernel)
  73.    or, you can load the CDROM driver in the form of a kernel module.  You can
  74.    do this by editing the /etc/rc.d/rc.modules file to load the module for your
  75.    CDROM drive the next time you boot.  
  76.  
  77.    Here's the section of the file that loads CDROM drive modules:
  78.  
  79.  # These modules add CD-ROM drive support.  Most of these drivers will probe
  80.  # for the I/O address and IRQ of the drive automatically if the parameters
  81.  # to configure them are omitted. Typically the I/O address will be specified
  82.  # in hexadecimal, e.g.: cm206=0x300,11
  83.  #
  84.  #/sbin/modprobe aztcd aztcd=<I/O address>
  85.  #/sbin/modprobe cdu31a cdu31a_port=<I/O address> cdu31a_irq=<interrupt>
  86.  #/sbin/modprobe cm206 cm206=<I/O address>,<IRQ>
  87.  #/sbin/modprobe gscd gscd=<I/O address>
  88.  #/sbin/modprobe mcd mcd=<I/O address>,<IRQ>
  89.  #/sbin/modprobe mcdx mcdx=<I/O address>,<IRQ>
  90.  #/sbin/modprobe optcd optcd=<I/O address>
  91.  # Below, this last number is "1" for SoundBlaster Pro, or "0" for a clone.
  92.  #/sbin/modprobe sbpcd sbpcd=<I/O address>,1
  93.  #/sbin/modprobe sonycd535 sonycd535=<I/O address>
  94.  #/sbin/modprobe sjcd sjcd=<I/O address>
  95.  
  96.    To use one of these, edit out the '#' in front of the line for your CDROM
  97.    drive.  If you know the I/O address and/or IRQ for your board, fill it in on
  98.    the line.  For example, you might change the sbpcd line to look like this if
  99.    you've got a SoundBlaster CDROM at 0x300:
  100.  
  101. /sbin/modprobe sbpcd sbpcd=0x300,1
  102.  
  103.    If you need to access your CDROM drive so that you can get the modules
  104.    package installed, use the same bootkernel disk you installed the system 
  105.    with to get into your machine.  Use a command like this on the LILO prompt,
  106.    but replace the root device name with the one you used on your machine:
  107.  
  108.    mount root=/dev/hda1
  109.  
  110.    Once you're logged in, install the modules package:
  111.  
  112.    installpkg /cdrom/slakware/a*/modules.tgz
  113.  
  114. -----
  115.  
  116. Q: Why isn't my Sony CDU-31/33a detected by Linux anymore?  It used to work!
  117.  
  118. A: From the source code:
  119.  
  120.  + * WARNING -   All autoprobes have been removed from the driver.
  121.  + *             You MUST configure the CDU31A via a LILO config
  122.  + *             at boot time or in lilo.conf.  I have the
  123.  + *             following in my lilo.conf:
  124.  + *
  125.  + *                append="cdu31a=0x1f88,0,PAS"
  126.  + *
  127.  + *             The first number is the I/O base address of the
  128.  + *             card.  The second is the interrupt (0 means none).
  129.  + *             The third should be "PAS" if on a Pro-Audio
  130.  + *             spectrum, or nothing if on something else.
  131.  
  132. You can also use this option with Loadlin:
  133.  
  134. C:\LOADLIN\LOADLIN C:\LINUX\VMLINUZ root=/dev/hda1 cdu31a=0x1f88,0,PAS
  135.  
  136. Or, on the bootkernel LILO: prompt.  Examples:
  137.  
  138. LILO: ramdisk cdu31a=0x1f88,0,PAS
  139.  
  140. LILO: mount root=/dev/sda1 cdu31a=0x1f88,0,PAS ro
  141.  
  142. -----
  143.  
  144. Q: I can't get the kernel to see a CDROM connected to a Soundblaster 16 IDE!
  145.  
  146. A: First, be sure you're using the proper kernel -- the one needed in this
  147.    case is the IDE/ATAPI CDROM type, not the SBPCD type.  Then, if you still
  148.    have problems, use the secondary IDE channel (IRQ 15 0x170), and make sure
  149.    the drive is set as master (jumper in the back) and not as slave (a common
  150.    default).
  151.  
  152. -----
  153.  
  154. Q: I can't get the disks made by RAWRITE to boot!
  155.  
  156. A: First, check that you're using the right size image.  If you use an image
  157.    meant for a 1.44 MB floppy on a 1.2 MB floppy (or vice-versa) you'll likely
  158.    see the message "LI" and the boot process will hang.
  159.  
  160.    Another possibility is a BIOS problem -- a user has reported to me that
  161.    RAWRITE fails on his machine unless he first does "dir a:" on an MS-DOS
  162.    floppy.  Apparently this is caused by the BIOS improperly initializing
  163.    address 0000:0526 (number of sectors) to 11h instead of 12h.  Using "dir"
  164.    on the device fixes that value.  The affected machine in this case was using
  165.    "Mr. BIOS" from Unicore Software. 
  166.  
  167. -----
  168.  
  169. Q: I was able to install fine, but the installed system won't boot!
  170.  
  171. A: Slackware uses stripped down kernels to do the actual installation -- in
  172.    other words, the kernels don't have any more drivers than needed to control
  173.    only the device needed to complete the installation.  The kernels that are
  174.    installed to the system are more full featured, with more ethernet, mouse,
  175.    filesystem, and other drivers.  Sometimes this can lead to hangs at boot
  176.    time when the kernel misidentifies an piece of hardware that's unusual or
  177.    at a non-standard port/IRQ.
  178.  
  179.    When this happens, you need to try a different kernel.  First, use the
  180.    bootdisk that worked during installation to get your system started.  To
  181.    do this, boot the disk and enter something like this at the LILO prompt:
  182.  
  183.    mount root=/dev/sda2
  184.  
  185.    (if /dev/sda2 is your root Linux partition, otherwise use the appropriate
  186.    device name for your system)
  187.  
  188.    Once you've got the system running, install or compile a different kernel.
  189.    Try to include only the device drivers you need for your hardware.  
  190.  
  191.    Instructions on compiling the kernel can be found in your kernel source
  192.    directory (if you installed the kernel source, that is).  The kernel
  193.    source is usually found in /usr/src/linux.
  194.  
  195.    Briefly, this is the method for building a new kernel:
  196.  
  197.    cd /usr/src/linux
  198.    make config   (then answer the questions about what you need)
  199.    make dep ; make clean ; make zImage
  200.  
  201.    If the zImage is successfully built, see an answer below which explains
  202.    how to install it with LILO or Loadlin, or make a new bootdisk from it.
  203.    Once you've done that, you might want to clean up /usr/src/linux by cd'ing
  204.    into it and doing another 'make clean'.
  205.  
  206.    Good luck!  If you can handle this, you're well on your way to becoming a
  207.    Linux guru.
  208.  
  209. -----
  210.  
  211. Q: Why do I get "network unreachable" under Slackware?
  212.  
  213. A: There are a couple of possibilities. For most users, things work right out
  214.    of the box. However, if you're running into this problem here are two
  215.    workarounds you can try:
  216.  
  217.    1. Reverse the broadcast and netmask arguments (and their variables)
  218.       in the call to ifconfig in /etc/rc.d/rc.inet1. Make sure you are
  219.       not trying to route your own IP address - you shouldn't have to.
  220.  
  221.    2. Make sure /etc/networks is properly configured.
  222.  
  223.    3. You may want to try the 'netconfig' script.
  224.       It's not perfect, but does a pretty good job. 
  225.  
  226.    4. Make sure the kernel you're using supports your hardware.  Most of the
  227.       kernels provided with Slackware include a /boot/config file where you
  228.       can look up the compilation options.
  229.  
  230. -----
  231.  
  232. Q: Why the $%#@! isn't my UltraStor SCSI detected? It works under DOS!
  233.  
  234. A: Set the I/O address to 0x340 instead to 0x330.
  235.  
  236.    For any hardware that doesn't work, a good rule is to try playing around
  237.    with the IRQ and I/O settings on it to see what happens. If your system
  238.    is up and running and you're having problems with a CD-ROM or tape or
  239.    something like this, you can always look around for the driver source in
  240.    /usr/src/linux/drivers... really, it won't bite!  Often, the source 
  241.    contains important documentation, such as the default IRQ settings for
  242.    that type of device, and the major number for the entry in /dev. Also,
  243.    try other bootkernels and see if that helps.
  244.  
  245. -----
  246.  
  247. Q: If the setup menus for NFS installation don't work, how can I setup the
  248.    network manually before starting setup?
  249.  
  250. A: Once your Linux machine is listed in the hosts /etc/exports (if the whole
  251.    network is not already), you might need to do these things before running
  252.    setup.  This is usually only needed if the NFS server is on a different
  253.    subnet than your Linux machine:
  254.  
  255.  # Setup the loopback device:
  256.  ifconfig lo 127.0.0.1
  257.  route add -net 127.0.0.0
  258.  
  259.  # Setup the network:
  260.  ifconfig eth0 1.2.3.4        # 1.2.3.4 is the ip number of my machine.
  261.  route add -net 1.2.3.0
  262.  route add default gw 1.2.3.1 # in this example, the ip address of our NFS 
  263.                              # server is 1.2.31.4 and belongs to a different
  264.                              # network.
  265.  
  266. -----
  267.  
  268. Q: My IBM Thinkpad won't load the rootdisk into a ramdisk correctly, so I 
  269.    can't install Linux.  What can I do?
  270.  
  271. A: The disk-changed sensor on some older Thinkpads works a little differently.
  272.    This can be worked around -- just specify "floppy=thinkpad" when booting:
  273.  
  274.    boot:  ramdisk floppy=thinkpad
  275.  
  276.    ... on the bootdisk's LILO prompt.
  277.  
  278. -----
  279.  
  280. Q: My large (> 1/2 gig) IDE drive reports more than 16 heads, and as a 
  281.    result Linux won't install on it. What can I do?
  282.  
  283. A: See the file /docs/mini/Large-IDE for instructions on how to make it work.
  284.    (Thanks to Bob DiMarco for forwarding this to me, and Patrick LoPresti for
  285.    compiling the information in the first place)
  286.  
  287.    Note that newer kernels (> 1.1.40) will do this translation for you 
  288.    automatically, and thus make the workaround unnecessary.
  289.  
  290. -----
  291.  
  292. Q: How do I make a Slackware bootdisk with this new kernel I made?
  293.  
  294. A: OK, well you grab an existing one (preferably one of the larger ones
  295.    like "scsinet.s"), put it on a floppy, and do this:
  296.  
  297.    mount /dev/fd0 /mnt (this mounts it)
  298.    cat zImage > /mnt/vmlinuz (put the new kernel in place)
  299.    rdev -R /mnt/vmlinuz 0    (mount read-write)
  300.    rdev /mnt/vmlinuz /dev/fd0u1440   (use that drive, or /dev/fd0h1200)
  301.    rdev -r /mnt/vmlinuz 49152  (enable the ramdisk)
  302.    lilo -r /mnt  (reinstall lilo)
  303.    umount /mnt   (that's it! you're done! :^)
  304.  
  305. -----
  306.  
  307. Q: My backspace is acting strangely under X?  How can I fix it?
  308.  
  309. A: Well, I've never noticed a real problem, but I occasionally hear 
  310.    about this.  You might want to try adding this to your .Xmodmap in
  311.    /usr/X11/lib/X11/xinit or $HOME:
  312.  
  313. keycode 22 = BackSpace
  314.  
  315. -----
  316.  
  317. Q: I just built a new kernel. Now how to I go about replacing my existing
  318.    kernel with this new zImage file?
  319.  
  320. A: First, you must prepare the new kernel. If you're using UMSDOS, you'll want 
  321.    your system to boot read-write. Otherwise, you'll want it to boot read-only
  322.    so your filesystems can be safely checked. So, do this:
  323.  
  324.    For UMSDOS:
  325.       rdev -R zImage 0
  326.    For any other filesystem type:
  327.       rdev -R zImage 1
  328.  
  329.    Then, you'll need to set the root partition. For example, if your root 
  330.    Linux partition is /dev/hda2, you'd do this:
  331.  
  332.       rdev zImage /dev/hda2
  333.  
  334.    Then, you can set a video mode if you like. As an example, this sets normal
  335.    80x25 console mode:
  336.  
  337.       rdev -v zImage -1
  338.  
  339.    Other modes include:  -3 = Prompt, -2 = Extended VGA. You might need to 
  340.    remove a line in your /etc/lilo.conf that forces normal video if you use
  341.    LILO and wish to try an extended video mode.
  342.  
  343.    Next, you need to install the kernel. If you boot from a floppy disk, you
  344.    can simply stick a formatted floppy into your drive and write the zImage
  345.    to it like this:
  346.  
  347.    cat zImage > /dev/fd0
  348.  
  349.    If you use lilo, you should copy the zImage to where your lilo.conf expects
  350.    it to be and then reinstall lilo. This should work if you used Slackware's
  351.    liloconfig script to set up LILO. (this is the script setup uses)
  352.  
  353.    cp zImage /vmlinuz ; lilo
  354.   
  355.    You may wish to back up your existing /vmlinuz first.
  356.  
  357.    If you use Loadlin, copy the kernel to your DOS partition where Loadlin can
  358.    see it (if you use UMSDOS, you won't need to do this).  Then, start Linux
  359.    from DOS like this:  
  360.  
  361.      c:\loadlin\loadlin.exe c:\linux\vmlinuz root=/dev/hda2
  362.  
  363.    That should do it.
  364.    
  365. -----
  366.  
  367. Q: Why can't I cut and paste from elvis (vi) in an xterm?
  368.  
  369. A: Later versions of elvis use the mouse for cursor positioning instead. If
  370.    you want to cut and paste, hold the left shift key down while you use the
  371.    mouse.
  372.  
  373. -----
  374.  
  375. Q: Why doesn't my bus mouse work? The kernel, selection, the
  376.    X server and test-mouse all say "no such device."
  377.  
  378. A: The kernels distributed with Slackware don't have the drivers for
  379.    busmice compiled in. Last time I tried to include all of them there
  380.    were horrible driver conflicts -- better to leave them out if they
  381.    can't coexist.  Obviously, it's not feasible for me to provide 
  382.    versions of every precompiled kernel for each type of busmouse. I 
  383.    only have a 386. ;^)
  384.  
  385.    (I'm only kidding,  As of 4/98, I'm running a P233MMX)
  386.  
  387.    The solution is to load support for your mouse from a kernel module.
  388.    Edit /etc/rc.d/rc.modules and uncomment the line for your mouse:
  389.  
  390.    # Mouse support:
  391.    #/sbin/modprobe atixlmouse
  392.    #/sbin/modprobe busmouse
  393.    #/sbin/modprobe msbusmouse
  394.    #/sbin/modprobe psaux
  395.  
  396.    (To uncomment a line in a shell script, you use an editor to remove the
  397.    '#' from the start of the line)
  398.  
  399. -----
  400.  
  401. Q: I see my SoundBlaster/Panasonic CD-ROM detected at boot, but I can't
  402.    install from it or mount it. What's going on?
  403.  
  404. A. Try setting to drive's ID to 0. This is expected by the install disks.
  405.    There should be a jumper on the back of the drive that selects this --
  406.    just move it to the leftmost position.
  407.  
  408. -----
  409.  
  410. Q: I'm using UMSDOS and would like to use the same swapspace under Windows
  411.    and Linux. Can this be done?
  412.  
  413. A: If you want to share a Linux-UMSDOS swapfile with MS-Windows, you can
  414.    do the following:
  415.  
  416.    1. Create PERMANENT(!) swap file in MS-Windows with size NNNN kbytes.
  417.    2. In /etc/rc.d/rc.local add the following lines:
  418.  
  419.    rm -f /DOS/windows/spart.par  <--- Needed in order to suppress
  420.                                       Windows complain on next start!
  421.    mkswap /DOS/386spart.par NNNN
  422.    sync
  423.    swapon /DOS/386spart.par
  424.  
  425.    3.In /etc/rc.d/rc.0 add "swapoff" for this file.
  426.  
  427. -----
  428.  
  429. Q: What's the password for root on the install disk?
  430.  
  431. A: There isn't one. If you're asked for one, it usually means that you
  432.    don't have enough memory to install.
  433.  
  434.    To help work around this, look in your CMOS settings and make sure you don't
  435.    have any ROM shadowing enabled. ROM shadowing wastes memory and won't
  436.    improve the performance of Linux. Also, make sure you're using the smallest
  437.    bootkernel disk you can. For example, you don't need to use "scsinet" if
  438.    you're not installing to a SCSI drive via NFS. Use something small -- the
  439.    "bare" disk if you can get away with it. Some people mistakenly think they
  440.    need to use a bootkernel disk with network drivers if they plan to use
  441.    networking after installation. Not so! The drivers on the bootkernel disk
  442.    have no impact on what you can use *after* installation -- in almost all
  443.    cases you won't be running the same kernel on your installed system as
  444.    you used to install it.
  445.  
  446. -----
  447.  
  448. Q: How can I install and remove software now that the Slackware Linux 
  449.    distribution is installed on my machine?
  450.  
  451. A: To remove packages, type "pkgtool" and follow the prompts. Pkgtool will
  452.    also allow you to add packages that are in the current directory.
  453.  
  454.    The preferred way to install software is with the "setup" script.
  455.    When you do your initial installation, setup puts a copy of itself in your 
  456.    /sbin for future use. You can also add software to your machine using the 
  457.    boot/install disk, if you really want to. 
  458.  
  459.    When adding software to a running system via NFS, it is preferable to
  460.    mount the partition yourself and then use the 'install from a mounted
  461.    directory' feature of setup.
  462.  
  463.    There are also command line utilities that allow you to create, install,
  464.    and remove packages. For these, you should refer to the manpages:
  465.    installpkg(8), removepkg(8), makepkg(8), explodepkg(8). A simple example
  466.    of how you would install a package with installpkg:
  467.  
  468.    installpkg package.tgz
  469.  
  470. -----
  471.  
  472. Q.  How do I know what files setup/pkgtool/installpkg is putting where ?
  473.  
  474. A.  Look around in /var/adm/packages.
  475.     Similarly, you can find installation scripts for each package in 
  476.     /var/adm/scripts.
  477.  
  478. -----
  479.  
  480. Q: I set my partitions to "Linux native" but Slackware still won't detect
  481.    them! What can I do?
  482.  
  483. A: This problem is rare and I still don't know what causes it.
  484.  
  485.    [ Note that this is not the same problem that usually affects the IBM PS/1,
  486.    Thinkpad, and similar machines that do not detect the harddrive. If you've
  487.    got one of these machines, and fdisk is giving you problems, your answer is
  488.    still ahead :^) ]
  489.  
  490.    Here's a workaround you can use to install anyway:
  491.  
  492.    1. Start tty12 or tty144 using one of the bootkernel disks.
  493.    2. Make and format partitions for Linux.
  494.    3. Mount the target partitions under /mnt.
  495.    4. Type "setup -target_mounted"
  496.    5. Follow the rest of the instructions to install.
  497.    6. Type "vi /mnt/etc/fstab" and enter an appropriate fstab.
  498.       As an example, here's what mine contains:
  499.  
  500. /dev/hdb2   swap    swap   defaults 
  501. /dev/hda2   /       ext2   defaults
  502. /dev/hda3   /usr    xiafs  defaults 
  503. /dev/hda1   /dos    msdos  defaults 
  504. /dev/hdb1   /os2    msdos  defaults 
  505. none        /proc   proc   defaults
  506.  
  507.    To give you some more info about this file, the first field is the
  508.    partition to be mounted, the second is where it should be mounted, the
  509.    third is the filesystem type, and the last field is the options to use.
  510.    Unless you're a Linux wizard, just set this to "defaults".
  511.  
  512.    Other things to remember about this file:
  513.       - Make sure that you list the root partition before any other partitions
  514.         that are mounted beneath it.
  515.       - Add the /proc line, or "ps", "w", etc, won't work.
  516.       - It's a good idea to put a blank line at the end of the file, as I've
  517.         had reports that partitions listed on the last line might not be 
  518.         mounted.
  519.  
  520.    7. Once you've made and saved this file you can reboot with ctrl-alt-delete.
  521.  
  522. -----
  523.  
  524. Q: I have a (PS/1 || Valuepoint || Thinkpad), and can't install because fdisk
  525.    can't see my hard drive. How can I get around this?
  526.  
  527. A: You'll need to enter your drive parameters at the bootkernel prompt. You
  528.    can even specify the geometry for your second IDE drive by supplying a
  529.    second  hd= parameter right after the first one. 
  530.  
  531.    When you boot the bootkernel disk, you'll see more information about the
  532.    format used to pass your drive parameters to the kernel at the LILO prompt
  533.    and allow your drive to be recognized.
  534.  
  535.    You'll have to edit your lilo.conf file to add a similar hd= flag if you
  536.    want LILO to work. Add this as the TOP line in the file:
  537.  
  538.    append="hd=cyl,hds,secs"
  539.  
  540.    Where "cyl", "hds", and "secs" are the number of cylinders, sectors,
  541.    and heads on the drive.
  542.  
  543.    If you have two IDE drives, specify both drives (like this):
  544.  
  545.    append="hd=967,13,31 hd=944,14,40"
  546.  
  547. -----
  548.  
  549. Q: Why do my /etc/issue and /etc/motd keep resetting themselves at boot time?
  550.  
  551. A: The /etc/rc.d/rc.S resets them out every time you boot after figuring out
  552.    which kernel you're running -- otherwise the kernel version printed at login
  553.    might not stay current.
  554.  
  555.    If you want to write your own /etc/issue and /etc/motd, you need to comment
  556.    out that part of /etc/rc.d/rc.S.
  557.  
  558. -----
  559.  
  560. Q: Emacs dumps core, complains of a missing library, or lacks X11 support! Why?
  561.  
  562. A: The GNU Emacs series includes your choice of a version with X11 support, or
  563.    one without. Make sure you have the right binary for your machine. 
  564.  
  565.    The binary supporting X11 is installed as part of a package on the first 
  566.    disk that you'll need to install whether you want X11 support or not. If
  567.    you DO NOT want X11 support, install the package 'emac_nox.tgz' on the last
  568.    disk of the Emacs series.
  569.  
  570.    If you just install all of the disks, you don't get X11 support. It had to
  571.    be one way or the other, so if you're not paying attention when you install
  572.    at least this way it will run no matter what.
  573.  
  574. -----
  575.  
  576. Q: Why do my compiles sometimes die with 'signal 11: internal compiler error'?
  577.  
  578. A: This indicates a hardware problem in about 99% of the cases. It can usually
  579.    be fixed by increasing the number of wait states in the CMOS settings. It
  580.    can almost always be fixed by turning off the RAM cache, but this should be
  581.    your last resort since it will cause a noticeable slowdown.
  582.  
  583. -----
  584.  
  585. Q: How can I change (or get rid of) the color ls?
  586.  
  587. A: Read the man page, and check out the file /etc/DIR_COLORS. You can
  588.    configure the colors any way you like, or shut them off entirely. Also, you
  589.    can copy /etc/DIR_COLORS into your home directory as '.dir_colors' to 
  590.    override the global defaults on a user by user basis.
  591.  
  592. -----
  593.  
  594. Q: I start X with "openwin" and it works OK, but I can't switch virtual
  595.    consoles. Why?
  596.  
  597. A: On a Linux text screen, you switch virtual consoles with Alt-F1 through 
  598.    Alt-F8. Under XFree-86, you must use Ctrl-Alt-F1 through Ctrl-Alt-F8. 
  599.    Another useful 'secret' key combination is RightShift-PgUp/PgDown for
  600.    scrollback. (a random amount ranging from none to a few pages, depending
  601.    on the state of your video text buffer memory)
  602.  
  603. -----
  604.  
  605. Q: Why can't I use the new ghostscript with X?
  606.  
  607. A: Make sure you have gs_x11.tgz from disk XAP1 installed.
  608.  
  609. -----
  610.  
  611. Q: I can't get anything to work at all! What's the deal?
  612.  
  613. A: If you seem to suffer catastrophic failure (!), then check the file FILE_LIST
  614.    on ftp.cdrom.com in /pub/linux/slackware against the contents of your disks
  615.    and make sure you're not missing any files. 
  616.  
  617.    Also, I've noticed that most of the reports of kernel panics and system 
  618.    hangs have come from people with 4MB. If you're running into these types
  619.    of problems I'd suggest forking over the $$$ for 4 more meg. I have 8 MB of
  620.    RAM and never have crashes. (well, only when I really push my luck)
  621.    If you don't want to do that, then go through your /etc/rc.d/rc.* files and
  622.    get rid of any daemons you don't use, like crond, lpd, or selection.
  623.  
  624.    If you've got 4 MB and you're getting 'virtual memory exceeded in new'
  625.    warnings, make sure you set up and activate a swap partition before running
  626.    setup. If you're really hard up on memory, you can boot a rootdisk using
  627.    'editroot' instead of one of the usual boot kernels. This will mount the 
  628.    floppy in the root drive, and you'll have to install from the other drive
  629.    or from the hard drive. You will also not be able to create any kind of boot
  630.    disk, so you'll have to install LILO and take your chances. I only suggest
  631.    using this approach if a swapfile will not work.
  632.  
  633. -----
  634.  
  635. Q: How do I make a bootkernel disk that uses a custom kernel?
  636.  
  637. A: Look in the ./kernels subdirectory. You'll find complete instructions
  638.    on how to make them in there.
  639.  
  640. -----
  641.  
  642. Also - at ftp.gwdg.de:/pub/linux/install-mount/slack-info are some more
  643. networking hints.
  644.  
  645. In addition, the LDP people have put out an excellent set of manuals that I
  646. may include in a future Slackware release. These are available on
  647. sunsite.unc.edu in /pub/Linux/docs/LDP.
  648.  
  649. ---
  650. Patrick Volkerding
  651. volkerdi@mhd1.moorhead.msus.edu
  652. volkerdi@ftp.cdrom.com
  653.