wzlinux

1、设定时区

rm -f /etc/localtime
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

2、配置apt-get源

sed -i \'s/us.archive/cn.archive/g\' /etc/apt/sources.list
sed -i \'s/security.ubuntu/cn.archive.ubuntu/g\' /etc/apt/sources.list

3、修改主机名

vim /etc/hostname

4、安装软件包

apt-get install lrzsz ntpdate

5、开启root登录

Ubuntu 14.04

sed -i \'s/without-password/yes/g\' /etc/ssh/sshd_config

Ubuntu 16.04

sed -i \'s/prohibit-password/yes/g\' /etc/ssh/sshd_config

重启服务

service ssh restart

6、踢出终端tty用户

pkill -kill -t tty

7、删除普通用户

8、时间同步

echo "$((RANDOM%60)) $((RANDOM%24)) * * * /usr/sbin/ntpdate time1.aliyun.com" >> /etc/crontab

9、安装监控系统

apt-get install zabbix-agent

10、配置pip国内源

mkdir .pip
cat >> .pip/pip.conf <<EOF
[global]
trusted-host =  pypi.douban.com
index-url = http://pypi.douban.com/simple
EOF

附:配置IP

修改文件/etc/network/interfaces

auto eth0
iface eth0 inet static
address  10.0.0.100
netmask  255.0.0.0
gateway  10.0.0.1
dns-nameservers 114.114.114.114
ssserver -p 443 -k wzlinux -m aes-256-cfb --log-file /tmp/ss.log --worker 2 -d start
python server.py -p 443 -k password -m aes-256-cfb -O auth_sha1_v4 -o http_simple
#说明:-p 端口 -k 密码  -m 加密方式 -O 协议插件 -o 混淆插件

分类:

技术点:

相关文章:

  • 2021-11-04
  • 2022-12-23
  • 2021-09-29
  • 2021-06-14
  • 2022-12-23
  • 2021-07-14
  • 2021-11-01
  • 2021-11-03
猜你喜欢
  • 2021-12-25
  • 2022-02-05
  • 2021-11-29
  • 2021-07-12
  • 2021-10-29
相关资源
相似解决方案