linux guru's please help - Page 2 - UkCvs.org
 

Go Back   UkCvs.org > HD Digital Tv Section > HD General

Reply
 
LinkBack Thread Tools Display Modes
Old 10-01-2010, 11:44 AM   #11 (permalink)
Donated Member
UkCvs Member
 
Join Date: Sep 2008

Posts: 83
iTrader: (0)
Casino cash: $39595
Thanks: 37
Thanked 56 Times in 19 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Groans: 0
Groaned at 0 Times in 0 Posts
Default
This might help. I've attached the ftp package that I've installed onto the player.
Attached Files
File Type: zip UltioFtp.zip (26.5 KB, 0 views)
Sicilian is offline   Reply With Quote
Old 10-01-2010, 12:29 PM   #12 (permalink)
Developer
UkCvs Senior Member
 
LraiZer's Avatar
 
Join Date: Oct 2008

Posts: 876
iTrader: (0)
Casino cash: $283440
Thanks: 328
Thanked 1,464 Times in 657 Posts
Nominated 16 Times in 5 Posts
Nominated TOTW/F/M Award(s): 5
Groans: 0
Groaned at 0 Times in 0 Posts
Default
Quote:
Originally Posted by LraiZer View Post
maybe try putting a line in your /etc/inetd.conf to let inetd handle starting

your bftpd location
Code:
ftp stream tcp nowait root /usr/sbin/bftpd bftpd
if your bftpd is not installed in /usr/sbin/ then you shouldnt be putting that location in your inetd.conf, find your installed bftpd location and use that location instead as was shown above! maybe post your bftpd_start file as the contents may show you where bftpd was installed.

maybe this?
Code:
ftp stream tcp nowait root /tmp/hdd/root/bftpd bftpd

Last edited by LraiZer; 10-01-2010 at 12:39 PM..
LraiZer is offline   Reply With Quote
The Following User Says Thank You to LraiZer For This Useful Post:
Sicilian (10-01-2010)
Old 10-01-2010, 01:24 PM   #13 (permalink)
Donated Member
UkCvs Member
 
Join Date: Sep 2008

Posts: 83
iTrader: (0)
Casino cash: $39595
Thanks: 37
Thanked 56 Times in 19 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Groans: 0
Groaned at 0 Times in 0 Posts
Default
Ok done the following now, still now joy. Thank you for keeping with me

inetd.conf now reads: -

PHP Code:
#
# /etc/inetd.conf       A simple inetd.conf
#
# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
#
# To re-read this file after changes, just do a 'killall -HUP inetd'
#
#
ftp     stream  tcp     nowait  root    /tmp/hdd/root/bftpd bftpd
telnet  stream  tcp     nowait  root    
/usr/sbin/telnetd  telnetd
#auth   stream  tcp     nowait  nobody  /usr/sbin/nullidentd nullidentd
www     stream  tcp     nowait  www-data        /usr/sbin/httpd httpd -/var/www
#
# End of inetd.conf 
I created a script called S51inetd because of whats written in rcS1, this is whats i've entered in S51inetd: -

PHP Code:
#!/bin/sh

/tmp/hdd/root/bftpd/bftpd_start

exit 
This is what my bftpd_start contains: -

PHP Code:
#!/bin/sh
#
/tmp/hdd/root/bftpd/bftpd --/tmp/hdd/root/bftpd/bftpd.conf 
I've also attached some screenshots.
Attached Images - Who Downloaded? - Who Downloaded?
File Type: jpg inet.jpg (53.0 KB, 3 views)
File Type: jpg start.jpg (51.6 KB, 1 views)
File Type: jpg Capture.jpg (62.4 KB, 0 views)
Sicilian is offline   Reply With Quote
Old 10-01-2010, 02:20 PM   #14 (permalink)
Developer
UkCvs Senior Member
 
LraiZer's Avatar
 
Join Date: Oct 2008

Posts: 876
iTrader: (0)
Casino cash: $283440
Thanks: 328
Thanked 1,464 Times in 657 Posts
Nominated 16 Times in 5 Posts
Nominated TOTW/F/M Award(s): 5
Groans: 0
Groaned at 0 Times in 0 Posts
Default
Code:
#
# /etc/inetd.conf       A simple inetd.conf
#
# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
#
# To re-read this file after changes, just do a 'killall -HUP inetd'
#
#
ftp     stream  tcp     nowait  root    /tmp/hdd/root/bftpd bftpd -d -c /tmp/hdd/root/bftpd/bftpd.conf
telnet  stream  tcp     nowait  root    /usr/sbin/telnetd  telnetd
#auth   stream  tcp     nowait  nobody  /usr/sbin/nullidentd nullidentd
www     stream  tcp     nowait  www-data        /usr/sbin/httpd httpd -h /var/www
#
# End of inetd.conf
try removing that script you put in init.d and just try with above changes instead. if that dont work then i guess its back to manual start until someone what actually knows what they are doing helps
LraiZer is offline   Reply With Quote
The Following User Says Thank You to LraiZer For This Useful Post:
Sicilian (10-01-2010)
Old 10-01-2010, 03:05 PM   #15 (permalink)
Donated Member
UkCvs Member
 
Join Date: Sep 2008

Posts: 83
iTrader: (0)
Casino cash: $39595
Thanks: 37
Thanked 56 Times in 19 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Groans: 0
Groaned at 0 Times in 0 Posts
Default
Quote:
Originally Posted by LraiZer View Post
Code:
#
# /etc/inetd.conf       A simple inetd.conf
#
# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
#
# To re-read this file after changes, just do a 'killall -HUP inetd'
#
#
ftp     stream  tcp     nowait  root    /tmp/hdd/root/bftpd bftpd -d -c /tmp/hdd/root/bftpd/bftpd.conf
telnet  stream  tcp     nowait  root    /usr/sbin/telnetd  telnetd
#auth   stream  tcp     nowait  nobody  /usr/sbin/nullidentd nullidentd
www     stream  tcp     nowait  www-data        /usr/sbin/httpd httpd -h /var/www
#
# End of inetd.conf
try removing that script you put in init.d and just try with above changes instead. if that dont work then i guess its back to manual start until someone what actually knows what they are doing helps
Just tried that too, sorry to say no joy Thank you for all your help anyway

I've just found a forums dedicated to this media player called the mvixcommunity (my sumvision is a re-branded mxvix ultio, identical box). I'll make a post there see if anyone has any ideas, will keep you posted. I've also contacted the author of the ftp package to see if he's got a way of starting it automatically too.

Again, many thanks.
Sicilian is offline   Reply With Quote
Old 11-01-2010, 05:52 AM   #16 (permalink)
Donated Member
UkCvs Member
 
Join Date: Sep 2008

Posts: 83
iTrader: (0)
Casino cash: $39595
Thanks: 37
Thanked 56 Times in 19 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Groans: 0
Groaned at 0 Times in 0 Posts
Default
Got a reply from the author of the package last night

I had to modify the script that starts samba on the player. Added this: -

PHP Code:
start() {
        
KIND="SMB"
# start modification
    
killall bftpd
    sleep 5
        
/tmp/hdd/root/bftpd/bftpd_start
# end modification 
Sicilian is offline   Reply With Quote
The Following 2 Users Say Thank You to Sicilian For This Useful Post:
LraiZer (11-01-2010), wiz569 (11-01-2010)
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 08:56 AM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Any information provided on this site is not guaranteed in any way. Some articles may discuss topics that are illegal, so this information is provided for educational purposes only, use at your own risk !! Ukcvs.org cannot be held responsible for the content of any post on this forum.