- 博客(31)
- 收藏
- 关注
原创 Zenmap扫描udp端口太慢
Zenmap扫描udp端口太慢https://blog.csdn.net/weixin_39525300/article/details/119470968使用Zenmap扫描端口很慢,一秒才一个icmp包,受上面文章启发,看到服务端/proc/sys/net/ipv4目录下,存在icmp_ratelimit和icmp_ratemask,将两个都设置为不限制后,速度很快,十几二十秒即可完成扫描...
2021-08-20 09:50:32
981
1
原创 RefineDet+PeleeNet
RefineDet:算法笔记:https://blog.csdn.net/u014380165/article/details/79502308算法源码1:https://blog.csdn.net/u014380165/article/details/80562416算法源码2:https://blog.csdn.net/u014380165/article/details/8056245...
2020-04-21 16:13:24
306
原创 Ubuntu18.04:更换linux内核
参考:https://www.jianshu.com/p/db2755a07d7d主要问题:按上述参考链接操作后,开机发现本地网卡没起来,无法联网。解决方案:在安装内核的时候,只安装了linux-image导致的问题,需要同步安装image,header,modules,modules-extra。具体如下:...
2019-11-22 10:14:00
1318
原创 linux-rm建立回收机制
1.在用户家目录“~”新建一个tools目录,目录内新建脚本文件rm.sh2.rm.sh内容:TRASH_DIR="/mnt/hdd2/.trash" for i in $*; do STAMP=`date +%H%M%S` fileName=`basename $i` mv $i $TRASH_DIR/$fileName.$STAMP done...
2019-06-26 22:09:08
279
原创 基于ssd_mobilenet模型实现目标检测(含数据集制作)
参考链接:https://www.cnblogs.com/White-xzx/p/9503203.html1.参考VOC数据集建立目录结构,Annotations中放置标记的XML文件,JPEGImage放置标记的图片,Tools放置一些工具对JPEGImages文件夹中新增文件的批量重命名工具:# -*- coding:utf8 -*- import osimport syscl...
2019-05-24 14:46:02
2425
原创 如何在Jetson Nano上运行TensorFlow对象检测模型
http://bbs.gpuworld.cn/index.php?topic=73098.msg84029
2019-05-14 22:19:52
2822
转载 TensorFlow Object Detection API
https://cloud.tencent.com/developer/article/1341546过程问题解决:1. Tensorflow object detection api没有train.py新版的train.py换成了model_main.pypython object_detection/train.py --train_dir object_detection/train...
2019-05-14 21:37:52
135
原创 如何让IDLE在virtualenv中运行
1.进入virtualenv环境source ./venv/bin/activate2. 打开IDLEpython -m idlelib.idle &3.退出virtualenv环境deactivate
2019-04-04 11:43:47
504
原创 linux - 多线程打包压缩
tar -cvpf - $Dir | gizp -9 -p 6 $target-nametar -cvpf - /usr/bin | gizp -9 -p 6 bin.tgzgzip:-9 : 代表压缩率-p : 代表CPU数量
2019-03-06 15:58:51
4761
转载 imx6 linux wifi ap模式配置(usb-wifi模块rt3070)
转载自:https://blog.csdn.net/weixin_42381443/article/details/80566047不是所有的usb-wif模块在linux下面都可以支持ap模式。在linux下的ap模式是通过工具hostapd工具进行配置运行的,该工具一般使用nl80211协议驱动无线网卡ap模式的运行。所以一定要选择linux下能支持80211ap协议(ap模式)的无线网卡...
2018-11-06 16:22:23
1041
原创 Linux用户管理
新建用户:useradd -m -s /bin/bash -d ${HOME DIR} ${user}useradd -m -s /bin/bash -d /home/tester tester新建工作组:groupadd ${group}groupadd SVTeam将用户添加到指定工作组:usermod -g ${group} ${user}usermod -g SVTeam...
2018-11-05 20:54:24
301
1
原创 Ubuntu18.04远程桌面连接
一、安装 xrdp、tightvncserversudo apt-get install tightvncserver xrdp二、安装xubuntu-desktopsudo apt-get install xubuntu-desktop三、修改配置文件echo xfce4-session >~/.xsessionsudo vi /etc/xrdp/startwm.sh在...
2018-10-16 09:12:49
23824
7
原创 IMX6Q基于Yocto移植:kernel打上tp2854全景方案补丁
一、参考文档:https://community.nxp.com/docs/DOC-335803二、操作步骤源码打 patchcd <KERNEL_DIR>patch -p1 <PATCH_DIR>/0001-IPU-update-IPU-capture-driver-to-support-up-to-four-.patchp
2018-10-12 23:48:13
2695
原创 IMX6Q基于Yocto移植:sd卡rootfs无法加载
一、报错信息分析:在加载Rootfs的时候,出现以下报错信息VFS: Cannot open root device "mmcblk1p2" or unknown-block(179,2): error -30Please append a correct "root=" boot option; here are the available partitions:继续查看系统启动信息,...
2018-10-12 14:02:12
1046
1
原创 Ubuntu18.04挂载Samba共享文件夹
一、安装cifs-utifssudo apt-get install cifs-utils二、列举指定IP地址所提供的共享文件夹列表smbclient -L ${ip_addr} -U ${username}%${password}三、挂载共享文件夹mount -t cifs ${remount_share_folder} ${local_mount_folder} -o user...
2018-10-11 09:27:33
12309
原创 Ubuntu18.04编译Yocto:工具链和单独编译uboot
Restarting a build environment$ source setup-environment <build-dir>2.编译安装交叉编译工具bitbake meta-toolchain编译完成后,生成{yocto_path}/build-fb/tmp/deploy/sdk/fsl-imx-fb-glibc-x86_64-meta-toolchain-...
2018-10-10 20:37:27
3555
原创 Ubuntu18.04编译Yocto:systemtap-native-2.9-r0编译失败
/**********************************************************************报错信息: …/git/loc2c.c:2563:21: error: this statement may fall through [-Werror=implicit-fallthrough=]说明:在Ubuntu 18.04上编译Yocto,sys...
2018-10-10 10:46:56
520
原创 Ubuntu18.04编译Yocto:e2fsprogs-native编译失败
/**********************************************************************报错信息:| ../../git/debugfs/../misc/create_inode.c: At top level:| ../../git/debugfs/../misc/create_inode.c:395:18: error: confli...
2018-10-10 10:46:51
1761
原创 Ubuntu18.04编译Yocto:建立repo环境失败
Repo is a tool built on top of Git that makes it easier to manage projects that contain multiple repositories, which do not needto be on the same server. Repo complements very well the layered nature...
2018-10-10 10:45:56
1024
原创 Ubuntu18.04编译Yocto:优先下载所需软件包
/**********************************************************************说明:在Ubuntu 18.04上编译Yocto,可通过bitbake选项优先下载所需软件包2018-10-9 佛山顺德 Yangzf/**********************************************************...
2018-10-09 17:13:54
1892
转载 Ubuntu18.04编译Yocto:elfutils编译出错
转载自:https://www.cnblogs.com/zengjfgit/p/9181721.html/**********************************************************************报错信息:elfutils cc1: all warnings being treated as errors说明:在Ubuntu 18.04上编译...
2018-10-09 17:02:39
2510
2
转载 Ubuntu18.04编译Yocto:find.pl找不到
转载自:https://www.cnblogs.com/zengjfgit/p/9181330.html/**********************************************************************报错信息:Can’t locate find.pl in @INC (@INC contains: /etc/perl xxxx) at perlpa...
2018-10-09 16:55:37
768
转载 Ubuntu18.04编译Yocto:automake使用错误。
/**********************************************************************报错信息:help2man: can’t get --help' info from automake-1.15 Try–no-discard-stderr’ if option outputs to stderr Makefile:3687: recip...
2018-10-09 16:51:48
3637
转载 Ubuntu18.04编译Yocto:automake正则表达式问题
转载自:https://www.cnblogs.com/zengjfgit/p/9178523.html/**********************************************************************报错信息:Unescaped left brace in regex is illegal here in regex; marked by <...
2018-10-09 16:48:42
712
转载 Ubuntu18.04编译Yocto:git无法访问
转载自:https://www.cnblogs.com/zengjfgit/p/9177572.html/**********************************************************************报错信息:ERROR: gnu-config-native-20150728+gitAUTOINC+b576fa87c1-r0 do_unpack: ...
2018-10-09 16:44:54
952
原创 Ubuntu18.04编译Yocto:cross-localedef-native: Build fail
/**********************************************************************报错信息:/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:28:8: error: redefinition of ‘struct __locale_struct’说明:在Ubuntu 18.0...
2018-10-09 16:38:34
2368
2
原创 Ubuntu18.04编译Yocto:lzop 1.03 configuration failed
/**********************************************************************报错信息: | checking whether your compiler passes the ACC conformance test… FAILED说明:在Ubuntu 18.04上编译Yocto,出现的lzop配置自检失败的问题2018-10...
2018-10-09 15:35:27
3589
原创 Ubuntu18.04编译Yocto:struct ucontext未定义
/**********************************************************************报错信息: ERROR: | /mnt/hdd/home/yangzf/yocto/fsl-release-bsp/build-fb/tmp/work/x86_64-linux/qemu-native/2.5.0-r1/qemu-2.5.0/user-ex...
2018-10-09 15:05:05
1489
原创 Ubuntu18.04编译Yocto:memfd_create重定义
/**********************************************************************ERROR: /mnt/hdd/home/yangzf/yocto/fsl-release-bsp/build-fb/tmp/work/x86_64-linux/qemu-native/2.5.0-r1/qemu-2.5.0/util/memfd.c:4...
2018-10-09 14:48:56
2074
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人