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

  1. Path: sparky!uunet!dtix!darwin.sura.net!zaphod.mps.ohio-state.edu!moe.ksu.ksu.edu!ux1.cso.uiuc.edu!m.cs.uiuc.edu!dante!najem
  2. From: najem@dante.cs.uiuc.edu (Ziad Najem)
  3. Newsgroups: comp.os.linux
  4. Subject: Re: Clue?
  5. Message-ID: <1992Sep3.003401.15081@m.cs.uiuc.edu>
  6. Date: 3 Sep 92 00:34:01 GMT
  7. References: <MedHI8O00WBLM7_V8v@andrew.cmu.edu>
  8. Sender: news@m.cs.uiuc.edu (News Database (admin-Mike Schwager))
  9. Organization: University of Illinois, Dept. of Comp. Sci., Urbana, IL
  10. Lines: 51
  11.  
  12. David Reeve Sward <dsa3+@andrew.cmu.edu> writes:
  13.  
  14. >Psst!  Buddy, can you spare a clue?
  15.  
  16. >A couple Linux-newbie(tm) questions:
  17.  
  18. >2) Just how do you move stuff from DOS to Linux via rawrite -> tar?  I
  19. >grabbed tcsh.tar.Z from tsx, uncompressed it in DOS, rawrote it to a
  20. >floppy, fired up Linux (thanks BootLinux & Boot.Sys!) and ran
  21.  
  22. No need to uncompress it in DOS, you can use compress, zcat or GNU tar
  23. can do it. 
  24.  
  25. >tar -tvf /dev/fd0H1440
  26.  
  27. >It spat out the verbose file listing as (I assumed) it put the files on
  28. >the HD. But!  There were no additional files on the HD.  df reported no
  29. >used/free changes.  What am I doing wrong here?
  30.  
  31. the -t is to get the file listing and this is exactly what it did. use
  32. -x to extract the files. So you can use, 
  33.  
  34.  $ tar -xvf /dev/fd0H1440 
  35.  
  36. or if the archive is still compressed and you're using GNU tar, use:
  37.  
  38.  $ tar -xzvf /dev/fd0H1440 
  39.  
  40. Also, since linux now has autodetecting disk type, you can simply use:
  41.  
  42.  $ tar -xzvf /def/fd0
  43.  
  44.  
  45. >[ok, maybe not just a couple of questions]
  46.  
  47. >3) Is there a Common Lisp implementation for Linux?
  48.  
  49. Yes there is,  it is in beta testing and you can get it from the
  50. author whom I forgot his name but is recorded in the project registry
  51. list that gets posted periodicaly to this news goup. 
  52.  
  53. >4) mtools.  Where can I find docs for mtools?  (DOS is on C, Linux is on
  54. >D with 3 partitions - 18M /, 63M /usr & 10M swap).
  55.  
  56. I got mine from the MCC distribution (0.95).
  57.  
  58. >Thanks!
  59.  
  60.  
  61.  - Ziad
  62.    najem@cs.uiuc.edu
  63.