0%

安装 NVIDIA 驱动 方式一 #关闭桌面 systemctl disable gdm3 #禁用nouveau sudo echo "blacklist nouveau" >> /etc/modprobe.d/blacklist.conf sudo echo "options nouveau modeset=0" >> /etc/modprobe.d/blacklist.conf # 官网下载Linux版驱动 https://www.nvidia.cn/Download/index.aspx chmod +x NVIDIA-Linux-x86_64-440.100.run apt install curl make gcc g++ wget pkg-config --reinstall -y ./NVIDIA-Linux-x86_64-440.100.run -a -q -s

Ansible Variable 介绍 变量提供了便捷的方式来管理 ansible 项目中的动态值。 比如 nginx-1.12,可能后期会反复的使用到这个版本的值,那么如果将此值设置为变量,

系统快捷键 1、历史命令信息:上下键 2、清屏命令:ctrl + l | clear 3、中断取消命令执行过程 : ctrl + c 4、快速移动光标到行首尾:ctrl + a/e 5、将

虚拟专用网络 VPN(全称:Virtual Private Network)虚拟专用网络,是依靠 ISP 和其他的 NSP,在公共网络中建立专用的数据通信的网络技术,可

Web 服务器 什么是 web 服务 ​ web 就是 B/S 架构 Web 服务器一般指网站服务器,是指驻留于因特网上某种类型计算机的程序,可以处理浏览器等 Web 客户端的请求并返回相应

资源清单 描述 在 Kubernetes 环境下可以使用 kubectl run 运行应用,但是不推荐,而是希望使用资源清单的东西来描述应用,资源清单可以使用 YAML 和 JSON 文件来编写,一般 YAML 更方便

Ubuntu下载源设置 # ubuntu 20.04 # 备份 mv /etc/apt/sources.list{,.bak} # 源设置 cat >/etc/apt/sources.list<<EOF deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse # deb http://mirrors.aliyun.com/ubuntu/

多表查询 先将需要使用到的表拼接成一张大表 之后基于单表查询完成 inner join 内连接 left join 左连接 right join 右连接 union 全连接 """ # 涉及到多表查询的时候 字段名称容易冲突 需