pve安装和使用

基础安装 2.1 修改 apt 软件源 编辑source.list文件 nano /etc/apt/sources.list 1 粘贴以下内容 deb http://mirrors.ustc.edu.cn/debian/ bullseye main non-free contrib deb http://mirrors.ustc.edu.cn/debian/ bullseye-updates main non-free contrib deb http://mirrors.ustc.edu.cn/debian/ bullseye-backports main non-free contrib deb http://mirrors.ustc.edu.cn/debian-security/ stable-security main non-free contrib deb-src http://mirrors.ustc.edu.cn/debian/ bullseye main non-free contrib deb-src http://mirrors.ustc.edu.cn/debian/ bullseye-updates main non-free

linux磁盘硬盘

检测是否支持usb3 由于USB3.0传输文件的速度快于USB2.0,所以现在很多电脑都配置了USB3.0接口,那么要怎么分辨自己的电脑是否有

C#委托

C#委托 简介 委托在很多语言都有实现,比如c,c++叫函数指针 声明委托 //无返回值 delegate void MyDele(int a,int b); //有返回值 delegate int MyDele(int a,int b); //泛型委托 delegate T MyDele<T>(T a,T b); delegate T MyDele<T>(T

ASP NET CORE jwt认证

区分鉴权(Authentication)和授权(Authorization) 鉴权(Authentication) 简单来说,鉴权就是判断是不是

vs快捷键修改

代码注释 注释选定内容 单行注释 Ctrl+K 然后Ctrl+C 注释 或者Ctrl+K+C ctrl+w选中代码块 编辑.展开选定内容 选择当前字 去掉 shift+alt+= 代码格式化 编辑