1. 一、查看FreeBSD的网卡实时流量 
  2.  
  3. # systat -if 1 
  4.  
  5.                     /0   /1   /2   /3   /4   /5   /6   /7   /8   /9   /10 
  6.      Load Average 
  7.  
  8.       Interface           Traffic               Peak                Total 
  9.             lo0  in      0.000 KB/s          0.000 KB/s          586.478 KB 
  10.                  out     0.000 KB/s          0.000 KB/s          586.478 KB 
  11.  
  12.             em0  in      0.192 KB/s          0.192 KB/s            6.943 MB 
  13.                  out     0.565 KB/s          0.565 KB/s            7.022 MB 
  14.  
  15. 二、看内存大小
  16.  
  17. # dmesg | grep memory
    real memory = 537395200 (512 MB)
    avail memory = 509407232 (485 MB) 
  1. 三、看CPU大小
  2. # dmesg | grep CPU
    CPU: Intel(R) Celeron(TM) CPU 1300MHz (1295.62-MHz 686-class CPU)
    cpu0: <ACPI CPU> on acpi0
    acpi_throttle0: <ACPI CPU Throttling> on cpu0
  3.  
  4. 通过硬件模块
  5. # sysctl hw.model
    hw.model: Intel(R) Celeron(TM) CPU 1300MHz
  6. 看具体的主频
  7. # sysctl machdep.tsc_freq
    machdep.tsc_freq: 1295622893
  8.  
  9.  
  10.  
  11.