传奇哥'S BLOG传奇哥'S BLOG

使用Deepseek生成的Linux系统SSH登录修复脚本

代码保存为fix_ssh.sh

chmod +x ssh_repair.sh
./ssh_repair.sh


Ubuntu 22.04 调整SWAP大小

步骤 1:卸载当前的SWAP文件

首先,你需要卸载正在使用的SWAP文件:

sudo swapoff /swap.img

Linux系统下同步时间

一、使用rdate同步时间是一种相对简单且快捷的方法,以Centos为例:

#安装rdate

yum -y install rdate

VPS主机性能测试

1、Bench.sh

测试命令:

wget -qO- bench.sh | bash

2、Superbench.sh

测试命令:

wget -qO- git.io/besttrace | bash


LINUX安装Pure-FTPd并且启用虚拟用户支持

1.安装 Pure-FTPd:

sudo yum install epel-release
sudo yum install pure-ftpd

2.启用虚拟用户支持:

sudo echo "yes" > /etc/pure-ftpd/conf/NoChroot
sudo echo "yes" > /etc/pure-ftpd/conf/CreateHomeDir

Centos 安装桌面环境并启动远程桌面

#安装EPEL

yum -y clean all 
yum -y install epel-release 
yum -y update

#安装图形界面软件包

yum  -y groupinstall "Server with GUI"
回到首页 发表评论 回到顶部