home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / misc / src / install / ks.samp < prev    next >
Text File  |  1997-11-03  |  3KB  |  90 lines

  1. # eventually, we'll allow cdrom kickstarts
  2. nfs --server porkchop.redhat.com --dir /mnt/test/i386
  3.  
  4. # keymap to use, same as keymap named in kbdconfig
  5. keyboard us
  6.  
  7. # Disk partitioning stuff goes here. It also sets up the fstab stuff
  8. # and selects which partitions are formatted. All swap partitions are
  9. # formatted and used though.
  10.  
  11. # this should be install or upgrade, defaults to 'install' if omitted
  12. install
  13.  
  14. # it would be nice if we could setup networking parameters for installs
  15. # which weren't bootpd :-(
  16.  
  17. # printer configuration goes here
  18.  
  19. # mouse types are: ps/2 mousesystems microsoft logitech atibm logibm msbm
  20. # the default device is right for busmice, /dev/cua0 for serial mice, and
  21. # can be overridden with "--device cua2"
  22. # if three button emulation is needed, specify "--emulthree"
  23. #
  24. # this is just like /usr/sbin/mouseconfig
  25. mouse ps/2
  26.  
  27. # the timezone command takes the same args as /usr/sbin/timeconfig
  28. # see the timeconfig 2.0 man page for details
  29. timezone --utc US/Eastern
  30.  
  31. # xconfiguration
  32. #   Video card selection:
  33. #       You can let it try to find you PCI card automatically, OR
  34. #       specify --card <cardtype> (see Xconfigurator --help for list), OR
  35. #       specify --server <servertype> (also see Xconfigurator --help)
  36. #
  37. #   Monitor selection:
  38. #       If none specified, assumes 640x480@60hz.
  39. #       Otherwise, use --monitor <type>, see Xconfigurator --help for list, OR
  40. #       use --hsync <hsync> and --vsync <vsync>. For example:
  41. #          --hsync "31.5,35.5,50-65" --vsync "50-70"
  42. #
  43. #
  44. xconfig --monitor "tatung cm14uhe"
  45.  
  46. # this root password goes over the network in the clear for NFS kickstarts
  47. # it's probably a good idea not to use the real root password here
  48. #
  49. # if the password is already crypted (and suitable for inclusion in 
  50. # /etc/passwd without further editing), use the iscrypted flag. this
  51. # should be used to prevent a cleartext root password from going over
  52. # the network
  53. rootpw kickmeRH
  54.  
  55. # lilo install goes to mbr by default w/ no append line. you can modify
  56. # this as shown in the example
  57. #    lilo --append "mem=128M" --location mbr
  58. # the location is one of mbr (default), none, or partition
  59. # this command is called 'silo' on the sparc, and doesn't exist on the alpha
  60.  
  61. #
  62. # zerombr yes|no
  63. #
  64. # Should the install automatically zero the partition table if it is corrupt?
  65. #
  66. zerombr yes
  67.  
  68. #
  69. # clearpart - requires --all or --linux
  70. #
  71. # --all   removes everything from ALL DRIVES
  72. # --linux removes all linux native/swap from ALL DRIVES
  73. #
  74. clearpart --linux
  75.  
  76. #
  77. # part <mntpt> --size <size in megs> [--grow] [--maxsize <size in megs>]
  78. #
  79. part / --size 250
  80. part swap --size 32
  81. part /usr --size 500 --grow --maxsize 800
  82. part /tmp --size 100 --grow
  83.  
  84. # packges to install follow here
  85. # '@ component' may be used to include entire components, redundant items
  86. # are okay
  87. %packages
  88. @ Networked Workstation
  89. bsd-games
  90.