我正在设置一些测试,它需要相当数量的手机才能进行USB连接和配置。我已经成功地按照我想要的方式对它们进行了配置,但是每次我(重新)启动计算机或移动测试库时,通过浏览菜单来连接电话会非常繁琐。 。我目前正在使用运行cyanogenmod v10.1.0的Nexus S手机,但测试银行很可能是三星Galaxy S4可能与我手边的几款Nexus S手机混合使用。
我想以bash脚本的形式执行此操作,但我首先尝试在命令行(Ubuntu 13.04)上运行它,以便删除可能来自脚本的问题。我应该能够自己处理它成为一个脚本,但如果提供一个答案作为bash脚本很简单,请做。我尝试轰击设备(adb -s $deviceID shell
)并运行:
setprop sys.usb.config rndis,adb
这会立即将我踢出设备外壳,无法再访问设备。如果我运行adb devices
,我会将手机视为“没有权限”,此时我必须拔出USB线,然后重新插入,然后重启带有adb kill-server
adb start-server
的adb服务器。这不起作用,因为我无法访问手机以进行我需要的配置更改。
我用Google搜索,但一直找不到任何有效的东西。有什么建议吗?
答案 0 :(得分:17)
必须有root才能使用setprop
更改值,并且我在没有rndis驱动程序的Mac OS上,因此无法测试您的USB网络共享方法。另一种方法,如果您有连接服务(adb shell service list
):
以下命令在Android 4.3中调用ConnectivityManager.setUsbTethering(boolean enable)
:
adb shell su -c service call connectivity 34 i32 1
打开USB网络共享。
adb shell su -c service call connectivity 34 i32 0
关闭USB网络共享。
对于其他Android版本,请将34
替换为每个Android版本的以下setUsbTethering
个致电代码:
4.4.4: 34
5.1.0: 30
6.0.1: 30
7.0.0: 33
答案 1 :(得分:6)
对于Android 5.0+(Lollipop,Marshmallow),请使用:
adb shell su -c service call connectivity 30 i32 1
打开USB Tethering
adb shell su -c service call connectivity 30 i32 0
关闭USB Tethering
请记住,这需要root。
答案 2 :(得分:3)
接受的答案中的命令在Oreo上不起作用,因为现在应该将其作为附加参数callerPkg
,并且如果在其中放置一些随机文本也可以。
int setUsbTethering(boolean enable, String callerPkg);
因此,对于8.0 / 8.1 Oreo:
service call connectivity 34 i32 1 s16 text
-开启USB网络共享功能
service call connectivity 34 i32 0 s16 text
-关闭USB共享网络
适用于我的Android Pie与
service call connectivity 33 i32 1 s16 text
-开启USB网络共享功能
service call connectivity 33 i32 0 s16 text
-关闭USB共享网络
答案 3 :(得分:1)
service
方法在我的三星设备上对我不起作用。我想通过直接配置网络接口来解决这个问题。这是一个脚本,用于设置Linux机器和USB连接的root用户设备,用于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=$1
product=$2
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="$1"
local if="$2"
local ip="$3"
local table="$4"
local cmdq="$5" # Query command
local cmdx="$6" # 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
答案 4 :(得分:1)
您也可以编写输入脚本,以启动“设置”应用并勾选复选框,例如https://github.com/medvid/android-tether/blob/master/tether#L83。
这是我的脚本(与链接中的脚本大致相同,但略有改动):
adb shell am force-stop com.android.settings
adb shell input keyevent 3
sleep 2
adb shell am start -a android.intent.action.MAIN -n com.android.settings/.TetherSettings
sleep 2
adb shell input keyevent 19
adb shell input keyevent 20
adb shell input keyevent 66
sleep 2
adb shell input keyevent 3
对于Windows,只需将sleep
替换为timeout -t
。
我的运行Android Pie(9)(使用Google的“设置”应用程序(运行Pixel Experience ROM)的OnePlus 3T正常工作;无法验证它是否可与其他“设置”应用程序一起使用)
答案 5 :(得分:0)
对于使用Fairphone Open OS的Fairphone 2(“没有Google的Android”版本,默认情况下未安装),您需要:
adb shell su -c "service call connectivity 31 i32 1"
adb shell su -c "service call connectivity 31 i32 0"
答案 6 :(得分:0)
Android 4.2 Jelly bean:
adb shell su -c service call connectivity 33 i32 1