Author Topic: Can't play DVD from Linux MCE on anything but core  (Read 8138 times)

jondecker76

  • Alumni
  • wants to work for LinuxMCE
  • *
  • Posts: 763
    • View Profile
Re: Can't play DVD from Linux MCE on anything but core
« Reply #15 on: March 20, 2008, 09:56:45 pm »
Thanks to Kir's work on the mantis ticket, mine is now working. All I had to do for each MD, is to the following from a command prompt on my (Ubuntu) desktop computer:

1)ssh into the core
Code: [Select]
ssh linuxmce@192.168.80.1
..enter password 'linuxmce'

2) navigate to /usr/pluto/diskless
Code: [Select]
cd /usr/pluto/diskless
3) get the "moon numbers" of the media directors
Code: [Select]
dirnote that each media director has a unique 3-digit number.. you will need this number in the following steps..

4) change over to the root user:
Code: [Select]
sudo su...enter password 'linuxmce'

5) ssh into one of the media directors
Code: [Select]
ssh moonxxx(xxx is the 3-digit number of one of the media directors)

6) now go into the etc directory of the media director
Code: [Select]
cd /etc
7) Now we are going to replace the file that is causing the problems...

8) Backup the file
Code: [Select]
mv auto.PlutoStorageDevices auto.PlutoStorageDevices.original
9) Get the new updated file from SVN
Code: [Select]
wget http://svn.linuxmce.com/pluto/trunk/src/PlutoStorageDevices/auto.PlutoStorageDevices
10) Update the file permissions
Code: [Select]
chmod 755 auto.PlutoStorageDevices
Do this for each media director, and you will be back in business.. (there may be better/faster ways to do this, but this is what worked for me)

Of course, if you are not familiar with the command line, you can seriously mess things up, so do this at your own risk! You may be better off waiting for the full 0710 release if this is the case.

Thanks again Kir for the information to get this working!
« Last Edit: March 20, 2008, 10:02:04 pm by jondecker76 »