Installation¶
Switch to the Root User¶
sudo -i
Download the Installer¶
- Using wget:
wget -qO setup.sh https://raw.githubusercontent.com/MediaEase/MediaEase/develop/setup.sh && chmod +x setup.sh
- Using curl:
curl -sSL https://raw.githubusercontent.com/MediaEase/MediaEase/develop/setup.sh -o setup.sh && chmod +x setup.sh
Customize Your Installation¶
Tip
Define your custom variables. The username
, password
, and email
are required.
username="thomas"
password="thomas"
email="test@me.com"
Note
All flags are optional. If not provided, you will be prompted for the required information during installation.
Run the Installer¶
To install with the customized settings, use the following command:
./setup.sh -u $username -p $password -e $email