Debian11系统简单配置

debian11系统简单配置

网卡配置

  1. 修改/etc/network/interfaces
bash 复制代码
address 192.168.0.188 
gateway 192.168.0.1 
netmask 255.255.255.0
  1. 重启网卡systemctl restart networking.service
    systemctl restart networking

执行apt 报错

bash 复制代码
root@debian:~# apt update
忽略:1 cdrom://[Debian GNU/Linux 11.7.0 _Bullseye_ - Official amd64 DVD Binary-1 20230429-11:50] bullseye InRelease
错误:2 cdrom://[Debian GNU/Linux 11.7.0 _Bullseye_ - Official amd64 DVD Binary-1 20230429-11:50] bullseye Release
  请使用 apt-cdrom,通过它可以让 APT 识别该盘片。apt-get upgdate 不能被用来加入新的盘片。
正在读取软件包列表... 完成
E: 仓库 "cdrom://[Debian GNU/Linux 11.7.0 _Bullseye_ - Official amd64 DVD Binary-1 20230429-11:50] bullseye Release" 没有 Release 文件。
N: 无法安全地用该源进行更新,所以默认禁用该源。
N: 参见 apt-secure(8) 手册以了解仓库创建和用户配置方面的细节。

修改源,禁用DVD,并设置为网易源

bash 复制代码
cat > /etc/apt/sources.list << EOF
deb https://mirrors.163.com/debian/ bullseye main non-free contrib
deb-src https://mirrors.163.com/debian/ bullseye main non-free contrib
deb https://mirrors.163.com/debian-security/ bullseye-security main
deb-src https://mirrors.163.com/debian-security/ bullseye-security main
deb https://mirrors.163.com/debian/ bullseye-updates main non-free contrib
deb-src https://mirrors.163.com/debian/ bullseye-updates main non-free contrib
deb https://mirrors.163.com/debian/ bullseye-backports main non-free contrib
deb-src https://mirrors.163.com/debian/ bullseye-backports main non-free contrib
EOF

配置DNS:(此方法重启失效)

root@localhost:/# cat /etc/resolv.conf

bash 复制代码
#This file is managed by man:systemd-resolved(8). Do not edit.
#See man:systemd-resolved.service(8) for details about the supported modes of
#operation for /etc/resolv.conf. 
nameserver 192.168.0.1
options edns0 trust-ad

配置DNS 长期有效,resolv.conf 现在归systemd管,需要修改/etc/systemd/resolved.conf 文件

bash 复制代码
root@localhost:/# cat /etc/systemd/resolved.conf 
#This file is part of systemd.
#See resolved.conf(5) for details
[Resolve]
DNS=192.168.0.1
#FallbackDNS=
#Domains=
#LLMNR=no
#MulticastDNS=no
#DNSSEC=no
#DNSOverTLS=no
#Cache=no-negative
#DNSStubListener=yes
#ReadEtcHosts=yes
然后重启服务

systemctl restart systemd-resolved.service

查看结果
bash 复制代码
root@localhost:/# systemd-resolve --status
Global
       LLMNR setting: no                  
MulticastDNS setting: no                  
  DNSOverTLS setting: no                  
      DNSSEC setting: no                  
    DNSSEC supported: no                  
         DNS Servers: 192.168.0.1         
          DNSSEC NTA: 10.in-addr.arpa     
                      16.172.in-addr.arpa 
                      168.192.in-addr.arpa
重启网络服务
bash 复制代码
root@localhost:/# /etc/init.d/networking restart
Restarting networking (via systemctl): networking.servic
相关推荐
烟雨书信20 分钟前
Linux中MySQL的逻辑备份与恢复
linux·运维·mysql
wkj00131 分钟前
QuaggaJS 配置参数详解
java·linux·服务器·javascript·quaggajs
藥瓿亭1 小时前
K8S认证|CKS题库+答案| 5.日志审计
linux·运维·docker·云原生·容器·kubernetes·cka
coder_lorraine1 小时前
【Linux系列】Linux用户大揭秘:从“公寓住户”到“社区管理员”的奇幻之旅
linux
家庭云计算专家2 小时前
飞牛云一键设置动态域名+ipv6内网直通访问内网的ssh服务-家庭云计算专家
运维·云计算·ssh·nextcloud·ddns·动态域名解析
藥瓿锻2 小时前
2024 CKA题库+详尽解析| 15、备份还原Etcd
linux·运维·数据库·docker·容器·kubernetes·cka
bbsh20992 小时前
WebFuture:Ubuntu 系统上在线安装.NET Core 8 的步骤
linux·ubuntu·.netcore·webfuture
太阳之神aboluo2 小时前
压测软件-Jmeter
java·运维·jmeter
ZZZKKKRTSAE2 小时前
快速上手Linux全局搜索正则表达式(grep)
linux·服务器·正则表达式
waving-black3 小时前
利用frp和腾讯云服务器将内网暴露至外网(内网穿透)
linux·服务器·腾讯云·frp·内网穿透