摘要: mkdir -p /etc/systemd/system/docker.service.d cat /etc/systemd/system/docker.service.d/http-proxy.conf [Service] Environment="HTTP_PROXY=http://ip:port/" "NO_PROXY=localhost,127.0.0.0/8,10.0.0.0/8,1... 阅读全文
posted @ 2019-02-28 15:39 imklutz 阅读(689) 评论(0) 推荐(0) 编辑
摘要: 使用unc0ver越狱时打开(Re)Install OpenSSH SSH登录到设备 或者 重启手机后,重新越狱 SSH登录到设备的方法: 1.通过设置 无线局域网 右侧小叹号获取手机IP,或使用爱思助手连上数据线在工具里面的打开SSH通道 2.设置里获取的IP一般是一个局域网IP,爱思助手是127 阅读全文
posted @ 2019-02-23 22:23 imklutz 阅读(11183) 评论(0) 推荐(0) 编辑
摘要: 最新版的macOS已经不显示任何来源软件,方法如下 阅读全文
posted @ 2019-02-13 15:14 imklutz 阅读(566) 评论(0) 推荐(0) 编辑
摘要: # 查看当前代理 netsh winhttp show proxy # 设置代理netsh winhttp set proxy proxy-server="http=myproxy;https=sproxy:88" bypass-list="*.foo.com;10.0.0.0/8;" # 直接从IE导入 netsh winhttp import proxy source=ie # 关闭代理 n... 阅读全文
posted @ 2019-01-30 11:44 imklutz 阅读(1519) 评论(0) 推荐(0) 编辑
摘要: $ cat test 1 start 2 end 3 $ sed -n '1,/start/p;/end/,$p' test 1 start end 3 $ sed '/start/,/end/d' test 1 3 阅读全文
posted @ 2019-01-22 14:29 imklutz 阅读(1413) 评论(0) 推荐(0) 编辑
摘要: 回退commit git log git reset --hard <commit_id> git push origin HEAD --force 解决合并冲突 git checkout -b conflict_fix # do some commit conflictly Auto-mergin 阅读全文
posted @ 2019-01-22 12:40 imklutz 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 在 Bash 4.3.11 测试: POSIX vs Bash 扩展: [ 是 POSIX[[ is 一个 Bash 扩展常规命令 vs 魔法 [ 只是一个有着奇怪名字的常规命令。 ] is just an argument of [ that prevents further arguments 阅读全文
posted @ 2018-12-10 16:21 imklutz 阅读(1005) 评论(0) 推荐(0) 编辑
摘要: 想知道怎么过掉二次授权的同学,可以加群后获取,群号:576646725 阅读全文
posted @ 2018-12-03 11:41 imklutz 阅读(2900) 评论(0) 推荐(0) 编辑
摘要: 原文链接https://mariadb.com/kb/en/library/building-the-best-index-for-a-given-select/ The problem You have a SELECT and you want to build the best INDEX f 阅读全文
posted @ 2018-11-26 17:07 imklutz 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 原文链接https://dev.mysql.com/doc/refman/5.6/en/innodb-introduction.html 14.1 Introduction to InnoDB14.1.1 Benefits of Using InnoDB Tables14.1.2 Best Prac 阅读全文
posted @ 2018-11-26 16:30 imklutz 阅读(537) 评论(0) 推荐(0) 编辑