Re: [SlimDevices: Unix] LInux client (controller) currently maintained

2022-10-16 Thread HB64


brainchild wrote: 
> Thanks for the response.
> 
> It's not clear what this application does, but when I mentioned a Linux
> controller, I had in mind an application to run on a Linux desktop or
> laptop, to connect to the player or the media server, for the purposes
> of controlling what to play.That's what jivelite does.

Verstuurd vanaf mijn POCO F1 met Tapatalk




----
HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=116934

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] LMS not running after upgrade to Ubuntu 18.04.1

2018-10-23 Thread HB64

There is no repository, do the following to get it working again.

Go to http://downloads.slimdevices.com/nightly/index.php?ver=7.9 for the
latest 
debian nightly and right mouse click on the correct version and copy
paste that link:
"sudo wget “paste link here”"
Control which name the downloaded package has: 
"ls"
It should give you something like this: 
logitechmediaserver_7.9.0~1481874538_arm.deb 
Copy paste that name in following code: 
"sudo dpkg -i “paste name here”"
After installation start and enable LMS by following (other commands are
status and 
restart): 
"sudo systemctl start logitechmediaserver.service"

Verstuurd vanaf mijn Redmi Note 4 met Tapatalk




----
HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=109639

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] LMS not running after upgrade to Ubuntu 18.04.1

2018-10-23 Thread HB64


It's not runnings, this line is showing that it is exited 21 hours ago
"Active: active (exited) since Mon 2018-10-22 15:39:31 MDT; 21h ago"
Try this "systemctl daemon-reload" and then "systemctl enable
logitechmediaserver.service" "systemctl start
logitechmediaserver.service"  and then again "systemctl status
logitechmediaserver.service".
If it now still fails to run try "journalctl -xe" it may reveal whats
wrong with LMS.

Verstuurd vanaf mijn Redmi Note 4 met Tapatalk




----
HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=109639

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] LMS not running after upgrade to Ubuntu 18.04.1

2018-10-23 Thread HB64


merlinus wrote: 
> No problems until the upgrade.  LMS is installed but I cannot get it to
> run.
> 
> I tried the following command, but no joy:
> sudo service logitechmediaserver startTry "sudo systemctl start 
> logitechmediaserver.service" and check the
status with " sudo systemctl status logitechmediaserver.service" if it
not runs it will reveal the reason why it isn't.

Verstuurd vanaf mijn Redmi Note 4 met Tapatalk




----
HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=109639

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] LMS stop/start/restart on Ubuntu 16.04 LTS - how to do it without root password?

2017-08-31 Thread HB64

"systemctl restart logitechmediaserver" is even better, but i agree it
would be great if this could be doen from within the GUI.




----
HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=107643

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Announce: JiveLite - cut down squeezebox control application

2017-03-11 Thread HB64

markiii wrote: 
> fabulous that worked a treat thanks.
> 
> oddly though it doesn't survive a reboot, when I try ro run
> .bin/jivelite after a reboot it doesn't exist

That's perfectly normal behavior, you have to make jivelite start on
boot. 
I don't know where your ubuntu is running on but the way to make it
start on a debian distro (and maybe Ubuntu) goes as following:

Install Xorg and LXDE-Core: 

Code:

sudo apt-get install xorg lxde-core


After that we must make the system auto login:

Code:

sudo nano /etc/systemd/system/getty.target.wants/getty@tty1.service


And change the "ExecStart=" line in the "[Service]" section to this
(with foo as example name):

Code:

ExecStart=-/sbin/agetty --autologin foo --noclear %I $TERM


CTRL X to save it.
For automatic `startx` edit .profile in your home
directory:

Code:

sudo nano .profile


And add this snippet to the end of the file: 

Code:

[ "$(tty)" = "/dev/tty1" ] && exec startx


CTRL X to save it.
Now set the correct default.target to ensure the system boots to the
console (TTY) rather than to a display manager:

Code:

sudo systemctl set-default multi-user.target


To reverse this change, reset the default.target with (leave this for
now otherwise jivelite will fail to start): 

Code:

sudo systemctl set-default graphical.target


Now finally autostart JiveLite by editing the following file: 

Code:

sudo nano /usr/bin/startlxde


Scroll to the bottom of the it and youll see the last line says
this: 

Code:

