打赏
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 54 下一页
摘要: 根据ip获取网卡名称 #!/bin/bash function getNetCardNameByIp(){ ipaddr=$1 ipa_info=$(ip a) line=$(echo "${ipa_info}" | sed -n -e "/\<$ipaddr\>/=") card_name=`ec 阅读全文
posted @ 2021-10-22 11:38 苍山落暮 阅读(254) 评论(0) 推荐(0) 编辑
摘要: vSphere Client安装 (1.)下载地址 https://developer.aliyun.com/article/636965 (2.)安装 点击下一步,下一步 阅读全文
posted @ 2021-10-22 11:37 苍山落暮 阅读(96) 评论(0) 推荐(0) 编辑
摘要: python远程ssh 1. python远程执行命令 #!/usr/bin/python # -*- coding: utf-8 -*- import paramiko # from cryptography.hazmat.backends import default_backend impor 阅读全文
posted @ 2021-10-22 11:32 苍山落暮 阅读(990) 评论(0) 推荐(0) 编辑
摘要: golang Xorm操作 1.下载xorm包 go get github.com/go-xorm/xorm go get github.com/go-xorm/cmd 2.安装驱动 go get github.com/go-sql-driver/mysql //Mysql go get githu 阅读全文
posted @ 2021-10-22 11:31 苍山落暮 阅读(1344) 评论(0) 推荐(0) 编辑
摘要: httpd服务安装 1.安装httpd yum install httpd -y 2.启动服务 #启动服务 systemctl start httpd systemctl status httpd #设置自动启动 systemctl enable httpd 3.防火墙设置 # 永久打开80端口 f 阅读全文
posted @ 2021-10-22 11:29 苍山落暮 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 腾讯邮箱撤回功能 1.点击已发送-->查询发信投递状态 点击发信查询--> 撤回即可 阅读全文
posted @ 2021-10-20 16:01 苍山落暮 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 防火墙配置 1.查看防火墙端口列表 firewall-cmd --list-ports 2.查看防火墙状态 systemctl status firewalld // start/stop启动、停止类似 3.开放端口 // --permanent 永久生效,没有此参数重启后失效 firewall-c 阅读全文
posted @ 2021-10-18 10:09 苍山落暮 阅读(728) 评论(0) 推荐(0) 编辑
摘要: python安装 1.安装包下载 https://repo.huaweicloud.com/python/ 2.配置镜像源 windows路径:C:\Users<UserName>\pip\pip.ini linux路径: ~/.pip/pip.conf 如果安装完没有该文件,在资源管理器的地址栏输 阅读全文
posted @ 2021-10-18 10:05 苍山落暮 阅读(66) 评论(0) 推荐(0) 编辑
摘要: python运算符 1.数学运算符 常见+,-,*,/,%,//(地板除),** print(10 + 20) print(10/4) # 2 print(10//4) # 向上取整 3 print(2 ** 3) #2的三次方 number = 10 number = number + 1 pri 阅读全文
posted @ 2021-10-17 23:05 苍山落暮 阅读(157) 评论(0) 推荐(0) 编辑
摘要: python的输出语句 1.支持双引号、单引号、三引号 print("hello world") print('hello python') print("""Linux windows MacOS""") print('''Nginx Httpd Tomcat''') print("This is 阅读全文
posted @ 2021-10-17 22:59 苍山落暮 阅读(449) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 54 下一页