Make package install 一直卡在 Installing…是怎么回事呀,求解答

我的Makefile文件内容如下:
THEOS_DEVICE_IP = 172.16.35.171
include $(THEOS)/makefiles/common.mk

TWEAK_NAME = iOSREProject
iOSREProject_FILES = Tweak.xm

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
install.exec “killall -9 SpringBoard”

在终端中输入“ssh root@172.16.35.171”也没反应

你手机的IP地址是多少?

地址就是上面那个

ip就是上面写的那个

用usbmuxd试试?

ssh都连不上的话,是网络连接有点问题吧

我的也是 好像是手机版本的问题

哪个版本的系统?OpenSSH是不是有点问题?

10.0.2
在pp助手里点击打开ssh后,执行“ssh root@172.16.35.171 -p 2222”,出现“ssh: connect to host 172.16.35.171 port 2222: Connection refused”

iOS10默认是不让用ip地址连接的。这个配置了吗?

例如参考我以前收藏的这个 https://www.reddit.com/r/jailbreak/comments/5s19qg/tutorial_ssh_over_wifi_with_yalu102_jb/

https://www.reddit.com/r/jailbreak/comments/5s19qg/tutorial_ssh_over_wifi_with_yalu102_jb/ddcm867/

Here you go: https://twitter.com/qwertyoruiopz/status/825911137954885632
Basically go to /Library/LaunchDaemons and you'll find an already existing dropbear.plist. Create a copy of this and name it 'dropbear2.plist' and edit the string from '127.0.0.1:22' to just '22'.
Now open Terminal as root on your iOS and cd to /Library/LaunchDaemons and then type: 'launchctl unload dropbear.plist' and again type 'launchctl load dropbear2.plist'.

or


https://www.reddit.com/r/jailbreak/comments/5s19qg/tutorial_ssh_over_wifi_with_yalu102_jb/

Hi All,
This tutorial would allow you to SSH over WiFi only if you really have to:
Disclaimer and Warning: As I respect what Luca has done to secure SSH using Dropbear and only allow it via Localhost / USB, I would strongly suggest you all to only SSH over WiFi only if you really have to.
Method 1 - Recommended The way Luca suggested to run this:https://www.reddit.com/r/jailbreak/comments/5s19qg/tutorial_ssh_over_wifi_with_yalu102_jb/ddcm867/
Method 2 - Steps you'd need to follow:
1) Install Filza File manager and navigate to: /private/var/containers/Bundle/Application/yalu102/yalu102.app
2) Edit dropbear.plist (Press hold on it > click more> click open with > click Text Editor)
3) Replace <string>127.0.0.1:22<string> with <string>22</string>
4) Power off phone and rejailbreak. You should now be able to connect to your phone's WiFi IP address (local IP address) on port 22 via Putty or your favorite SSH client on your PC that is on the same local network.
Note: I only did this because I wasn't able to connect over USB using iTunnel on PC cause of my iTunes issue. I was however able to later be able to use USB tunnel to connect over USB with iFunbox.
Edit: I attempted to create another dropbear.plist as a LaunchDaemon but it didn't work out for me. If someone was successful in doing do, kindly share.
Edit 2: IMPORTANT: Please ensure that you change the default SSH password, if not done anyone over your local WiFi network or possibly external network (if your router isn't secure) will be able to SSH into your phone and login with the default username and password. :
Open terminal and type: 'su root' type password as : 'alpine' type this to change password: 'passwd' input your new strong password and retype it to confirm. Exit ssh session and relogin with new password to confirm that it's changed.

10.2

谢谢。按这种方案已经连接成功。

Basically go to /Library/LaunchDaemons and you’ll find an already existing dropbear.plist. Create a copy of this and name it ‘dropbear2.plist’ and edit the string from ‘127.0.0.1:22’ to just ‘22’.
Now open Terminal as root on your iOS and cd to /Library/LaunchDaemons and then type: ‘launchctl unload dropbear.plist’ and again type ‘launchctl load dropbear2.plist’.

这个怎么搞啊 也没有发现127.0.0.1:22这个东西啊