My Qnap 451 is making a clunk everyfew seconds

Printers, HDDs, USB/eSATA drives, 3rd-party programs
stevek0077
Starting out
Posts: 22
Joined: Mon Mar 02, 2015 9:57 pm

Re: My Qnap 451 is making a clunk everyfew seconds

Post by stevek0077 »

Hi Nees,

These drives are new, at least I am assuming that they are new, as I have them for less than 1 month

looking at the LCC (I'm guessing you ment this, not LLC) I get this via the QNAP interface.
Value Worse Threshold Raw V status
200 200 000 0x3b good
The Raw data on one drive is 0x3b (59) and 0x3c (60). So the count isn't high. and hasn't increased all day.

I did an extended test on each and the program suggested that it would take 255 minuets to complete, however it too over 12 hours to complete, and that was the same for each drive. The 255 suggests to me that its reading the wrong data, 255 = 11111111, should it take that long to complete the extended test ?
User avatar
pwilson
Guru
Posts: 22533
Joined: Fri Mar 06, 2009 11:20 am
Location: Victoria, BC, Canada (UTC-08:00)

Re: My Qnap 451 is making a clunk everyfew seconds

Post by pwilson »

stevek0077 wrote:Hi Nees,

These drives are new, at least I am assuming that they are new, as I have them for less than 1 month

looking at the LCC (I'm guessing you ment this, not LLC) I get this via the QNAP interface.
Value Worse Threshold Raw V status
200 200 000 0x3b good
The Raw data on one drive is 0x3b (59) and 0x3c (60). So the count isn't high. and hasn't increased all day.

I did an extended test on each and the program suggested that it would take 255 minuets to complete, however it too over 12 hours to complete, and that was the same for each drive. The 255 suggests to me that its reading the wrong data, 255 = 11111111, should it take that long to complete the extended test ?
Let's look at the all the data on all the drives. Please access your NAS via SSH, login as "admin" and run:

Code: Select all

#!/bin/sh
rm -f /tmp/nasreport
touch /tmp/nasreport
chmod +x /tmp/nasreport
cat << EOF >> /tmp/nasreport
#!/bin/sh
#
# NAS Report by Patrick Wilson
# see: http://forum.qnap.com/viewtopic.php?f=185&t=82260#p366188
#
# 
echo "[code]"
echo "*********************"
echo "** QNAP NAS Report **"
echo "*********************"
echo " "
echo "NAS Model:      \$(getsysinfo model)"
echo "Firmware:       \$(getcfg system version) Build \$(getcfg system 'Build Number')"
echo "System Name:    \$(/bin/hostname)"
echo "Workgroup:      \$(getcfg system workgroup)"
echo "Base Directory: \$(dirname \$(getcfg -f /etc/config/smb.conf Public path))"
echo "NAS IP address: \$(ifconfig \$(getcfg network 'Default GW Device') | grep addr: | awk '{ print \$2 }' | cut -d: -f2)"
echo " " 
echo "Default Gateway Device: \$(getcfg network 'Default GW Device')" 
echo " "
ifconfig \$(getcfg network 'Default GW Device') | grep -v HWaddr
echo " "
echo -n "DNS Nameserver(s):" 
cat /etc/resolv.conf | grep nameserver | cut -d' ' -f2
echo " "
echo " "
echo "HDD Information:"
echo " "
alpha='abcdefghijklmnopqrstuvwxyz'
drives=\$(getcfg Storage 'Disk Drive Number')
for ((i=1;i<=drives;++i)) ; do
	echo -n "HDD\$i -"
	if [ ! -b /dev/sd\${alpha:\$i-1:1} ] ; then
		echo "Drive absent"
	else
		hdparm -i /dev/sd\${alpha:\$i-1:1} | grep "Model"
		echo " "
		parted /dev/sd\${alpha:\$i-1:1} print
		echo " "
		/sbin/get_hd_smartinfo -d \$i
		echo " "
	fi
done
echo "Volume Status"
echo " "
mdadm -D /dev/md0 /dev/md1 2>/dev/null
echo " "
cat /proc/mdstat
echo " "
echo "Disk Space:"
echo " "
df -h | grep -v qpkg
echo " "
echo "Mount Status:" 
echo " "
mount | grep -v qpkg
echo " "
#echo "Contents of \$(dirname \$(getcfg -f /etc/config/smb.conf Public path)):"
#echo " "
#ls -lF \$(dirname \$(getcfg -f /etc/config/smb.conf Public path))/
#echo " "
#echo "Windows Shares:" 
#echo " "
#for i in \$(grep \] /etc/config/smb.conf | sed 's/\[//g' | sed 's/\]//g' | grep -v global) ;do 
#	echo -n "\$i:"
#	testparm -s -l --section-name=\$i --parameter-name=path 2>/dev/null 
#done
#echo " "
#echo "QNAP Media Scanner / Transcoder processes running: "
#echo " " 
#/bin/ps | grep medialibrary | grep -v grep
#echo " " 
#echo -n "MediaLibrary Configuration file: " 
#ls -alF /etc/config/medialibrary.conf
#echo " " 
#echo "/etc/config/medialibrary.conf:"
#cat /etc/config/medialibrary.conf
echo " "
echo "Memory Information:" 
echo " "
free | grep -v cache:
echo " "
echo "NASReport completed on \$(date +'%Y-%m-%d %T') (\$0) 
"
echo " "
EOF
sleep 2
clear
/tmp/nasreport
#done
[/code]

Please cut&paste the output of the resulting NASReport back to this message thread. Please cut&paste the NASReport itself, copying everything between the "code" and "/code" tags, including the tags themselves.

Patrick M. Wilson
Victoria, BC Canada
QNAP TS-470 Pro w/ 4 * Western Digital WD30EFRX WD Reds (RAID5) - - Single 8.1TB Storage Pool FW: QTS 4.2.0 Build 20151023 - Kali Linux v1.06 (64bit)
Forums: View My Profile - Search My Posts - View My Photo - View My Location - Top Community Posters
QNAP: Turbo NAS User Manual - QNAP Wiki - QNAP Tutorials - QNAP FAQs

Please review: When you're asking a question, please include the following.
stevek0077
Starting out
Posts: 22
Joined: Mon Mar 02, 2015 9:57 pm

Re: My Qnap 451 is making a clunk everyfew seconds

Post by stevek0077 »

*********************
** QNAP NAS Report **
*********************

NAS Model: TS-451
Firmware: 4.1.3 Build 20150217
System Name: NASE8CCCF
Workgroup: Stevetring
Base Directory: /share/CACHEDEV1_DATA
NAS IP address: 192.168.1.200

Default Gateway Device: eth0

inet addr:192.168.1.200 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:202663 errors:0 dropped:0 overruns:0 frame:0
TX packets:250130 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:65094583 (62.0 MiB) TX bytes:84774948 (80.8 MiB)


DNS Nameserver(s):192.168.1.254
8.8.8.8


HDD Information:

HDD1 - Model=WDC WD40EFRX-68WT0N0 , FwRev=82.00A82, SerialNo= WD-WCC4E6YH6EUJ

Model: WDC WD40EFRX-68WT0N0 (scsi)
Disk /dev/sda: 4001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number Start End Size File system Name Flags
1 20.5kB 543MB 543MB ext3 primary
2 543MB 1086MB 543MB linux-swap(v1) primary
3 1086MB 3992GB 3991GB primary
4 3992GB 3992GB 543MB ext3 primary
5 3992GB 4001GB 8554MB linux-swap(v1) primary



HDD2 - Model=WDC WD40EFRX-68WT0N0 , FwRev=82.00A82, SerialNo= WD-WCC4E6PVS20U

Model: WDC WD40EFRX-68WT0N0 (scsi)
Disk /dev/sdb: 4001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number Start End Size File system Name Flags
1 20.5kB 543MB 543MB ext3 primary
2 543MB 1086MB 543MB linux-swap(v1) primary
3 1086MB 3992GB 3991GB primary
4 3992GB 3992GB 543MB ext3 primary
5 3992GB 4001GB 8554MB linux-swap(v1) primary



HDD3 - Model= , FwRev=, SerialNo=910084853BB9B062

Model: USB DISK MODULE (scsi)
Disk /dev/sdc: 516MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number Start End Size Type File system Flags
1 4096B 5374kB 5370kB primary ext2
2 5374kB 252MB 247MB primary ext2 boot
3 252MB 498MB 247MB primary ext2
4 498MB 516MB 17.4MB extended
5 498MB 507MB 8503kB logical ext2
6 507MB 516MB 8897kB logical ext2


Open device fail

HDD4 -Drive absent
HDD5 -Drive absent
HDD6 -Drive absent
HDD7 -Drive absent
HDD8 -Drive absent
HDD9 -Drive absent
HDD10 -Drive absent
HDD11 -Drive absent
HDD12 -Drive absent
Volume Status

/dev/md1:
Version : 1.0
Creation Time : Mon Feb 2 15:50:02 2015
Raid Level : raid1
Array Size : 3897063616 (3716.53 GiB 3990.59 GB)
Used Dev Size : 3897063616 (3716.53 GiB 3990.59 GB)
Raid Devices : 2
Total Devices : 2
Persistence : Superblock is persistent

Update Time : Wed Mar 11 19:14:29 2015
State : clean
Active Devices : 2
Working Devices : 2
Failed Devices : 0
Spare Devices : 0

Name : 1
UUID : 01ddaf87:a612d1f0:982e20c6:7ba3cb81
Events : 34

Number Major Minor RaidDevice State
0 8 3 0 active sync /dev/sda3
1 8 19 1 active sync /dev/sdb3

Personalities : [linear] [raid0] [raid1] [raid10] [raid6] [raid5] [raid4] [multipath]
md1 : active raid1 sda3[0] sdb3[1]
3897063616 blocks super 1.0 [2/2] [UU]

md256 : active raid1 sdb2[1] sda2[0]
530112 blocks super 1.0 [2/2] [UU]
bitmap: 0/1 pages [0KB], 65536KB chunk

md13 : active raid1 sda4[0] sdb4[1]
458880 blocks super 1.0 [24/2] [UU______________________]
bitmap: 1/1 pages [4KB], 65536KB chunk

md9 : active raid1 sda1[0] sdb1[1]
530048 blocks super 1.0 [24/2] [UU______________________]
bitmap: 1/1 pages [4KB], 65536KB chunk

unused devices: <none>

Disk Space:

Filesystem Size Used Available Use% Mounted on
none 200.0M 142.1M 57.9M 71% /
devtmpfs 3.8G 4.0k 3.8G 0% /dev
tmpfs 64.0M 2.4M 61.6M 4% /tmp
tmpfs 3.9G 24.0k 3.9G 0% /dev/shm
/dev/md9 509.5M 126.6M 382.8M 25% /mnt/HDA_ROOT
/dev/mapper/cachedev1 3.6T 1.7T 1.8T 49% /share/CACHEDEV1_DATA
/dev/md13 364.2M 284.5M 79.7M 78% /mnt/ext

Mount Status:

none on /new_root type tmpfs (rw,mode=0755,size=200M)
/proc on /proc type proc (rw)
devpts on /dev/pts type devpts (rw)
sysfs on /sys type sysfs (rw)
tmpfs on /tmp type tmpfs (rw,size=64M)
tmpfs on /dev/shm type tmpfs (rw)
/dev/md9 on /mnt/HDA_ROOT type ext3 (rw,data=ordered)
/dev/mapper/cachedev1 on /share/CACHEDEV1_DATA type ext4 (rw,usrjquota=aquota.user,jqfmt=vfsv0,user_xattr,data=ordered,delalloc,noacl)
/dev/md13 on /mnt/ext type ext3 (rw,data=ordered)


Memory Information:

total used free shared buffers
Mem: 8077504 940552 7136952 0 36680
Swap: 530108 0 530108
Total: 8607612 940552 7667060

NASReport completed on 2015-03-11 20:10:04 (/tmp/nasreport)
User avatar
pwilson
Guru
Posts: 22533
Joined: Fri Mar 06, 2009 11:20 am
Location: Victoria, BC, Canada (UTC-08:00)

Re: My Qnap 451 is making a clunk everyfew seconds

Post by pwilson »

stevek0077 wrote:

Code: Select all

*********************
** QNAP NAS Report **
*********************
 
NAS Model:      TS-451
Firmware:       4.1.3 Build 20150217
System Name:    NASE8CCCF
Workgroup:      Stevetring
Base Directory: /share/CACHEDEV1_DATA
NAS IP address: 192.168.1.200
 
Default Gateway Device: eth0
 
          inet addr:192.168.1.200  Bcast:192.168.1.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:202663 errors:0 dropped:0 overruns:0 frame:0
          TX packets:250130 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:65094583 (62.0 MiB)  TX bytes:84774948 (80.8 MiB)

 
DNS Nameserver(s):192.168.1.254
8.8.8.8
 
 
HDD Information:
 
HDD1 - Model=WDC WD40EFRX-68WT0N0                    , FwRev=82.00A82, SerialNo=     WD-WCC4E6YH6EUJ
 
Model: WDC WD40EFRX-68WT0N0 (scsi)
Disk /dev/sda: 4001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End     Size    File system     Name     Flags
 1      20.5kB  543MB   543MB   ext3            primary
 2      543MB   1086MB  543MB   linux-swap(v1)  primary
 3      1086MB  3992GB  3991GB                  primary
 4      3992GB  3992GB  543MB   ext3            primary
 5      3992GB  4001GB  8554MB  linux-swap(v1)  primary

 
 
HDD2 - Model=WDC WD40EFRX-68WT0N0                    , FwRev=82.00A82, SerialNo=     WD-WCC4E6PVS20U
 
Model: WDC WD40EFRX-68WT0N0 (scsi)
Disk /dev/sdb: 4001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End     Size    File system     Name     Flags
 1      20.5kB  543MB   543MB   ext3            primary
 2      543MB   1086MB  543MB   linux-swap(v1)  primary
 3      1086MB  3992GB  3991GB                  primary
 4      3992GB  3992GB  543MB   ext3            primary
 5      3992GB  4001GB  8554MB  linux-swap(v1)  primary

 
 
HDD3 - Model=        , FwRev=, SerialNo=910084853BB9B062
 
Model:  USB DISK MODULE (scsi)
Disk /dev/sdc: 516MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type      File system  Flags
 1      4096B   5374kB  5370kB  primary   ext2
 2      5374kB  252MB   247MB   primary   ext2         boot
 3      252MB   498MB   247MB   primary   ext2
 4      498MB   516MB   17.4MB  extended
 5      498MB   507MB   8503kB  logical   ext2
 6      507MB   516MB   8897kB  logical   ext2

 
Open device fail
 
HDD4 -Drive absent
HDD5 -Drive absent
HDD6 -Drive absent
HDD7 -Drive absent
HDD8 -Drive absent
HDD9 -Drive absent
HDD10 -Drive absent
HDD11 -Drive absent
HDD12 -Drive absent
Volume Status
 
/dev/md1:
        Version : 1.0
  Creation Time : Mon Feb  2 15:50:02 2015
     Raid Level : raid1
     Array Size : 3897063616 (3716.53 GiB 3990.59 GB)
  Used Dev Size : 3897063616 (3716.53 GiB 3990.59 GB)
   Raid Devices : 2
  Total Devices : 2
    Persistence : Superblock is persistent

    Update Time : Wed Mar 11 19:14:29 2015
          State : clean 
 Active Devices : 2
Working Devices : 2
 Failed Devices : 0
  Spare Devices : 0

           Name : 1
           UUID : 01ddaf87:a612d1f0:982e20c6:7ba3cb81
         Events : 34

    Number   Major   Minor   RaidDevice State
       0       8        3        0      active sync   /dev/sda3
       1       8       19        1      active sync   /dev/sdb3
 
Personalities : [linear] [raid0] [raid1] [raid10] [raid6] [raid5] [raid4] [multipath] 
md1 : active raid1 sda3[0] sdb3[1]
      3897063616 blocks super 1.0 [2/2] [UU]
      
md256 : active raid1 sdb2[1] sda2[0]
      530112 blocks super 1.0 [2/2] [UU]
      bitmap: 0/1 pages [0KB], 65536KB chunk

md13 : active raid1 sda4[0] sdb4[1]
      458880 blocks super 1.0 [24/2] [UU______________________]
      bitmap: 1/1 pages [4KB], 65536KB chunk

md9 : active raid1 sda1[0] sdb1[1]
      530048 blocks super 1.0 [24/2] [UU______________________]
      bitmap: 1/1 pages [4KB], 65536KB chunk

unused devices: <none>
 
Disk Space:
 
Filesystem                Size      Used Available Use% Mounted on
none                    200.0M    142.1M     57.9M  71% /
devtmpfs                  3.8G      4.0k      3.8G   0% /dev
tmpfs                    64.0M      2.4M     61.6M   4% /tmp
tmpfs                     3.9G     24.0k      3.9G   0% /dev/shm
/dev/md9                509.5M    126.6M    382.8M  25% /mnt/HDA_ROOT
/dev/mapper/cachedev1     3.6T      1.7T      1.8T  49% /share/CACHEDEV1_DATA
/dev/md13               364.2M    284.5M     79.7M  78% /mnt/ext
 
Mount Status:
 
none on /new_root type tmpfs (rw,mode=0755,size=200M)
/proc on /proc type proc (rw)
devpts on /dev/pts type devpts (rw)
sysfs on /sys type sysfs (rw)
tmpfs on /tmp type tmpfs (rw,size=64M)
tmpfs on /dev/shm type tmpfs (rw)
/dev/md9 on /mnt/HDA_ROOT type ext3 (rw,data=ordered)
/dev/mapper/cachedev1 on /share/CACHEDEV1_DATA type ext4 (rw,usrjquota=aquota.user,jqfmt=vfsv0,user_xattr,data=ordered,delalloc,noacl)
/dev/md13 on /mnt/ext type ext3 (rw,data=ordered)
 
 
Memory Information:
 
              total         used         free       shared      buffers
  Mem:      8077504       940552      7136952            0        36680
 Swap:       530108            0       530108
Total:      8607612       940552      7667060
 
NASReport completed on 2015-03-11 20:10:04 (/tmp/nasreport)
Your NAS is still not providing your S.M.A.R.T. data. Has QNAP responded to your ticket yet?

Patrick M. Wilson
Victoria, BC Canada
QNAP TS-470 Pro w/ 4 * Western Digital WD30EFRX WD Reds (RAID5) - - Single 8.1TB Storage Pool FW: QTS 4.2.0 Build 20151023 - Kali Linux v1.06 (64bit)
Forums: View My Profile - Search My Posts - View My Photo - View My Location - Top Community Posters
QNAP: Turbo NAS User Manual - QNAP Wiki - QNAP Tutorials - QNAP FAQs

Please review: When you're asking a question, please include the following.
stevek0077
Starting out
Posts: 22
Joined: Mon Mar 02, 2015 9:57 pm

Re: My Qnap 451 is making a clunk everyfew seconds

Post by stevek0077 »

Code: Select all

*********************
** QNAP NAS Report **
*********************
 
NAS Model:      TS-451
Firmware:       4.1.3 Build 20150217
System Name:    NASE8CCCF
Workgroup:      Stevetring
Base Directory: /share/CACHEDEV1_DATA
NAS IP address: 192.168.1.200
 
Default Gateway Device: eth0
 
          inet addr:192.168.1.200  Bcast:192.168.1.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:202663 errors:0 dropped:0 overruns:0 frame:0
          TX packets:250130 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:65094583 (62.0 MiB)  TX bytes:84774948 (80.8 MiB)

 
DNS Nameserver(s):192.168.1.254
8.8.8.8
 
 
HDD Information:
 
HDD1 - Model=WDC WD40EFRX-68WT0N0                    , FwRev=82.00A82, SerialNo=     WD-WCC4E6YH6EUJ
 
Model: WDC WD40EFRX-68WT0N0 (scsi)
Disk /dev/sda: 4001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End     Size    File system     Name     Flags
 1      20.5kB  543MB   543MB   ext3            primary
 2      543MB   1086MB  543MB   linux-swap(v1)  primary
 3      1086MB  3992GB  3991GB                  primary
 4      3992GB  3992GB  543MB   ext3            primary
 5      3992GB  4001GB  8554MB  linux-swap(v1)  primary

 
 
HDD2 - Model=WDC WD40EFRX-68WT0N0                    , FwRev=82.00A82, SerialNo=     WD-WCC4E6PVS20U
 
Model: WDC WD40EFRX-68WT0N0 (scsi)
Disk /dev/sdb: 4001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End     Size    File system     Name     Flags
 1      20.5kB  543MB   543MB   ext3            primary
 2      543MB   1086MB  543MB   linux-swap(v1)  primary
 3      1086MB  3992GB  3991GB                  primary
 4      3992GB  3992GB  543MB   ext3            primary
 5      3992GB  4001GB  8554MB  linux-swap(v1)  primary

 
 
HDD3 - Model=        , FwRev=, SerialNo=910084853BB9B062
 
Model:  USB DISK MODULE (scsi)
Disk /dev/sdc: 516MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type      File system  Flags
 1      4096B   5374kB  5370kB  primary   ext2
 2      5374kB  252MB   247MB   primary   ext2         boot
 3      252MB   498MB   247MB   primary   ext2
 4      498MB   516MB   17.4MB  extended
 5      498MB   507MB   8503kB  logical   ext2
 6      507MB   516MB   8897kB  logical   ext2

 
Open device fail
 
HDD4 -Drive absent
HDD5 -Drive absent
HDD6 -Drive absent
HDD7 -Drive absent
HDD8 -Drive absent
HDD9 -Drive absent
HDD10 -Drive absent
HDD11 -Drive absent
HDD12 -Drive absent
Volume Status
 
/dev/md1:
        Version : 1.0
  Creation Time : Mon Feb  2 15:50:02 2015
     Raid Level : raid1
     Array Size : 3897063616 (3716.53 GiB 3990.59 GB)
  Used Dev Size : 3897063616 (3716.53 GiB 3990.59 GB)
   Raid Devices : 2
  Total Devices : 2
    Persistence : Superblock is persistent

    Update Time : Wed Mar 11 19:14:29 2015
          State : clean 
 Active Devices : 2
Working Devices : 2
 Failed Devices : 0
  Spare Devices : 0

           Name : 1
           UUID : 01ddaf87:a612d1f0:982e20c6:7ba3cb81
         Events : 34

    Number   Major   Minor   RaidDevice State
       0       8        3        0      active sync   /dev/sda3
       1       8       19        1      active sync   /dev/sdb3
 
Personalities : [linear] [raid0] [raid1] [raid10] [raid6] [raid5] [raid4] [multipath] 
md1 : active raid1 sda3[0] sdb3[1]
      3897063616 blocks super 1.0 [2/2] [UU]
      
md256 : active raid1 sdb2[1] sda2[0]
      530112 blocks super 1.0 [2/2] [UU]
      bitmap: 0/1 pages [0KB], 65536KB chunk

md13 : active raid1 sda4[0] sdb4[1]
      458880 blocks super 1.0 [24/2] [UU______________________]
      bitmap: 1/1 pages [4KB], 65536KB chunk

md9 : active raid1 sda1[0] sdb1[1]
      530048 blocks super 1.0 [24/2] [UU______________________]
      bitmap: 1/1 pages [4KB], 65536KB chunk

unused devices: <none>
 
Disk Space:
 
Filesystem                Size      Used Available Use% Mounted on
none                    200.0M    142.1M     57.9M  71% /
devtmpfs                  3.8G      4.0k      3.8G   0% /dev
tmpfs                    64.0M      2.4M     61.6M   4% /tmp
tmpfs                     3.9G     24.0k      3.9G   0% /dev/shm
/dev/md9                509.5M    126.6M    382.8M  25% /mnt/HDA_ROOT
/dev/mapper/cachedev1     3.6T      1.7T      1.8T  49% /share/CACHEDEV1_DATA
/dev/md13               364.2M    284.5M     79.7M  78% /mnt/ext
 
Mount Status:
 
none on /new_root type tmpfs (rw,mode=0755,size=200M)
/proc on /proc type proc (rw)
devpts on /dev/pts type devpts (rw)
sysfs on /sys type sysfs (rw)
tmpfs on /tmp type tmpfs (rw,size=64M)
tmpfs on /dev/shm type tmpfs (rw)
/dev/md9 on /mnt/HDA_ROOT type ext3 (rw,data=ordered)
/dev/mapper/cachedev1 on /share/CACHEDEV1_DATA type ext4 (rw,usrjquota=aquota.user,jqfmt=vfsv0,user_xattr,data=ordered,delalloc,noacl)
/dev/md13 on /mnt/ext type ext3 (rw,data=ordered)
 
 
Memory Information:
 
              total         used         free       shared      buffers
  Mem:      8077504       940552      7136952            0        36680
 Swap:       530108            0       530108
Total:      8607612       940552      7667060
 
NASReport completed on 2015-03-11 20:10:04 (/tmp/nasreport) 
stevek0077
Starting out
Posts: 22
Joined: Mon Mar 02, 2015 9:57 pm

Re: My Qnap 451 is making a clunk everyfew seconds

Post by stevek0077 »

No Still No reply, How to escalate it effectively ??
Post Reply

Return to “Hardware & Software Compatibility”