Debian下vi错位如何解决

76次阅读
没有评论

共计 711 个字符,预计需要花费 2 分钟才能阅读完成。

本篇内容主要讲解“Debian 下 vi 错位如何解决”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让丸趣 TV 小编来带大家学习“Debian 下 vi 错位如何解决”吧!

1、设置 IP 地址、网关

nano /etc/network/interfaces /etc/network/interfacesbak # 备份原有配置文件
nano /etc/network/interfaces # 编辑网网卡配置文件
auto lo
auto eth0 # 开机自动连接网络
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet static #static 表示使用固定 ip,dhcp 表述使用动态 ip
address192.168.21.166 # 设置 ip 地址
netmask255.255.255.0 # 设置子网掩码
gateway192.168.21.2 # 设置网关
ctrl+o # 保存配置
ctrl+x # 退出 

2、设置 dns

cp /etc/resolv.conf /etc/resolv.confbak # 备份原有 dns 配置文件
nano /etc/resolv.conf # 编辑配置文件
nameserver8.8.8.8 # 设置首选 dns
nameserver8.8.4.4 # 设置备用 dns
ctrl+o # 保存配置
ctrl+x # 退出 

3、重启网络

service networking restart # 重启网络 

到此,相信大家对“Debian 下 vi 错位如何解决”有了更深的了解,不妨来实际操作一番吧!这里是丸趣 TV 网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-07-15发表,共计711字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)