Posts by eriklysoe

    I had a flawless upgrade. I had to install the md plugin but the installer told me that. Zero issues so far. I was a little worred about having pihole running under docker, but the installer did everything it needed I guess without shutting that down. After reboot everything just worked.


    Nice work to votdev and whomever else contributed!

    Yes, a flawless upgrade 6 -> 7. Thanks to developers for this beautiful nas software :)

    Hi


    I got some "Currently unreadable (pending) sectors" on one of my disks in raid 5. Is it as easy as replace the disk, and then repair the raid? Or is it in addition something else to think about?


    Cheers

    Erik

    Update to 6.6.0-2 (Shaitan) without any problem.


    Running an os on a sd card is gambling, it will sooner or later break. I have home assistant running on rpi4, and it took one month before sd card broke. After i switched to ssd drive, it's been stable over a year. Guess that is what happened, corrupt sd.

    versions[4]: Invalid value '', allowed values are '2,3,4,4.1,4.2'.


    OMV\Json\SchemaValidationException: versions[4]: Invalid value '', allowed values are '2,3,4,4.1,4.2'. in /usr/share/php/openmediavault/json/schema.inc:582

    Stack trace:

    #0 /usr/share/php/openmediavault/json/schema.inc(378): OMV\Json\Schema->checkEnum(Array, Array, 'versions[4]')

    #1 /usr/share/php/openmediavault/json/schema.inc(301): OMV\Json\Schema->validateString('', Array, 'versions[4]')

    #2 /usr/share/php/openmediavault/json/schema.inc(644): OMV\Json\Schema->validateType('', Array, 'versions[4]')

    #3 /usr/share/php/openmediavault/json/schema.inc(390): OMV\Json\Schema->checkItems(Array, Array, 'versions')

    #4 /usr/share/php/openmediavault/json/schema.inc(281): OMV\Json\Schema->validateArray(Array, Array, 'versions')

    #5 /usr/share/php/openmediavault/json/schema.inc(631): OMV\Json\Schema->validateType(Array, Array, 'versions')

    #6 /usr/share/php/openmediavault/json/schema.inc(399): OMV\Json\Schema->checkProperties(Object(stdClass), Array, '')

    #7 /usr/share/php/openmediavault/json/schema.inc(289): OMV\Json\Schema->validateObject(Object(stdClass), Array, '')

    #8 /usr/share/php/openmediavault/json/schema.inc(261): OMV\Json\Schema->validateType(Object(stdClass), Array, '')

    #9 /usr/share/php/openmediavault/rpc/paramsvalidator.inc(59): OMV\Json\Schema->validate(Object(stdClass))

    #10 /usr/share/php/openmediavault/rpc/serviceabstract.inc(179): OMV\Rpc\ParamsValidator->validate('{"enable":true,...')

    #11 /usr/share/openmediavault/engined/rpc/nfs.inc(75): OMV\Rpc\ServiceAbstract->validateMethodParams(Array, 'rpc.nfs.setsett...')

    #12 [internal function]: Engined\Rpc\Nfs->setSettings(Array, Array)

    #13 /usr/share/php/openmediavault/rpc/serviceabstract.inc(123): call_user_func_array(Array, Array)

    #14 /usr/share/php/openmediavault/rpc/rpc.inc(86): OMV\Rpc\ServiceAbstract->callMethod('setSettings', Array, Array)

    #15 /usr/sbin/omv-engined(537): OMV\Rpc\Rpc::call('NFS', 'setSettings', Array, Array, 1)

    #16 {main}

    Hi


    I set up an rsync scheduled task many months ago, in the early beta of omv6. It is still running every 3 hour (see it in rsync logs in terminal), but the scheduled task section in OMV6 is empty. It has disapeared from the gui, but is still active. Where do I find the cron job, or what it is called in omv6? I would like to delete or change the command.


    Cheers

    Erik

    I love OMV and it's great software. I apologize in advance but I'm just wondering how long it will be for a stable OMV 6.


    I know developers hate that question but I'm not looking for anything specific, maybe like a quarter or general idea.


    Thank you for all your hard work, I really appreciate it :)

    I have had OMV6 on my newly built NAS for several months now, it's been very stable. And lately more plugins have been added, so I would not hesitate to upgrade :)

    Thanks eriklysoe!


    I will give it a shot on a separate VM. Any area where I can read about docker and OMV? I looked up TDL, but quite honestly there are gaps in explanation for the novice. Someone who is doing something every day may not realize that there are small details that could become a road block for the newbie.

    I learned a lot watching tecno dad life videoes: https://www.youtube.com/channel/UCX2Vhc0LIzSS9aMzhGFZ7PA


    And there are many other videos out there, e.g. https://www.youtube.com/c/PcMac24x7


    I usually use terminal to install the dockers, for example deluge torrents from linuxserver. You need to make folders first for config and downloads, and change the path, e.g. /srv/dev-disk-xxx/docker/deluge:/config


    I have all config files in docker/container, e.g. docker/deluge


    Then you need to find out PUID and PGID values. I usually creates specific users for specific tasks (but you can use admin), just go in terminal and type "id user" and then you will see the values to put in for PUID and PGID. Change timezone, and that's it, then you go to the web adress for deluge, "your_internal_omv_IP:6881".


    Terminal command, just copy paste when it's modified (https://hub.docker.com/r/linuxserver/deluge)


    docker run -d \

    --name=deluge \

    -e PUID=1000 \

    -e PGID=1000 \

    -e TZ=Europe/London \

    -e DELUGE_LOGLEVEL=error `#optional` \

    -p 8112:8112 \

    -p 6881:6881 \

    -p 6881:6881/udp \

    -v /path/to/deluge/config:/config \

    -v /path/to/your/downloads:/downloads \

    --restart unless-stopped \

    ghcr.io/linuxserver/deluge


    After installation, I use portainer for maintaining the dockers

    I guess I am going to have to give it a shot since there's no other way 🙂. What about DOWNLOADER plugin?

    I have a synology NAS in addition to OMV, and this supports a lot of plugins which I used before. But after I discovered docker and learned how to use it, I prefer docker (even on Synology) because there is containers for a lot more software that is up to date compared to the plugins.


    So I suggest watch some videos and give it a try. One of the most important thing to learn is to deal with permissions for the user that is connected to the docker, and make the folders for the config files and others. The rest is almost copy/paste from the docker webpages. I like to use https://www.linuxserver.io/, they have dockers for all my needs.

    I've installed OMV 6 alpha on a newly build NAS, very happy so far, no big problems and it has been very stable. But it's lacking in plugins and still in alpha mode, so things can happen. As long as it supports docker I'm happy, so I'll wait for some more plugins even if it takes months :)

    Hi


    I set up remote rsync exactly as another server that is OMV5, but get 400 Bad Request, srcsharedfolderref: The value null is not a string.


    I tried to run it in terminal, no problem


    rsync -avzh OMV-NAS@X.X.X.X:/volume1/docker /srv/dev-disk-by-uuid-xxxxxxx/docker


    OMV-NAS@X.X.X.X's password:

    receiving incremental file list

    docker/

    docker/#recycle/

    docker/@eaDir/

    etc.


    Cheers

    Erik