User Tools

Site Tools


archive:freebsd_install_misc

FreeBSD 10 Usefull Tools And Applications

Besides the FreeBSD core install here is what I have installed on a standard FreeBSD system.

cd /usr/ports/archivers/arc && make install clean BATCH=yes
cd /usr/ports/archivers/arj && make install clean BATCH=yes
cd /usr/ports/archivers/lha && make install clean
cd /usr/ports/archivers/rar && make install clean BATCH=yes
cd /usr/ports/archivers/unrar && make install clean BATCH=yes
cd /usr/ports/archivers/unzip && make install clean BATCH=yes
cd /usr/ports/archivers/unzoo && make install clean
cd /usr/ports/archivers/xar && make install clean BATCH=yes
cd /usr/ports/devel/libstatgrab && make install clean BATCH=yes
cd /usr/ports/dns/bind-tools && make install clean BATCH=yes
cd /usr/ports/ftp/curl && make install clean BATCH=yes
cd /usr/ports/ftp/wget && make install clean BATCH=yes
cd /usr/ports/net-mgmt/iftop && make install clean
cd /usr/ports/ports-mgmt/portdowngrade && make install clean BATCH=yes
cd /usr/ports/print/freetype2 && make WITH="PNG" install clean BATCH=yes
cd /usr/ports/security/dsniff && make install clean BATCH=yes
cd /usr/ports/security/fakeroot && make install clean
cd /usr/ports/sysutils/coreutils && make install clean BATCH=yes
cd /usr/ports/sysutils/lsof && make install clean
cd /usr/ports/sysutils/pftop && make install clean BATCH=yes
cd /usr/ports/sysutils/pidof && make install clean

Notes on Unzip: FreeBSD's unzip is located in /usr/bin some applications exspect it located here /usr/local/bin. To fix this apply the following.

cd /usr/bin
mv unzip unzip.old
ln -s /usr/local/bin/unzip unzip

Notes on FreeType2: If you plan to run Imagemagick it will look “freetype” instead of “freetype2” in order to fix this apply the following.

ln -s /usr/local/include/freetype2 /usr/local/include/freetype

Preventing console spam: Some applications especially qmail tends to spam your console, which can be quite annoying when you work. This can be solved by redirecting these messages to a file rather than tty. This can be done in /etc/syslog.conf

vi /etc/syslog.conf

Change and or add the following line.

*.emerg                                            *

With

*.emerg                                         /var/log/messages
archive/freebsd_install_misc.txt · Last modified: 29/03/2022 13:02 by 127.0.0.1