Posts by fergbrain

    Updating python to the Debian's testing branch seems to resolve the issue:


    Add 'testing' to sources.list:


    # sudo nano /etc/apt/sources.list
    deb http://ftp.de.debian.org/debian testing main



    Make the 'stable' repository default on your server:





    Code
    # echo 'APT::Default-Release "stable";' | sudo tee -a /etc/apt/apt.conf.d/00local
    
    
    # sudo nano /etc/apt/preferences
    Package: *
    Pin: release a=stable
    Pin-Priority: 900
    Package: *
    Pin: release o=Debian
    Pin-Priority: -10



    Install updated python3 (this updated me to Python3.7.2+)
    # sudo apt-get update
    # sudo apt-get -t testing install python3


    Based on: https://www.rosehosting.com/bl…python-3-6-4-on-debian-9/ and https://unix.stackexchange.com…to-set-default-apt-source

    Wow...this was exactly the issue I had, except I have RAID6.


    Messed around with ZFS at the beginning before settling on OMV (about 5 years ago).


    I did not have to build wipefs...just repeat wipefs it several times and decrementing the offset.


    As a reminder to anyone else: always make sure you understand the commands you are executing before you blindly copy-paste commands from the internet.


    Thanks again Thomas! I owe you a beer!

    I also use StartSSL and I was able to chain StartSSL's Intermediate and CA certificates to my signed certificate and use the resulting file successfully.


    Code
    cat myserver.example.com.crt sub.class2.server.ca.pem ca.pem > myserver.example.com_chain.crt
    openssl x509 -in myserver.example.com_chain.crt -out myserver.example.com_chain.pem -outform PEM
    openssl rsa -in myserver.example.com.key -out myserver.example.com.key.pem -outform PEM


    In OMV > System > Certificates > Add > Import...


    Copy and paste myserver.example.com.key.pem into the Private Key
    Copy and paste myserver.example.com_chain.pem into the Certificate


    After you've saved the new certificate, click System > General Settings and select the newly added certificate from the Certificate drop-down in the Secure Connection area.

    The tabs are listed in /var/www/openmediavault/js/omv/module/admin/diagnostic/system/plugin/, but you'll have to look in the files to see what the name of the tabs are. Can you run and post the result of:


    Code
    ls /var/www/openmediavault/js/omv/module/admin/diagnostic/system/plugin/

    deejc,


    I have an HP Microserver N54L, but I don't have the Remote Access Card, so I can't develop that functionality. If you could get me a RAC, I'd be happy to see what I could do to implement that functionality.

    I fork'd Solo0815's script and spent the weekend making an updated version that includes Mahmoud's update as well getting HDDTemps to work. I've issued a pull request to merge the results back to Solo0815's work, but in the meantime you can download script at: https://github.com/fergbrain/omvsensors/archive/master.zip


    Note: this is designed for OMV 0.5...do not try to use this on OMV 0.4. Also, wasn't able to checkout the fanspeed settings, so if they don't work let me know.


    Instructions are in the README.md file, which you can also view: https://github.com/fergbrain/omvsensors