exec /usr/bin/lxsession -s LXDE-pi -e LXDE


Change it to this by putting a # sign in front of that line

Code:

#exec /usr/bin/lxsession -s LXDE-pi -e LXDE


Add another line below it that says this (with foo as example name):

Code:

exec /home/foo/jivelite/bin/jivelite


CTRL X to save it.
Reboot your system and hopefully it's working.


----
HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=98156

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Announce: JiveLite - cut down squeezebox control application

2017-03-11 Thread HB64

That link doesn't work anymore, use this instead

sudo apt-get install libluajit-5.1-dev libsdl1.2-dev libsdl-ttf2.0-dev
libsdl-gfx1.2-dev libsdl-image1.2-dev libexpat1-dev git make
build-essential

cd
git clone http://luajit.org/git/luajit-2.0.git
cd luajit-2.0
make
sudo make install
sudo ldconfig

Now lets get jivelite

cd
git clone https://code.google.com/p/jivelite/
git clone https://github.com/ralph-irving/jivelite.git
cd jivelite
sudo make PREFIX=/usr
./bin/jivelite





HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=98156

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Squeeze on Arch on Wandboard: boot problems following update: Solved

2016-08-22 Thread HB64

I always work as root when i do such things you should use sudo in front
like this "sudo squeezelite -l" or switch to root with "su".
If you did not chance the password for root i'll advice you to chance it
my wandboard was hacked in the past, use following to chance the
password as the user you created "sudo passwd".
And by the way don't use de quotes when u copy the code.




----
HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=105587

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Squeeze on Arch on Wandboard: boot problems following update: Solved

2016-08-12 Thread HB64

I' ve forgotten the step that after is LMS installed you have to point
your browser to the ip adres:port of the wandboard usuall it's in this
order 192.168.-.-: 9000, you have to lookup in your router wat the ip of
the wandboard is.
And if you have connected a harddrive fstab must be set up to mount that
drive, if there's a need for it to putt this steps down here i will give
it a try.





HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=105587

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Squeeze on Arch on Wandboard: boot problems following update: Solved

2016-08-12 Thread HB64

atrocity wrote: 
> CSOS ran under Arch.

Your mistaken CSOS ran under fedora SOA did run on arch linux


----
HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=105587

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Squeeze on Arch on Wandboard: boot problems following update: Solved

2016-08-12 Thread HB64

atrocity wrote: 
> And it's a great guide!
> 
> 
> 
> Am I missing it or is HDMI audio output not an option?  (I'm fine with
> S/PDIF, just curious.)

If I'm not mistaking squeezlite doesn't support audio over HDMI on
Wanboard, in my own setup i use a cheap china USB DAC it sound a little
better than the onboard spdif.


----
HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=105587

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Squeeze on Arch on Wandboard: boot problems following update: Solved

2016-08-12 Thread HB64

lehmanhill wrote: 
> Thanks atrocity.  I will give that a try.  I have been looking closely
> at the Pi/Max2Play.  It looks like it is popular and well supported, so
> it might be good for me.
> 
> Thanks again.
> 
> Jac

I have made a guide how to make a Squeezebox  server/player from a
Wandboard Quad using Debian Jessie and is created with help of this
forum and lots of other articels on the net

Get the debian image from Wanboard.org
wandboard.org/images/downloads/debian-8-xfce-wandboard-20150514.zip and
burn it onto a micro SD with the use of Win32 Disk Imager

When the sd card is created put it in your wandboard and power it up and
make a ssh connection to it, login with debian/temppwd, to start UI use
startx

First switch to root and update upgrade the system:

su root
apt-get update
apt-get upgrade
apt-get install software-properties-common



Now lets create a user with is own home directory and sudo rights ( with
foo as example name):

sudo useradd -m -g sudo -s /bin/bash foo
sudo passwd foo
sed -i 's/^#\s*\(%wheel\s*ALL=(ALL)\s*ALL\)/\1/' /etc/sudoers
su foo

For LMS, get the latest 7.9 nightly from the command line and install as
follows:
First look at http://downloads.slimdevices.com/nightly/index.php?ver=7.9
for the latest debian arm nightly and right mouseclick on the debian arm
file to copy that link and past it in following:

sudo wget "paste link here"
Control which name the downloaded package has:

ls

