# Centos系统
date -R
timedatectl set-local-rtc 1
timedatectl set-timezone Asia/Shanghai
# Debian/ubuntu系统
date -R
rm -rf /etc/localtime
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
apt update
apt install curl # 安装curl,方便下载软件
- 也可以使用apt-get update ,推荐使用apt update
- apt-get update 这个也是更新软件源
- apt-get upgrade 这个是更新系统所有软件为最新的,最新的标准从本地软件源获取
有些服务器,默认是不允许远程终端ssh访问的。需要设置下ssh的配置信息
sudo -i # 切换到root用户
vim /etc/ssh/sshd_config
PermitRootLogin yes # 修改此项为yes
PasswordAuthentication yes # 修改此项为yes
# 再设置root权限的密码
sudo passwd root
# 最终重启一次,应该就可以远程访问了
sudo reboot