1 2 3 4 5 ··· 9 下一页
摘要: 一、备份步骤: 1、停止容器sudo docker stop a9b763ee82a2 2、导出容器的文件系统sudo docker export -o arl_web.tar a9b763ee82a2 3、获取镜像 IDsudo docker images 4、导出 Docker 镜像sudo d 阅读全文
posted @ 2024-08-17 23:04 狂奔的狼 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 系统范围设置proxy 代理(针对所有用户) 打开 /etc/environment 文件(需要使用 sudo 权限): sudo nano /etc/environment 添加以下内容到文件中: http_proxy="http://proxy-server:port" https_proxy= 阅读全文
posted @ 2024-08-14 05:04 狂奔的狼 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 写go 调用Playwright时,遇到 could not start Playwright: please install the driver (v1.45.1) and browsers first: %!w(<nil>) 报错 解决方式:安装驱动和浏览器依赖。 go run github. 阅读全文
posted @ 2024-07-31 12:34 狂奔的狼 阅读(36) 评论(0) 推荐(0) 编辑
摘要: ubuntu 18 升级到go 1.20 版本 地址:https://blog.csdn.net/m0_73651896/article/details/131461983 一、删除旧的版本(可选)sudo rm -rf /usr/local/gosudo apt-get remove golang 阅读全文
posted @ 2024-07-28 01:29 狂奔的狼 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 1、chatgpt生成project.go文件,使用命令行生成project.go 的go.mod文件 go mod init project.go 2、使用命令行下载project.go的依赖 go mod tidy 3、运行go程序 go run project.go 4、go编译二进制文件 g 阅读全文
posted @ 2024-07-17 14:46 狂奔的狼 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 使用场景:本地主机安装好的python3.8 版本的运行环境,迁移道其他主机执行 pip install -r .\requirements.txt 运行一下命令解决: python3 -m pip install watchdog 阅读全文
posted @ 2024-05-10 09:28 狂奔的狼 阅读(30) 评论(0) 推荐(0) 编辑
摘要: # 先卸载旧的golang yum remove golang # 然后找到最新版本 https://golang.google.cn/dl/ # 下载安装 cd /usr/local/src wget https://golang.google.cn/dl/go1.21.1.linux-amd64 阅读全文
posted @ 2024-04-15 12:57 狂奔的狼 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 安装deb软件,如google 下载google: wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 使用gdebi安装google的deb软件:gdebi google-chrome-sta 阅读全文
posted @ 2024-02-26 00:38 狂奔的狼 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 记录问题:挖坑 阅读全文
posted @ 2023-11-15 21:00 狂奔的狼 阅读(39) 评论(0) 推荐(0) 编辑
摘要: docker-compose up -d 安装docker环境,提示一下错误:docker-compose 命令没发现。 docker compse up -d 报错: Cannot connect to the Docker daemon at unix:///var/run/docker.soc 阅读全文
posted @ 2023-11-15 20:32 狂奔的狼 阅读(16) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 9 下一页