QNAP (431p)
From Holyheads Wiki
(Difference between revisions)
(→HDD spin down issues) |
|||
Line 1: | Line 1: | ||
− | + | =Cookbook= | |
− | My collection of hints, tips and tricks (supporting my memory and maybe also helping others) | + | My collection of hints, tips and tricks (supporting my memory and maybe also helping others) - some links are in German, some in English |
− | === Raid sync speed | + | == Entware == |
+ | |||
+ | * https://forum.qnapclub.de/thread/37886-howto-entware-ng-und-linux-pakete-installieren/?f=80&t=37886#p215810 | ||
+ | |||
+ | * enable auto-start (re-do after FW update): http://www.welzels.de/blog/projekte/qnap-mods-tricks-und-projekte/optware-init-skripte-nach-booten-starten/ | ||
+ | |||
+ | * re-enable after FW update: | ||
+ | [/share/CACHEDEV1_DATA/.qpkg/Entware-ng] # ./Entware-ng.sh start | ||
+ | |||
+ | == Raid sync speed == | ||
https://forum.qnap.com/viewtopic.php?t=10268 | https://forum.qnap.com/viewtopic.php?t=10268 | ||
Line 14: | Line 23: | ||
5000 | 5000 | ||
− | + | == HDD spin down issues == | |
* [https://www.qnap.com/en-us/qa/con_show.php?op=showone&cid=58 Why the hard drive of NAS does not go to standby mode?] | * [https://www.qnap.com/en-us/qa/con_show.php?op=showone&cid=58 Why the hard drive of NAS does not go to standby mode?] | ||
Line 20: | Line 29: | ||
* [https://forum.qnapclub.de/thread/40517-3-sammelthema-probleme-mit-festplatten-standby-1-beitrag-beachten/?pageNo=1 Probleme mit Festplatten-Standby] | * [https://forum.qnapclub.de/thread/40517-3-sammelthema-probleme-mit-festplatten-standby-1-beitrag-beachten/?pageNo=1 Probleme mit Festplatten-Standby] | ||
− | === | + | * Qnap QTS 4.3.3.0154 write to disk at least every ~30 minutes ( setcfg -> dirtied inode ... qid_persistent.conf) on md9 ) |
+ | Seems to be known issue - see https://forum.qnapclub.de/thread/40517-3-sammelthema-probleme-mit-festplatten-standby-1-beitrag-beachten/?pageNo=12 | ||
+ | |||
+ | === Move Samba tdb_path to ramdisk === | ||
+ | |||
+ | (Permanently) move samba's tdb_path to ram disk -> avoid hdd spin up due to .tdb file update | ||
+ | |||
+ | [/] # /sbin/setcfg "Samba" "tdb_path" "/" | ||
+ | [/] # /etc/init.d/smb.sh restart | ||
+ | Restarting SMB services: | ||
+ | Shutting down SMB services: smbd nmbd. | ||
+ | Shutting down winbindd services: winbindd. | ||
+ | locks path was set to /share/CACHEDEV1_DATA/.locks | ||
+ | Shutting down winbindd services: winbindd. | ||
+ | Starting winbindd services:Starting SMB services:. | ||
+ | done. | ||
+ | [/] # la /.samba/ | ||
+ | drwxr-xr-x 5 admin administ 100 Mar 23 07:33 ./ | ||
+ | drwxr-xr-x 23 admin administ 520 Mar 23 07:33 ../ | ||
+ | drwxr-xr-x 3 admin administ 60 Mar 23 07:33 cache/ | ||
+ | drwxr-xr-x 2 admin administ 320 Mar 23 07:33 lock/ | ||
+ | drwxr-xr-x 2 admin administ 120 Mar 23 07:33 state/ | ||
+ | |||
+ | == Cron == | ||
* https://www.techandme.se/qnap-and-cron/ | * https://www.techandme.se/qnap-and-cron/ |
Revision as of 22:06, 3 May 2017
Contents |
Cookbook
My collection of hints, tips and tricks (supporting my memory and maybe also helping others) - some links are in German, some in English
Entware
- enable auto-start (re-do after FW update): http://www.welzels.de/blog/projekte/qnap-mods-tricks-und-projekte/optware-init-skripte-nach-booten-starten/
- re-enable after FW update:
[/share/CACHEDEV1_DATA/.qpkg/Entware-ng] # ./Entware-ng.sh start
Raid sync speed
https://forum.qnap.com/viewtopic.php?t=10268
cat /proc/mdstat
cat /proc/sys/dev/raid/speed_limit_max 200000 cat /proc/sys/dev/raid/speed_limit_min 5000
HDD spin down issues
- Qnap QTS 4.3.3.0154 write to disk at least every ~30 minutes ( setcfg -> dirtied inode ... qid_persistent.conf) on md9 )
Seems to be known issue - see https://forum.qnapclub.de/thread/40517-3-sammelthema-probleme-mit-festplatten-standby-1-beitrag-beachten/?pageNo=12
Move Samba tdb_path to ramdisk
(Permanently) move samba's tdb_path to ram disk -> avoid hdd spin up due to .tdb file update
[/] # /sbin/setcfg "Samba" "tdb_path" "/" [/] # /etc/init.d/smb.sh restart Restarting SMB services: Shutting down SMB services: smbd nmbd. Shutting down winbindd services: winbindd. locks path was set to /share/CACHEDEV1_DATA/.locks Shutting down winbindd services: winbindd. Starting winbindd services:Starting SMB services:. done. [/] # la /.samba/ drwxr-xr-x 5 admin administ 100 Mar 23 07:33 ./ drwxr-xr-x 23 admin administ 520 Mar 23 07:33 ../ drwxr-xr-x 3 admin administ 60 Mar 23 07:33 cache/ drwxr-xr-x 2 admin administ 320 Mar 23 07:33 lock/ drwxr-xr-x 2 admin administ 120 Mar 23 07:33 state/