上一页 1 ··· 63 64 65 66 67 68 69 70 71 ··· 77 下一页
摘要: 1.要监控的程序为使用cygwin环境编译的exe可执行文件hello.exe,源码如下: #include <stdio.h> #include <unistd.h> void main(void) { while(1) { printf("hello\n"); sleep(1); } } 2.以 阅读全文
posted @ 2018-10-17 22:53 Jello 阅读(1917) 评论(0) 推荐(0) 编辑
摘要: 脚本如下: #!/bin/shTTY_LOG=tty_logTTY_LOG1=tty_log1USER_NAME=`whoami`#echo ${USER_NAME}who|grep ${USER_NAME} |awk '{print $2}' > ${TTY_LOG} LINE_NUM=`cat 阅读全文
posted @ 2018-10-17 17:05 Jello 阅读(721) 评论(0) 推荐(0) 编辑
摘要: 1. environment release version: bionic kernel version:4.15.0-29-generic 2.install pip 2.1 sudo apt-get install python3-distutils (resolve a problem:Im 阅读全文
posted @ 2018-10-05 16:15 Jello 阅读(626) 评论(0) 推荐(0) 编辑
摘要: 一.结果 从笔者试验的结果来看,科大讯飞的语音识别技术远超百度语音识别 二.横向对比 阅读全文
posted @ 2018-10-03 08:58 Jello 阅读(3452) 评论(1) 推荐(0) 编辑
摘要: 一.环境 发行版:Ubuntu 18.04 LTS 代号:bionic 内核版本:4.15.0-33-generic 二.步骤 2.1 准备工作 sudo apt-get install python3-pip clang cmake python2.7-dev -y pip3 install fu 阅读全文
posted @ 2018-10-02 21:32 Jello 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 一.背景 LS1021ATWR开发板运行官方的openwrt系统 二.日志分析 2.1 linux相关日志 root@OpenWrt:/# reboot 重启 root@OpenWrt:/# [ 2324.325719] device eth0 left promiscuous mode 网卡eth 阅读全文
posted @ 2018-09-30 16:22 Jello 阅读(4655) 评论(0) 推荐(0) 编辑
摘要: 1. 将要启动的程序创建快捷方式 2. 将创建的快捷方式放到以下文件夹中 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup 阅读全文
posted @ 2018-09-29 10:16 Jello 阅读(785) 评论(0) 推荐(0) 编辑
摘要: 一.环境 OS: windows 二.步骤 2.1.ping mirrors.163.com Pinging mirrors.163.com [23.111.1.151] with 32 bytes of data:Reply from 23.111.1.151: bytes=32 time=28m 阅读全文
posted @ 2018-09-28 12:32 Jello 阅读(907) 评论(0) 推荐(0) 编辑
摘要: 1.查看CPU个数 cat /proc/cpuinfo |grep "physical id"|sort|uniq|wc -l 2.查看每个物理CPU含有的核心个数 cat /proc/cpuinfo |grep "cpu cores"|uniq|wc -l 3.查看每个CPU核心含有的线程数 ca 阅读全文
posted @ 2018-09-28 12:12 Jello 阅读(17833) 评论(0) 推荐(0) 编辑
摘要: 1.git 克隆时重命名本地文件夹或目录 如:git clone https://github.com/torvalds/linux.git linux_kernel 2.git查看tag git tag 3.git切换到指定tag 如:git checkout v4.18 (v4.18为tag名称 阅读全文
posted @ 2018-09-28 11:05 Jello 阅读(162) 评论(0) 推荐(0) 编辑
上一页 1 ··· 63 64 65 66 67 68 69 70 71 ··· 77 下一页