Debian 一些基础操作,跳转到字体集页面中后
Debian 一些基础操作,跳转到字体集页面中后
1、Debian 服务器基础命令
# 查看Debian服务器版本 root@localhost:~# cat /etc/issue # 修改IP、网关 root@localhost:~# vim /etc/network/interfaces # /etc/network/interfaces 配置IP source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto enp1s0f0 #enp1s0f0 为eno1网卡 的别名 iface enp1s0f0 inet static # static设置为静态IP,dhcp dhcp连接方式 address 192.168.1.200 # IP地址 或者 address 192.168.1.200/24 这样同时设置了IP和子网掩码,就不用写下面的 netmask 255.255.255.0 netmask 255.255.255.0 # 子网掩码 dns-nameserver 223.5.5.5 # dns gateway 192.168.1.1 # 网关 # 重启网卡 root@localhost:~# systemctl restart networking
2、Debian服务器添加开机启动单元命令
# 参考文档 https://www.lsbin.com/7243.html # 创建启动单元 存放启动单元的目录在 /etc/systemd/system/ root@localhost:~# sudo vim /etc/systemd/system/script.service [Unit] Description=<你的服务器名称,描述文字> After=default.target [Service] ExecStart=</PATH/TO/Script.sh(脚本路径)> [Install] WantedBy=default.target :wq #保存退出 # 使用systemctl 命令设置开机启动 root@localhost:~# sudo systemctl enable script.service
3、使用rsync跨服务器传输文件目录
rsync -rav 来源 目标
rsync -rav /data/file root@192.168.1.201:/data/
4、debian apt安装出现 – 总线错误软件包列表… 0%
# 删除apt缓存文件 rm -rf /var/cache/apt 或者 mv /var/cache/apt /var/cache/apt_bak # 重新创建 apt、archives、partial目录 mkdir -p /var/cache/apt/archives/partial # 最后在install就可以了 apt-get install -y rsync xinetd
5、服务器出现菱形乱码
# 重新配置本地语言 dpkg-reconfigure locales # 在选择界面选择“en_US.UTF-8 UTF-8”,取消选择“zh_CN.UTF-8 UTF-8”,按空格键选中/取消, # tab键跳转到“OK”按钮,选中“OK”然后回车。跳转到字体集页面中后,按tab 选中OK,进行安装 # 指定本地语言 export LC_ALL="en_US.UTF-8"
评论暂时关闭