Termux安装Ubuntu等操作系统的过程记录
参阅
工藤新喵.ubuntu-in-termux.Gitee.[1] xiliuya.termux-linux.Github.[2]
centos安装
脚本——这个脚本还可以安装很多其它的操作系统,而且下载速度还不赖
12345# 运行脚本,根据提示输入对应的系统# 建议装8-stream,目前9还有一些东西不支持bash install_linux.sh>centos>9
换源(9-stream)
123# 清华源mv /etc/yum.repos.d/centos.repo /etc/yum.repos.d/centos.repo.bktouch /etc/yum.repos.d/centos.repo
123456789101112131415# 手动复制一下[baseos]name=CentOS Stream $releasever - BaseOS#mirrorlist=http://mirrorlist.centos.org/?release=$stream&arch=$basearch&repo=BaseOS&a ...
解决curl命令报错
curl: symbol lookup error: curl: undefined symbol: curl_easy_nextheader
Saeed.stackoverflow.com.[1]
具体步骤
首先,卸载本机的curl,此处仅介绍编译安装如何卸载。
123#在原来执行make的目录下,查找install_manifest.txt文件。#如果已经删除了源码安装的文件,可用重新下载编译安装一遍再卸载。cat install_manifest.txt | sudo xargs rm
卸载libcurl4
1apt remove libcurl4
重新安装curl
1apt install curl
ansible学习笔记Part3
接上一节
常用模块hostname主机名1#只有一个参数name,用于指定主机名
cron定时任务
支持:分时日月周(minute,hour,day,month,weekday)
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110OPTIONS (= is mandatory):- backup If set, create a backup of the crontab before it is modified. The location of the backup is returned in the `backup_file' variable ...
ansible学习笔记Part2
ansible的Host-pattern
双引号和单引号的使用要留意。
直接通配符
all 表示所有主机列表中的主机
1ansible all -m ping
缺省通配符
1ansible "*est" -m ping
: 或关系
1ansible "websrvs:appsrvs" -m ping
:& 逻辑与
如:在A组且在B组中的主机
1ansible "A:&B" -m ping
:! 逻辑非
1ansible 'A:!B' -m ping
~ 正则表达式
1ansible "~(web|db).*"
ansible执行状态
绿色表示执行成功且未做更改;
黄色表示执行成功且做了更改;
红色表示执行失败;
蓝色表示详细过程;
紫色表示警告;
深灰表示debug;
褐色表示弃用。
ansible常用模块
使用一个模块前,可以使用ansible-doc <moduel>查看一些帮助。
comm ...
ansible学习笔记Part1
参阅:
[1].权威中文指南
[2].珂儿吖.自动化运维工具-ansible详解
[3].马哥教育高薪实战中心.ansible教程-马哥2019全新ansible入门到精通
ansible 简介传统的远程访问为C/S模式,多台客户机访问一台服务器。
但ansible相反,一个主机(主控端)控制多台主机(被控端),且在控制端不需要安装agent,而是直接借助SSH服务实现(但存在效率差的问题)。
适用于中小型应用环境。
ansible 是什么ansible 特点
ansible 架构图
Ansible:Ansible核心程序。
HostInventory:记录由Ansible管理的主机信息,包括端口、密码、ip等。
主机清单,让ansible知道访问哪些主机。
Playbooks:“剧本”YAML格式文件,多个任务定义在一个文件中,定义主机需要调用哪些模块来完成的功能。
CoreModules:核心模块,主要操作是通过调用核心模块来完成管理任务。
CustomModules:自定义模块,完成核心模块无法完成的功能,支持多种语言。
ConnectionPlugins: ...
Nodejs学习笔记Part1
初识Nodejs将JavaScript运行在Nodejs中,使其可以用于后端开发。
——如果写了一段js在浏览器运行,那么是作为前端;如果写了一段js在Nodejs中运行,那么是作为后端开发。
Nodejs基于V8引擎解析和运行js代码。
Nodejs无法调用BOM和DOM等浏览器内置API。Nodejs提供一些基础的API类似浏览器内置的API。
fs模块官方提供的,用于操作文件的模块。它提供了一系列方法和属性,用来满足用户对文件操作的需求。
模块使用
导入模块
1const fs= require('fs')
方法和属性读取文件1fs.readFile('1文件路径','编码格式',回调函数(失败后返回的结果,成功后返回的结果){执行的函数操作})
12345678910//1 导入const fs=require('fs')//2 调用//fs.readFile('文件路径','编码格式',回调函数(失败后返回的结果,成功后返回 ...
ansible报错解决方案
配置相关
10.10.10.5 | FAILED! => { “msg”: “Using a SSH password instead of a key is not possible because Host Key checking is enabled and sshpass does not support this. Please add this host’s fingerprint to your known_hosts file to manage this host.”}
需要添加对应主机到信任清单。
解决方法:
使用ssh连接一次对应主机(会让你输入yes/no,输入yes)
设置参数为不检查key
12345678910111213vi /etc/ansible/ansible.cfg在文件中进行搜索定位到:/host_key_checking# uncomment this to disable SSH key host checking#host_key_checking = False修改后:# uncomment th ...
vi/vim文本编辑工具
启用右键粘贴方法一
1:set mouse-=a
方法二
编辑 ~/.vimrc 文件,加入如下代码:
123if has('mouse') set mouse-=a endif
补充:
vi的三种模式:命令模式、插入模式、可视模式。鼠标可以启动于各种模式中:
12345678The mouse can be enabled for different modes:n Normal mode(普通模式)v Visual mode(可视模式)i Insert mode(插入模式)c Command-line mode(命令行模式)h all previous modes when editing a help file(当编辑一个帮助文件时,开启所有模式)a all previous modes(所有模式)r for |hit-enter| and |more-prompt| prompt(提示输入|更多提示|提示 模式)
显示行号1:set num
切换至某行1:n #n为行号
设置为系统默认编辑器
修改环境变量EDITOR
123 ...
Python学习笔记Part4
Python MySQL - mysql-connector 驱动
报错
1Host 'xxx' is not allowed to connect to this MariaDB server
解决方案
1grant all privileges on *.* to 'root'@'%' identified by 'password' with grant option;
注意
注**意:**如果你的 MySQL 是 8.0 版本,密码插件验证方式发生了变化,早期版本为 mysql_native_password,8.0 版本为 caching_sha2_password,所以需要做些改变:
[mysqld]
user=mysql
validate_password.policy=LOW
default_authentication_plugin=mysql_native_password
12# 或者ALTER USER 'root'@'可访问root的主机 ...