[运维] debian系统常用操作(持续更新)

  1. 配置ip地址
    编辑/etc/network/interfaces文件。添加一下内容
auto eth0 # 网卡名称,根据实际网卡名称修改
iface eth0 inet static
address 192.168.0.111  #配置没有被使用的ip地址
netmask 255.255.255.0
gateway 192.168.0.252 #写入网关地址
dns-nameservers 1.1.1.1 #写dns解析地址
  1. 修改默认语言为英文
    编辑/etc/default/locale文件
    将如下内容
LANG="zh_CN.UTF-8"
LANGUAGE="zh_CN:zh

修改为

LANG="en_US.UTF-8"
LANGUAGE="en_US:en"

然后重启设备
3. 关闭休眠
Debian系统关闭睡眠

sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
  1. 禁用网络管理器
sudo systemctl stop NetworkManager.service
sudo systemctl disable NetworkManager.service

你可能感兴趣的:(运维,debian,网卡配置)