iOS越狱后导入照片 安装Apple File Conditing打开爱思助手 到:/var/mobile/Media/DCIM复制所有照片到(如果没有就新建一个)/var/mobile/Media/DCIM/100APPLE删除下面的文件/var/mobile/Media/PhotoData/Photos.sqlite/var/mobile/Media/PhotoData/Pho...
tcp time_wait When tcp_tw_reuse is enabled the kernel can decide to use the sockets in TIME_WAIT, before they expire or they are closed by the clients.This is a problem though, because the connection could s...
修复Cydia没网 和 Host Unreachable错误 使用unc0ver越狱时打开(Re)Install OpenSSHSSH登录到设备rm -r /var/preferences/com.apple.networkextension* && reboot或者rm -f /var/preferences/com.apple.networkextension.plistrm -f /var/pr...
macOS开启允许任何来源软件 最新版的macOS已经不显示任何来源软件,方法如下sudo spctl --master-disable转载于:https://www.cnblogs.com/chenminklutz/p/10369980.html
Failed to list *v1.Secret: secrets is forbidden: User "system:node Jun 14 11:40:13 kubelet[22623]: E0614 11:40:13.372894 22623 reflector.go:126] object-""/"": Failed to list *v1.Secret: secrets is forbidden: User "system:node:nodeA" cannot list resource "sec...
在代理下使用windows power shell # 查看当前代理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=i...
Centos设置limit最大打开文件数和最大进程数 在/etc/security/limits.conf添加cat > /etc/security/limits.conf <<EOF* soft nofile 65536* hard nofile 65536* soft nproc 131072* hard nproc 131072EOF如果是cento6.x, /etc/se...
sed删除两行之间的内容 $ cat test1start2end3$ sed -n '1,/start/p;/end/,$p' test1startend3$ sed '/start/,/end/d' test13转载于:https://www.cnblogs.com/chenminklutz/p/10303676.html
linux脚本中单中括号和双中括号的区别 在 Bash 4.3.11 测试:POSIX vs Bash 扩展:[ 是 POSIX[[ is 一个 Bash 扩展常规命令 vs 魔法[ 只是一个有着奇怪名字的常规命令。] is just an argument of [ that prevents further arguments from being used.只是一个 [ 的避免更多的参数被使用的参数。U...
MySQL数据库设计规范 原文链接:https://github.com/jly8866/archer/blob/master/src/docs/mysql_db_design_guide.mdMySQL数据库设计规范1. 规范背景与目的2. 设计规范2.1 数据库设计2.1.1 库名2.1.2 表结构2.1.3 列数据类型优化2.1.4 索引设计2.1.5 分库...
用kettle做ETL时设置mysql连接参数使数据写入速度加快 在用kettle做转换抽取数据的时候,向mysql服务器写入数据时会很慢,尤其是广域网里的服务器经过网上查资料看文档,确定了这三个连接属性设置后写入速度有明显提升。rewriteBatchedStatements=trueuseServerPrepStmts=falseuseCompression=true如图:设置方法:转载于:https...
mysqldiff No module named utilities.common.tools Traceback (most recent call last): File "/bin/mysqldiff", line 28, in <module> from mysql.utilities.common.tools import check_python_versionImportError: No module named utilitie...
mongodb 慢查询排查 来源:https://www.cnblogs.com/yangxiaoyi/p/7504753.htmlhttps://www.cnblogs.com/luo-mao/p/6278170.htmlhttp://www.pianshen.com/article/134476742/开启慢日志1.查看mongodb慢日志是否开起use BJ_Rack;db....
kettle导入转换的时候不覆盖资源库里同名的连接的方法 在用kettle做转换抽取数据的时候,导入同事做好的转换时会覆盖资源库里同名的连接这样设置即可避免设置方法如图:两个都勾选就会询问是否覆盖enjoy yours!转载于:https://www.cnblogs.com/chenminklutz/p/7325974.html...
docker配置代理 mkdir -p /etc/systemd/system/docker.service.dcat <<EOF > /etc/systemd/system/docker.service.d/http-proxy.conf[Service]Environment="HTTP_PROXY=http://ip:port/" "NO_PROXY=localhost...
infobright社区版rpm包 infobright已经不提供社区版很久了之前做数据仓库用到的一个rpm包需要的自行下载吧链接:http://pan.baidu.com/s/1b0mMx4链接不行了在下边评论即可,我会更新转载于:https://www.cnblogs.com/chenminklutz/p/7325967.html...
greenplum给某个用户赋予整个schema下所有表的权限 greenplum 虽然是postgresql的衍生产品但是语法上略有不同类似 grant all on all tables in schema schemaname to someone 就不行报错提示 ERROR: syntax error at or near "all"所以使用了笨办法先生成语句select 'grant all ...
git 特殊用法 回退commitgit loggit reset --hard <commit_id>git push origin HEAD --force解决合并冲突git checkout -b conflict_fix# do some commit conflictlyAuto-merging xxxCONFLICT (conte...
凌云流控破解方法 #!/bin/bash# by klutz QQ群576646725# 首先我们打开凌云流控官网https://q.qkhost.cn/# 然后下载他的脚本wget q.qkhost.cn/Lyun# 脱第一层壳:第一层是gzexe加密,所以直接执行解密命令gzexe -d Lyun# 脱第二层壳:第二层是C转接,我们知道C是无法获取源...