Page 31 of 44

Re: E series widget -autostart w/o USB

Posted: Tue Jan 28, 2014 12:57 pm
by ruskalaatikko
rromcic wrote:Try to login with user "develop"
Something I should try in develop-mode? Doesn't seem to make a difference just logging in with "develop".

Re: E series widget -autostart w/o USB

Posted: Thu Jan 30, 2014 11:33 am
by ruskalaatikko
FWIW, today my TV succeeded in installing Skype and I was able to root it again. I have no idea what caused the problem before with the failing Skype installation. What I maybe did differently from previous attempts was that I deleted all the default apps that could be deleted, although I'm quite sure I have tried that before. Random luck maybe, I don't know.. seems like a good idea to block it from contacting Samsung servers so it won't do any unwanted Smart Hub updates anymore.

Re: E series widget -autostart w/o USB

Posted: Sun Feb 02, 2014 10:12 pm
by kInGpIn
Hey Guys,

I would like to archive the movies I recorded because the capacity of the disk drive at my Samsung is getting low. Unfortunately the only method this will work seems to root the TV. Does somebody know if this will work with an UE65-ES8090 with the method 2.A (via USB Stick) that is mentioned in the first post? FW seems to be version 002009.

I am afraid of bricking my device. So thank you in advance for helping out.

Re: E series widget -autostart w/o USB

Posted: Tue Feb 25, 2014 1:44 am
by mvangel
hei all,

I've searched the forum and cannot find answer to my stupid questions:
how do I enable /mnt/etc/init.d/02_04_vusb.init to start every time the TV is rebooted, similar to the telnet demon?

Otherwise the procedure has been tested and works with T-MST12DEUC_1118.2.

thanks!

Re: E series widget -autostart w/o USB

Posted: Fri Feb 28, 2014 9:53 pm
by mmhorda
deleted...

Re: E series widget -autostart w/o USB

Posted: Sat Apr 05, 2014 7:38 am
by vimart
hello,
as you remove samygo,
because since I installed it often happens that I have the screen faded.

Re: E series widget -autostart w/o USB

Posted: Wed Apr 09, 2014 3:10 pm
by TeHashX
Installed and working fine on my UE40ES6100 TV firmware v001042, telnet, ftp, virtual usb, nfs...
How to short a little bit the path to nfs share?
Now is: SamyGo Virtual Usb / Videos / nfs / 192.168.9.1 / _mnt_sda1_Media / ...
Can I get? SamyGo Virtual Usb / Videos / Media / ...?
Thanks

Re: E series widget -autostart w/o USB

Posted: Wed Apr 09, 2014 3:42 pm
by zoelechat
@TeHashX
You can edit /mnt/etc/init.d/03_03_nfsmount.init

Find the line

Code: Select all

DEST_DIR=$MOUNT_PATH/nfs
change it to

Code: Select all

DEST_DIR=$MOUNT_PATH
and

Code: Select all

M_POINT="$DEST_DIR/$1/$(echo -n $i | sed -e "s/\//_/g")"
to

Code: Select all

M_POINT="$DEST_DIR/$(echo -n $i | sed -e "s/\//_/g")"
Then you'll have 2 folder depths less as expected on next boot...

Re: E series widget -autostart w/o USB

Posted: Wed Apr 09, 2014 4:01 pm
by TeHashX
zoelechat wrote:@TeHashX
You can edit /mnt/etc/init.d/03_03_nfsmount.init

Find the line

Code: Select all

DEST_DIR=$MOUNT_PATH/nfs
change it to

Code: Select all

DEST_DIR=$MOUNT_PATH
and

Code: Select all

M_POINT="$DEST_DIR/$1/$(echo -n $i | sed -e "s/\//_/g")"
to

Code: Select all

M_POINT="$DEST_DIR/$(echo -n $i | sed -e "s/\//_/g")"
Then you'll have 2 folder depths less as expected on next boot...
Thank you very much, it worked. Can I go one more folder depth?
SamyGo Virtual Usb / Videos / ...?

Re: E series widget -autostart w/o USB

Posted: Wed Apr 09, 2014 4:14 pm
by zoelechat
Now SHARES at directly mounted to vusb so I think no, at least not easily without revisiting whole code :)
You can try

Code: Select all

M_POINT="$DEST_DIR"
but I wouldn't recommend it, every shares will be melted...