我想从bash脚本中激活“ USB绑定”,所以有可能用adb shell运行命令行来更改某些Android设置吗?
Edit1:
以下命令打开所需的设置但不要单独更改任何内容:
am start -n com.android.settings/.TetherSettings

我从
aapt dump xmltree com.android.settings.apk AndroidManifest.xml | less +/ether

找到了TetherSettings动作名称相关,但相反是否可以从命令行禁用USB绑定?

评论

太棒了。我试图找到其他命令来执行aapt转储xmltree com.android.settings.apk AndroidManifest.xml,但这在我的手机上不起作用(未找到aapt)。如何查看可用设置的列表?

elinux.org/Android_aapt

谢谢!我在build-tools文件夹中找到了aapt。我现在可以运行它。我似乎找不到com.android.settings.apk。我试过了:在电话上找到/ -name'com.android.settings.apk',但是什么都没出现:(您能告诉我在哪里可以找到com.android.settings.apk吗?

#1 楼

如果您的Android版本具有svc内置实用程序,请运行以下命令:
adb shell svc usb setFunctions rndis

这将启用USB绑定。要查看其他可用的USB功能,请运行:
adb shell svc usb


#2 楼

以root用户身份运行以下命令应启用USB绑定:
在Ice Cream Sandwich(4.0)上的service call connectivity 32 i32 1
在Jelly Bean上的service call connectivity 33 i32 1(4.1到4.3)

KitKat(4.4)上的service call connectivity 34 i32 1(5.0)

Lollipop(5.1)上的service call connectivity 30 i32 1(根据Firelord的回答)


棉花糖(6.0)上的service call connectivity 31 i32 1,未经测试

三星棉花糖(6.0)上的service call connectivity 30 i32 1

牛轧糖上的service call connectivity 41 i32 1 (7.0)

Samsung Nougat上的service call connectivity 33 i32 1(7.0)

您在命令中看到的第一个数字是service call connectivity 39 i32 1中的setUsbTethering()方法的编号(这取决于Android版本,

(提示:要检查此文件是否为特定的Android版本,请选择适当的分支。)

所以此命令的作用是调用IConnectivityManager.aidl并传递1(启用USB绑定)或0(禁用它)。

有关更多信息,请参阅St上的相关问题ack溢出。


如果要在USB反向绑定设置中启用USB绑定,则setUsbTethering()应该足以设置setprop sys.usb.config rndis,adb接口。

评论


查看jb-release分支,int setUsbTethering(boolean enable);看起来是第33种方法,而不是第34种。另外,我已经在带有JB 4.3的Nexus 7上测试了4.1 / 4.2和4.3 / 4.4命令,并且服务呼叫连接33 i32 1启用了网络共享。

–user43185
2015年6月8日在8:36



@JoshHolland一定是一个错误。感谢您修复它!

–林é
15年6月8日在15:22

这是USBTethering的正确答案。不过,它不适用于Wifi网络共享。尚未为此打开API ...

–克里斯托弗
15年12月28日在16:47

我当然不介意;)感谢您的链接。

–林é
16年1月2日在21:15

在CM14.1(7.1)上,Jelly Bean命令起作用

–christoph
17年5月5日在18:12

#3 楼

使用adb shell input tap有一个非常糟糕的方法,获取用于启用绑定和替代的坐标

adb shell input tap <x> <y>


,或者使用adb shell input keyevent导航以启用无线电。只需看看,

adb shell input 


再次将其限制在特定的设备中。

评论


将所有这些组合在一起,如果屏幕解锁,则对我有用:adb shell“ am start -n com.android.settings / .TetherSettings;输入keyevent KEYCODE_DPAD_UP;输入keyevent KEYCODE_ENTER”。我找到了SO上的关键事件列表。

– redbmk
17年1月31日在6:53



如果有人要对其进行测试和/或对其设备进行修改,我将在此处发布。我写了一个小脚本来为我的nexus 5x打开网络共享(需要解锁),并将其连接到udev以在插入时自动执行

– redbmk
17年1月31日在8:28

@redbmk-感谢您提供有用的脚本。对于Galaxy A5 2017,键序列为:$ {inputKey} DPAD_DOWN; $ pause; $ {inputKey} DPAD_DOWN; $ pause; $ {inputKey} ENTER。我也发现pause =“ sleep 0.3”可以。

–P.Windridge
17年11月28日在19:04



在上面的序列中,我忘记了最初的按键操作来取消有关启用MTP的弹出确认,即$ {inputKey} DPAD_DOWN;。 $ pause; $ {inputKey} DPAD_DOWN; $ pause; $ {inputKey} ENTER;。

–P.Windridge
17年11月29日在18:55



#4 楼

请尝试以下setprop命令:

setprop sys.usb.config rndis,adb


评论


这只是所需的一部分。例如,这不会启动dnsmasq。

–kroot
2013年12月3日在6:25

#5 楼

修改为使用Windows超时命令代替睡眠,首先唤醒屏幕,并且仅按下一次。我的手机上两次启用了Wi-Fi网络共享功能。

adb shell input keyevent KEYCODE_WAKEUP && adb shell am start -n com.android.settings/.TetherSettings && adb shell input keyevent KEYCODE_DPAD_DOWN && adb shell input keyevent KEYCODE_ENTER && timeout 2 && adb shell input keyevent KEYCODE_BACK


#6 楼

在我的三星设备上,service方法不适用于我。不过,我想出了如何通过直接配置网络接口来做到这一点。这是一个脚本,用于设置Linux机器和通过USB连接的植根Android设备以进行USB绑定。这不会设置DNS或NAT伪装,但足以使设备可通过192.168.42.129访问:

#!/bin/bash
set -euo pipefail

# Set up USB tethering for an Android device.
# Usage: adb-usb-tether [USB-VENDOR USB-PRODUCT]
# If USB vendor/product is unspecified, use first USB network interface.
# On the Android side, tethering is enabled via adb shell.

if [[ $# -eq 2 ]]
then
    any=false
    vendor=
    product=
else
    any=true
fi

function find_if() {
    local path if
    for path in /sys/class/net/*
    do
        if=$(basename "$path")
        if [[ "$(readlink "$path")" == */usb* ]]
        then
            local ifproduct ifvendor
            ifproduct=$(cat "$(realpath "$path")/../../../idProduct")
            ifvendor=$(cat "$(realpath "$path")/../../../idVendor")
            if $any || [[ "$ifproduct" == "$product" && "$ifvendor" == "$vendor" ]]
            then
                echo "Found interface: $if" 1>&2
                echo "$if"
                return
            fi
        fi
    done
}

function adb_shell() {
    adb shell "$(printf " %q" "$@")"
}

function adb_su() {
    local quoted
    quoted="$(printf " %q" "$@")"
    adb shell su -c "$(printf %q "$quoted")"
}

if=$(find_if)
if [[ -z "$if" ]]
then
    echo "Requesting interface:" 1>&2
    adb_su setprop sys.usb.config rndis,adb
    echo " >> OK" 1>&2
fi

while [[ -z "$if" ]]
do
    echo "Waiting for network device..." 1>&2
    sleep 1
    if=$(find_if)
done

while ! ( ip link | grep -qF "$if" )
do
    echo "Waiting for interface..." 1>&2
    sleep 1
done

function configure_net() {
    local name=""
    local if=""
    local ip=""
    local table=""
    local cmdq="" # Query command
    local cmdx="" # Configuration command

    if ! ( "$cmdq" ip addr show dev "$if" | grep -qF 192.168.42."$ip" )
    then
        echo "Configuring $name interface address:" 1>&2
        "$cmdx" ip addr add 192.168.42."$ip"/24 dev "$if"
        echo " >> OK" 1>&2
    fi

    if ( "$cmdq" ip addr show dev "$if" | grep -qF 'state DOWN' )
    then
        echo "Bringing $name interface up:" 1>&2
        "$cmdx" ip link set dev "$if" up
        sleep 1
        echo " >> OK" 1>&2
    fi

    if ! ( "$cmdq" ip route show table "$table" | grep -qF "192.168.42.0/24 dev $if" )
    then
        echo "Configuring $name route:" 1>&2
        "$cmdx" ip route add table "$table" 192.168.42.0/24 dev "$if"
        echo " >> OK" 1>&2
    fi
}

configure_net local  "$if"   128 main  command   sudo
configure_net device rndis0  129 local adb_shell adb_su


启用转发(即从通过Android设备访问PC),请在此处查看我的问题和答案。

#7 楼

这与设备无关(切换USB绑定)
adb shell am start -n com.android.settings/.TetherSettings &&
adb shell input keyevent 20 &&
adb shell input keyevent 20 &&
adb shell input keyevent KEYCODE_ENTER &&
sleep 2 &&
adb shell input keyevent 4