当前位置: 首页 > 工具软件 > rtc-ssh > 使用案例 >

全新的服务器debian/ubuntu---校准时间、更新apt,设置ssh远程访问

秦宁
2023-12-01

1.校准时间

# 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

2.更新apt


apt update
apt install curl		# 安装curl,方便下载软件

  • 也可以使用apt-get update ,推荐使用apt update
  • apt-get update 这个也是更新软件源
  • apt-get upgrade 这个是更新系统所有软件为最新的,最新的标准从本地软件源获取

3.设置ssh远程访问

有些服务器,默认是不允许远程终端ssh访问的。需要设置下ssh的配置信息

sudo -i		# 切换到root用户
vim  /etc/ssh/sshd_config


PermitRootLogin yes				# 修改此项为yes
PasswordAuthentication yes		# 修改此项为yes

# 再设置root权限的密码

sudo passwd root

# 最终重启一次,应该就可以远程访问了
sudo reboot		
 类似资料: