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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
12-14-2008, 09:55 AM
|
#1
|
LQ Newbie
Registered: Dec 2008
Posts: 5
Rep:
|
Streaming From Ubuntu 8.10 TO Xbox 360
This is the third time that I have tried to convert to ubuntu but everytime I switch back to windows because I have been unable to stream to my xbox360. My linux knowledge is not great but I want to learn.
Can anyone point me in the right direction?
I have tried a few different programs but the guides have always been a little over my head.
I'm running ubuntu 8.10 and I want to be able to stream avi's to my 360.
|
|
|
12-14-2008, 11:18 AM
|
#2
|
LQ Guru
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852
|
You would need a UPnP media streamer, such as MediaTomb or Fuppes. I know that Fuppes has specific support for the 360, not sure about MediaTomb (I know they both support the PS3 though).
|
|
|
12-14-2008, 12:36 PM
|
#3
|
LQ Newbie
Registered: Dec 2008
Posts: 5
Original Poster
Rep:
|
Thanks
thanks for your reply
I have installed mediatomb, cant figure out how to use it, doesnt seem to be that many settings.
I have no idea how to install Fuppes, I'm lookin for some sort of beginner guide, everything I find is just 2 complicated 4 me at the moment
|
|
|
12-14-2008, 01:00 PM
|
#4
|
LQ Guru
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852
|
The Fuppes documentation has all of the steps required to install from source:
Code:
get the latest fuppes sources, unpack them and change in the fuppes directory
$ tar -xvzf fuppes-0.x.tar.gz
$ cd fuppes-0.x
configure the source
$ ./configure
You can check available configure options
$ ./configure --help
the following configure options are availabe
--disable-transcoding ./configure will not look for any transcoding libraries
--disable-lame disable LAME support
--disable-twolame disable TwoLAME support
--enable-default-http-port=PORT HTTP server will listen on port "PORT" instead of using a random port.
Port remains changeable via config.
--enable-libnotify use libnotify if available
when configuration is finished simply run
$ make
to install fuppes run (as root)
$ su -
# make install
or
$ sudo make install
You can ignore the "configure --help" parts, since you don't want to change any options. Just do the normal configuration and build.
|
|
|
12-14-2008, 04:03 PM
|
#5
|
LQ Newbie
Registered: Dec 2008
Posts: 5
Original Poster
Rep:
|
Hi thanks for replying, I have been to the fuppes site but I'm stuck on the first bit.
"get the latest fuppes sources, unpack them and change in the fuppes directory
$ tar -xvzf fuppes-0.x.tar.gz
$ cd fuppes-0.x "
Change in the fuppes directory?
"$ tar -xvzf fuppes-0.x.tar.gz
$ cd fuppes-0.x "
Am I performing this in terminal?
|
|
|
12-14-2008, 04:30 PM
|
#6
|
LQ Guru
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852
|
Yes, you would do all that from the terminal. Apparently there are no binary packages for Fuppes in the Ubuntu repository, so you have to built it from source.
You can find some Ubuntu-specific information about installing from source online, like this page.
|
|
|
12-14-2008, 04:48 PM
|
#7
|
LQ Newbie
Registered: Dec 2008
Posts: 5
Original Poster
Rep:
|
hi thanks again for your help
Im getting there, I think I'm just confused on the directories.
I downloaded the file:
fuppes-SVN-578.tar.gz
I extracted it and got:
fuppes-SVN-578
Both of the above are in:
/home/darren/Downloads
The source file is in:
/home/darren/Downloads/fuppes-SVN-578/src
When I type ./configure I get this at the end:
"checking for PCRE... configure: error: Package requirements (libpcre >= 5.0) were not met:
No package 'libpcre' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables PCRE_CFLAGS
and PCRE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details."
|
|
|
12-14-2008, 04:55 PM
|
#8
|
LQ Newbie
Registered: Dec 2008
Posts: 5
Original Poster
Rep:
|
:~/Downloads/fuppes-SVN-578$ sudo make install
make: *** No rule to make target `install'. Stop.
I ve tried searching through a few guides but it doesnt make sense, once I do it once i'll be ok and windows will go out the...
Last edited by paranoidandroidz; 12-14-2008 at 05:04 PM.
|
|
|
01-16-2009, 09:16 PM
|
#9
|
LQ Newbie
Registered: Jan 2009
Posts: 1
Rep:
|
It worked for me
Im getting there, I think I'm just confused on the directories.
I downloaded the file:
fuppes-SVN-578.tar.gz
I extracted it and got:
fuppes-SVN-578
Both of the above are in:
/home/darren/Downloads
The source file is in:
/home/darren/Downloads/fuppes-SVN-578/src
if you run ./configure from /home/darren/Downloads/fuppes-SVN-578 and not from /home/darren/Downloads/fuppes-SVN-578/src it should work. Then from the same directory run
make
sudo make install
This worked for me and I am running ubuntu 8.10 server streaming to an xbox 360. You will also have to download, compile and install taglib.
|
|
|
All times are GMT -5. The time now is 04:11 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|