码迷,mamicode.com
首页 >  
搜索关键字:mkdir 创建和删除命令/rm命令    ( 7772个结果
Docker部署MySQL
1、拉取mysql镜像 docker pull mysql:版本号 版本号需要去hub.docker.com 查找支持的镜像版本; 直接pull mysql 默认是获取最新版的; 2、在/root目录下创建mysql目录用于存储mysql数据信息 mkdir ~/mysql cd ~/mysql 3 ...
分类:数据库   时间:2020-03-05 15:25:21    阅读次数:93
point-cloud-annotation-tool编译发烧记_UBUNTU
point-cloud-annotation-tool是点云3D标注软件,安装注意版本问题与安装顺序 ...
分类:系统相关   时间:2020-03-05 01:00:04    阅读次数:174
moca_furnace-master-编译
locate libglags sudo apt purge libgflags-dev sudo apt install libgflags-dev locate libglags mkdir build cd build cmake .. cd apps mkdir build cd build ...
分类:其他好文   时间:2020-03-04 22:50:22    阅读次数:51
VC++判断文件夹是否存在,不存在则创建文件夹
方法挺多的,_access和_mkdir算是比较古典了,不过很好用。 #include <io.h> #include <direct.h> // 判断文件夹是否存在 bool IsDirExist(const char *pszDir) { if (pszDir == NULL) return f ...
分类:编程语言   时间:2020-03-04 14:56:12    阅读次数:183
2.Cobbler自动化安装Centos7
<!doctype html> 一、CentOS配置过程 1.1 挂载镜像 # 上传CentOS的镜像到Cobbler server端 $ mkdir /mnt/centos7 $ mount CentOS-7-x86_64-DVD-1804.iso /mnt/centos7/ 1.2 导入镜像 $ ...
分类:其他好文   时间:2020-03-04 14:44:34    阅读次数:94
linux下更新gcc
1 下载源码 "链接" 目前最新为9.2版本。 2 解压 3 download_prerequisites脚本 运行这个脚本: 4 临时目录 建立临时目录,用于放置中间文件。 5 生成makefile文件 不对,是这张: 下面说一下几个选项: 表示编译器在编译过程中是否做额外检查。 表示支持的语言, ...
分类:系统相关   时间:2020-03-03 15:06:34    阅读次数:91
Ubuntu下更改pip镜像源-- 解决下载慢问题
具体操作步骤: 1、打开终端 2、新建.pip目录 ~$ mkdir ~/.pip ~$ vim ~/.pip/pip.conf 3、添加文件内容 [global] index-url = http://mirrors.aliyun.com/pypi/simple [install] trusted ...
分类:系统相关   时间:2020-03-03 14:47:02    阅读次数:120
Docker 部署zookeeper3.4
一、服务器规划 主机 IP 端口 node-10 172.10.10.10 2181,2888,3888 node-11 172.10.10.11 2181,2888,3888 node-12 172.10.10.12 2181,2888,3888 二、集群部署 注:以下步骤需要分别在三台主机操作 ...
分类:其他好文   时间:2020-03-03 11:21:25    阅读次数:147
【转】java mkdir()和mkdirs()区别
https://blog.csdn.net/qiuwenjie123/article/details/79116358 ...
分类:编程语言   时间:2020-03-03 10:56:29    阅读次数:62
【转】python中%代表什么意思?
python中%:1. 求模运算,相当于mod,也就是计算除法的余数,比如5%2就得到1。2. %还用在python的格式化输出,比如: a = 'test' print 'it is a %s' %(a) 打印的结果就是 it is a test 3.jupyter 中 %lsmagic Out[ ...
分类:编程语言   时间:2020-03-02 13:00:36    阅读次数:70
7772条   上一页 1 ... 64 65 66 67 68 ... 778 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!