2017-10-19
脚本运行ssh,登陆远程主机时遇到:Pseudo-terminal will not be allocated because stdin is not a terminal 的错误。
解决方法:在ssh后添加 -Tq参数 即:sshpass -p '123456' ssh -Tq [email protected]
2017-10-20
- 使用ideviceinstaller 远程安装应用时出现错误:Could not connect to lockdownd
方法:提高权限:sudo chmod -R 777 /var/db/lockdown/
或者一次性解决问题:
brew uninstall ideviceinstaller
brew uninstall libimobiledevice
brew install --HEAD libimobiledevice
brew link --overwrite libimobiledevice
brew install ideviceinstaller
brew link --overwrite ideviceinstaller
pip 安装 redis 错误:Permission denied: '/Library/Python/2.7/site-packages/redis
when to use sudo pip install redis,new warning occur:
The directory '/Users/yt/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
then,find a way in stackoverflow :chown -R $USER /Library/Python/2.7
it seem work
- .ipa文件在ios9.0系统及以上安装失败
WARNING: could not locate iTunesMetadata.plist in archive!
WARNING: could not locate Payload/JDMobile.app/SC_Info/JDMobile.sinf in archive!
Installing 'com.jd.jinrong'
- CreatingStagingDirectory (5%)
- ExtractingPackage (15%)
- InspectingPackage (20%)
- TakingInstallLock (20%)
- PreflightingApplication (30%)
- VerifyingApplication (40%)
- Error occurred: ApplicationVerificationFailed
2017-10-24
- 获取iOS应用.app文件夹:http://www.infointox.net/?p=114
iOS apps live in_/private/var/mobile/Applications/UID,_where the UID is the universally unique identifier of the appWhile its a bit overkill, once you find the correct directory you can just scp down the whole .app folder down to your machine.
2017-10-30
- mac配置JDK环境:
No Java runtime present, requesting install.
安装完还提示这个错误,可以
vim .bash_profile
添加:
export JAVA_HOME="/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home"
export PATH=${JAVA_HOME}/bin:$PATH
保存,并关闭
然后 source .bash_profile
查看 :java -version
打印:java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
- unbuntu卸载.deb 软件包:
dpkg 命令 :http://qiuye.iteye.com/blog/461394;http://blog.csdn.net/nkguohao/article/details/8951082
2017-11-2
ubuntu14.04黑苹果安装:
下载与系统对应版本的virtual box
准备好mac.vdmk镜像文件
设置好virtual service enabled选项,进入BIOS界面设置
在virtual box中创建新的虚拟系统
执行以下系列命令
VBoxManage modifyvm "虚拟机名称" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff
VBoxManage setextradata "虚拟机名" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3"
VBoxManage setextradata "虚拟机名" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0"
VBoxManage setextradata "虚拟机名" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple"
VBoxManage setextradata "虚拟机名" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"
VBoxManage setextradata "虚拟机名" "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1
启动,安装成功。
可能遇到的问题:
- disk uuid exists,这是由于用此镜像文件创建的系统在Virtual box VM中未完全删除干净,可以先将现有的系统完全remove掉,然后点击新建,给系统起个不一样的名字
- not support cpu asserlation :不支持cpu加速,在BIOS界面中设置
git相关:
合并两个不相关的分支:
$ git pull ios
You asked to pull from the remote 'ios', but did not specify a branch. Because this is not the default configured remote for your current branch, you must specify a branch on the command line.
当你本地分支不是默认分支时,从远程仓库拉取时应该指定要拉取的分支名称;$ git pull ios dev_yu
$ git pull ios dev_yu
fatal: refusing to merge unrelated histories;
拒绝合并不相关的提交历史
$ git pull ios dev_yu --allow-unrelated-historiesFrom gitlab.buptnsrc.com:ios/ios_static_analysis
* branch dev_yu -> FETCH_HEAD
error: There was a problem with the editor 'vi'.
Not committing merge; use 'git commit' to complete the merge.
$ git commiterror: There was a problem with the editor 'vi'.
Please supply the message using either -m or -F option.
$ git commit -m "commit 0"
[dev_yu ac4f726] commit 0
$ git push ios dev_yuCounting objects: 30, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (30/30), done.
Writing objects: 100% (30/30), 35.17 KiB | 4.40 MiB/s, done.
Total 30 (delta 1), reused 0 (delta 0)
To gitlab.buptnsrc.com:ios/ios_static_analysis.git
1aef237..ac4f726 dev_yu -> dev_yu
2017-11-3
- git:
在新建本地仓库,关联远程仓库后,创建分支遇到错误:
fatal: Not a valid object name: 'master
'.要先commit一次,才会真正创建master分支,然后才可以创建新分支。
如何克隆非master分支代码:https://gaohaoyang.github.io/2016/07/07/git-clone-not-master-branch/
git init
命令用于创建一个新的Git仓库。它可以将一个现有的、未受版本控制项目转换为Git仓库,或者初始化一个新的空仓库。在初始化仓库之前,大多数其它Git命令是不可用的,因此这个命令通常为你在运行一个新的项目之前的第一个命令。执行git init
命令,在项目的根目录下面创建了一个.git
子目录,它包含这个仓库的所有重要的元数据。除了.git
目录,现有项目保持不变。Git常用操作命令:http://www.cnblogs.com/springbarley/archive/2012/11/03/2752984.html
pycharm 常用Git操作:http://www.cnblogs.com/caseast/p/6085837.html
2017-11-6
iOS9.0.2,越狱后提示iFunTool助手提示未越狱解决方法:
打开Cydia,搜索Apple File Conduit “2”并安装,此时再连接iFunTool助手,提示越狱成功。
2017-11-7
Mac安装Frida失败:found existing installtion six 1.4.1
原因是:Apple预安装的这个six库出于安全原因被设置为sudo也不可以执行操作,所以需要依赖于高版本的库就需要更新six,但是没有six的权限,所以就会报错。
解决方法:将安装命令改成 sudo pip install libName --upgrade --ignore-installed six
或者电脑安装有python3,直接使用 pip3 install frida
2017-11-8
mac上adb,aapt工具安装:
在~/.bash_profile中添加路径:
export PATH=${PATH}:/Users/yt/Library/Android/sdk/platform-tools
export PATH=${PATH}:/Users/yt/Library/Android/sdk/tools
export PATH=${PATH}:/Users/yt/Library/Android/sdk/build-tools/27.0.1
file:///Users/yt/Documents/mac%E4%B8%8Badb%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE%E5%92%8C%E5%B8%B8%E7%94%A8adb%E5%91%BD%E4%BB%A4%20_%20AnswerZhao%E7%9A%84%E7%99%BB%E5%B1%B1%E4%B9%8B%E6%97%85.htm
2017-11-9
- Windows上adb工具安装:
安装Android SDK(如果安装了Android studio就省略),找到adb.exe目录(C:\Users\XXX\AppData\Local\Android\SDK\platform-tools),将其添加到系统环境变量中的Path路径下。
- Galaxy Nexus adb 无法检测到异常:
解决方法:进入官网下载该手机型号的USB驱动,安装,重启adb(adb kill-server 、adb start-server),使用adb devices测试
- html页面乱码问题:
在使用记事本保存HTML代码时,默认保存的编码格式是ASCI码,即使在页面中指定浏览器用UTF8格式解析,还是会乱码,所以解决方法就是在保存时以UTF8格式保存。
- 路径中“/”和“\”的区别:
简单来说,两者都是系统定义的字符分隔符,目前,浏览器地址中必须使用“/”来作为分隔符;在文件管理系统中“/”和“\”貌似都可以使用。
2017-11-15
iOS安装burt suite证书拦截https请求:将证书以邮件的形式发送到iPhone的邮件上,然后在手机上点击下载信任。
cousera看不了视频
windows下,打开修改hosts文件,地址如下: C:\Windows\System32\drivers\etc,(以文本格式打开hosts就好)
- 文件末加上如下链接 52.84.246.72 d3c33hcgiwev3.cloudfront.net
2.保存修改,在控制台刷新,ipconfig/flushdns
mac下,Finder前往/private/etc/,找到hosts文件,vim,或拖到桌面编辑,添加52.84.246.72 。。。。保存退出。
cmd命令cd命令快速回到桌面
XP用户:cd %userprofile%\桌面
WIN7用户:cd %userprofile%\desktop
WIN10用户:cd /d %userprofile%\desktop