mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Update Install-LibreNMS.md Composer complains that neither unzip nor 7z is installed so it would unzip using PHP which may or may not corrupt the results file. This has always worked fine for me but I guess it might be a better idea to use the "real" unzipper. ``` librenms@librenms1:~$ ./scripts/composer_wrapper.php install --no-dev Could not scan for classes inside "vendor/dapphp/radius" which does not appear to be a file nor a folder > LibreNMS\ComposerHelper::preInstall Installing dependencies from lock file Verifying lock file contents can be installed on current platform. Package operations: 118 installs, 0 updates, 0 removals As there is no 'unzip' nor '7z' command installed zip files are being unpacked using the PHP zip extension. This may cause invalid reports of corrupted archives. Besides, any UNIX permissions (e.g. executable) defined in the archives will be lost. Installing 'unzip' or '7z' (21.01+) may remediate them. ``` * Update Install-LibreNMS.md Sorted 'unzip' package alphabetically in Debian, Ubuntu and CentOS installation steps.