Last active
August 29, 2015 14:19
-
-
Save pr1ntf/762d5d6f2dff7d7ac5c9 to your computer and use it in GitHub Desktop.
FreeBSD first run notepad
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# update, fetch ports, install nano | |
# freebsd-update | |
freebsd-update fetch && freebsd-update install | |
# portsnap | |
portsnap fetch && portsnap extract | |
# install nano and config, then run nano to check config | |
cd /usr/ports/editors/nano && make install clean BATCH=YES && cd ~ && echo 'set CONST' > ~/.nanorc | |
cd /usr/ports/devel/git && make install clean BATCH=YES && cd ~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment