Spruce Up tools to view amount of Free Memory and Disk Usage
Spruce Up tools to view amount of Free Memory and Disk Usage URLs: https://puppylinux-or-pcbsd.blogspot.com/ Here is my source list of Free Memory Tools Tools to check Free Memory available and How much SWAP memory is used Use a perl shell script made for BSDs: https://stackoverflow.com/questions/4093786/what-is-equivalent-of-linuxs-free-command-on-freebsd-v8-1 https://forums.freebsd.org/threads/free-command-perl-script-for-freebsd.299/ example of using 'free' cli You can use this script. # fetch http://www.cyberciti.biz/files/scripts/freebsd-memory.pl.txt # mv freebsd-memory.pl.txt /usr/local/bin/free # chmod +x /usr/local/bin/free # perl --version # whereis perl # vi /usr/local/bin/free change first line #!/usr/bin/perl to #!/usr/local/bin/perl # free Linux like free command for my FreeBSD server Freecolor is a free replacement that displays free memory graphically as a bargraph. It supports the same options as free. Install freecolor, enter: # cd /usr/por...