1. Yes.
2. Yes... if you have CIFS, compilled for your platform...
3. Yes.
LE40C550 not hacked - how to arrive at CIFS/SMB mounts
Re: LE40C550 not hacked - how to arrive at CIFS/SMB mounts
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: LE40C550 not hacked - how to arrive at CIFS/SMB mounts
If you root your TV over Hotel mode, then you be able to run either Samygo All extensions or manually load required drivers.
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: LE40C550 not hacked - how to arrive at CIFS/SMB mounts
Hello,
after hack tv with USB hack, I want samba/cifs connect to server.
What must I do?
I have USB stick with run.sh.
I need cifs.ko (samygo ext. for my TV)
I put cifs.ko in root dir on USB? (or whole samygoext dir from zip?)
Create dir Media on USB (for mount)
Next I make modification of run.sh
After plugin USB stick, run.sh mount my NAS share.
Is this good?
I have only basic linux experience.
after hack tv with USB hack, I want samba/cifs connect to server.
What must I do?
I have USB stick with run.sh.
I need cifs.ko (samygo ext. for my TV)
I put cifs.ko in root dir on USB? (or whole samygoext dir from zip?)
Create dir Media on USB (for mount)
Next I make modification of run.sh
Code: Select all
#!/bin/sh
#Load cifs.ko module
insmod /mtd_rwarea/cifs.ko
#Mount cifs shares (check if something is mounted already)
if [ `mount | grep -c /dtv/usb/sda1/Media` == 0 ]; then
mount -o user=user1,password=pw123 -t cifs //192.168.0.2/videos /dtv/usb/sda1/Media
Is this good?
I have only basic linux experience.
Re: LE40C550 not hacked - how to arrive at CIFS/SMB mounts
make some sleep after insmod (sleep 10) because your next command fails if module is not loaded.
Also notice the folder Media on USB stick must exist. Try next:
EDIT: Sure, your cifs.ko you have to copy to /mtd_rwarea/ as written in your script already.
Also notice the folder Media on USB stick must exist. Try next:
Code: Select all
#!/bin/sh
#Load cifs.ko module
insmod /mtd_rwarea/cifs.ko
sleep 10
#Mount cifs shares (check if something is mounted already)
if [ ! -d /dtv/usb/sda1/Media ]; then
mkdir /dtv/usb/sda1/Media
else
echo "mount dir exists!"
fi
if [ `mount | grep -c /dtv/usb/sda1/Media` == 0 ]; then
/bin/mount -o user=user1,password=pw123 -t cifs //192.168.0.2/videos /dtv/usb/sda1/Media
else
echo "already mounted"
fi
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: LE40C550 not hacked - how to arrive at CIFS/SMB mounts
Ok, thank you.
and file "cifs.ko" copy to root dir of USB?
Another files from samygo extension is no needed?
and file "cifs.ko" copy to root dir of USB?
Another files from samygo extension is no needed?
Re: LE40C550 not hacked - how to arrive at CIFS/SMB mounts
But the easiest way is just use SamyGO Extensions on USB script with vusb.init and samba.init enabled. All other scripts can be dissabled. Why do you put on pants over head?
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: LE40C550 not hacked - how to arrive at CIFS/SMB mounts
because rcSGO is toooo long and I not understands it.juuso wrote:But the easiest way is just use SamyGO Extensions on USB script with vusb.init and samba.init enabled. All other scripts can be dissabled. Why do you put on pants over head?
insmod and mount is for me simple way.

maybe later.