上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 108 下一页
摘要: 普通用户使用sudo命令命令时需要输入密码 修改以下设置可以免密 # cat /etc/sudoers username ALL=(ALL:ALL) NOPASSWD:ALL # Members of the admin group may gain root privileges # Allow 阅读全文
posted @ 2024-10-30 14:11 minseo 阅读(215) 评论(0) 推荐(0)
摘要: 在使用Dockerfile制作镜像时启动命令CMD时不能写完整启动命令需要使用[]把命令间隔开来 示例如下 CMD ["python","-m","vllm.entrypoints.openai.api_server","--model","/app","--max_model_len","4096 阅读全文
posted @ 2024-10-29 17:52 minseo 阅读(19) 评论(0) 推荐(0)
摘要: 参考 https://blog.csdn.net/engchina/article/details/140892356 引言 2024年8月1日,blackforestlabs.ai发布了 FLUX.1 模型套件。 FLUX.1 文本到图像模型套件,该套件定义了文本到图像合成的图像细节、提示依从性、 阅读全文
posted @ 2024-10-29 16:12 minseo 阅读(1363) 评论(0) 推荐(0)
摘要: 服务器端设置Rsync共享 在群晖管理端启用Rsync共享 新增Rsync用户 客户端使用 客户端往服务器端发送文件 前面参数是本地文件夹或文件后面参数是远程的文件或文件夹 # rsync -av /etc/hosts liuym@192.168.8.9::Backup/ 客户端从服务器端拉取文件 阅读全文
posted @ 2024-10-25 11:22 minseo 阅读(586) 评论(0) 推荐(0)
摘要: 环境查看 系统环境 # cat /etc/redhat-release CentOS Stream release 9 # uname -a Linux CentOSStream9Zabbix203 5.14.0-391.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Tue N 阅读全文
posted @ 2024-10-24 16:46 minseo 阅读(337) 评论(0) 推荐(0)
摘要: 故障现象 使用Jenkins构建报错信息如下 Started by user admin [Pipeline] Start of Pipeline [Pipeline] node Still waiting to schedule task Waiting for next available ex 阅读全文
posted @ 2024-10-23 11:02 minseo 阅读(424) 评论(0) 推荐(0)
摘要: Gitlab使用访问令牌访问 创建访问令牌 在项目或者群组创建访问令牌 可以单独都项目添加访问令牌也可以针对群组添加访问令牌对整个群组有效 设置-访问令牌-添加新令牌 显示访问令牌 访问令牌只显示一次再次无法显示需要重新创建 2. 使用访问令牌访问 访问地址如下 # https://oauth2:< 阅读全文
posted @ 2024-10-23 10:41 minseo 阅读(3337) 评论(0) 推荐(0)
摘要: Gitlab需要从一个命名空间转移至另外一个命名空间 打开项目 设置-通用-高级 选择需要转移的命名空间 输入项目名称转移 使用管理员登陆操作选择命名空间可能显示不全,使用有该项目权限的普通用户登录设置即可 阅读全文
posted @ 2024-10-22 14:37 minseo 阅读(100) 评论(0) 推荐(0)
摘要: 环境查看 系统环境 # cat /etc/redhat-release Rocky Linux release 9.4 (Blue Onyx) 软件环境 # git version git version 2.43.5 安装gitlab-runner 安装runner 在客户端安装 点击此处获取安装 阅读全文
posted @ 2024-10-17 15:41 minseo 阅读(254) 评论(0) 推荐(0)
摘要: 需求 k8s集群的config配置文件只能在内网使用,如果把该配置文件复制到外网并且修改地址为外网地址也无法使用 例如从rancher下载config配置文件 执行会报以下错误 # kubectl --kubeconfig=config-rancher get node Unable to conn 阅读全文
posted @ 2024-10-17 11:29 minseo 阅读(113) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 108 下一页