Last active
June 29, 2020 18:44
-
-
Save PrplHaz4/5016f371769eba356d0c8e310dcaa872 to your computer and use it in GitHub Desktop.
openmediavault commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Debug Web Frontend | |
# https://github.com/openmediavault/openmediavault/issues/476#issuecomment-547301980 | |
# First, open /etc/default/openmediavault and set OMV_DEBUG_EXTJS=yes | |
monit restart omv-engined | |
# Enable Wake-on-Lan for 5.2 Kernel | |
# https://github.com/openmediavault/openmediavault/issues/442#issuecomment-547871769 | |
# create cron job that runs on startup | |
/usr/sbin/ethtool -s eth0 wol g | |
# view Scheduled Jobs (defined in OMV webui) | |
cat /etc/cron.d/openmediavault-userdefined | |
# Delay docker startup until all shared folders is mounted | |
# https://github.com/openmediavault/openmediavault/issues/458 | |
systemctl edit docker.service | |
[Unit] | |
After=local-fs.target | |
# Remove noexec from existing mounts | |
# https://forum.openmediavault.org/index.php?thread/28623-with-omv-mkconf-missing-omv-fstab-mntops-ext4-variable-deprecated-how-can-one-mo/&postID=213327#post213327 | |
nano /etc/openmediavault/config.xml | |
omv-salt deploy run fstab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment