Changes between Version 24 and Version 25 of FreeBSD10_Guide
- Timestamp:
- Aug 20, 2014, 12:41:40 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FreeBSD10_Guide
v24 v25 56 56 {{{ 57 57 58 ensure ftp is set to passive mode, to avoid potential firewall issues:58 Ensure ftp is set to passive mode, to avoid potential firewall issues: 59 59 build# echo 'setenv FTP_PASSIVE_MODE YES' >> /root/.cshrc 60 60 61 set a default password for the images that you will produce61 Set a default password for the images that you will produce 62 62 build# echo 'setenv CFG_ROOT_PASSWORD DefaultPassword12!' >> /root/.cshrc 63 63 64 define your nanobsd (svn) working directory:65 64 Define your nanobsd (svn) working directory: 65 NOTE: All commands at later stages will refer to this so you better get it right! 66 66 build# echo 'setenv R /root/nanobsd' >> /root/.cshrc 67 67 }}} … … 90 90 === B.1 Download the environment from the Wireless Leiden svn repository === 91 91 {{{ 92 $svn checkout \92 build# svn checkout \ 93 93 https://svn.wirelessleiden.nl/svn/code/hybrid/branches/releng-10/nanobsd $R 94 $cd $R94 build# cd $R 95 95 }}} 96 96 Note: if svn is not found: svn is in /usr/local/bin, alternatively log out and in, or use {{{rehash}}} in a {{{csh}}} shell to make it available. … … 98 98 === B.2. Compile all required packages using === 99 99 {{{ 100 $$R/tools/package-build.sh100 build# $R/tools/package-build.sh 101 101 }}} 102 102