[ROOT] Rooting E/F on latest firmwares

Here are software that related with Samsung F series TVs.
Please don't create any new topic here unless you have software to post/release.

sectroyer
Official SamyGO Developer
Posts: 6305
Joined: Wed May 04, 2011 5:10 pm

Re: [App] Rooting F 1118 and 1120

Post by sectroyer »

zimpel wrote:very interesting...
i tried to install this at my Samsung UE55F9090 with T-FXP9DEUC-2221.0
The installation was without problems.
But no root :(

Interesting was, that my TV at the restart means: "It was discovered a malicious program. Some functions may be limited."

Image
This method is still in beta and might not work on E series (it's mostly for F). For E series use zero firmware do downgrade and use Skype rooting method :)
I do NOT support "latest fw" at ALL. If you have one you should block updates on router and wait for it to STOP being "latest":)
If you want me to help you please paste FULL log(s) to "spoiler"/"code" bbcodes or provide link(s) to pasted file(s) on https://pastebin.com Otherwise "NO HELP"!!!
If you want root DISABLE internet access to your device!!!!
DO NOT EVER INSTALL FIRMWARE UPGRADE !!!!
User avatar
juusso
SamyGO Moderator
Posts: 10129
Joined: Sun Mar 07, 2010 6:20 pm

Re: [App] Rooting F 1118 and 1120

Post by juusso »

FXP9 is F series, some kind of F9000...
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
baldy
SamyGO Project Donor
Posts: 6
Joined: Sat Feb 15, 2014 9:05 pm
Location: EU

Re: [App] Rooting F 1118 and 1120

Post by baldy »

le0990 wrote:
greenhorn wrote:@le0990
you have to use the auto start oscam script... /mntr/ect/init.d/03_01_libOSCAM.init
autostart o$scam:

with new run1.sh

Code: Select all

#!/bin/sh
# emergency skript exit to prevent boot loop
      for USB in ${1:- \
         /dtv/usb/sd* } ; do
         echo "checking $USB"
         sleep 1
         if [ -e $USB/STOP_SAMYGO ]; then
            "STOP found. Script exit..."
            exit 1
         fi
         if [ -e "$USB/SamyGO_data/samyext4.img" ]; 
         then
             samygo_data_dir="$USB/SamyGO_data"
         fi
      done
cd /tmp
if [ -f "/mnt/rcSGO" ]
then
    echo "SamyGO already started."
    exit 1
fi
if [ -z "$samygo_data_dir" ]
then
    echo "SamyGO_data not found."
    exit 1
fi
mkdir /tmp/bin
/mtd_exe/InfoLink/lib/unzip -o -P 12345 "$samygo_data_dir/data.zip" -d /tmp/bin/
chmod 777 /tmp/bin/*
/tmp/bin/busybox --install -s /tmp/bin
sync
export PATH=/tmp/bin:$PATH
export LD_LIBRARY_PATH=/tmp/bin:$LD_LIBRARY_PATH
sync
/tmp/bin/busybox tcpsvd -vE 0.0.0.0 21 /tmp/bin/busybox ftpd -w / &
/tmp/bin/remshd33 & #remshd shell on 33 port from now!
sync

ln -s /dev/loop3 /tmp/loopnone
sync
/tmp/bin/busybox losetup /tmp/loopnone  "$samygo_data_dir/samyext4.img"
/tmp/bin/busybox mount -o sync,exec /tmp/loopnone /mnt 
/tmp/bin/busybox --install -s /mnt/bin
sync  

cd / && /sbin/rmmod ARS_module > /dev/null 2>&1
echo " " >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
echo "ls -la after rmmod ARS_module" >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
ls -la /mnt/* >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
echo "Starting rcSGO from run1.sh" >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
/mnt/bin/busybox sh -x /mnt/rcSGO /mnt >> /mnt/sam.log 2>&1

echo " " >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
echo "Starting UEP_killer.sh" >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
sh -x /mtd_rwcommon/oscam/samyGOstart.sh >> /mtd_rwcommon/oscam/samyGO_start.log  2>&1
sleep 5
/tmp/bin/UEP_killer.sh &

ps | grep run.sh | grep -v grep | while read child_pid others
do
    echo "Killing child process $child_pid of run.sh"
    kill -9 $child_pid
and samyGOstart.sh modified in: /mtd_rwcommon/oscam/samyGOstart.sh

Code: Select all

#!/bin/sh

rm /mtd_rwcommon/oscam/libOSCAM.so.disabled

/mtd_rwcommon/oscam/samyGOoscam
Could you please specify your autostart oscam closer? where to put run1.sh script? i am little confused. i am running fw1118 on F7000.
Thank you
ue55F7000
zimpel
SamyGO Project Donor
Posts: 4
Joined: Tue May 20, 2014 6:47 pm

[App] Rooting F 1118 and 1120

Post by zimpel »

@greenhorn no, the older method dont work:( at the Moment no Root and no Solution
Last edited by zimpel on Sat Jul 26, 2014 9:44 pm, edited 1 time in total.
Using Tapatalk
le0990
SamyGO Project Donor
Posts: 9
Joined: Tue Jan 07, 2014 9:26 pm

Re: [App] Rooting F 1118 and 1120

Post by le0990 »

baldy wrote:
le0990 wrote:
greenhorn wrote:@le0990
you have to use the auto start oscam script... /mntr/ect/init.d/03_01_libOSCAM.init
autostart o$scam:

with new run1.sh

Code: Select all

#!/bin/sh
# emergency skript exit to prevent boot loop
      for USB in ${1:- \
         /dtv/usb/sd* } ; do
         echo "checking $USB"
         sleep 1
         if [ -e $USB/STOP_SAMYGO ]; then
            "STOP found. Script exit..."
            exit 1
         fi
         if [ -e "$USB/SamyGO_data/samyext4.img" ]; 
         then
             samygo_data_dir="$USB/SamyGO_data"
         fi
      done
cd /tmp
if [ -f "/mnt/rcSGO" ]
then
    echo "SamyGO already started."
    exit 1
fi
if [ -z "$samygo_data_dir" ]
then
    echo "SamyGO_data not found."
    exit 1
fi
mkdir /tmp/bin
/mtd_exe/InfoLink/lib/unzip -o -P 12345 "$samygo_data_dir/data.zip" -d /tmp/bin/
chmod 777 /tmp/bin/*
/tmp/bin/busybox --install -s /tmp/bin
sync
export PATH=/tmp/bin:$PATH
export LD_LIBRARY_PATH=/tmp/bin:$LD_LIBRARY_PATH
sync
/tmp/bin/busybox tcpsvd -vE 0.0.0.0 21 /tmp/bin/busybox ftpd -w / &
/tmp/bin/remshd33 & #remshd shell on 33 port from now!
sync

ln -s /dev/loop3 /tmp/loopnone
sync
/tmp/bin/busybox losetup /tmp/loopnone  "$samygo_data_dir/samyext4.img"
/tmp/bin/busybox mount -o sync,exec /tmp/loopnone /mnt 
/tmp/bin/busybox --install -s /mnt/bin
sync  

cd / && /sbin/rmmod ARS_module > /dev/null 2>&1
echo " " >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
echo "ls -la after rmmod ARS_module" >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
ls -la /mnt/* >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
echo "Starting rcSGO from run1.sh" >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
/mnt/bin/busybox sh -x /mnt/rcSGO /mnt >> /mnt/sam.log 2>&1

echo " " >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
echo "Starting UEP_killer.sh" >> /mnt/sam.log 2>&1
echo "===========================" >> /mnt/sam.log 2>&1
sh -x /mtd_rwcommon/oscam/samyGOstart.sh >> /mtd_rwcommon/oscam/samyGO_start.log  2>&1
sleep 5
/tmp/bin/UEP_killer.sh &

ps | grep run.sh | grep -v grep | while read child_pid others
do
    echo "Killing child process $child_pid of run.sh"
    kill -9 $child_pid
and samyGOstart.sh modified in: /mtd_rwcommon/oscam/samyGOstart.sh

Code: Select all

#!/bin/sh

rm /mtd_rwcommon/oscam/libOSCAM.so.disabled

/mtd_rwcommon/oscam/samyGOoscam
Could you please specify your autostart oscam closer? where to put run1.sh script? i am little confused. i am running fw1118 on F7000.
Thank you
Sorry, run1.sh you find in FAT USB / SamyGO_data
sectroyer
Official SamyGO Developer
Posts: 6305
Joined: Wed May 04, 2011 5:10 pm

Re: [App] Rooting F 1118 and 1120

Post by sectroyer »

MST users should now try MST-Fix from first post ;) :twisted: :mrgreen: :lol: :D :)
I do NOT support "latest fw" at ALL. If you have one you should block updates on router and wait for it to STOP being "latest":)
If you want me to help you please paste FULL log(s) to "spoiler"/"code" bbcodes or provide link(s) to pasted file(s) on https://pastebin.com Otherwise "NO HELP"!!!
If you want root DISABLE internet access to your device!!!!
DO NOT EVER INSTALL FIRMWARE UPGRADE !!!!
bartasdiver
SamyGO Project Donor
Posts: 3
Joined: Fri Jun 27, 2014 9:46 pm

Re: [App] Rooting F 1118 and 1120

Post by bartasdiver »

sectroyer wrote:MST users should now try MST-Fix from first post ;) :twisted: :mrgreen: :lol: :D :)
I can confirm, the fix works like a charm :D

Thank you!
siegbrecht
SamyGO Project Donor
Posts: 23
Joined: Thu Jul 24, 2014 7:18 pm

Re: [App] Rooting F 1118 and 1120

Post by siegbrecht »

where can i find the info if i am on mst? f6370, cant see something in the menu? maybe in some hidden menu? how to get there?
User avatar
greenhorn
SamyGO Project Donor
Posts: 701
Joined: Wed Feb 15, 2012 3:05 pm
Location: Eastern Europe

Re: [App] Rooting F 1118 and 1120

Post by greenhorn »

siegbrecht
what is the model of the TV?
edit: f6370 is mst....
Last edited by greenhorn on Sat Jul 26, 2014 11:08 pm, edited 1 time in total.
TV: UE40F7000 - T-FXPDEUC-1115.0 - SamyGO Extensions on F series
TV: UE55ES7000S - T-ECPDEUC-2003.4 - SamyGO tool Right from USB - no develop account is needed
TV: UE40C6710 - T-VALDEUC 3011 - Hacking TV over Hotel mode (C650 T-VALDEUC-3009.2)
BD-Player: BD-E6100 - B-FIRBPEWWC 1063.3 - rooted, no more Cin@vi@
NAS: CIFS: MAG250 NFS: Playon!HD
zoelechat
SamyGO Moderator
Posts: 8615
Joined: Fri Apr 12, 2013 7:32 pm
Location: France

Re: [App] Rooting F 1118 and 1120

Post by zoelechat »

If firmware name contains MST, it's MST (eg. T-MST12DEUC_1120.0, mostly F5xxx/F6xxx models), else it's not :D
I do NOT receive any PM. Please use forum.

Post Reply

Return to “[F] Software”