glbm

package module
v1.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 16, 2022 License: MPL-2.0 Imports: 14 Imported by: 0

README

glbm

介绍

glbm的全称是(Go Linux Basic module), 即使用Golang编写的Linux基础模块

Gitee 项目地址

特色

  • 使用全中文注释,即使小白也能轻松上手
  • 完全开源、永久免费

功能清单

详细功能清单请访问pkg.go.dev

安装

关闭校验

设置环境变量

export GOSUMDB="off"
开始安装

首先进入你的项目根目录,然后执行下面的命令

go get -u gitee.com/liumou_site/glbm

效果如下

➜  demo go get -u gitee.com/liumou_site/glbm
go: downloading gitee.com/liumou_site/glbm v1.3.4
go: gitee.com/liumou_site/glbm upgrade => v1.3.4
go: downloading gitee.com/liumou_site/gcs v1.2.3
go: downloading gitee.com/liumou_site/logger v1.1.1
go: downloading github.com/spf13/cast v1.5.0
➜  demo

使用

Demo

最终请看单元测试案例

其他演示
package main

import (
	"fmt"
	"gitee.com/liumou_site/glbm"
)

// Ju 权限验证
func Ju() {
	g := glbm.CheckSudo("1")
	if g {
		fmt.Println("密码检验正确")
	} else {
		fmt.Println("密码错误或无权限")
	}
	d := Developer()
	if d {
		fmt.Println("已开启开发者")
	} else {
		fmt.Println("未开启开发者")
	}
}

// GetUser 获取用户信息
func GetUser() {
	get, username, uid, uHome := glbm.GetUserInfo(false)
	if get {
		fmt.Println(username)
		fmt.Println(uid)
		fmt.Println(uHome)
	}
}

