Changes between Version 2 and Version 3 of Archive/FreeBSDOnEmbeddedDevice
- Timestamp:
- Nov 1, 2009, 4:19:15 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Archive/FreeBSDOnEmbeddedDevice
v2 v3 1 1 [[TOC]] 2 3 = Install Base system = 4 == Initial disk configuration == 2 [[TOC(inline)]] 3 = Initial disk configuration = 5 4 {{{ 6 5 ## Hack to find memory card and have partion entries re-read … … 24 23 build# mount /dev/da4s1a /mnt 25 24 26 = = Disk population ==25 = Disk population = 27 26 28 27 build# mkdir -p /usr/data/8.0-RC2 … … 48 47 build# rm -r /mnt/boot/kernel/ ; mv /mnt/boot/GENERIC/ /mnt/boot/kernel 49 48 50 = = Disk configuration ==49 = Disk configuration = 51 50 52 51 Need resolving power at later stage inside chroot: … … 79 78 chroot# sed '/ttyv[0-7]/ s/on /off/g' /etc/ttys > /etc/ttys.new && mv /etc/ttys.new /etc/ttys 80 79 81 == = Accounting & access control ===80 == Accounting & access control == 82 81 chroot# echo "sshd_enable=YES" >> /etc/rc.conf 83 82 chroot# passwd rootAdministive user (admin for example) … … 86 85 chroot# echo '%wheel ALL=(ALL) ALL' >> /usr/local/etc/sudoers 87 86 88 == = Networking ===87 == Networking == 89 88 chroot# echo "hostname=riff.vanderzwet.net" >> /etc/rc.conf 90 89 … … 99 98 = Initial boot = 100 99 Note: NOT READY YET: Insert card into embedded define and get yourself a prompt, using serial of ssh login. 101 100 == Package install == 102 101 103 102 === dnsmasq === … … 144 143 === various === 145 144 node# pkg_add -r tinyproxy sudo vim-lite 146 = Into production = 145 146 == Put into production == 147 147 node# reboot 148