美文网首页
Mac SSH 免密登录越狱iPhone 操作步骤

Mac SSH 免密登录越狱iPhone 操作步骤

作者: 菜鸟程序源 | 来源:发表于2017-12-15 16:34 被阅读0次

    1、通过Cydia 安装OpenSSH

    2、安装OpenSSH后,建议修改root密码,默认密码为:alpine。操作方法:https://cydia.saurik.com/password.html

    在Mac上的操作:

    (1)ssh-keygen -t rsa (连续三次回车,即在本地生成了公钥和私钥,不设置密码)

    (2)ssh root@192.168.39.168(换成你自己的ip)连接iPhone,(如果你是用iproxy,则用ssh -p 2222 root@localhost连接,iproxy使用http://blog.csdn.net/yxys01/article/details/77188976

    (3)mkdir .ssh iOS设备上创建目录

    (4)chmod 700 .ssh (必须将.ssh的权限设为700)

    (5)断开连接,执行scp ~/.ssh/id_rsa.pub root@192.168.39.168:.ssh/id_rsa.pub (需要输入密码)

    在iOS设备上的操作:

    (1)cd .ssh

      (2)   touch authorized_keys

    (3)  chmod 600 authorized_keys    

      (4)   cat id_rsa.pub >> authorized_keys

    相关文章

      网友评论

          本文标题:Mac SSH 免密登录越狱iPhone 操作步骤

          本文链接:https://www.haomeiwen.com/subject/ijydwxtx.html