使用Go编写的高效批量Ping工具:gping

Linux  GO 

使用ping批量检测主机

Golang并发案例:批量ping脚本

GO 

通过go高并发实现批量ping

麒麟系统重装终端程序

麒麟 

sudo apt updatesudo apt install -y --reinstall mate-terminal

Golang通过Udp协议发送请求获取本机正在使用的IP

GO 

源码package mainimport ("fmt""net""strings""gitee.com/liumou_site/logger""github.com/spf13/cast")// Ge

Linux无法启动AppImage格式的软件解决方法


liumou@liumou-NBLK-WAX9X:~/下载$ chmod +x linuxqq_3.0.0-565_x86_64.AppImage liumou@liumou-NBLK-WAX9X:~/下载$ ./linuxqq_3.0.0-565_x86_64.AppImage dlopen():

Golang语言中for循环的常用案例演示

GO 

package mainimport ("container/list""fmt""github.com/spf13/cast""strings")// For1 第一种:对切片进行遍历func For1() {fmt.

Golang语言中map的基本操作案例

GO 

package mainimport "fmt"func MapMake() {var countryCapitalMap map[string]string /*创建map */countryCapitalMap = make(map[string]string) //

Golang程序多平台交叉编译自动化脚本

GO  Python 

通过python脚本自动打包go程序多个平台执行文件

Ansible通过user模块修改用户密码


加密密码a=$(python -c 'import crypt,getpass;pw="123456";print(crypt.crypt(pw))')123456是明文密码打印echo $a修改ansible note1 -m user -a 'name

Go执行sudo命令并自动输入密码

Linux  GO 

源码package mainimport ("fmt""log""os/exec""strings")func main() {// 定义要使用sudo执行的命令cmd := exec.Command("sud