LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-20-2009, 10:02 AM   #1
nesrail
Member
 
Registered: Jan 2009
Distribution: Differs
Posts: 121

Rep: Reputation: 15
Xbox Media Center for linux??


I got a Xbox 360 and I know its possible to use Windows Vista and media center to view movies and such. Is there someway I can use linux instead of Windows to watch movies on my Xbox 360??? I use ubuntu.
 
Old 02-20-2009, 11:27 AM   #2
jkzfixme
Member
 
Registered: Sep 2006
Location: Orange County, NY
Distribution: Ubuntu, Solaris, Android
Posts: 329
Blog Entries: 21

Rep: Reputation: 52
http://badoh.com/2008/01/howto-strea...60-with-linux/

Regards
JKZfixme
 
Old 02-20-2009, 12:42 PM   #3
nesrail
Member
 
Registered: Jan 2009
Distribution: Differs
Posts: 121

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by jkzfixme View Post
I will look at it thanks.
 
Old 02-20-2009, 01:06 PM   #4
nesrail
Member
 
Registered: Jan 2009
Distribution: Differs
Posts: 121

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by jkzfixme View Post
I'm am not that good at linux. How do I make it work??
 
Old 02-20-2009, 01:21 PM   #5
b0uncer
LQ Guru
 
Registered: Aug 2003
Distribution: CentOS, OS X
Posts: 5,131

Rep: Reputation: Disabled
You should add your distribution (Ubuntu) to your profile information, it's more visible there.

There are numerous UPnP server apps for Linux that enable you to use multimedia content on your game console that lies on your (Linux) disks. Both commercial and free of charge; unless you've got good reasons, I'd stick with the non-commercial ones. You can pick up any one of them that sounds good; Mediatomb is pretty OK in my opinion, check it out if you like.
 
Old 02-20-2009, 02:56 PM   #6
nesrail
Member
 
Registered: Jan 2009
Distribution: Differs
Posts: 121

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by b0uncer View Post
You should add your distribution (Ubuntu) to your profile information, it's more visible there.

There are numerous UPnP server apps for Linux that enable you to use multimedia content on your game console that lies on your (Linux) disks. Both commercial and free of charge; unless you've got good reasons, I'd stick with the non-commercial ones. You can pick up any one of them that sounds good; Mediatomb is pretty OK in my opinion, check it out if you like.
Still I am not a linux expert. Is there some step-by-step guide??
 
Old 02-23-2009, 03:08 AM   #7
b0uncer
LQ Guru
 
Registered: Aug 2003
Distribution: CentOS, OS X
Posts: 5,131

Rep: Reputation: Disabled
Sure, but the instructions depend on which solution you choose. Let's take Mediatomb as an example (you could try it, and if it doesn't feel good, just remove it and go on). You can find it's web page here.

Installation instructions can be found at the Download section. Scroll down to the Binaries (precompiled packages) section, until you find the distribution you use -- Ubuntu (here). From the information there you can conculde that you should install the package "mediatomb". You can and should read the download page for instructions, but here goes..

If you are using the latest Ubuntu, Mediatomb packages should be in the default Universe reposities (if not or if you want to play around, see instructions for adding Mediatomb reposities from their download page), so you can install the application easily; just make sure you have the Universe reposity enabled. To do that, run the tool that allows you to configure software sources (found under the System menu of your desktop), or launch it from Synaptic's menu, or just press ALT+F2 and run
Code:
sudo software-properties-gtk
It should ask for your password (if you haven't run 'sudo' a moment ago), then open up the configuration window. From the first tab check the box, if it already isn't, in front of the line that ends "(universe)". Click Close (and if asked, agree to update the package lists).

Now that the reposity is in use, just install the program. You can run Synaptic (from the System menu; remember to click the "refresh" button to make sure your package lists are up to date), locate the package and mark it to be installed, or open a terminal (found under Applications menu in your desktop) and run
Code:
sudo apt-get update
sudo apt-get install mediatomb
Again, type in your password if asked (with the first command, which updates the package lists; it should remember it with the second, if you don't wait for long between running them). When that's done, Mediatomb (along with it's dependencies) is installed. If you think you need (now or later) to run Mediatomb when your machine starts, you can also install mediatomb-daemon the same way:
Code:
sudo apt-get install mediatomb-daemon
Or you can start it manually when you need/want.

If you installed mediatomb-daemon, you should have Mediatomb running after a restart (or after you manually start it), and you can access the web interface either from your Applications menu (if a launcher was added) or by opening /var/lib/mediatomb/mediatomb.html in your browser -- you can bookmark that page for easier access if you do it this way. The other way to start Mediatomb is to run 'mediatomb' in a terminal:
Code:
mediatomb
in the end of the output it should give you a URL of the web interface, so hold CTRL and click it to open it up. If I'm right the user you run it with needs to belong to the "mediatomb" group, so if starting it from command line fails, that's probably the reason..solution is to add your user to the group "mediatomb". Because I don't remember if this is done automatically during the installation or not, you may want to log out and log in to check if it helps; if it doesn't, add yourself to the group this way (run the commands in terminal):

1) make sure "mediatomb" group exists:
Code:
sudo groupadd mediatomb
2) add your user to the group by editing /etc/group file:
Code:
sudo gedit /etc/group
scroll down and find the line that starts with "mediatomb" (there's only one such line), and add your username to the end, without whitespace. For example if the line looks like this (the number, 129, is probably different in your system):
Code:
mediatomb:x:129:
change it to this (change "nesrail" to your username if it isn't that):
Code:
mediatomb:x:129:nesrail
Then just save and close the text editor, then re-try running Mediatomb:
Code:
mediatomb
If you ran it from the command line, you can close it by pressing CTRL+C, or by using pkill or kill or killall to end the process if you need to.

The web interface is fairly straightforward: at the top (left) are two links, "database" and "filesystem". Database is what Mediatomb offers to the UPnP clients (your gaming console); filesystem is the content of your computer. So head to the "filesystem", locate the files and/or directories you wish to share and click the +-sign to add the currently selected item to the database (to share it). By clicking the other sign you can configure if Mediatomb should update the contents of a given directory when they change, if you need that. From the database side you can remove files/directories from the Mediatomb database so they aren't visible to the clients anymore. Once you're happy with the configuration, head over to your gaming console, search for media servers and see what's in there..

Some of the other UPnP servers may be easier to install or use, depending on how you take it, but they might have other drawbacks; you can install and remove them as you wish and see which one(s) work best for you. It probably doesn't get any more difficult than this (well, this wasn't actually difficult, at least if you installed mediatomb-daemon), so don't be afraid -- if you can't get something working, you can always remove it or try again (removing packages works through Synaptic, or by using apt-get with remove option).

Hopefully you got something useful out of this More help for Mediatomb is at their site (see the link at the top of this post), including instructions on how to use transcoding etc..and if you can't figure something out by reading those helps, search the web; other sites have Mediatomb-related aid as well.

Last edited by b0uncer; 02-23-2009 at 03:16 AM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Installing Xbox Media Center (XBMC) On Fedora 9 (i386) LXer Syndicated Linux News 0 10-21-2008 04:11 PM
LXer: Installing Xbox Media Center (XBMC) On Ubuntu 8.04 LXer Syndicated Linux News 0 10-07-2008 06:00 PM
LXer: Linux Media Center Better Then Windows Media Center? LXer Syndicated Linux News 0 08-26-2007 09:50 PM
Linux media center hlinux Fedora 1 07-07-2007 05:01 PM
linux media center postitnote100 Linux - Software 2 06-19-2006 10:57 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 06:50 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration