diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-06-09 05:10:08 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-06-09 05:10:08 +0000 |
commit | fb2539e946e6c951ad4ca0fa8c61ca02c34525e8 (patch) | |
tree | adf5b7bf70eaaeb2ba13cfc7c5f8e3c62d00cc5a | |
parent | 510cc2e46afa8ba94dba82cfc47349b8646980eb (diff) | |
download | src-fb2539e946e6c951ad4ca0fa8c61ca02c34525e8.tar.gz src-fb2539e946e6c951ad4ca0fa8c61ca02c34525e8.zip |
Add a sample script file so people have some idea of what to pass to Load.
Notes
Notes:
svn path=/head/; revision=26519
-rw-r--r-- | release/sysinstall/install.cfg | 51 | ||||
-rw-r--r-- | usr.sbin/sysinstall/install.cfg | 51 |
2 files changed, 102 insertions, 0 deletions
diff --git a/release/sysinstall/install.cfg b/release/sysinstall/install.cfg new file mode 100644 index 000000000000..832d403516b7 --- /dev/null +++ b/release/sysinstall/install.cfg @@ -0,0 +1,51 @@ +# This is the installation configuration file for my test machine, +# crate.cdrom.com. +# It is included here merely as a sort-of-documented example. + +# Turn on extra debugging. +debug=yes + +# My host specific data +hostname=crate.cdrom.com +domainname=cdrom.com +nameserver=204.216.27.3 +defaultrouter=204.216.27.228 +ipaddr=204.216.27.230 +netmask=255.255.255.240 + +# Which installation device to use - ftp is pointed directly at my local +# machine and the installation device is my WD8013 ethernet interface. +ftp=ftp://time.cdrom.com/pub +netDev=ed0 +mediaSetFTP + +# Select which distributions we want. +distSetUser + +# Now set the parameters for the partition editor on wd0. Set to use all +# remaining free space (could also be "all" or "existing" to use all the +# disk or an existing FreeBSD slice). +disk=wd0 +diskSpace=free +bootManager=booteasy +diskPartitionEditor + +# It's bogus that we have to re-enter the label editor for each partition +# we want to create, but it was easier to do it this way (from a programming +# standpoint, not a user standpoint!). This assumes that slice 1 is a DOS +# partition and mounts it as /dos, which is the case on my laptop. +# We can also create a root partition of 20MB in size on the same pass since +# it's in a different slice (s2). All sizes are expressed in 512 byte blocks! +wd0s2=partition 40960 / +diskLabelEditor + +# Now make a 20MB swap partition in the second slice. +wd0s2=swap 40960 none +diskLabelEditor + +# Size of 0 means allocate the rest of the space to /usr +wd0s2=partition 0 /usr +diskLabelEditor + +# OK, everything is set. Do it! +installCommit diff --git a/usr.sbin/sysinstall/install.cfg b/usr.sbin/sysinstall/install.cfg new file mode 100644 index 000000000000..832d403516b7 --- /dev/null +++ b/usr.sbin/sysinstall/install.cfg @@ -0,0 +1,51 @@ +# This is the installation configuration file for my test machine, +# crate.cdrom.com. +# It is included here merely as a sort-of-documented example. + +# Turn on extra debugging. +debug=yes + +# My host specific data +hostname=crate.cdrom.com +domainname=cdrom.com +nameserver=204.216.27.3 +defaultrouter=204.216.27.228 +ipaddr=204.216.27.230 +netmask=255.255.255.240 + +# Which installation device to use - ftp is pointed directly at my local +# machine and the installation device is my WD8013 ethernet interface. +ftp=ftp://time.cdrom.com/pub +netDev=ed0 +mediaSetFTP + +# Select which distributions we want. +distSetUser + +# Now set the parameters for the partition editor on wd0. Set to use all +# remaining free space (could also be "all" or "existing" to use all the +# disk or an existing FreeBSD slice). +disk=wd0 +diskSpace=free +bootManager=booteasy +diskPartitionEditor + +# It's bogus that we have to re-enter the label editor for each partition +# we want to create, but it was easier to do it this way (from a programming +# standpoint, not a user standpoint!). This assumes that slice 1 is a DOS +# partition and mounts it as /dos, which is the case on my laptop. +# We can also create a root partition of 20MB in size on the same pass since +# it's in a different slice (s2). All sizes are expressed in 512 byte blocks! +wd0s2=partition 40960 / +diskLabelEditor + +# Now make a 20MB swap partition in the second slice. +wd0s2=swap 40960 none +diskLabelEditor + +# Size of 0 means allocate the rest of the space to /usr +wd0s2=partition 0 /usr +diskLabelEditor + +# OK, everything is set. Do it! +installCommit |