上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: 1.解压 tar -xzf go1.17.8.linux-amd64.tar.gz -C /usr/local/ 2./etc/profile增加 export GOROOT=/usr/local/go export PATH=$PATH:$GOROOT/bin 3.source /etc/prof 阅读全文
posted @ 2022-10-18 10:51 rincloud 阅读(31) 评论(0) 推荐(0)
摘要: http://dockone.io/article/2434885 阅读全文
posted @ 2022-09-23 14:26 rincloud 阅读(111) 评论(0) 推荐(0)
摘要: 1.安装所需软件: apt-get install qemu-kvm apt-get install qemu apt-get install libvirt-bin apt-get install bridge-utils apt-get install virt-manager apt-get 阅读全文
posted @ 2022-08-31 21:07 rincloud 阅读(2881) 评论(0) 推荐(0)
摘要: https://forge.rust-lang.org/infra/other-installation-methods.html 下载 rust-1.63.0-x86_64-pc-windows-gnu.msi 后缀为gnu , 后缀为msvc的需要 安装 Visual Studio 中的 C++ 阅读全文
posted @ 2022-08-16 09:56 rincloud 阅读(686) 评论(0) 推荐(0)
摘要: package main import ( "fmt" "runtime" ) func main() { fmt.Println(stack()) } func stack() string { var buf [2 << 10]byte return string(buf[:runtime.St 阅读全文
posted @ 2022-08-04 09:43 rincloud 阅读(349) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_43778308/article/details/115350122 阅读全文
posted @ 2022-07-26 12:21 rincloud 阅读(56) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_35745940/article/details/119900634 nsenter命令简单介绍 阅读全文
posted @ 2022-07-20 14:17 rincloud 阅读(64) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/m0_45406092/article/details/119000244 阅读全文
posted @ 2022-07-20 13:49 rincloud 阅读(30) 评论(0) 推荐(0)
摘要: 第一个问题是,缺少btrfs开发包缺少 具体报错: #include <btrfs/ioctl.h>^compilation terminated.make: *** [install] Error 2解决办法: yum install btrfs-progs-devel 第二个问题是缺少libde 阅读全文
posted @ 2022-07-18 14:58 rincloud 阅读(240) 评论(0) 推荐(0)
摘要: package main import ( "fmt" "time" ) func main() { things := make(map[chan int](string)) var data (chan int) go func() { data = func(map[chan int](str 阅读全文
posted @ 2022-07-04 23:34 rincloud 阅读(141) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页