aaPanel官方
https://www.aapanel.com/new/index.html
aaPanel 安装脚本
URL=https://www.aapanel.com/script/install_6.0_en.sh && if [ -f /usr/bin/curl ];then curl -ksSO "$URL" ;else wget --no-check-certificate -O install_6.0_en.sh "$URL";fi;bash install_6.0_en.sh aapanel
ubuntu 允许root用户登陆
1. 先给root用户改个密码
sudo passwd root
输入两遍密码;
2.再添加允许root登陆选项
编辑 /etc/ssh/sshd_config文件;
sudo nano /etc/ssh/sshd_config
找到配置参数:PermitRootLogin
把后面的值修改为yes;