So you need to install mtr on FreeBSD but it tries to install X11, Gnome and a bunch of other stuff that doesn’t need to go on your Web server? Use these steps to compile mtr on FreeBSD without X windows.
cd /usr/ports/net/mtr
make clean
make -DWITHOUT_X11
make install
/usr/local/sbin/mtr –help
Alternatively, you could edit /etc/make.conf to include “WITHOUT_X11=yes” to get the same result without using the -DWITHOUT_X11 command line option.
Post a Comment