UshareUPnPMediaServer (Nabilosat E2)

elgeneral

Registered
Messages
7,811
UshareUPnPMediaServer (Nabilosat E2)

For Nabilo BlackHole DM7025-DM800-DM8000

ushare is a UPnP media server

( the file config in pack is not configured )
edit the file ushare.conf in /etc

here is my config

Code:
# /etc/ushare.conf
# Configuration file for uShare

# uShare UPnP Friendly Name (default is 'uShare').
USHARE_NAME=uShare

# Interface to listen to (default is eth0).
# Ex : USHARE_IFACE=eth1
USHARE_IFACE=eth0

# Port to listen to (default is random from IANA Dynamic Ports range)
# Ex : USHARE_PORT=49200
USHARE_PORT=49200

# Port to listen for Telnet connections
# Ex : USHARE_TELNET_PORT=1337
USHARE_TELNET_PORT=1337

# Directories to be shared (space or CSV list).
# Ex: USHARE_DIR=/dir1,/dir2
USHARE_DIR=/media/hdd

# Use to override what happens when iconv fails to parse a file name.
# The default uShare behaviour is to not add the entry in the media list
# This option overrides that behaviour and adds the non-iconv'ed string into
# the media list, with the assumption that the renderer will be able to
# handle it. Devices like Noxon 2 have no problem with strings being passed
# as is. (Umlauts for all!)
#
# Options are TRUE/YES/1 for override and anything else for default behaviour
USHARE_OVERRIDE_ICONV_ERR=

# Enable Web interface (yes/no)
ENABLE_WEB=yes

# Enable Telnet control interface (yes/no)
ENABLE_TELNET=yes

# Use XboX 360 compatibility mode (yes/no)
ENABLE_XBOX=yes

# Use DLNA profile (yes/no)
# This is needed for PlayStation3 to work (among other devices)
ENABLE_DLNA=yes

in telnet

Code:
root@dm7025:~# cd /usr/bin
root@dm7025:/usr/bin# ushare
Interface eth0 is down.
Recheck uShare's configuration and try again !
uShare (version 1.1a), a lightweight UPnP A/V and DLNA Media Server.
Benjamin Zores (C) 2005-2007, for GeeXboX Team.
See http://ushare.geexbox.org/ for updates.
Listening on telnet port 1337
Initializing UPnP subsystem ...
UPnP MediaServer listening on 169.254.221.92:49200
Sending UPnP advertisement for device ...
Listening for control point connections ...
Building Metadata List ...
Looking for files in content directory : /media/hdd
Found 52 files and subdirectories.

The pack is not ONLINE for moment , Test please and give feedback

by franzjuve
 

juli13

Staff member
Administrator
Messages
10,198
Ushare Start when i Reboot DM7025

http://img6.imageshack.us/img6/669/captureh.png

ushare is working 100% with PS3 ( in PS3 /images/Music/Video i get icone ushare and i can read /images/mp3/.ts files from dreambox )

-------------

i stop ushare and restart it with command ( -w no-web )


Code:
/usr/bin/ushare -w no -n Upnp_Dreambox -c /media/hdd

http://img162.imageshack.us/img162/5127/capture1.png

ushare run well in process list but i can't get icone ushare in PS3

-------------

i stop ushare and restart it with command



Code:
/usr/bin/ushare -i eth0 -n Upnp_Dreambox -c /media/hdd

http://img502.imageshack.us/img502/6362/capturesra.png

now i have the WEB working

but i not understand why when we start ushare with command ,it start and listen on 169.254.216.96:49200
strange is not our IP


Code:
uShare runs from the console only. It supports the usual --help option
which displays usage and option information.

Usage: ushare [-n name] [-i interface] [-c directory] [[-c directory] ...]
Options:
 -n, --name=NAME        Set UPnP Friendly Name (default is 'uShare')
 -i, --interface=IFACE  Use IFACE Network Interface (default is 'eth0')
 -f, --cfg=FILE         Config file to be used
 -p, --port=PORT        Forces the HTTP server to run on PORT
 -q, --telnet-port=PORT Forces the TELNET server to run on PORT
 -c, --content=DIR      Share the content of DIR directory.
 -w, --no-web           Disable the control web page (enabled by default)
 -t, --no-telnet        Disable the TELNET control (enabled by default)
 -o, --override-iconv-err       If iconv fails parsing name, still add to media contents (hoping the renderer can handle it)
 -v, --verbose          Set verbose display
 -x, --xbox             Use XboX 360 compliant profile
 -d, --dlna             Use DLNA compliant profile (PlayStation3 needs this)
 -D, --daemon           Run as a daemon.
 -V, --version          Display the version of uShare and exit
 -h, --help             Display this help
 
Top