Installation like a Ninja¶
If you need expert help with this or any other issue, please see our terms and conditions technical support.
If there is no configuration file, Yucca will create all directories with data in the current directory
If you understand what you are doing and just want to try Yucca, then here is the command for you:
TMPDIR=$(mktemp -d) \
&& echo ${TMPDIR} \
&& cd ${TMPDIR} \
&& wget https://releases.yucca.app/v0.8.0/linux_amd64/free/yucca \
&& chmod +x yucca \
&& ./yucca server --config=empty
TMPDIR=$(mktemp -d) \
&& echo ${TMPDIR} \
&& cd ${TMPDIR} \
&& wget https://releases.yucca.app/v0.8.0/linux_armv6/free/yucca \
&& chmod +x yucca \
&& ./yucca server --config=empty
TMPDIR=$(mktemp -d) \
&& echo ${TMPDIR} \
&& cd ${TMPDIR} \
&& wget https://releases.yucca.app/v0.8.0/linux_armv7/free/yucca \
&& chmod +x yucca \
&& ./yucca server --config=empty
TMPDIR=$(mktemp -d) \
&& echo ${TMPDIR} \
&& cd ${TMPDIR} \
&& wget https://releases.yucca.app/v0.8.0/linux_arm64/free/yucca \
&& chmod +x yucca \
&& ./yucca server --config=empty
TMPDIR=$(mktemp -d) \
&& echo ${TMPDIR} \
&& cd ${TMPDIR} \
&& wget https://releases.yucca.app/v0.8.0/linux_amd64/ent/yucca \
&& chmod +x yucca \
&& ./yucca server --config=empty
TMPDIR=$(mktemp -d) \
&& echo ${TMPDIR} \
&& cd ${TMPDIR} \
&& wget https://releases.yucca.app/v0.8.0/linux_armv6/ent/yucca \
&& chmod +x yucca \
&& ./yucca server --config=empty
TMPDIR=$(mktemp -d) \
&& echo ${TMPDIR} \
&& cd ${TMPDIR} \
&& wget https://releases.yucca.app/v0.8.0/linux_armv7/ent/yucca \
&& chmod +x yucca \
&& ./yucca server --config=empty
TMPDIR=$(mktemp -d) \
&& echo ${TMPDIR} \
&& cd ${TMPDIR} \
&& wget https://releases.yucca.app/v0.8.0/linux_arm64/ent/yucca \
&& chmod +x yucca \
&& ./yucca server --config=empty
After launch the Web interface will be available at http://localhost:9910