Debian 本地主机配置
本地机Debian的一些使用
静态IP配置
配置网卡
备份网卡
cp /etc/network/interfaces /etc/network/interfacesbak
编辑网卡
vim /etc/network/interfaces
对应修改 注意网卡名
ens32
auto lo #开机自动连接网络
iface ens32 inet static #static表示使用固定ip,dhcp表述使用动态ip
address 192.168.21.168 #设置ip地址 【为ipconfig中地址一致,最后一位端口改前ping一下确定端口没人用】
netmask 255.255.255.0 #设置子网掩码
gateway 192.168.21.1 #设置网关 一般为路由器IP
重启网卡
/etc/init.d/networking restart
配置DNS
备份dns配置文件
cp /etc/resolv.conf /etc/resolv.confbak
编辑配置文件
vim /etc/resolv.conf
添加
nameserver:192.168.21.1
重启网络
service networking restart
验证
ip addr
Root 远程登录
vim /etc/ssh/sshd_config
添加或者删除#
vim 模式下:/
开启查找
PermitRootLogin yes
PermitRootLogin without-password
重启
/etc/init.d/ssh restart
删除用户
安装时会叫创建一个
非root
账户,可在使用root
登录后删除
deluser --remove-home <username>
全局代理
方法一
添加代理设置,添加环境变量
export http_proxy="http://127.0.0.1:8123"
export https_proxy="http://127.0.0.1:8123"
source /etc/profile #重新载入环境变量
取消代理
unset http_proxy
unset https_proxy
检查代理
echo $http_proxy
echo $https_proxy
方法二
或者将以下内容写入.bashrc中
export http_proxy="http://127.0.0.1:8123"
export https_proxy="http://127.0.0.1:8123"
source /root/.bashrc #重新载入环境变量
如果要取消,注视掉这两行export之后,再重载环境变量即可
#export http_proxy="http://127.0.0.1:8123"
#export https_proxy="http://127.0.0.1:8123"
source /root/.bashrc #重新载入环境变量