Tag free bsd

freebsd find

How to find files, programs, etc using freebsd The locate command is good for finding files and directories. Enter something similar to: locate someprogram | more If that doesn’t work, perhaps try the whereis or find commands: whereis someprogram |…

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…