Changes between Version 60 and Version 61 of FreeBSD10_Guide
- Timestamp:
- Aug 29, 2014, 8:42:52 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FreeBSD10_Guide
v60 v61 57 57 58 58 Subversion and root certificates are installed as a package: 59 {{{ 59 60 60 build@ pkg install ca_root_nss 61 61 build# pkg install subversion 62 }}} 62 63 63 64 64 Check out a copy of the ports tree (this will take a couple of minutes). … … 68 68 69 69 Tip: if for some reason this svn checkout doesn't work for you consider the use of portsnap: 70 {{{ 70 71 71 build# portsnap fetch extract 72 }}} 72 73 73 74 74 === A.3 set some useful variables === 75 75 Alter the shell configuration file:/root/.cshrc: 76 {{{77 76 78 77 Ensure ftp is set to passive mode, to avoid potential firewall issues: … … 85 84 NOTE: All commands at later stages will refer to this so you better get it right! 86 85 build# echo 'setenv R /root/nanobsd' >> /root/.cshrc 87 }}} 86 88 87 89 88 Next load your file (or login again): … … 122 121 Common screen commands: 123 122 1. Start a new terminal: 124 # screen123 build# screen 125 124 2. Type CTRL+A and D to detach this new terminal 126 125 3. Reattach it: 127 # screen -R126 build# screen -R 128 127 }}} 129 128