分类 VPS 下的文章

生成密钥

可以用别的方法生成,此处以Xshell为例



上传公钥

把我们生成的pub文件重命名为 authorized_keys 注意该名称没有后缀名。
然后上传到/root/.ssh目录,如果不存在该目录mkdir创建

配置命令

上传完成后在shell界面进行配置。
首先赋予相关文件相关权限。

chmod 600 authorized_keys
chmod 700 ~/.ssh

修改ssh配置文件。

vim /etc/ssh/sshd_config

找到PubkeyAuthenticationPasswordAuthentication去除前面的“#”,表示启用。
需要修改的参数如下:

RSAAuthentication yes
PubkeyAuthentication yes
PasswordAuthentication no

如果RSAAuthentication参数不存在,那么就添加进去。

重启ssh服务

  • Debian/Ubuntu执行
/etc/init.d/ssh restart
  • CentOS执行
/etc/init.d/sshd restart

或者

systemctl restart sshd

注意事项

某些SSH软件连接时可能会提示“暂不支持此私钥格式,需转换成PEM格式私钥”
这种情况只要修改格式即可

ssh-keygen -p -m PEM -f 私钥路径

写在前面:

大家大多都是2C2G的小鸡,跑Windows还是肯定吃力,但是看看文字网页这种简单的需求还是能满足的

我DD Windows的主要目的是在不需要代理的情况下调试网站,如果你有其他需求,下面是DD Windows 11时大致的性能表现:

  • 油管360P略有卡顿
  • Speedtest.net 测速200M下100M上
  • 安装完成系统后大约还有35GB可用空间

下面开始教程:

省流版:直接使用我对bin456789大佬reinstall脚本的fork正常执行安装即可,在VNC看到Windows命令提示符的窗口久久没有动静时可以敲一下回车

我的Fork地址:https://github.com/Bryant-Xue/reinstall
直接下载:
curl -O https://raw.githubusercontent.com/Bryant-Xue/reinstall/main/reinstall.sh || wget -O reinstall.sh $_

我是如何解决问题的:

一开始使用原版reinstall脚本,失败了,于是使用VNC检查问题所在
发现是下载阿里云的特殊驱动出了问题
于是在我的电脑上尝试下载出错的资源
https://windows-driver-cn-hangzhou.oss-cn-hangzhou.aliyuncs.com/virtio/AliyunVirtio_WIN2016.zip
1.6MB的一个小文件
于是我把这份文件随便传到一个小鸡上,
Fork了一份大佬的脚本
把这部分资源写死成我服务器上的URL
就这样,问题以一种简单到不可思议的方式解决了 :ac01:

# 目前只尝试了Windows11,其他系统大家自行测试,希望能帮到大家 :ac08:

成功登录的IP地址

grep "Accepted password for root" /var/log/auth.log | awk '{print $11}' | sort | uniq -c | sort -nr | more

登录失败的IP列表


grep "Failed password for root" /var/log/auth.log | awk '{print $11}' | sort | uniq -c | sort -nr | more

安装WARP:

apk update &&apk add curl && apk add bash && apk add wget
wget -N https://gitlab.com/fscarmen/warp/-/raw/main/menu.sh && bash menu.sh 

记得用共享账号,获取不到IP多试几次

哪吒面板:

apk add bash curl 

(把community源前的#删了)
使用哪吒后台一键安装命令,去掉sudo

X-UI:

apk add curl&&apk add bash && bash <(curl -Ls https://raw.githubusercontent.com/Lynn-Becky/Alpine-x-ui/main/alpine-xui.sh)

XrayR:

apk add wget sudo curl && wget -N https://github.com/Cd1s/alpineXrayR/releases/download/one-click/install-xrayr.sh && chmod +x install-xrayr.sh && bash install-xrayr.sh

ArgoX:

bash <(wget -qO- https://raw.githubusercontent.com/fscarmen/argox/main/argox.sh)

Sing-BOX:

bash <(wget -qO- https://raw.githubusercontent.com/fscarmen/sing-box/main/sing-box.sh)

Alpine 软件管理:

rc-service 软件名 restart

原理

对于容器而言,其内核共享宿主机内核,自身打包了操作系统,应用和函数库等所有依赖。原理上只要替换对应的数据就可以替换系统,只不过要注意操作顺序,避免依赖关系冲突。

特点

支持OpenVZ和LXC虚拟化技术
支持Debian/CentOS/Alpine等多种系统的相互转换(及原地tp
使用

wget -qO OsMutation.sh https://raw.githubusercontent.com/LloydAsp/OsMutation/main/OsMutation.sh && chmod u+x OsMutation.sh && ./OsMutation.sh

或者

curl -so OsMutation.sh https://raw.githubusercontent.com/LloydAsp/OsMutation/main/OsMutation.sh && chmod u+x OsMutation.sh && ./OsMutation.sh

注意

会抹除数据,因此如果有重要数据自行备份
支持openvz 7,不支持openvz 6
仅支持openvz和lxc等容器虚拟化技术,不支持kvm等虚拟机技术。