Changes between Version 8 and Version 9 of FreeBSD10_Guide


Ignore:
Timestamp:
Aug 19, 2014, 7:26:19 PM (11 years ago)
Author:
huub
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FreeBSD10_Guide

    v8 v9  
    3333(You may also wish to add ''ntpd_enable="YES"'' to /etc/rc.conf)
    3434
    35 == Install Subversion and Ports ==
     35== A.2 Install Subversion and Ports ==
    3636
    3737Subversion is installed as a package:
     
    4343# svn checkout https://svn0.eu.FreeBSD.org/ports/head /usr/ports
    4444}}}
     45
     46=== A.3 set some useful variables ===
     47Alter the shell configuration file:/root/.cshrc:
     48{{{
     49#!sh
     50# ensure ftp is set to passive mode, to avoid potential firewall issues:
     51$ echo 'setenv FTP_PASSIVE_MODE YES' >> /root/.cshrc
     52
     53# set a default password for the images that you will produce
     54$ echo 'setenv CFG_ROOT_PASSWORD DefaultPassword12!' >> /root/.cshrc
     55 
     56# define your nanobsd (svn) working directory:
     57# NOTE: All commands at later stages will refer to this so you better get it right!
     58$ echo 'setenv R /root/nanobsd' >> /root/.cshrc
     59}}}
     60
     61Next load your file (or login again):
     62build# source /root/.cshrc