home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 July / PCpro_2004_07.ISO / docs / basiclin / bas_add.txt next >
Encoding:
Text File  |  2003-10-11  |  2.1 KB  |  58 lines

  1. ------------------------------------------------------------------------
  2. *How   to  add  new  packages  to  BasicLinux   *
  3. ------------------------------------------------------------------------
  4.  
  5.  
  6. BasicLinux 2 is compatible with Slackware 7.1, so you should be able to
  7. install any package from there using the package manager (which is
  8. included in the BasicLinux HD installation).  Execute *pkgtool* for a
  9. menu-driven routine, or use *installpkg* to install a package directly.
  10.  Both methods register the package in the manager's database.
  11.  
  12. Slackware 7.1 packages are relatively small.  They provide components,
  13. not self-contained applications.  In most cases, you will need to
  14. install several related packages to get what you want.   Here are some
  15. examples.
  16.  
  17. _Adding manpages to BasicLinux_
  18. This requires five packages (and fills 8mb of HD space).  First, you
  19. need the manpages and the man command -- that's two packages.  Groff is
  20. used to decifer the manpages and less is used to display them, so that's
  21. two more.  Groff needs a special library -- that's five.
  22.  
  23. installpkg man.tgz    ##  a9
  24. installpkg manpages.tgz         ##  ap1
  25. installpkg groff.tgz    ##  ap1
  26. installpkg less.tgz    ##  a7
  27. installpkg cxxlibs.tgz    ##  a3
  28.  
  29.  
  30. _Adding Midnight Commander to BasicLinux_
  31. This requires two packages (and fills 6mb of HD space).  The first
  32. package contains Midnight Commander and the second contains libraries
  33. required by Midnight Commander.
  34.  
  35. installpkg mc.tgz    ##  ap1
  36. installpkg elflibs.tgz         ##  a4
  37.  
  38.  
  39. _Adding a C compiler to BasicLinux_
  40. This requires a minimum of five packages (which fill 120mb of HD space).
  41.  Most of this space is filled by the glibc2 library, which is _much_
  42. larger than the old libc5 library (used in BasicLinux 1.8).
  43.  
  44. installpkg binutils.tgz    ##  d1
  45. installpkg egcs.tgz    ##  d1
  46. installpkg glibc.tgz    ##  d1
  47. installpkg gmake.tgzd1    ##  d1
  48. installpkg linuxinc.tgz         ##  d1
  49.  
  50.  
  51. To compile a Linux kernel, two further packages are required (which fill
  52. an additional 74mb of HD space).  The first is the kernel source and the
  53. second is an assember to make the boot sector.
  54.  
  55. installpkg lx2216.tgz        ##  k1
  56. installpkg bin86.tgz    ##  d1
  57.  
  58.