首页
博客
论文
Study on an emergency evacuation model considering information transfer and rerouting
A combined real-time intelligent fire detection and forecasting approach
Theoretical and experimental study on image noise reduction
卷积神经网络在建筑消防信息化的应用
陈铭的个人小站
行动起来,活在当下
累计撰写
301
篇文章
累计创建
313
个标签
累计收到
11
条评论
栏目
首页
博客
论文
Study on an emergency evacuation model considering information transfer and rerouting
A combined real-time intelligent fire detection and forecasting approach
Theoretical and experimental study on image noise reduction
卷积神经网络在建筑消防信息化的应用
目 录
CONTENT
以下是
chenming
的文章
2021-08-20
为云服务器创建虚拟内存
# 创建虚拟内存文件# of:输出的虚拟内存文件位置# bs:虚拟内存块大小,也就是count的单位dd if=/dev/zero of=/swapfile bs=1k count=10240000# 创建虚拟内存mkswap /swapfile# 启动虚拟内存swapon /swapfile# 删
2021-08-20
359
0
0
Linux
2021-08-19
改造rpm成conan模块
前言公司的项目依赖都是以rpm包进行安装,规范化工作需要改造rpm包,以conan的形式安装依赖rpm安装时做了什么?以公司某个rpm包为例,我们需要层层解压至文件夹状态,最终层级如下:etccron.dlogrotate.dpkiusrbinlib64varlog一级目录下etc、usr、var对
2021-08-19
214
0
0
Linux
2021-08-17
linux上搭建jenkins
#启动容器# 8080端口是jenkins的dashboard使用的;50000是jenkins的JNLP使用的docker run --name MyJenkins --privileged -p 9080:8080 -p 50000:50000 -itd centos:7 /usr/sbin/
2021-08-17
180
0
0
Linux
2021-08-17
为nexus安装插件:nexus-composer-plugin为例
下载插件composer库插件为kar包,可以选择官方仓库或者我的gitee进行下载安装插件# $nexus_home:nexus安装目录cp nexus-repository-composer-0.0.18-bundle.kar $nexus_home/deploy重启nexusnexus res
2021-08-17
573
0
0
Linux
2021-08-15
conan的安装及其nexus的conan制品库使用
设置nexus开启conan的hosted库,默认只开启proxy库;接着nexus打开Conan Bearer Token Realm# $nexus_home就是nexus安装的路径vi $nexus_home/etc/nexus-default.properties加上:nexus.conan
2021-08-15
622
0
0
Linux
2021-08-14
为nexus安装插件:nexus-tag-plugin为例
2021-08-14
291
0
0
Linux
2021-08-13
cmake的安装
# 下载源码wget https://github.com/Kitware/CMake/releases/download/v3.21.1/cmake-3.21.1.tar.gztar -zxvf cmake-3.21.1.tar.gz && cd cmake-3.21.1# 三板斧
2021-08-13
183
0
0
Linux
2021-08-13
升级gcc版本
# 下载gcc最新的源码包并解压cd /wget http://ftp.gnu.org/gnu/gcc/gcc-9.1.0/gcc-9.1.0.tar.gztar -xzvf gcc-9.1.0.tar.gz && cd gcc-9.1.0# 运行download_prerequis
2021-08-13
267
0
0
Linux
2021-08-10
nexus插件nexus-tag-plugin源码修改
源码阅读我们先读一下插件源码(Github)层级结构nexus插件本质上也是个maven项目,最终打成Kar包给nexus使用dto包AssociatedComponent: 封装接口调用时传过来的制品属性,可以看到成员变量里面group不可以为null,对于pypi和docker制品(group只
2021-08-10
237
0
0
Linux
2021-08-06
拉取nexus建立pypi私服的代码模块
配置文件.pypric这个文件位于home路径下,用于验证远程仓库。需要注意的是,不管整个组里面有多少代理仓库和host仓库。.pypric只要配置host仓库就好。[distutils]index-servers = pypi[pypi]repository: http://xxx.xxx.xxx
2021-08-06
214
0
0
Linux
1
...
23
24
25
...
31