Changes between Version 36 and Version 37 of FreeBSD10_Guide


Ignore:
Timestamp:
Aug 27, 2014, 8:07:02 PM (10 years ago)
Author:
huub
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FreeBSD10_Guide

    v36 v37  
    2121The procedure below has been tested with 10.0 (standard developer install - no ports -, e.g. with default partitioning will fit our needs). Installing FreeBSD is outside the scope of this document, take a look into [http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/bsdinstall.html the FreeBSD handbook Chapter 2 Installing FreeBSD] if you do not know the details.
    2222
    23 After installation and reboot apply update:
    24 {{{
    25 build# freebsd-update fetch
    26 build# freebsd-update install
    27 build# reboot
    28 }}}
    2923Please do mind that all commands below need to be executed as root, because of the many mounts and unmounts done in various phases. It maybe convenient to ''' permit ssh root login''' (''modify /etc/ssh/sshd_config'' accordingly).
    3024
     
    3832=== A.2 Install Subversion and Ports ===
    3933
    40 Subversion is installed as a package:
     34Subversion and root certificates are installed as a package:
    4135{{{
     36build@ pkg install ca_root_nss
    4237build# pkg install subversion
    4338}}}
    44 
    45 Tip: The package management tool is not yet installed on your system. So answer yes to the prompt: "Do you want to fetch and install it now? [y/N]:"
    4639
    4740Check out a copy of the ports tree (this will take a couple of minutes).
     
    4942build# svn checkout https://svn0.eu.FreeBSD.org/ports/head /usr/ports
    5043}}}
    51 Certificate information ...... answer p to prompt:
    52 (R)eject, accept (t)emporarily or accept (p)ermanently?
    5344
    54 Alternatively use portsnap:
     45Tip: if for some reason this svn checkout doesn't work for you consider the use of portsnap:
    5546{{{
    5647build# portsnap fetch extract
     
    10091
    10192=== A.5. OPTIONAL, every developer has his own preferences, e.g. ===
    102 build# make -C /usr/ports/editors/vim-lite install clean BATCH=yes
    103 build# make -C /usr/ports/security/sudo install clean BATCH=yes
    104 build# make -C /usr/ports/sysutils/screen install clean BATCH=yes
     93build# pkg install vim-lite
     94build# pkg install sudo
     95build# pkg install screen
     96
     97Tip:
    10598
    10699=== A.6. get latest sources ===