Page 1 of 1

[solved] Some confusion on SamyGO extension

Posted: Thu Feb 16, 2012 4:03 pm
by address
Hello forum,
I am a newbye on samygo but I have a little knowledge on linux. Ineed some explanations.

a) I own an LE40C630 fwT-VALDEUC3006.2 and I successfully activated internet@tv, PVR and GEMSTAR Guide, so I think now I have an LE40C650 tv in my hands. Am I right?

b) I setted up a web server and tried to root the tv via Internet@TV but with no success, finally I rooted the tv via "universal hack disk". Now I have a modified USA-Today Widget, the tv deletes and reinstall it very often. Is there a way to keep it installed?

c) I need to keep the SamyGO Extension usb stick plugged in to have telnet and ssh, I tried to write a run.sh in the root of usb stick

Code: Select all

/dtv/usb/sda1 # cat run.sh
touch /dtv/usb/sda1/1.txt

/dtv/usb/sda1 # ls -la | grep run
-rwxr-xr-x    1 root     0              26 Feb 13  2012 run.sh
the code is not run nor to coldplug not even on hotplug, if I touch 1.txt via telnet it works. How can I execute my custom command?

Thankyou all for SamyGO software and support.

Re: Some confusion on SamyGO extension

Posted: Thu Feb 16, 2012 4:08 pm
by greenhorn
you have to create SamyGO.sh file in the root of your usb stick.
Write in the file:

Code: Select all

/dtv/usb/sda1/SamyGO/rcSGO >/dev/null 2>&1 &

Re: Some confusion on SamyGO extension

Posted: Thu Feb 16, 2012 5:02 pm
by address
I have created SamyGO.sh file in the root of your usb stick, and it's working fine but is SamyGO.sh the only file that is executed? Are there other script like runonce, coldplugonly, hotplugonly, firstrun etc. that will be executed by SamyGO? I would like to run my custom aliases, can I write a second line in SamyGO.sh like

Code: Select all

ln -s /dtv/usb/sda1/PVR /dtv/usb/sdb/nfs/10.222.3.25/_media_Dati_MY-PVR-PARTITION
?

Re: Some confusion on SamyGO extension

Posted: Thu Feb 16, 2012 5:03 pm
by juusso
Yes, sure, you can useSamyGO.sh as custom startup file and write there everything you need.
But this command for symlink you can only make after your nfs shares are mounted. Then it is better to make your custom init script inside samygo extensions
(/etc/init.d/)

Re: Some confusion on SamyGO extension

Posted: Sun Feb 19, 2012 9:46 am
by address
:-) ok, now It's clear!

Thankyou