时间ntp
bash
apt-get update
apt-get install ntp
#编辑配置
nano /etc/ntp.conf
填写内容如下:
bash
server your-ntp-server
#(可选)如果您的网络中有本地的 NTP 服务器,您可以添加以下行以使用本地服务器
server your-local-ntp-server iburst
#重启
systemctl restart ntp
#检查 NTP 服务器的状态
systemctl status ntp
#检查系统时间和同步状态
date
安装 OpenSSH 服务器
bash
sudo apt update
sudo apt install openssh-server
sudo systemctl status ssh
#要确保 SSH 服务器在系统启动时自动启动,可以运行以下命令:
sudo systemctl enable ssh
设置固定ip
bash
sudo nano /etc/network/interfaces
配置如下 eht1更具需要修改
iface eth1 inet static
address your_static_ip
netmask your_subnet_mask
gateway your_gateway_ip
dns-nameservers your_dns_server_ip
重启网卡
bash
sudo systemctl restart networking