I'm trying to set Asset up to serve a Linn Majik DSM in Linux Mint 18.4 Mate. I use 64 bit.
I've created the folder. But I do not understand the bit after [COLOR="*FF0000"]extract it[/COLOR] (below)
I'd be grateful for advice. I do not have a big knowledge of bash or Linux. Just enough to get by, and to do routine maintenance.
I've created the folder. But I do not understand the bit after [COLOR="*FF0000"]extract it[/COLOR] (below)
I'd be grateful for advice. I do not have a big knowledge of bash or Linux. Just enough to get by, and to do routine maintenance.
Create a folder for Asset:
cd /usr/bin
sudo mkdir asset
sudo chmod 777 asset
cd asset
Download asset (32 bit), free version:
wget http://www.dbpoweramp.com/install/As...nux-x86.tar.gz
or 64 bit:
wget http://www.dbpoweramp.com/install/As...nux-x64.tar.gz
Download asset (32 bit), premium registered version:
wget http://secure.dbpoweramp.com/downloa...rnum=123456789 -O asset.tar.gz
or 64 bit, premium registered version:
wget http://secure.dbpoweramp.com/downloa...rnum=123456789 -O asset.tar.gz
(where 123456789 is your actual order number)
[COLOR="*FF0000"]extract it:[/COLOR]
tar -zxvf *.gz
rm *.gz
Run Asset:
cd /usr/bin/asset/Asset-R6-Linux-x64-registered/bin
./AssetUPnP
Once running it will show Presentation URL type this into a web browser on any computer on the same network, example:
Then click 'configure' to specify the options
cd /usr/bin
sudo mkdir asset
sudo chmod 777 asset
cd asset
Download asset (32 bit), free version:
wget http://www.dbpoweramp.com/install/As...nux-x86.tar.gz
or 64 bit:
wget http://www.dbpoweramp.com/install/As...nux-x64.tar.gz
Download asset (32 bit), premium registered version:
wget http://secure.dbpoweramp.com/downloa...rnum=123456789 -O asset.tar.gz
or 64 bit, premium registered version:
wget http://secure.dbpoweramp.com/downloa...rnum=123456789 -O asset.tar.gz
(where 123456789 is your actual order number)
[COLOR="*FF0000"]extract it:[/COLOR]
tar -zxvf *.gz
rm *.gz
Run Asset:
cd /usr/bin/asset/Asset-R6-Linux-x64-registered/bin
./AssetUPnP
Once running it will show Presentation URL type this into a web browser on any computer on the same network, example:
Then click 'configure' to specify the options
Comment