Helios4 Personal Cloud – the World’s 1st Open Source NAS

If you are searching for an open source NAS hardware you can use to run OMV, then this might be interesting for you.

The Helios4 team is launching a Kickstarter campaign for the 1st Open Source and
Open Hardware NAS (Network Attached Storage). Along the lines of Raspberry PI
success, Helios4 is driving the way in open source collaborative approach by
unveiling a single board computer built around the Marvell Armada 388 ARM
processor.

 

New update available

The following changes were made:

openmediavault 2.2.14

  • Backport Chrome browser workaround to fix WebUI render issues.

How to use curl to execute a RPC

If you want to execute a RPC from the command line on your host system, then you should use the following commands.

# Login
curl --request POST --cookie-jar cookies.txt --data '{"service":"session","method":"login","params":{"username":"admin","password":"<PASSWORD>"}}' <URL>/rpc.php
# Execute the RPC
curl --request POST --cookie cookies.txt --data '{"service":"<NAME>","method":"<NAME>","params":null}' <URL>/rpc.php
# Logout
curl --request POST --cookie cookies.txt --data '{"service":"session","method":"logout","params":null}' <URL>/rpc.php

Example:

curl --request POST --cookie cookies.txt --data '{"service":"system","method":"noop","params":null}' <URL>/rpc.php