first of all, good job on doing something advanced like this.. hopefully I can help you out a little bit, but know that there are a ton of resources on the net for doing simple tasks in ubuntu.
seod wrote:My problem is: I closed the window and I don't know how to start "Java PS3 Media Server 1.20".
If you just closed the window, PS3 Media server should still be running, there should be a PS3 Media Server icon in your taskbar that looks like a green play button. If you double click that, your window should re-open.
If you clicked Quit or File > Quit, that actually stops the PS3 Media Server, and you will need to restart it.
To start PS3 Media Server again, open a terminal, and run the following
- Code: Select all
cd /home/username/ps3mediaserver
./PMS.sh
seod wrote:How do I put a link on my desk or menu for opening the "Java PS3 Media Server 1.20"? Please, step by step and have patience with me as I am a recent Windows convert.
Open gedit or any text editor and create a file called start-pms.sh, and paste the following code into it:
- Code: Select all
#!/bin/sh
cd /home/username/ps3mediaserver
./PMS.sh
(replace username with your actual username)
Save that file in /home/username/ps3mediaserver
you'll want to give that file execute permissions, from the terminal window
- Code: Select all
chmod a+x start-pms.sh
Now when you click on start-pms.sh, it should launch PS3 Media Server. You can add a shortcut to your desktop that points to that file, you should be able to figure that out.