12 2020 档案
摘要:win10安装privoxy代理软件,打开软件一直有下面这个报错,查了好多都解决不了,可能丢失文件或者哪里有冲突,后来灵光一闪,也许换个安装路径,换个盘安装就能规避,果然换D盘安装就再也没有报错,配置好就正常使用了。 privoxy error:Fatal error:init-error-log(
阅读全文
摘要:systemctl mask iptables 设置为重启不开启systemctl mask ip6tables 设置为重启不开启systemctl mask ebtables 设置为重启不开启systemctl enables firewalld 设置为重启开启systemctl start fi
阅读全文
摘要:1、修改主机名 hostnamectl set-hostname desktop.group8.example.com 2、命令修改ip nmcli connection modify eth0 ipv4.addresses 172.24.8.10/24 ipv4.gateway 172.24.8.
阅读全文
摘要:在启动菜单按e进入编辑,在末尾加入rd.break ,Ctrl+x启动 然后按照下面步骤修改mount –o remount,rw /sysrootchroot /sysrootecho “需要设置的密码” |passwd –stdin root 也可以password root 密码 touch
阅读全文
摘要:#!/bin/bash for i in {a..z} do smartctl -a /dev/sd$i | grep -i "drive temperature" smartctl -a /dev/sda$i | grep -i "drive temperature" done
阅读全文
摘要:删除注释行 :g/^#/d 删除空白行 :g/^\s*$/d :g 代表在全文档范围内 ^代表行的开始 \s*代表空白字符 $代表行的结束 d代表删除
阅读全文