特殊:Badtitle/NS100:Xbox360Media:修订间差异
小无编辑摘要 |
小无编辑摘要 |
||
第1行: | 第1行: | ||
{{From|https://help.ubuntu.com/community/Xbox360Media}} | {{From|https://help.ubuntu.com/community/Xbox360Media}} | ||
{{Languages|UbuntuHelp:Xbox360Media}} | {{Languages|UbuntuHelp:Xbox360Media}} | ||
== | == Introduction == | ||
The Xbox 360 has its own implementation of [http://en.wikipedia.org/wiki/ | The Xbox 360 has its own implementation of [http://en.wikipedia.org/wiki/Upnp UPnP], meaning that in theory you can share your media without Windows by using open protocols. The reality is more complex, but we do have solutions in the Free world. | ||
== Format compatibility == | |||
The Xbox 360 is fussy about [http://www.xbox.com/en-US/support/systemuse/xbox360/digitalmedia/intro.htm | The Xbox 360 is fussy about [http://www.xbox.com/en-US/support/systemuse/xbox360/digitalmedia/intro.htm media formats]. It only supports JPEG images (not GIF or PNG), and you will likely find that quite a few of your [http://www.xbox.com/en-us/support/systemuse/xbox360/digitalmedia/videoplaybackfaq.htm videos] refuse to play. | ||
A workaround is to use transcode, ffmpeg or mencoder to convert your video to a format that the Xbox 360 can interpret, such as Xvid/ | A workaround is to use transcode, ffmpeg or mencoder to convert your video to a format that the Xbox 360 can interpret, such as Xvid/MP••••••••3 in an AVI container. | ||
== UPnP sharing with uShare == | |||
[http://ushare.geexbox.org/ uShare] allows a Linux PC to share its files with any other device using UPnP. | [http://ushare.geexbox.org/ uShare] allows a Linux PC to share its files with any other device using UPnP. | ||
=== Installation of uShare === | |||
==== | There are several ways of installing uShare. | ||
==== From the Ubuntu repositories ==== | |||
uShare is available from the Ubuntu repositories, so you can simply [[UbuntuHelp:apt:ushare|install it from there]]. After the successful installation of the program, you can proceed at step 2, [[UbuntuHelp:Xbox360Media#Configuration|the configuration]]. | |||
==== DIY version ==== | ==== DIY version ==== | ||
First, you need to download, compile and install the patched version of uShare. | First, you need to download, compile and install the patched version of uShare. | ||
第58行: | 第59行: | ||
</li><li>Now you'll have a DEB package created and installed. You can save the DEB for future use.</li></ol> | </li><li>Now you'll have a DEB package created and installed. You can save the DEB for future use.</li></ol> | ||
- | === Configuration === | ||
< | ==== Basic Configuration ==== | ||
USHARE_NAME= | There is a tool integrated to automatically create a configuration file. To run it, open a terminal and execute | ||
<pre><nowiki> | |||
$ sudo dpkg-reconfigure ushare | |||
</nowiki></pre> | |||
In a first step, enter the of your media server. Then choose the network-interface to be used by uShare. In the third step, you can enter the paths of the directories you want to share with your Xbox 360. If you have more than one directory you want to share, separate them with a ",". The program will then restart the uShare service. | |||
==== Advanced Configuration ==== | |||
For advanced configuration of uShare, open and edit '''/etc/ushare.conf''' (root access required). '''In order to enable the Xbox360 support, this step is necessary!''' | |||
Here's an example of how a configuration file can look like: | |||
<pre><nowiki> | |||
USHARE_NAME=Ubuntu_Media_Server | |||
USHARE_IFACE=eth0 | |||
USHARE_PORT=49200 | USHARE_PORT=49200 | ||
USHARE_TELNET_PORT= | USHARE_TELNET_PORT=1337 | ||
USHARE_DIR=/ | USHARE_DIR=/media1,/media2,/media3 | ||
USHARE_OVERRIDE_ICONV_ERR= | |||
USHARE_ENABLE_WEB=yes | USHARE_ENABLE_WEB=yes | ||
USHARE_ENABLE_TELNET= | USHARE_ENABLE_TELNET=no | ||
USHARE_ENABLE_XBOX=yes | USHARE_ENABLE_XBOX=yes | ||
USHARE_ENABLE_DLNA=no | |||
</nowiki></pre> | </nowiki></pre> | ||
All the lines are explained in the file on your computer by default. | |||
It's important that USHARE_ENABLE_DLNA is set to no, otherwise your Xbox 360 will see the share but won't be able to connect. | |||
=== Usage === | |||
To start the program, just run | |||
=== | |||
<pre><nowiki> | <pre><nowiki> | ||
$ sudo service ushare start | |||
</nowiki></pre> | </nowiki></pre> | ||
If you want to start it by default after booting, execute | |||
If you | |||
<pre><nowiki> | <pre><nowiki> | ||
$ update-rc.d ushare defaults | |||
</nowiki></pre> | </nowiki></pre> | ||
===== | on a terminal. | ||
==== Webinterface ==== | |||
To easily manage the shared folders, there is a web-interface you can use. In order to do that, make sure that ''USHARE_ENABLE_WEB'' is enabled in the configuration file. | |||
You can now enter the web-interface by opening a browser and typing "http://localhost:49200/web/ushare.html" in the address bar. Remember that you have to change the port according to the value you set in the configuration. You are also able to access the web-interface from another computer by simply replacing "localhost" with the computer's IP-address. | |||
==== Telnet ==== | |||
If you set ''USHARE_ENABLE_TELNET'' to ''yes'', you will be able to access the uShare-server with a Telnet-client. Remember to set the port for the Telnet-server in ''USHARE_TELNET_PORT''. Once connected, you are able to use the following commands on the server: | |||
{|border="1" cellspacing="0" | |||
| '''Command''' || '''Description''' | |||
|- | |||
| kill || Terminates the uShare server | |||
|- | |||
| exit || Exits the interface | |||
|- | |||
| help || Shows help information | |||
|- | |||
| echod || Echoes all arguments, but with each argument in a new line… DEBUG | |||
|- | |||
| echo || Echoes all arguments | |||
|} | |||
=== Allowing connections through a firewall === | |||
If you are using Ubuntu's UFW, you can easily add a rule to cope with this. Let's say your Xbox 360 uses a static IP address of 192.168.10.3, and your server is 192.168.10.2 with UPnP on port 49200. Use the following command to provide a small hole in your firewall for this: | |||
<pre><nowiki> | <pre><nowiki> | ||
$ | $ sudo ufw allow proto tcp from 192.168.10.3 to 192.168.10.2 port 49200 | ||
</nowiki></pre> | </nowiki></pre> | ||
==== | === Removing uShare === | ||
* [http://ubuntuforums.org/showthread.php?t= | You can follow [https://help.ubuntu.com/9.10/add-applications/C/removing.html this guide] to remove uShare from your computer. | ||
== External Links == | |||
* [http://ubuntuforums.org/showthread.php?t=794489 HOWTO: Stream music to your Xbox 360] | |||
* [http://en.wikipedia.org/wiki/UPnP_AV_MediaServers A list of UPnP media servers] | |||
* [http://ubuntuforums.org/showthread.php?t=632428 How to make Ubuntu, uShare and xBox 360 play nice] | * [http://ubuntuforums.org/showthread.php?t=632428 How to make Ubuntu, uShare and xBox 360 play nice] | ||
* [http://www.liamm.com/tech/how-toxbox-360-media-server-in-linux How-To:XBOX 360 Media Server in Linux] | * [http://www.liamm.com/tech/how-toxbox-360-media-server-in-linux How-To:XBOX 360 Media Server in Linux] | ||
* [http://buffalo.nas-central.org/wiki/Ushare_-_UPnP_Media_Server_for_Linux Ushare - UPnP Media Server for Linux] | |||
* [http:// | |||
[[category:UbuntuHelp]] | [[category:UbuntuHelp]] |
2010年5月20日 (四) 01:03的最新版本
![]() |
文章出处: |
{{#if: | {{{2}}} | https://help.ubuntu.com/community/Xbox360Media }} |
![]() |
点击翻译: |
English {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/af | • {{#if: UbuntuHelp:Xbox360Media|Afrikaans| [[::Xbox360Media/af|Afrikaans]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/ar | • {{#if: UbuntuHelp:Xbox360Media|العربية| [[::Xbox360Media/ar|العربية]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/az | • {{#if: UbuntuHelp:Xbox360Media|azərbaycanca| [[::Xbox360Media/az|azərbaycanca]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/bcc | • {{#if: UbuntuHelp:Xbox360Media|جهلسری بلوچی| [[::Xbox360Media/bcc|جهلسری بلوچی]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/bg | • {{#if: UbuntuHelp:Xbox360Media|български| [[::Xbox360Media/bg|български]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/br | • {{#if: UbuntuHelp:Xbox360Media|brezhoneg| [[::Xbox360Media/br|brezhoneg]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/ca | • {{#if: UbuntuHelp:Xbox360Media|català| [[::Xbox360Media/ca|català]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/cs | • {{#if: UbuntuHelp:Xbox360Media|čeština| [[::Xbox360Media/cs|čeština]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/de | • {{#if: UbuntuHelp:Xbox360Media|Deutsch| [[::Xbox360Media/de|Deutsch]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/el | • {{#if: UbuntuHelp:Xbox360Media|Ελληνικά| [[::Xbox360Media/el|Ελληνικά]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/es | • {{#if: UbuntuHelp:Xbox360Media|español| [[::Xbox360Media/es|español]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/fa | • {{#if: UbuntuHelp:Xbox360Media|فارسی| [[::Xbox360Media/fa|فارسی]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/fi | • {{#if: UbuntuHelp:Xbox360Media|suomi| [[::Xbox360Media/fi|suomi]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/fr | • {{#if: UbuntuHelp:Xbox360Media|français| [[::Xbox360Media/fr|français]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/gu | • {{#if: UbuntuHelp:Xbox360Media|ગુજરાતી| [[::Xbox360Media/gu|ગુજરાતી]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/he | • {{#if: UbuntuHelp:Xbox360Media|עברית| [[::Xbox360Media/he|עברית]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/hu | • {{#if: UbuntuHelp:Xbox360Media|magyar| [[::Xbox360Media/hu|magyar]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/id | • {{#if: UbuntuHelp:Xbox360Media|Bahasa Indonesia| [[::Xbox360Media/id|Bahasa Indonesia]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/it | • {{#if: UbuntuHelp:Xbox360Media|italiano| [[::Xbox360Media/it|italiano]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/ja | • {{#if: UbuntuHelp:Xbox360Media|日本語| [[::Xbox360Media/ja|日本語]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/ko | • {{#if: UbuntuHelp:Xbox360Media|한국어| [[::Xbox360Media/ko|한국어]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/ksh | • {{#if: UbuntuHelp:Xbox360Media|Ripoarisch| [[::Xbox360Media/ksh|Ripoarisch]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/mr | • {{#if: UbuntuHelp:Xbox360Media|मराठी| [[::Xbox360Media/mr|मराठी]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/ms | • {{#if: UbuntuHelp:Xbox360Media|Bahasa Melayu| [[::Xbox360Media/ms|Bahasa Melayu]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/nl | • {{#if: UbuntuHelp:Xbox360Media|Nederlands| [[::Xbox360Media/nl|Nederlands]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/no | • {{#if: UbuntuHelp:Xbox360Media|norsk| [[::Xbox360Media/no|norsk]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/oc | • {{#if: UbuntuHelp:Xbox360Media|occitan| [[::Xbox360Media/oc|occitan]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/pl | • {{#if: UbuntuHelp:Xbox360Media|polski| [[::Xbox360Media/pl|polski]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/pt | • {{#if: UbuntuHelp:Xbox360Media|português| [[::Xbox360Media/pt|português]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/ro | • {{#if: UbuntuHelp:Xbox360Media|română| [[::Xbox360Media/ro|română]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/ru | • {{#if: UbuntuHelp:Xbox360Media|русский| [[::Xbox360Media/ru|русский]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/si | • {{#if: UbuntuHelp:Xbox360Media|සිංහල| [[::Xbox360Media/si|සිංහල]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/sq | • {{#if: UbuntuHelp:Xbox360Media|shqip| [[::Xbox360Media/sq|shqip]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/sr | • {{#if: UbuntuHelp:Xbox360Media|српски / srpski| [[::Xbox360Media/sr|српски / srpski]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/sv | • {{#if: UbuntuHelp:Xbox360Media|svenska| [[::Xbox360Media/sv|svenska]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/th | • {{#if: UbuntuHelp:Xbox360Media|ไทย| [[::Xbox360Media/th|ไทย]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/tr | • {{#if: UbuntuHelp:Xbox360Media|Türkçe| [[::Xbox360Media/tr|Türkçe]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/vi | • {{#if: UbuntuHelp:Xbox360Media|Tiếng Việt| [[::Xbox360Media/vi|Tiếng Việt]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/yue | • {{#if: UbuntuHelp:Xbox360Media|粵語| [[::Xbox360Media/yue|粵語]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/zh | • {{#if: UbuntuHelp:Xbox360Media|中文| [[::Xbox360Media/zh|中文]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/zh-hans | • {{#if: UbuntuHelp:Xbox360Media|中文(简体)| [[::Xbox360Media/zh-hans|中文(简体)]]}}|}} {{#ifexist: {{#if: UbuntuHelp:Xbox360Media | UbuntuHelp:Xbox360Media | {{#if: | :}}Xbox360Media}}/zh-hant | • {{#if: UbuntuHelp:Xbox360Media|中文(繁體)| [[::Xbox360Media/zh-hant|中文(繁體)]]}}|}} |
{{#ifeq:UbuntuHelp:Xbox360Media|:Xbox360Media|请不要直接编辑翻译本页,本页将定期与来源同步。}} |
{{#ifexist: :Xbox360Media/zh | | {{#ifexist: Xbox360Media/zh | | {{#ifeq: {{#titleparts:Xbox360Media|1|-1|}} | zh | | }} }} }} {{#ifeq: {{#titleparts:Xbox360Media|1|-1|}} | zh | | }}
Introduction
The Xbox 360 has its own implementation of UPnP, meaning that in theory you can share your media without Windows by using open protocols. The reality is more complex, but we do have solutions in the Free world.
Format compatibility
The Xbox 360 is fussy about media formats. It only supports JPEG images (not GIF or PNG), and you will likely find that quite a few of your videos refuse to play. A workaround is to use transcode, ffmpeg or mencoder to convert your video to a format that the Xbox 360 can interpret, such as Xvid/MP••••••••3 in an AVI container.
uShare allows a Linux PC to share its files with any other device using UPnP.
There are several ways of installing uShare.
From the Ubuntu repositories
uShare is available from the Ubuntu repositories, so you can simply install it from there. After the successful installation of the program, you can proceed at step 2, the configuration.
DIY version
First, you need to download, compile and install the patched version of uShare.
- Set up a build environment.
$ sudo aptitude install libupnp-dev build-essential
- Get the uShare source code from here.
- In a terminal, extract the source and then descend into the directory.
$ tar -jxvf ushare-11a-netou.tar.bz2 $ cd ushare-1.1a-NeToU
- Configure and compile the source
$ ./configure --prefix=/ --bindir=/usr/bin --mandir=/usr/share/man $ make
- Create a package and install.
$ sudo checkinstall -D make install
- You'll be presented the following options:
***************************************** **** Debian package creation selected *** ***************************************** This package will be built according to these values: 0 - Maintainer: [ root@ubuntu-desktop ] 1 - Summary: [ ushare ] 2 - Name: [ ushare-1.1a ] 3 - Version: [ NeToU ] 4 - Release: [ 1 ] 5 - License: [ GPL ] 6 - Group: [ checkinstall ] 7 - Architecture: [ i386 ] 8 - Source location: [ ushare-1.1a-NeToU ] 9 - Alternate source location: [ ] 10 - Requires: [ ] 11 - Provides: [ ushare-1.1a ] Enter a number to change any of them or press ENTER to continue: 2 Enter new name: >> ushare
- Select option 2 and enter the name uShare then press <enter>
- You will also need to change the version number follow the same step this time choosing 3 instead. Enter version number "1.1a" then press <enter> twice. It will now create a DEB Package.
- Now you'll have a DEB package created and installed. You can save the DEB for future use.
Configuration
Basic Configuration
There is a tool integrated to automatically create a configuration file. To run it, open a terminal and execute
$ sudo dpkg-reconfigure ushare
In a first step, enter the of your media server. Then choose the network-interface to be used by uShare. In the third step, you can enter the paths of the directories you want to share with your Xbox 360. If you have more than one directory you want to share, separate them with a ",". The program will then restart the uShare service.
Advanced Configuration
For advanced configuration of uShare, open and edit /etc/ushare.conf (root access required). In order to enable the Xbox360 support, this step is necessary! Here's an example of how a configuration file can look like:
USHARE_NAME=Ubuntu_Media_Server USHARE_IFACE=eth0 USHARE_PORT=49200 USHARE_TELNET_PORT=1337 USHARE_DIR=/media1,/media2,/media3 USHARE_OVERRIDE_ICONV_ERR= USHARE_ENABLE_WEB=yes USHARE_ENABLE_TELNET=no USHARE_ENABLE_XBOX=yes USHARE_ENABLE_DLNA=no
All the lines are explained in the file on your computer by default. It's important that USHARE_ENABLE_DLNA is set to no, otherwise your Xbox 360 will see the share but won't be able to connect.
Usage
To start the program, just run
$ sudo service ushare start
If you want to start it by default after booting, execute
$ update-rc.d ushare defaults
on a terminal.
Webinterface
To easily manage the shared folders, there is a web-interface you can use. In order to do that, make sure that USHARE_ENABLE_WEB is enabled in the configuration file. You can now enter the web-interface by opening a browser and typing "http://localhost:49200/web/ushare.html" in the address bar. Remember that you have to change the port according to the value you set in the configuration. You are also able to access the web-interface from another computer by simply replacing "localhost" with the computer's IP-address.
Telnet
If you set USHARE_ENABLE_TELNET to yes, you will be able to access the uShare-server with a Telnet-client. Remember to set the port for the Telnet-server in USHARE_TELNET_PORT. Once connected, you are able to use the following commands on the server:
Command | Description |
kill | Terminates the uShare server |
exit | Exits the interface |
help | Shows help information |
echod | Echoes all arguments, but with each argument in a new line… DEBUG |
echo | Echoes all arguments |
Allowing connections through a firewall
If you are using Ubuntu's UFW, you can easily add a rule to cope with this. Let's say your Xbox 360 uses a static IP address of 192.168.10.3, and your server is 192.168.10.2 with UPnP on port 49200. Use the following command to provide a small hole in your firewall for this:
$ sudo ufw allow proto tcp from 192.168.10.3 to 192.168.10.2 port 49200
You can follow this guide to remove uShare from your computer.