home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / readme next >
Text File  |  1995-10-10  |  722b  |  30 lines

  1.  
  2. This is the source used for Slackware 3.0.0.
  3.  
  4. To look for a particular bit of source (let's say for 'cp'), first you
  5. would look for the full path:
  6.  
  7. fuzzy:~# which cp
  8. /bin/cp
  9.  
  10. Then, you grep for the package it came from. Note that the leading '/'
  11. is removed:
  12.  
  13. fuzzy:~# grep bin/cp /var/adm/packages/*
  14. /var/adm/packages/bin:bin/cp
  15. /var/adm/packages/cpio:bin/cpio
  16. /var/adm/packages/perl:usr/bin/cppstdin
  17.  
  18. From this, you can see that 'cp' came from the bin.tgz package. The source 
  19. will be found in a corresponding subdirectory. In this case, that would be
  20. ./a/bin.
  21.  
  22. Most of these packages now have scripts that untar, patch, and compile the
  23. source automatically.
  24.  
  25. Have fun!
  26.  
  27. ---
  28. Patrick J. Volkerding
  29. volkerdi@ftp.cdrom.com
  30.