C ccc May 11, 2010 #1 Hi. How to get free command working from the command line (Konsole) like on linux under FreeBSD 7.3?
wblock@ Developer May 11, 2010 #2 Maybe # top -d1 | grep Mem: After that, http://www.freebsd.org/doc/en/books/faq/misc.html#TOP-FREEMEM may answer the standard followup question.
Maybe # top -d1 | grep Mem: After that, http://www.freebsd.org/doc/en/books/faq/misc.html#TOP-FREEMEM may answer the standard followup question.
A aragon May 11, 2010 #3 There's also sysctl(8). Variables of possible interest: Code: vm.stats.vm.v_free_count vm.stats.vm.v_active_count vm.stats.vm.v_inactive_count vm.stats.vm.v_page_size The values of v_*_count need to be multiplied by v_page_size to get bytes.
There's also sysctl(8). Variables of possible interest: Code: vm.stats.vm.v_free_count vm.stats.vm.v_active_count vm.stats.vm.v_inactive_count vm.stats.vm.v_page_size The values of v_*_count need to be multiplied by v_page_size to get bytes.
OP C ccc Jun 28, 2012 Thread Starter #5 For a root user just add this line in ~/.cshrc: Code: alias free freecolor but I still cannot find out, how it should work for a normal non-root user.
For a root user just add this line in ~/.cshrc: Code: alias free freecolor but I still cannot find out, how it should work for a normal non-root user.