home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / os / linux / 9364 < prev    next >
Encoding:
Internet Message Format  |  1992-08-30  |  2.6 KB

  1. Path: sparky!uunet!gatech!darwin.sura.net!Sirius.dfn.de!zrz.tu-berlin.de!news.netmbx.de!Germany.EU.net!mcsun!fuug!news.funet.fi!hydra!klaava!torvalds
  2. From: torvalds@klaava.Helsinki.FI (Linus Benedict Torvalds)
  3. Newsgroups: comp.os.linux
  4. Subject: Re: Beginners problems
  5. Message-ID: <1992Aug29.195511.23402@klaava.Helsinki.FI>
  6. Date: 29 Aug 92 19:55:11 GMT
  7. References: <1564@lysator.liu.se>
  8. Organization: University of Helsinki
  9. Lines: 57
  10.  
  11. In article <1564@lysator.liu.se> lien@lysator.liu.se (Jan Lien) writes:
  12. >Problems encountered with Linux 0.97 - help appreciated.
  13. >I have succesfully booted Linux on my pc, root system on hard drive.
  14. >However there are some serious problems, here listed in order of
  15. >percieved severity.
  16. >
  17. >- mtools does not recognize my G: and H: ms-dos logical drives on my
  18. >    extended partition.  I get the error ENOENT for these disks, but
  19. >    they are in the proper table, as I can use C-D-E-F disks.  Fdisk
  20. >    finds them as hda9 and hda10. 
  21. >  Is this an built in constraint in Linux?  I got error messages when
  22. >    I tried to use hda10 for a linux disk.
  23.  
  24. This is probably a limit in the rootdisks - I think the /dev/hdaX
  25. entries only go as far as /dev/hda8.  The fix is very simple: just
  26. create the needed special files with mknod:
  27.  
  28.   # mknod /dev/hda9 b 3 9
  29.   # mknod /dev/hda10 b 3 10
  30.  
  31. etc.  By doing a "ls -l /dev/hd*" you see the device numbers, and the
  32. setup should be pretty obvious when reading them. 
  33.  
  34. >- emacs over a serial port  (/dev/ttys1 or /dev/ttys2) writes in the
  35. >    mode line.  Is there an error in termcap (vt100 terminal), or is
  36. >    the number of lines set incorrectly?  If it is number of lines,
  37. >    where (and how) do I change them?
  38.  
  39. The problem is the default number of rows that linux uses: I have
  40. stupidly set the value to 25 instead of the normal 24 for a vt100
  41. terminal.  The fix should once more be very simple: do a
  42.  
  43.   # stty rows 24 columns 80
  44.  
  45. or
  46.  
  47.   # eval `resize`
  48.  
  49. on the line before staring up.
  50.  
  51. >- where do I find information on what all the options to a command
  52. >    does?  (I can find out that there are -abcdefgh... to a command,
  53. >    but what do they do?)
  54.  
  55. The man-pages for most GNU things are in the sources - for some binaries
  56. (like fsck) no man page is available, and you have to read the actual
  57. source files.
  58.  
  59. >- while logged in on a serial port (/dev/ttys1 or /dev/ttys2) and
  60. >    doing a cat or cp to /dev/tty, if I repeatedly press ctrl-C
  61. >    I get logged out.
  62.  
  63. This is usually a mark of a bad compile of the shell, but I haven't seen
  64. it (but I use my own port of most relatively simple things). Don't know
  65. of any simple fix.
  66.  
  67.         Linus
  68.