Lestrad wrote: 
> Hello. It seems that the real solution to the LMS CLI not understanding
> accented characters is to go into the start script and add a "--charset"
> switch. Can someone point me in the right direction as to how to do
> that?
> 
> TIA

Do you mean adding a switch to the systemd logitechmediaserver.service
file?  I think the default is service file is this:


Code:
--------------------
    
  [root@archvm ~]# cat /usr/lib/systemd/system/logitechmediaserver.service
  [Unit]
  Description=Logitech Media Server Daemon
  After=network.target
  
  [Service]
  User=logitechms
  Group=logitechms
  PIDFile=/var/run/lms.pid
  WorkingDirectory=/opt/logitechmediaserver
  ExecStart=/opt/logitechmediaserver/slimserver.pl \
  --prefsdir /opt/logitechmediaserver/prefs \
  --cachedir /opt/logitechmediaserver/cache \
  --logdir /opt/logitechmediaserver/Logs \
  --noimage --novideo
  
  [Install]
  WantedBy=multi-user.target
  
  
--------------------
 

If you edit this file you'll need to reload the systemd daemon and
restart the  logitechmediaserver.service for the change to take affect,
e.g:


Code:
--------------------
    
  systemctl stop logitechmediaserver.service
  
--------------------


edit the service unit file, and then 


Code:
--------------------
    
  systemctl daemon-relaod
  systemctl start logitechmediaserver.service
  
--------------------


and then check LMS status,


Code:
--------------------
    
  systemctl status logitechmediaserver.service
  
--------------------


------------------------------------------------------------------------
Krisbee's Profile: http://forums.slimdevices.com/member.php?userid=59080
View this thread: http://forums.slimdevices.com/showthread.php?t=104244

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to