上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 77 下一页
摘要: 背景: MySQL 5.5开始新增一个数据库:PERFORMANCE_SCHEMA,主要用于收集数据库服务器性能参数。并且库里表的存储引擎均为PERFORMANCE_SCHEMA,而用户是不能创建存储引擎为PERFORMANCE_SCHEMA的表。MySQL5.5默认是关闭的,需要手动开启,在配置文 阅读全文
posted @ 2016-10-24 15:22 ahuo 阅读(299) 评论(0) 推荐(0)
摘要: wmic process list brief |findstr exe 阅读全文
posted @ 2016-10-20 10:55 ahuo 阅读(610) 评论(0) 推荐(0)
摘要: show variables like 'max_%'; show variables like 'tmp_%'; set tmp_table_size=1048576000 set max_heap_table_size=10240000000; 需要重启mysql服务才生效 set global 阅读全文
posted @ 2016-10-19 16:12 ahuo 阅读(169) 评论(0) 推荐(0)
摘要: putty.exe -adb -P 5037 transport-usb 网络调试也是可以的 先connect 再执行上面的命令 http://files.cnblogs.com/files/ahuo/putty_adb.rar 阅读全文
posted @ 2016-10-14 15:08 ahuo 阅读(540) 评论(0) 推荐(0)
摘要: 禁用时间间隔回收 设置为0 然后设置指定时间回收 0:00:00 然后设置脚本 设置计划任务 定期运行 阅读全文
posted @ 2016-09-22 00:12 ahuo 阅读(793) 评论(0) 推荐(0)
摘要: del /f/s/q dirname> nulrmdir /s/q dirname 阅读全文
posted @ 2016-09-02 14:13 ahuo 阅读(666) 评论(0) 推荐(0)
摘要: hex2string std::stringstream R; R << std::hex << 0x1254; DWORD Str2Hex(string str){ return std::stoul(str, nullptr, 16);} 阅读全文
posted @ 2016-08-31 15:55 ahuo 阅读(660) 评论(0) 推荐(0)
摘要: 备份:耗时2.5小时 ./tegraflash.py --bl cboot.bin --applet nvtboot_recovery.bin --chip 0x21 --cmd "read APP my_backup_image_APP.img" 还原:2小时 ./tegraflash.py -- 阅读全文
posted @ 2016-08-23 09:24 ahuo 阅读(240) 评论(0) 推荐(0)
摘要: 摄像头 Capture _capture = new Capture(0); _capture.SetCaptureProperty(Emgu.CV.CvEnum.CAP_PROP.CV_CAP_PROP_FPS, 30); _capture.SetCaptureProperty(Emgu.CV.C 阅读全文
posted @ 2016-08-19 13:47 ahuo 阅读(1525) 评论(0) 推荐(0)
摘要: opencv的数据处理 b1=cv2.imencode('.jpg',cv2.imread('1.jpg'))[1].data b2=cv2.imencode('.jpg',cv2.imread('3.jpg'))[1].data 文件+文本 c.setopt(c.HTTPPOST, [ ('Img 阅读全文
posted @ 2016-08-18 11:18 ahuo 阅读(1037) 评论(0) 推荐(0)
摘要: 在终端查看声卡: aplay -l 成功显示: **** PLAYBACK硬件设备列表 **** card 0: Intel [HDA Intel], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog] 子设备: 1/1 子设备 #0: subdevi 阅读全文
posted @ 2016-08-17 15:10 ahuo 阅读(639) 评论(0) 推荐(0)
摘要: 支持的值:cat /sys/kernel/debug/clock/gbus/possible_rates当前值:cat /sys/kernel/debug/clock/gbus/rate 设置最大值:(85200K)echo 852000000 > /sys/kernel/debug/clock/o 阅读全文
posted @ 2016-08-16 10:49 ahuo 阅读(1218) 评论(0) 推荐(0)
摘要: 安装 python-dev既可解决 apt-get install python-dev 阅读全文
posted @ 2016-08-16 09:50 ahuo 阅读(371) 评论(0) 推荐(0)
摘要: find ./ -type f -print0 | xargs -0 md5sum 阅读全文
posted @ 2016-08-11 15:05 ahuo 阅读(351) 评论(0) 推荐(0)
摘要: 运行级别等级: 0 系统停机状态 1 单用户模式,只准许root用户对系统进系维护 2~5 多用户模式(其中3为字符界面、5为图形界面) 6 重启启动 level2~5是没有任何区别的 运行级别查看:runlevel 切换运行级别:init 3 init 0表示关机,init 6表示重启。 执行/e 阅读全文
posted @ 2016-08-10 11:56 ahuo 阅读(256) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 77 下一页