The purpose of this post is to provide useful command needed while working on freebsd:
How to check ipv4 routing table:
netstat -rn -4
How to install a package:
pkg install apache24
How to get list of software installed in freebsd?
pkg list
View only specific content of a file :
grep -v '^#' httpd.conf This command shows line which doesn't start with #
Advertisements