刚装好的 ubuntu 20.0.4 系统初始化设置项
1. 替换为清华源
清华源地址:https://mirrors.ustc.edu.cn/help/ubuntu.html
将 /etc/apt/sources.list 文件中 Ubuntu 默认的源地址 http://archive.ubuntu.com/ 替换为 http://mirrors.ustc.edu.cn/ 即可。
可以使用如下命令:
sudo sed -i 's@//.*archive.ubuntu.com@//mirrors.ustc.edu.cn@g' /etc/apt/sources.list
更新系统
apt update
2. 更改主机名字
hostnamectl set-hostname template
3. 更改静态地址
默认是 dhcp
root@ceph-1:/etc/netplan# cat /etc/netplan/00-installer-config.yaml # This is the network config written by 'subiquity' network: ethernets: ens33: dhcp4: true version: 2
ip link 查看网络接口名字,这里是 ens33
network: version: 2 renderer: networkd ethernets: ens33: dhcp4: no addresses: - 192.168.121.221/24 gateway4: 192.168.121.1 nameservers: addresses: [8.8.8.8, 1.1.1.1]
应用配置
sudo netplan apply
验证配置
ip addr show dev ens33
4. 更改时区
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
5. 同步时间
# 安装 ntp 客户端
apt install -y ntpdate
设置 crontab -e
# 每隔1小时自动校准同步 * */1 * * * /usr/sbin/ntpdate ntp1.aliyun.com > /dev/null 2>&1; /sbin/hwclock -w
5. 设置 root 登录
默认 root 不能登录,如果需要,进行如下设置
在 /etc/ssh/sshd_config 添加两行配置
PasswordAuthentication yes PermitRootLogin yes
重启sshd 服务
systemctl restart sshd
6. 关闭防火墙
ufw disable ufw status
7. 更新系统,安装常用软件
apt install -y lrzsz
8. 优化设置
历史命令补全,需要退出重进
cat >>/etc/profile<<eof bind '"\x1b\x5b\x41":history-search-backward' bind '"\x1b\x5b\x42":history-search-forward' eof
0顶
0 踩
共 0 条评论