• 最新文章

WinGet 换国内源

修改 WinGet 软件源需要管理员权限,请以管理员身份运行终端。 1、替换 USTC 镜像: winget source remove winget winget source add winget https://mirrors.ustc.edu.cn/winget-source 若出现 0x80073d1b : smartscreen reputation check failed. 错误,

Powershell 操作Excel的基本命令

关于Powershell的Excel基本操作 1.新建Excel $excel = New-Object -ComObject Excel.Application 2.对话框是否显示 $excel.displayAlerts = $false --不显示 $excel.displayAlerts = $false --显示 3.操作过程是否可视 $excel.Visible = $false --

Rocky Linux 通过Remi安装PHP新版本

#安装remi源 dnf install http://rpms.remirepo.net/enterprise/remi-release-9.rpm dnf -y install yum-utils #重置PHP版本 dnf module reset php 安装PHP8.3版本 dnf module install php:remi-8.3 -y dnf install php -y

CentOS8 NFS挂载

1、安装NFS组件 dnf install nfs-utils -y 2、添加挂载链接 vi /etc/fstab 192.168.1.6:/datafile /home/datanfs nfs defaults,_netdev 0 0