Open GoogleCodeExporter opened 9 years ago
[deleted comment]
i have the save problem with you.
but starting by adb shell is Ok in fact,our output msg is same.
it looks like a problem about "rooted".
Original comment by wangqion...@gmail.com
on 6 Jan 2011 at 9:12
Mmmmh. If you get a "Unable to start tethering. Is your device rooted?"-error
message your phone is most likely not rooted correctly.
Check permissions for /system/bin/su or the "Superuser"-app blocks the
su-request.
The output when starting via adb shell looks ok. The "commit" fails on most
devices and is not mandatory.
And ... you have the access-control enabled, right? Try to disable it. Access
control needs the "CONFIG_NETFILTER_XT_MATCH_MAC"-option compiled into the
kernel. The app tries to check that but motorola is so kind to disable another
kernel-option which dumps the current config to /proc/config.gz - so the app
can't detect that.
So, please make sure your device is correctly rooted and the "Superuser"-app is
configured right ... disable access-control and try again.
Thx.
Original comment by harald....@gmail.com
on 6 Jan 2011 at 12:41
i check the rooted (permissions for /system/bin/su) again,it looks like ok.
ls -l /system/bin/ | busybox grep su
-rwxr-xr-x root shell 5448 2010-03-04 18:33 surfaceflinger
lrwxrwxrwx root shell 2010-10-16 16:44 md5sum -> motobox
-rwsr-xr-x root root 76232 2000-01-01 08:01 su
-rwxr-xr-x root shell 197000 2010-03-04 18:33 wpa_supplicant
tether is work fine when i start/stop it via adb shell,but the normal starting
is fail.
supersuer is not installed and access-control is disable.
Original comment by wangqion...@gmail.com
on 6 Jan 2011 at 2:42
When I reset Wireless Tether's remembered permissions from the Superuser
whitelist, here's what I see:
Start Wireless Tether
Press to Start Tethering
Please wait while starting...
Superuser request:
App: Wireless Tether
Package: android.tether
Requested UID: root(0)
Command: /data/data/an...tether start 1
I uncheck 'Remember' and select Allow
Wireless Tether has been granted superuser permissions
Unable to start tethering. Is your device rooted?
(paulv@schrodinger) (05:31 AM) [1] (~)$ adb shell
$ ls -l /system/bin/su
lrwxrwxrwx root root 2010-12-19 18:44 su -> /system/xbin/su
$ ls -l /system/xbin/su
-rwsr-xr-x root root 26264 2010-12-19 18:44 su
I don't have access control enabled.
Original comment by pa...@canonical.org
on 6 Jan 2011 at 7:18
If you are able to start tethering via adb but not via GUI there is something
wrong with "su" and/or the "Superuser"-app.
The app checks if /system/bin/su and/or /system/xbin/su exists ... it takes the
one which is in "$PATH".
A very simple method to get a proper su-environment:
adb root
adb remount
adb shell
cd /system/bin
cat sh > su
chmod 4755 su
"adb root" restarts adb in superuser-mode. "adb remount" mounts the
/system-partition writable.
Original comment by harald....@gmail.com
on 7 Jan 2011 at 7:59
I am not a programmer, but a user on the other end of this issue. Is there a
one click "reroot" that will correct the issue. If so, please email me a link
mindsnag@gmail.com
Was rooted with Z4root and then tried with superoneclick via my windows7
machine and did both exploits and shell.
one hint is that the test of rooting doesn't yeild an alert in super user and
the log is empty.
Many thanks,
David
Original comment by dav...@econet.com
on 25 Feb 2011 at 11:17
Original issue reported on code.google.com by
pa...@canonical.org
on 6 Jan 2011 at 8:01