And copy paste the name of the LMS package in following code:

sudo dpkg -i “name of dowloaded package”

After installation control LMS by following code:

sudo systemctl enable|status|start|stop|restart
logitechmediaserver.service

Install Squeezelite:

sudo apt-get install squeezelite

See wich sounddevice is connected:

squeezelite -l

And configure it within:

sudo nano /etc/default/squeezelite

And restart it with:

sudo systemctl restart squeezelite


Now lets get jivelite and dependencies and make it start at boot:

sudo apt-get install libluajit-5.1-dev libsdl1.2-dev libsdl-ttf2.0-dev
libsdl-gfx1.2-dev libsdl-image1.2-dev libexpat1-dev git make
build-essential

cd
git clone http://luajit.org/git/luajit-2.0.git
cd luajit-2.0
make
sudo make install
sudo ldconfig

Now lets get jivelite

cd
git clone https://github.com/ralph-irving/jivelite.git
cd jivelite
sudo make PREFIX=/usr
./bin/jivelite

Following will get jivelite to start at boot.
First we install Xorg and “LXDE-Core”

sudo apt-get install xorg lxde-core

After that we must make the system auto login, we do this by editing the
file at /etc/systemd/system/getty.target.wants/getty@tty1.service

sudo nano /etc/systemd/system/getty.target.wants/getty@tty1.service

And change the "ExecStart=" line in the "[Service]" section to this
(with foo sa example name):

