摘要: https://www.cnblogs.com/l-hh/p/14816977.html https://www.cnblogs.com/ludada/articles/14006400.html https://www.cnblogs.com/liconglong/p/15092402.html 阅读全文
posted @ 2024-09-20 12:06 清风6661 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 添加服务用户 kubectl create serviceaccount admin-user –n kubernetes-dashboard 绑定集群规则kubectl create clusterrolebinding admin-user --clusterrole=cluster-admin 阅读全文
posted @ 2024-09-16 22:24 清风6661 阅读(2) 评论(0) 推荐(0) 编辑
摘要: broadcom-sta通用驱动下载地址: http://mirrors.ustc.edu.cn/kali/pool/non-free/b/broadcom-sta/ 安装内核头文件及编译工具和dkms sudo apt-get install linux-headers-generic build 阅读全文
posted @ 2024-08-21 17:54 清风6661 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1、安装DRBD9.26 两种安装方式1、添加epel-release源安装;2、源码编译安装。 参考centos DRBD安装方式,添加epel-release源的方式安装: 1.1安装epel源 yum install epel-release yum install drbd-utils 2、 阅读全文
posted @ 2024-08-05 23:09 清风6661 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 1、安装GPU驱动和CUDA https://www.nvidia.com/Download/index.aspx?lang=en-us 下载驱动程序,按照自己和显卡型号选择 安装cuda,地址:https://developer.nvidia.com/cuda-toolkit-archive 2、 阅读全文
posted @ 2024-07-23 00:06 清风6661 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 有linux用户为了给分区扩容 私自操作,致使扩容操作完成后,系统无法启动,修复过程如下: 启动过程中提示找不到根分区lv,无法从内存文件系统切换到硬盘文件系统。 1、使用lvm命令,进入lvm察看lvm情况 pvs 显示pv情况:有个一pv为unknown 2、使用系统启动盘引导,进入终端查看磁盘 阅读全文
posted @ 2024-07-21 01:38 清风6661 阅读(62) 评论(0) 推荐(0) 编辑
摘要: bcdedit /enum | findstr -i hypervisorlaunchtypeif hypervisorlaunchtype is Off, thenbcdedit /set hypervisorlaunchtype Autorestart 阅读全文
posted @ 2024-07-16 22:41 清风6661 阅读(4) 评论(0) 推荐(0) 编辑
摘要: sudo apt update && sudo apt upgrade sudo apt install ca-certificates apt-transport-https software-properties-common lsb-release -y sudo gpg --list-key 阅读全文
posted @ 2024-06-05 22:51 清风6661 阅读(9) 评论(0) 推荐(0) 编辑
摘要: sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update sudo apt-get install -y boot-repair && boot-repair boot-repair 阅读全文
posted @ 2024-06-04 21:31 清风6661 阅读(12) 评论(0) 推荐(0) 编辑
摘要: bash find /your/directory -type f -name "*.so*" ! -type l -exec chmod 644 {} + 这条命令会在 /your/directory 目录下递归查找所有文件名以 .so 结尾的文件(共享库文件),并将它们的权限设置为 644。! 阅读全文
posted @ 2024-05-31 16:16 清风6661 阅读(11) 评论(0) 推荐(0) 编辑