自动化运维 Ansible 批量推送ssh公钥到远程节点 --- - hosts: '{{ host }}' user: root tasks: #- name: 推送公钥到远程节点 #参考 https://docs.ansible.com/ansible/... 05月23日 387 次 评论 阅读全文
自动化运维 Ansible 批量修改远程主机密码且本地记录 --- - hosts: '{{ host }}' user: root tasks: - name: 修改root密码 register: rootpw_result shell: | root_p... 05月23日 377 次 评论 阅读全文
自动化运维 Ansible 批量修改远程主机iptables记录 --- - hosts: '{{ host }}' user: root tasks: - name: 删除所有22992和10050端口防火墙规则 #参考 https://www.cnblogs.c... 05月23日 362 次 评论 阅读全文
MacOS Mac Office Autoupdate 显示”更新暂时不可用,请在几分钟后重试”解决方法 $ launchctl stop /Library/LaunchAgents/com.microsoft.update.agent.plist $ sudo launchctl unload -w /... 06月08日 278 次 评论 阅读全文
Linux基础 CentOS 8 编译安卓Axel # mkdir -p /tmp/axel && cd /tmp/axel # curl -Lk $(curl -Lks "https://github.com/axel-do... 06月08日 238 次 评论 阅读全文