- 博客(17)
- 收藏
- 关注
原创 ubuntu使用nfs设置网络共享文件夹
文章目录前言1 ubuntu主机1.1 安装nfs1.2 创建共享文件夹1.3 配置文件1.4 映射端口,重启服务2 开发板3 其他设备挂载3.1 修改fstab文件3.挂载前言工作需要开发板获取主机的文件,两台设备在同一个子网下,可以使用nfs实现文件共享。1 ubuntu主机1.1 安装nfssudo apt-get install nfs-kernel-server1.2 创建共享文件夹mkdir -p folder_dir #folder_dir文件夹路径1.3 配置文件
2021-07-07 11:12:39
760
原创 ubuntu使用国内源配置repo
项目场景:使用repo下载sdk,出现下列错误Downloading Repo source from https://gerrit.googlesource.com/git-repofatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundlefatal: error [Errno 110] Connection timed outfatal: cloning the git-repo repository fail
2021-06-24 14:01:16
9456
原创 git的基本用法
向已经创建好的主分支添加内容git config --global user.name "user.name"git config --global user.email "user.email"git initgit add .git commit -m ""git remote add origin "repository address"git push -u origin master向其它分支推送只需要修改最后一步,修改如下git checkout -b branch_nam
2021-06-10 14:30:02
119
原创 ubuntu tty联网
有线连接dmesg | gerp eth #检查可用的网络可以看到,eth0被重命名为enp4s0,链接网络需要链接enp4s0sudo dhclient enp4s0无线连接ifconfig wlan0 up #启用无线网络iwlist wlan0 scan #搜索可用网络wpa_passphrase wlan_name wlan_password > wla.confwpa_supplicant -i wlan0 -c wla.confsudo dhclient wl
2021-06-03 11:54:06
2697
1
原创 docker学习笔记
安装dockercurl https://get.docker.com > /tmp/install.shcat /tmp/install.shchmod +x /tmp/install.sh/tmp/install.shdocker基本命令启动一个容器,命名为vg,执行bashdocker run -i -t debian /bin/bash #启动容器docker run -h c -i -t debain /bin/bash #给主机命名cdocker -h c -
2021-06-01 18:20:09
99
原创 ubuntu20.04安装caffe和配置anaconda
在这里记录使用虚拟机ubuntu20.04安装caffe的过程,主要是踩过的坑。安装caffe之前需要先安装opencv,安装opencv的方法见文章目录前言一、pandas是什么?二、使用步骤1.引入库2.读入数据总结项目场景:问题描述:原因分析:解决方案:前言提示:这里可以添加本文要记录的大概内容:例如:随着人工智能的不断发展,机器学习这门技术也越来越重要,很多人都开启了学习机器学习,本文就介绍了机器学习的基础内容。提示:以下是本篇文章正文内容,下面案例可供参考一、pandas是什么?
2021-05-28 16:59:17
4524
2
原创 使用python裁剪mp3
为了把不良人4中的bug裁成铃声,本着自己动手丰衣足食的精神,使用python实现的mp3裁剪功能,主要使用了下列工具包,环境如下eyed3==0.9.6pydub==0.25.1scipy注意,pydub运行需要ffemg,在windows里面配置比较麻烦,我是在ubuntu20.04中执行的,代码如下:from pydub import AudioSegmentfrom scipy.io import wavfilefrom eyed3 import mp3import osson
2021-05-26 18:04:37
1639
转载 vimplus国内源安装
前言由于最近github链接很卡,所以使用github安装vimplus很耗时间。所以我选用gitee上面的仓库。安装过程如下:仅至此ubuntu16.04及以上版本git clone https://github.com/chxuan/vimplus.git ~/.vimpluscd ~/.vimplus./install.sh其它个性化参考论坛的内容。...
2021-05-25 17:52:02
2130
2
原创 ubuntu20.04安装opencv4.5.2和opencv_contrib4.5.2和配置路径
caffe在windows安装太坑了,尝试在虚拟机上安装,记录一些踩坑的过程文章目录环境一、安装依赖环境二、安装opencv2.读入数据总结环境ubuntu20.04anaconda5.6python3.8cmake3.16一、安装依赖环境依次输入以下命令sudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler
2021-05-25 11:49:39
3748
2
原创 深度学习环境配置(cuda安装,cudnn安装,anaconda安装,虚拟环境创建,国内镜像源添加)
文章目录前言一、安装NVIDIA驱动1.1.查看显卡支持的驱动版本1.2.nvidia官网下载1.3.ubuntu源安装二、安装cuda2.1.windows下安装2.2.ubuntu下安装2.2.验证三、安装cudnn3.1.windows下安装3.2.ubuntu下安装前言使用ubuntu做深度学习训练,安装驱动时遇到了很多坑,仅记录防止以后犯错。一、安装NVIDIA驱动1.1.查看显卡支持的驱动版本ubuntu系统下:打开终端 (ctrl + alt + T)输入:lshw -nume
2021-05-24 12:00:09
2569
原创 ubuntu20.04设置rc.local
文章目录开机自动启动脚本设置开机自动启动脚本设置由于ubuntu20.04LST没有/etc/rc.local,需要创建sudo gedit /etc/rc.local脚本内容为#!/bash/shcmdexit 0如果脚本内的cmd需要sudo权限执行,则命令格式为echo 'passward' |sudo -S cmd 完成脚本编写后需要启动rc.local.service,命令如下sudo gedit /etc/systemd/system/rc-local.servic
2021-05-20 09:42:35
8282
原创 ubuntu delete cuda
项目场景:nvidia 3080 not match cuda10.2问题描述:sudo apt --purge remove cudasudo apt autoremovesudo apt --purge remove cuda*rm -rf /usr/local/cuda*orsudo rm -rf /usr/local/cuda-10.2sudo rm -rf /usr/local/cudanextsudo gedit ~/.bashrc...
2021-05-18 09:07:12
143
转载 ZXING C++ README
ZXing C++ PortZXing is/was a Java library.At some point a complete C++ port/rewrite was created and maintained in the official ZXing repo. However, at the time of writing the C++ port is no longer maintained and has been removed from the official ZXing r
2021-05-17 10:11:11
211
转载 QZXING_README
qzxingQt/QML wrapper library for the ZXing barcode image processing library.Supports barcode decoding for the following types:UPC-AUPC-EEAN-8EAN-13ITFCode 39Code 93Code 128 (GS1)CodabarQR CodeData MatrixAztec (beta)PDF 417Supports barcode
2021-05-17 10:06:18
564
原创 点云算法在条码识别任务中的应用
点云算法在实现条码图像矫正的应用@SPOT:Selective Point Cloud Voting for Better Proposal in Point Cloud Object Detection前言 标准条码都是矩形,如果能找到条码的中心位置和任意两条边,就可以将条码的位置区域还原。在日常生活中,大部分场景中条码自然是以正常的状态呈现,然而在一些特殊的场合,例如饮料瓶,一些零食的包装,二维码通常会有一些形变。此外,图像采集的过程中也会有这些情况产生。那么对于一些产生形变的条码,应当是可以
2021-05-14 14:06:47
384
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人