clwilson, on 25 February 2012 - 11:48 PM, said:
When it says to place step 1 file and step 2 file in the "your current directory" What does that mean exactly? I have tried to place those in tons of locations and have no idea where that would be. I keep trying the first step and all I am getting is "cannot stat '1' : no such file or directory exists" Can someone please give me a quick hint so that I can root this Tablet

"Current directory" means running the adb command from the same directory in which you placed files "1" and "2" so you do not have to specify the path to their location in the command line. However, as I recall, for some versions of adb you need to specify the destination file name as well as the directory - e.g.
adb push 1 /data/local/1
See if that pattern helps.
Also, make sure /data/local exists on the tablet, and that it is writable. You can check that with:
adb shell mount
The results should show a list similar to this one from my ARchos 43:
rootfs on / type rootfs (rw)
/dev/mmcblk0p2 on /mnt/system type ext3 (
rw,noexec,noatime,errors=continue,data=ordered)
/dev/loop0 on /new-root type squashfs (ro,noatime)
unionfs on / type unionfs (
rw,dirs=/mnt/system/unionfs=rw:/new-root=ro)
tmpfs on /dev type tmpfs (
rw,mode=755)
...
/dev/block/vold/179:17 on /mnt/storage/sdcard type vfat (
rw,dirsync,nosuid,nodev,noexec,noatime,nodiratime,uid=1000,gid=1015,fmask=0000,dmask=0000,allow_utime=0022,codepage=cp437,iocharset=iso8859-1,utf8,errors=remount-ro)
...
/dev/block/mmcblk0p4 on /data type ext3 (
rw,nosuid,noatime,errors=continue,data=ordered)
...
The "rw" means it can be read and written, so your /data should show up with that rw, and you should be able to list the contents of /data/local with:
adb shell ls -l /data/local
(I cannot ls /data itself since it has permssions of drwxrwx--x).
If those are not present or writeable, your Archos directory structure would not seem to be "standard" per this thread.
R