0%

debian

dd

1
2
wget --no-check-certificate -qO InstallNET.sh 'https://raw.githubusercontent.com/leitbogioro/Tools/master/Linux_reinstall/InstallNET.sh' && chmod a+x InstallNET.sh
bash InstallNET.sh -debian 12 -pwd ''
1
2
3
curl -O https://raw.githubusercontent.com/bin456789/reinstall/main/reinstall.sh || wget -O reinstall.sh $_
bash reinstall.sh debian 12
bash reinstall.sh windows --image-name 'Windows Server 2022 SERVERDATACENTER' --lang zh-cn

ovz/lxc

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

1panel

1
curl -sSL https://resource.fit2cloud.com/1panel/package/quick_start.sh -o quick_start.sh && bash quick_start.sh

mount

1
2
3
4
5
ls /dev/disk/by-id/
mkfs.ext4 -F /dev/disk/by-id/ata-ST1000DM010-2EP102_W9AHV3Q3
mkdir /data
mount -o discard,defaults /dev/disk/by-id/ata-ST1000DM010-2EP102_W9AHV3Q3 /data
echo '/dev/disk/by-id/ata-ST1000DM010-2EP102_W9AHV3Q3 /data ext4 defaults,nofail,discard 0 0' | tee -a /etc/fstab
1
2
3
lsblk
mkfs.ext4 -F /dev/vdb
echo '/dev/vdb /data ext4 defaults 0 0' >> /etc/fstab

github

1
sed -i "/# GitHub520 Host Start/Q" /etc/hosts && curl https://raw.hellogithub.com/hosts >> /etc/hosts

禁用 IPV6

1
echo "net.ipv6.conf.all.disable_ipv6=1" >> /etc/sysctl.conf && sysctl -p

nat64

1
echo -e "nameserver 2a00:1098:2b::1\nnameserver 2a00:1098:2c::1\nnameserver 2a01:4f8:c2c:123f::1" > /etc/resolv.conf

iptables

1
2
3
apt install iptables -y
iptables -t nat -A PREROUTING -p tcp --dport 111 -j REDIRECT --to-port 222
apt install iptables-persistent -y

ssh

1
sed -i 's/#\?PermitRootLogin.*/PermitRootLogin yes/' /etc/ssh/sshd_config && systemctl restart sshd
1
ssh-keygen -t rsa

/etc/ssh/sshd_config

1
2
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/id_rsa.pub
1
systemctl restart sshd