uname -a
Linux QNAP1 3.4.6 #1 SMP Tue Aug 4 03:44:03 CST 2015 x86_64 unknown
dmidecode -t 2
# dmidecode 2.9
SMBIOS 2.6 present.

Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
	Manufacturer: ICP / iEi
	Product Name: TS-459 PRO II(QA43)
	Version: V1.0
	Serial Number: To be filled by O.E.M.
	Asset Tag: To Be Filled By O.E.M.
	Features:
		Board is a hosting board
		Board is replaceable
	Location In Chassis: To Be Filled By O.E.M.
	Chassis Handle: 0x0003
	Type: Motherboard
	Contained Object Handles: 0

uptime        
 20:30:00 up 603 days, 22:03, load average: 0.38, 0.73, 0.83
free
              total         used         free       shared      buffers
  Mem:      1012688       861632       151056            0       358756
 Swap:       530124       185468       344656
Total:      1542812      1047100       495712

# some other qnap nas:
uname -a; # does not return a lot of info
Linux NASC68472 3.4.6 #1 SMP Fri May 22 03:29:15 CST 2015 x86_64 unknown

cat /proc/version; # output version of linux version running... i thought it used to be BUSYBOX
Linux version 3.4.6 (root@BuildServer46-1) (gcc version 4.1.3 20070929 (prerelease) (Ubuntu? 4.1.2-16ubuntu2)) #1 SMP Fri May 22 03:29:15 CST 2015

basic sequential harddisk speed test

# write 1Gbyte of zeros to file
time dd if=/dev/zero of=/share/MD0_DATA/testfile bs=1M count=4096

4096+0 records in
4096+0 records out

real	0m26.284s
user	0m0.045s
sys	0m21.328s

# do the math (bc is your friend)
4096/21.32 = 4096/21.32
192MByte/Sec, pretty good for RAID5 NAS, imho

basic cpu and ram monitor script:

while true; do cat /proc/loadavg; cat /proc/meminfo; sleep 1; clear; done
# or
while true; do echo "cpu load averaged over 1, 5, and 15 minutes:"; cat /proc/loadavg; free; sleep 1; clear; done

# cpu load 
# averaged over 1,    5, and 15 minutes
                1.32  0.58   0.64 1/239 31957
              total         used         free       shared      buffers
  Mem:      1012688       978672        34016            0         3500
 Swap:       530124        55432       474692
Total:      1542812      1034104       508708

# first variant:

MemTotal:        1012688 kB
MemFree:           92188 kB
Buffers:          361728 kB
Cached:            60864 kB
SwapCached:        15552 kB
Active:           215652 kB
Inactive:         279104 kB
Active(anon):       4792 kB
Inactive(anon):    70768 kB
Active(file):     210860 kB
Inactive(file):   208336 kB
Unevictable:          28 kB
Mlocked:              28 kB
SwapTotal:        530124 kB
SwapFree:         360524 kB
Dirty:                88 kB
Writeback:             0 kB
AnonPages:         60160 kB
Mapped:             9568 kB
Shmem:              3396 kB
Slab:             178012 kB
SReclaimable:     132724 kB
SUnreclaim:        45288 kB
KernelStack:        1936 kB
PageTables:         3456 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:     1036468 kB
Committed_AS:     956008 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      532480 kB
VmallocChunk:   34359198064 kB
HardwareCorrupted:     0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:        6720 kB
DirectMap2M:     1032192 kB

liked this article?

  • only together we can create a truly free world
  • plz support dwaves to keep it up & running!
  • (yes the info on the internet is (mostly) free but beer is still not free (still have to work on that))
  • really really hate advertisement
  • contribute: whenever a solution was found, blog about it for others to find!
  • talk about, recommend & link to this blog and articles
  • thanks to all who contribute!
admin