coby mid9742

fatb0y

Junior Member
Dec 17, 2014
13
0
You need to start from the beginning, how did you root your device? How and what recovery have you installed?

How were you able to install mobiz rom?

adb is required to root and install cwm recovery using the method on this forum.

Yet you don't have adb setup, so something isn't right.

sent from my kingSing T1 via taptalk
well first i used a 7042 batch file that had cwm with it because i thought the 7042 and the 9742 were pretty much compaitable and that worked except my wifi didn't work and so then i flashed it with the mobiz rom via cwm and that works great with the only problem being my ts is inverted
 

vampirefo.

Senior Member
Developer
Nov 8, 2011
3,836
1,394
A batch file requires adb, so adb has to be setup and working for the batch file to push the files.

You lost WiFi by flash a cwm recovery? I don't see how that could happen.
Is you tablet rooted or not?

You can Google how to setup adb, there are many guides.
sent from my kingSing T1 via taptalk
 

fatb0y

Junior Member
Dec 17, 2014
13
0
no the wifi never worked to begin with after installing the batch file it would say it was connected but never was fully... and yes the tablet is rooted
 
Last edited:

fatb0y

Junior Member
Dec 17, 2014
13
0
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.

C:\Users\1>adb shell
root@android:/ # mkdir /sdcard/na
mkdir /sdcard/na
mkdir failed for /sdcard/na, File exists
255|root@android:/ # mount -t vfat /dev/block/nanda/sdcard/na
mount -t vfat /dev/block/nanda/sdcard/na
Usage: mount [-r] [-w] [-o options] [-t type] device directory
1|root@android:/ # adb push script0.bin /sdcard/na/
adb push script0.bin /sdcard/na/
* daemon not running. starting it now on port 5038 *
* daemon started successfully *
error: device not found
 

vampirefo.

Senior Member
Developer
Nov 8, 2011
3,836
1,394
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.

C:\Users\1>adb shell
root@android:/ # mkdir /sdcard/na
mkdir /sdcard/na
mkdir failed for /sdcard/na, File exists
255|root@android:/ # mount -t vfat /dev/block/nanda/sdcard/na
mount -t vfat /dev/block/nanda/sdcard/na
Usage: mount [-r] [-w] [-o options] [-t type] device directory
1|root@android:/ # adb push script0.bin /sdcard/na/
adb push script0.bin /sdcard/na/
* daemon not running. starting it now on port 5038 *
* daemon started successfully *
error: device not found

This means you typed wrong command

Usage: mount [-r] [-w] [-o options] [-t type] device directory


You typed
mount -t vfat /dev/block/nanda/sdcard/na

Correct command
mount -t vfat /dev/block/nanda /sdcard/na

a space is needed between nanda and /sdcard

next you are trying to push from adb shell not posible you need to push from your computer.

This is adb shell you can't push from here
root@android:/ #

this is computer you can push from here
C:\Users\1>

So once you have correctly typed mount -t vfat /dev/block/nanda /sdcard/na close your cmd window and open another one, you should then see C:\Users\1 now issue adb push commands.
 

fatb0y

Junior Member
Dec 17, 2014
13
0
i have the files on my sdcard usb debugging is on and root access is on .....Sorry for being and idiot and not understanding all of this

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.

C:\Users\1>abd shell
'abd' is not recognized as an internal or external command,
operable program or batch file.

C:\Users\1>adb shell
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
root@android:/ # mkdir /sdcard/na
mkdir /sdcard/na
mkdir failed for /sdcard/na, File exists
255|root@android:/ # mount -t vfat /dev/block/nanda /sdcard/na
mount -t vfat /dev/block/nanda /sdcard/na
root@android:/ # exit
exit

C:\Users\1>adb push script0.bin /sdcard/na/
cannot stat 'script0.bin': No such file or directory

C:\Users\1>
 

vampirefo.

Senior Member
Developer
Nov 8, 2011
3,836
1,394
i have the files on my sdcard usb debugging is on and root access is on .....Sorry for being and idiot and not understanding all of this

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.

C:\Users\1>abd shell
'abd' is not recognized as an internal or external command,
operable program or batch file.

C:\Users\1>adb shell
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
root@android:/ # mkdir /sdcard/na
mkdir /sdcard/na
mkdir failed for /sdcard/na, File exists
255|root@android:/ # mount -t vfat /dev/block/nanda /sdcard/na
mount -t vfat /dev/block/nanda /sdcard/na
root@android:/ # exit
exit

C:\Users\1>adb push script0.bin /sdcard/na/
cannot stat 'script0.bin': No such file or directory

C:\Users\1>
Where is script0.bin? it needs to be on your PC and you have to add complete path.

Anyway good luck to you, I am done til holidays are over.

Merry Christmas and Happy New Year to all.
sent from my kingSing T1 via taptalk
 

fatb0y

Junior Member
Dec 17, 2014
13
0
ok so i figured all that out pushed the files and now the ts will not work at all
 
Top