// OsInfo 获取系统信息
func OsInfo() {
	osType, osArch, ov := glbm.GetOsInfo()
	fmt.Println(osType)
	fmt.Println(osArch)
	fmt.Println(ov)
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CheckSudo

func CheckSudo(password string) bool

CheckSudo 判断是否拥有sudo权限

func CurlToSave

func CurlToSave(url, filename string, cover bool) bool

CurlToSave 使用Curk下载文件到指定路径(cover是否覆盖已有文件)

func DeleteFile

func DeleteFile(file string) (bool, error)

DeleteFile 删除文件

func Developer

func Developer() bool

Developer UOS系统下检查是否开启开发者模式

func DpkgCheckInstalledKey added in v1.3.3

func DpkgCheckInstalledKey(pac1, pac2 string) (bool, string)

DpkgCheckInstalledKey 使用两个关键词查询本地是否已安装某个软件包

func DpkgCheckPackageVersion

func DpkgCheckPackageVersion(package_ string, version string) (status_ bool, ver_ string)

DpkgCheckPackageVersion 使用dpkg检查本地安装版本与标准版本是否一致

func DpkgConfig

func DpkgConfig(password string, realtime bool) *dpkg

DpkgConfig 初始化(realtime: 是否开启实时刷新)

func DpkgGetPackageStatus

func DpkgGetPackageStatus(pacPackage string) (res map[string]string, status bool)

DpkgGetPackageStatus 使用 Dpkg查询包状态, 通过res返回字典,通过status返回查询状态,字典key(status/name/version)

func DpkgInstalled

func DpkgInstalled(pacPackage string) bool

DpkgInstalled 使用Dpkg查询是否已安装(ii)

func Exists

func Exists(path string) (bool, error)

Exists 判断路径是否存在

func GetOsInfo

func GetOsInfo() (osType, osArch string, osVersion int)

GetOsInfo 获取系统信息

func GetUserInfo

func GetUserInfo(display bool) (ok bool, username string, userid int, UserHome string)

GetUserInfo 获取当前系统环境信息(display: 是否显示信息)

func IsDir

func IsDir(path string) (bool, error)

IsDir 判断是否属于文件夹

func IsFile

func IsFile(path string) (bool, error)

IsFile 判断是否属于文件

func ListToString

func ListToString(ls list.List, seq string) string

ListToString 列表转字符串(seq: 拼接符,可以用: 空格 / _ @ 之类,具体请以实际需求设置)

func Mkdir

func Mkdir(dir string, mode fs.FileMode) (bool, error)

Mkdir 递归创建文件夹(dir 文件夹路径 mode 创建模式,例如: 0777)

func ReadLine

func ReadLine(line int, filename string) (string, error)

ReadLine 读取指定行

func ReadOnlyAll

func ReadOnlyAll(filename string) (string, error)

ReadOnlyAll 以只读方式读取文件所有内容

func RemoveIndexList

func RemoveIndexList(l []string, index int) []string

RemoveIndexList 移除指定索引的列表元素

func RemoveNullList

func RemoveNullList(l []string) []string

RemoveNullList 移除空的列表元素

func RemoveValueList

func RemoveValueList(l []string, v string) []string

RemoveValueList 从列表中移除指定元素(str),不区分大小写

func SliceToString

func SliceToString(ls []string, sep string) string

SliceToString 字符串列表转字符串(seq: 拼接符,可以用: 空格 / _ @ 之类,具体请以实际需求设置)

func Version

func Version()

func WgetToSave

func WgetToSave(url, filename string) bool

WgetToSave 使用wget下载文件到指定路径

func WriteTxtAppend

func WriteTxtAppend(text, filename string, wrap bool) (res bool, err error)

WriteTxtAppend 追加方式写入文本(wrap: 是否在末尾追加换行符)

func WriteTxtCover

func WriteTxtCover(text, filename string, wrap bool) (res bool, err error)

WriteTxtCover 写入文本到文件中,当文件已存在则覆盖,当文件不存在则创建,默认权限: 0666

Types

type AptPassword

type AptPassword struct {
	// contains filtered or unexported fields
}

AptPassword 定义一个命令行密码结构体

func AptInitConfig

func AptInitConfig(password string, debug, realtime bool) *AptPassword

AptInitConfig Apt 管理初始化

func (*AptPassword) AptInstall

func (a *AptPassword) AptInstall(Package string) bool

AptInstall 使用apt在线安装包

func (*AptPassword) AptInstallList

func (a *AptPassword) AptInstallList(pacList list.List) (ok, failed list.List)

AptInstallList 通过apt安装包(列表传入)

func (*AptPassword) AptInstallSlice

func (a *AptPassword) AptInstallSlice(pacList []string) (ok, failed list.List)

AptInstallSlice 通过apt安装包(切片传入) - 推荐

func (*AptPassword) AptLocalInstallFile

func (a *AptPassword) AptLocalInstallFile(filename, name string) bool

AptLocalInstallFile 使用apt安装本地文件(单个),安装之前将会检测文件是否存在

func (*AptPassword) AptLocalInstallStr

func (a *AptPassword) AptLocalInstallStr(installStr, name string) bool

AptLocalInstallStr 使用apt安装本地文件(字符串),直接安装,不会检测文件是否存在

func (*AptPassword) AptUninstall

func (a *AptPassword) AptUninstall(Package string, name string) bool

AptUninstall 通过apt卸载单个包

func (*AptPassword) AptUninstallList

func (a *AptPassword) AptUninstallList(pacList list.List) (ok, failed list.List)

AptUninstallList 通过apt卸载包(列表传入)

func (*AptPassword) AptUninstallSlice added in v1.3.7

func (a *AptPassword) AptUninstallSlice(pacList []string) (ok, failed list.List)

AptUninstallSlice 通过apt卸载包(列表传入)

func (*AptPassword) AptUpdateIndex

func (a *AptPassword) AptUpdateIndex() bool

AptUpdateIndex 更新索引

func (*AptPassword) AptUpgrade

func (a *AptPassword) AptUpgrade() bool

AptUpgrade 更新系统

func (*AptPassword) LocalInstallList added in v1.3.7

func (a *AptPassword) LocalInstallList(fileList []string, name string) bool

LocalInstallList 使用apt安装本地文件(列表传入)

type NetDevice

type NetDevice struct {
	// contains filtered or unexported fields
}

NetDevice 网卡管理

func NetDeviceInit

func NetDeviceInit(ty, status string) (n *NetDevice, res bool)

NetDeviceInit 网络管理初始化 返回实例及设备获取结果(bool)

func (*NetDevice) GetConnectionList

func (n *NetDevice) GetConnectionList() bool

GetConnectionList 获取指定设备及类型的连接列表

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL