Category FreeBSD

Tutorial: FreeBSD Ports

FreeBSD port manual Use pkg_info to list all installed packages: Code: pkg_info pkg_info | less To delete or uninstall packages / apps use pkg_delete command: Code: pkg_delete pkgname pkg_delete screen-4.0.3_6 pkg_delete ‘screen*’ 2nd one will delete package called screen-4.0.3_6 and…

How To: Move an SVN Repo

Example Details Hotcopy or rsync the repository to the new location original location: /usr/local/svn/miller new location: /u1/svn_spill/miller With svnhotcopy svnadmin hotcopy /usr/local/svn/miller /u1/svn_spill/miller With rsync Ensure you have blocked access via apache to the repository that you are moving ###…