home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / os / linux / 23254 < prev    next >
Encoding:
Text File  |  1993-01-08  |  964 b   |  31 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!enterpoop.mit.edu!bloom-picayune.mit.edu!daemon
  3. From: shap@halifax.syncomas.com
  4. Subject: Problem with linux-0.99.2.tar.Z
  5. Message-ID: <1993Jan8.193052.4264@athena.mit.edu>
  6. Sender: daemon@athena.mit.edu (Mr Background)
  7. Reply-To: shap@halifax.syncomas.com
  8. Organization: The Internet
  9. Date: Fri, 8 Jan 1993 19:30:52 GMT
  10. Lines: 19
  11.  
  12. The permissions and ownerships of the source files in this image came
  13. out mangled when I unpacked the file.  One symptom was that nothing
  14. could compile, because they couldn't read linux/types.h (yes, I had
  15. the symlinks fixed).
  16.  
  17. To avoid this problem, here is what to do when you untar the image:
  18.  
  19. 1. Untar the image as root.  Use the 'o' option to tar:
  20.  
  21.     cd /usr/src
  22.     tar xzvof linux-0.99.2.tar.Z)
  23.  
  24. 2. Then run the following commands to fix the file permissions:
  25.  
  26.     find /usr/src/linux -type d -exec chmod 755 {} \;
  27.     find /usr/src/linux -type f -exec chmod go+r {} \;
  28.     sync
  29.  
  30. That should do it.
  31.