码迷,mamicode.com
首页 >  
搜索关键字:ansible install bash    ( 57162个结果
Linux 编译vlc
Setup Check our AndroidCompile wiki page, especially for build dependencies. Here are the essential points: On Debian/Ubuntu, install the required dep ...
分类:系统相关   时间:2021-03-26 15:25:05    阅读次数:0
ansible概述及安装
#####ansible批量管理服务概述 ansible批量功能 -- 并行 01. 可以实现批量系统操作配置 02. 可以实现批量软件服务部署 03. 可以实现批量文件数据分发 04. 可以实现批量系统信息收集 ansible批量管理服务意义 01. 提高工作的效率(部署综合架构) 02. 提高工 ...
分类:其他好文   时间:2021-03-26 15:21:36    阅读次数:0
实用shell脚本
1、检测两台服务器指定目录下的文件一致性 #!/bin/bash ##################################### #检测两台服务器指定目录下的文件一致性 ##################################### #通过对比两台服务器上文件的md5值,达到 ...
分类:系统相关   时间:2021-03-26 15:20:05    阅读次数:0
Nodejs操作mysql数据库
创建db.js 1.安装mysql依赖 //打开终端,输入 npm install mysql 2.导入mysql依赖 var mysql = require('mysql'); 3.创建一个mysql的Connection对象,配置数据库连接信息。 var conntion = mysql.cre ...
分类:数据库   时间:2021-03-26 15:15:43    阅读次数:0
Cenots7 初始化 必装的yum 软件包
#!/bin/bash mkdir /etc/yum.repos.d/repo mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.ali ...
分类:其他好文   时间:2021-03-18 14:42:38    阅读次数:0
idea java界面设置中文
参考:https://www.imooc.com/article/303110?block_id=tuijian_wz 环境: 操作系统: mac os 11.2.3 idea版本: 社区版 2020.3.2 步骤: 1. 2.打开 Settings -> Plugins,(按照步骤选择,因为我已经 ...
分类:编程语言   时间:2021-03-18 14:25:01    阅读次数:0
如何的将你的代码打包成EXE(PyInstaller、cx_Freeze、Nuitka)
选择自己合适的打包方式 不要为了追求原生exe或者文件大小而去使用Nuitka 想要减少打包后的大小还是有很多方法的 比如说使用官网提供的嵌入式环境 减少使用第三方包等等 1、PyInstaller(pip install PyInstaller) -F : 单文件打包, 这种其实是不推荐的. 原理 ...
分类:其他好文   时间:2021-03-18 14:12:56    阅读次数:0
域名到期时间检测
#!/bin/bash #检测whois命令是否存在,不存在则安装jwhois包is_install_whois(){ which whois &> /dev/null if [ $? -ne 0 ];then yum install -y jwhois fi}is_install_whois#定义 ...
分类:其他好文   时间:2021-03-18 14:10:30    阅读次数:0
c程序编译错误处理办法
error: C++ preprocessor "/lib/cpp" fails sanity check 问题的根源是缺少必要的C++库。如果是CentOS系统,运行,如下命令解决: yum install -y glibc-headers gcc-c++ Ubuntu系统中,运行命令: apt- ...
分类:其他好文   时间:2021-03-18 14:06:28    阅读次数:0
cmder配置
cmder介绍 简介 windows10中常用的命令行终端有cmd,powershell。其它需手动安装的终端有git bash(对于git命令),xshell(对于ssh连接远程主机附带linux命令) 集成多种终端,实现高效开发的命令行工具cmder,可以实现cmd,git,ssh,linux多 ...
分类:其他好文   时间:2021-03-18 14:03:40    阅读次数:0
57162条   上一页 1 ... 65 66 67 68 69 ... 5717 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!