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

  1. Path: sparky!uunet!cs.utexas.edu!zaphod.mps.ohio-state.edu!moe.ksu.ksu.edu!unmvax!uservx.plk.af.mil!simonich
  2. From: simonich@uservx.plk.af.mil
  3. Newsgroups: comp.os.linux
  4. Subject: Re: mount & head problems
  5. Message-ID: <1992Aug23.211924.35788@uservx.plk.af.mil>
  6. Date: 23 Aug 92 21:19:24 GMT
  7. References: <675@svcs1.UUCP>
  8. Organization: Phillips Laboratory - Kirtland AFB
  9. Lines: 28
  10.  
  11. In article <675@svcs1.UUCP>, slix@svcs1.UUCP (Bill Miller) writes:
  12. > Hi Linuxers,
  13. > I've noticed two problems so far with the .97 pl1 root disk.
  14. >  
  15. > First, the mount -t msdos command doesn't seem to work.  I've tried to
  16. > mount -t /dev/fd1H1440 /mnt as others have suggested (using fd1, or b: 
  17. > drive which is a 1.44 3.5" drive) and I always get "mnt busy" errors.
  18. >  
  19. > Second, when I pipe to head I get a "Broken pipe" message.  I tried:
  20. >  
  21. >    ls -al | head -20
  22. >  
  23. >    it displayed the first 20 lines, and then gave the Broken pipe message.
  24. > :w
  25. > :q
  26. Actually the mount -t msdos command works very well.  The correct
  27. command is
  28.         mount -t msdos /dev/fd0 /mnt
  29.                 ^^^^^^^
  30. in my case.
  31.  
  32. I don't use the forces format dev's very often (autodetect always
  33. gets it right).
  34.  
  35. I'm new to unix, but isn't the ls etc. pipe doing exactly what you
  36. asked?  I.E. printing the first 20 lines of a file (head -20) where
  37. file is (ls -al).  In other words the first lines of the directory? 
  38.     xD
  39.