09-11-2024, 08:16 PM
Thats interesting. It could be that moode startup which includes audio detection and configuration completes too fast when booting from NVMe. IME its best to keep the boot media separate from the data drive as is typical for servers. This avoids having to reload all the data if you ever want or need to start with a fresh image.
Use top quality surveillance-grade uSD cards for example WD Purple QD101
https://www.westerndigital.com/products/...DD032G1P0C
https://www.amazon.com/gp/product/B088CD...=UTF8&th=1
To test your "slow down" theory edit the file
/var/www/daemon/worker.php
Add the sleep(30) line just below the startup sequence comment header, save the file and then reboot.
Use top quality surveillance-grade uSD cards for example WD Purple QD101
https://www.westerndigital.com/products/...DD032G1P0C
https://www.amazon.com/gp/product/B088CD...=UTF8&th=1
To test your "slow down" theory edit the file
/var/www/daemon/worker.php
Add the sleep(30) line just below the startup sequence comment header, save the file and then reboot.
Code:
//----------------------------------------------------------------------------//
// STARTUP SEQUENCE
//----------------------------------------------------------------------------//
sleep(30);
sysCmd('truncate ' . MOODE_LOG . ' --size 0');
$dbh = sqlConnect();
$result = sqlQuery("UPDATE cfg_system SET value='0' WHERE param='wrkready'", $dbh);
.
.
.