[size=5]Installing[/size]
Installing is done through the Linux terminal command-line. For headless devices, install 'Putty' then connect to the device to access command-shell.
Do determine which version of Asset is compatible with your system:
Possible output:
Create and enter a folder in which Asset will be downloaded an extracted:
To simplify the process, all listed download commands produce a file named asset.tar.gz
Downloading Asset, free version:
Execute one of the following, depending on your machine type:
Downloading Asset, registered version, this must be done to a PC using the registration link in your email receipt, or the link presented after purchase. After downloading transfer the install to your device (perhaps by USB flash drive)
Installing:
Extract the downloaded archive with the tar command below - a folder named Asset-<versiondetails> will be created.
Enter the folder and execute INSTALL.sh:
Further details will be shown on screen. When finished, Asset will be running and configured to automatically start on system startup.
To access Asset configuration, type the following URL into your web browser:
... replacing x.x.x.x with the IP address of your Linux system.
If you don't know the IP address, type ifconfig into terminal and look for IP address under eth0 / inet.
When done, the Asset-Install folder is no longer needed and can be deleted:
[size=5]Upgrading[/size]
Follow the instructions above. The INSTALL.sh script will upgrade from an older version to newer automatically.
Trial and registered versions:
Registered status is always retained when upgrading. If you install a registered version once, you can then update it with trial or beta packages; they will all function as registered.
[size=5]Uninstalling[/size]
Use the included UNINSTALL.sh script. If you've deleted the Asset-Install folder, you can follow the install procedure above with free version of Asset and run UNINSTALL.sh instead of INSTALL.sh
Installing is done through the Linux terminal command-line. For headless devices, install 'Putty' then connect to the device to access command-shell.
Do determine which version of Asset is compatible with your system:
Code:
uname -m
- i686 : x86 32-bit
- x86_64 : x86 64-bit (x64)
- armv7, aarch64 : ARM (Raspberry Pi)
Create and enter a folder in which Asset will be downloaded an extracted:
Code:
mkdir ~/Asset-Install cd ~/Asset-Install
Downloading Asset, free version:
Execute one of the following, depending on your machine type:
Code:
wget https://www.dbpoweramp.com/install/AssetUPnP-Linux-x86.tar.gz -O asset.tar.gz wget https://www.dbpoweramp.com/install/AssetUPnP-Linux-x64.tar.gz -O asset.tar.gz wget https://www.dbpoweramp.com/install/Asset-RaspberryPi.tar.gz -O asset.tar.gz
Installing:
Extract the downloaded archive with the tar command below - a folder named Asset-<versiondetails> will be created.
Enter the folder and execute INSTALL.sh:
Code:
tar xzf asset.tar.gz cd Asset-* ./INSTALL.sh
To access Asset configuration, type the following URL into your web browser:
Code:
http://x.x.x.x:45537/
If you don't know the IP address, type ifconfig into terminal and look for IP address under eth0 / inet.
When done, the Asset-Install folder is no longer needed and can be deleted:
Code:
rm -rf ~/Asset-Install
Follow the instructions above. The INSTALL.sh script will upgrade from an older version to newer automatically.
Trial and registered versions:
Registered status is always retained when upgrading. If you install a registered version once, you can then update it with trial or beta packages; they will all function as registered.
[size=5]Uninstalling[/size]
Use the included UNINSTALL.sh script. If you've deleted the Asset-Install folder, you can follow the install procedure above with free version of Asset and run UNINSTALL.sh instead of INSTALL.sh
Comment