Debian笔记
笔记基于 Debian 12.4.0
# 系统信息查看
# 发行版信息
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04.2 LTS
Release: 22.04
Codename: jammy
# 网络相关配置
编辑网卡配置文件vim /etc/network/interfaces
$ cat /etc/network/interfaces
auto enp0s3 # enp0s3为网卡名称
iface enp0s3 inet static # static为静态IP
address 192.168.31.20 # IP地址
netmask 255.255.255.0 # 子网掩码
gateway 192.168.31.1 # 网关地址
编辑 DNS 服务器vim /etc/resolv.conf
,没有这个文件就创建它
root@debian:~# cat /etc/resolv.conf
nameserver 8.8.8.8