ExecStart=-/sbin/agetty -a foo %I $TERM
For automatic `startx` edit “.profile” in your home directory:
cd
sudo nano .profile
And add this snippet to the end of the file:
[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx
Now set the correct default.target to ensure the system boots to the
console (TTY) rather than to a display manager:
sudo systemctl set-default multi-user.target

To reverse this change, reset the default.target with (leave this for
now otherwise jivelite will fail to start):
sudo systemctl set-default graphical.target
Now finally autostart JiveLite by editing the following file:

sudo nano /usr/bin/startlxde

Scroll to the bottom of the it and you’ll see the last line says this:
exec /usr/bin/lxsession -s LXDE-pi -e LXDE
Change it to this by putting a # sign in front of that line

#exec /usr/bin/lxsession -s LXDE-pi -e LXDE

Add another line below it that says this (with foo as example name):

exec /home/foo/jivelite/bin/jivelite

Ctl + X then Y to save and then reboot. Your Wandboard should now reboot
into Jivelite.


----
HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=105587

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Announce: Squeezelite - a small headless squeezeplay emulator for linux (alsa only)

2016-07-10 Thread HB64

Your problem is that the google code links are dead Ralph Iriving is so
kind to provide backups.
A direct link to the armv6hf version in following link
http://download1348.mediafire.com/2jf24knjykyg/4i8kq8avj4ioeon/squeezelite-1.8.4-720-armv6hf.tar.gz
or you can use following link it will get you to his mediafire page
https://www.mediafire.com/folder/4q8dvq20iyz9e/Builds or his github page
for cloning https://github.com/ralph-irving.





HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=97046

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Fedora LMS RPM packages, call for testers...

2015-08-24 Thread HB64

JackOfAll wrote: 
 Hi Henk,
 
 I hope you do not think me rude, but the main reason why I do not
 publicise the repo is that I have very little or no time, to be able to
 support it.

No Problem at all but in the SOA thread your talking of a bash script if
your willing to share it i would appreciate that.
HB64 wrote: 
 
 Most of the packages in the repo are installed but I have a question
 (maybe a dumb one), how does the squeeze-web-gui start?

JackOfAll wrote: 
 
 Enable tomcat (sudo systemctl enable tomcat) and start (sudo
 systemctl start tomcat) tomcat. Then you should be able to access the
 gui via web browser, port 8080, path /squeeze. 
 eg. http://IP_ADDRESS_OF_WANDBOARD:8080/squeeze

It seems tomcat was missing some dependencies, my friend google was
willing enough to help me and now it works.

HB64 wrote: 
 
 And further on the wandboard jive lite seems to go haywire it's
 installed with it's dependencies but on my screen all I see is the
 community squeeze logo for a few seconds and then it starts again and
 again and again ..

JackOfAll wrote: 
 
 Not sure about that. Works for me and others Are you running
 jivelite on the device, to a display connected to the device, or over a
 ssh session to remote display?

Jivelite is remote installed on the wandboard quad wich is connected to
my tv, i have also a SOA image for the wandboard en when i put that sd
card in it it gives the same result no clue what's going on.

HB64 wrote: 
 
 And squeezelite.. without de squeezewebgui i have no idea how to
 make it in working order.

JackOfAll wrote: 
 
 Enable and start tomcat, as explained above.

Eventually i got it going without the gui, again with my friend google.
As stated by you in the SOA thread, 
The techies can figure it out, (and many have), if someone is savvy
enough to install a base Fedora image, install a third party repo and
install the packages without any documentation or support well, they
are not going to need any on-going support
It seems i'm a techie :D :D :D even though Linux is not really my thing,
there are still a few little things that I do not get working properly
such as SMB but eventually i will get all in working order.
Thanks for your reply I appreciate your honesty.

Greetings,

Henk



HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=101931

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Fedora LMS RPM packages, call for testers...

2015-08-21 Thread HB64

Hello to all,

Pure out of curiosity I have build a Fedora-22- minimal SD card image
for my Wandboard Quad and it's up and running, the repo is installed to
and LMS is in working order.
But I have a question (maybe a dumb one), how does the squeeze-web-gui
start?
And further on the wandboard jive lite seems to go haywire it's
installed with his dependencies but on my screen all I see is the
community squeeze logo for a few seconds and then it start again and
again and again ..
If there is need for more information of my side ask it and I will try
to provide it.

Greetings,

Henk



HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=101931

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Announce: Squeeze on Arch - developer version

2015-08-10 Thread HB64

IanDury wrote: 
 Here's how I replaced SoA's LMS server with the one from aur some weeks
 ago:
 

This is what i've been waiting for works like a charm on my Wandboard
Quad.

Thanks a lot



HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=101624

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Announce: Squeeze on Arch - developer version

2015-07-19 Thread HB64

poing wrote: 
 Next issue with my Cubie. (It's running the LMS server only; as the
 kernel misses the module for the Cubie's sound card, there's no
 squeezelite running.)
 
 I can't update Arch anymore. When running
 
  
Code:

  
   pacman -Syu
   

  
 
 I get the following error
  
Code:

  
   [root@cubie ~]# pacman -Syu
   :: Synchronisiere Paketdatenbanken...
   core 208,7 KiB   696K/s 00:00 [##] 
100%
   extra  2,3 MiB  1315K/s 00:02 [##] 
100%
   community  2,8 MiB  1284K/s 00:02 [##] 
100%
   alarm100,1 KiB  1252K/s 00:00 [##] 
100%
   aur   62,7 KiB  1393K/s 00:00 [##] 
100%
   :: Starte vollständige Systemaktualisierung...
   Löse Abhängigkeiten auf...
   Suche nach in Konflikt stehenden Paketen...
   Fehler: Konnte den Vorgang nicht vorbereiten (Kann Abhängigkeiten nicht 
erfüllen)
   :: logitechmediaserver-7.9-cpan: benötigt perl5.21
   :: logitechmediaserver-7.9-lms: benötigt perl5.21
   [root@cubie ~]#
   

  
 
 Sorry for the German-language output. It's saying it cannot resolve
 dependencies as there's a conflict with the perl version.
Last time that i tried to create a running system for a wandboard quad i
had no sound either, and update of the kernel also fails and even more
important lms fails to install because of the newer version of perl that
is present in arch linux.
Although i was able to install a lms aur version that uses the new perl
version it took a painstaking proces of trial and error becaus my linux
knowledge is not great.
Overall it's not a great problem for me because it seemed to me quite
handy to have a backup at hand that i am using now.
So it comes down to me that arch linux is going forward and as we know
soa is at a stop things will only get worse.





HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=101624

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Announce: Squeeze on Arch - developer version

2015-02-03 Thread HB64

Harald wrote: 
 @tobyjug: I tried some reboots now, but no success. After the first
 boot, it even doesn't request an IP anymore, so it seems that it doesn't
 boot at all.
 
 Any ideas someboody?
Same problem here.





HB64's Profile: http://forums.slimdevices.com/member.php?userid=14945
View this thread: http://forums.slimdevices.com/showthread.php?t=101624

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix