Changes between Version 79 and Version 80 of FreeBSD10_Guide
- Timestamp:
- Sep 24, 2014, 8:37:02 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FreeBSD10_Guide
v79 v80 234 234 ---- 235 235 236 a. '''New image ''': Put full image on compact flash disk (attach a card reader/writer with a CF disk of minimum 1 GB)236 a. '''New image to local, fresh CF disk''': Put full image on a fresh compact flash disk using a card reader/writer attached to your buildbot PC. Minimum size of the CF disk is 1 GB. 237 237 Use the script 238 238 … … 245 245 (assuming {{{/dev/da0}}} is your compact flash entry; this takes about 15 minutes, check progress by typing Ctrl-T; you may wish to check afterwards with fdisk whether there are three partitions on the disk. You can also mount /dev/da0s1a and /dev/da0s3 and check the configuration) 246 246 247 a. '''Existing image''': Put partial image on slice (slice 2) (attach a card reader/writer with the CF disk containing the existing image)247 b. '''CF disk with existing image''': Put partial new image on slice (slice 2) of CF disk using a card reader/writer attached to the buildbot PC with the CF disk containing the existing image. 248 248 249 249 build# dd bs=64k if=/usr/obj/nanobsd.wleiden-hybrid/_.disk.image of=/dev/da0s2 250 250 251 252 a. '''Existing image remote update''' (slice 2) (network connection to machine 172.x.y.z required)253 254 For remotely updating an existing configuration use:255 the image script256 257 build# $R/tools/image deploy on <node> [and reboot]258 259 or manually:260 261 build# dd if=/usr/obj/nanobsd.wleiden-hybrid/_.disk.image bs=10k | ssh root@172.x.y.z /tools/updatep2262 263 264 You may adjust the block size to make the transfer more efficient (additionally ssh -C is possible) and you can use Ctrl-T to check progress.265 266 '''WARNING''': in case of a remote update from 7.2 to 8.0 you must scp the new rc.conf.local to the node before reboot because the interface configuration statements are quite different. If you do not adjust the configuration before reboot the interfaces will not be configured after reboot and you will not be able to reach the node!(see F.4 below)267 251 268 252 == D. Check the cf card and apply last minute changes == … … 310 294 - modify the SHA256 en filesize in $R/ports/net/lvrouted/distinfo. 311 295 - commit $R/ports/net/lvrouted 296 297 === '''Existing image on node, remote update''' (slice 2) (network connection to machine 172.x.y.z required) === 298 299 For remotely updating an existing node software configuration use the image script 300 301 build# $R/tools/image deploy on <node> [and reboot] 302 303 or manually: 304 305 build# dd if=/usr/obj/nanobsd.wleiden-hybrid/_.disk.image bs=10k | ssh root@172.x.y.z /tools/updatep2 306 307 308 You may adjust the block size to make the transfer more efficient (additionally ssh -C is possible) and you can use Ctrl-T to check progress. 309
