Windows10系统更改用户名找不到本地用户的解决办法
1.使用快捷键`Win+R`打开运行窗口,然后输入`MMC`然后回车确认。

2.点击左上角的“文件”,接着点击下方选项列表中的“添加/删除管理单元”。

3.然后选中左侧栏中的“本地用户和组”,并点击中间的“添加”按钮,最后点击“确定”就可以了。

Windows10系统控制面板打开后出现错误的解决办法
1.使用快捷键`Win+R`打开运行窗口,然后输入`regedit`然后回车确认。

2.在打开的窗口界面中,将`计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\BackupPath`复制粘贴到上方地址栏中并回车定位到此。

3.后将“MyComputer”文件夹中的所有子目录全部删除即可解决问题。

Ubuntu18.04系统中如何安装json文本处理器jq
如何安装命令行浏览器elinks呢?本文给出详细说明。
1.更新apt资源
**sudo apt-get update**

2.安装elinks,等待安装完成
**apt-get install elinks**

Ubuntu18.04系统中如何安装命令行浏览器elinks
如何安装命令行浏览器elinks呢?本文给出详细说明。
1.更新apt资源
**sudo apt-get update**

2.安装elinks,等待安装完成
**apt-get install elinks**

Ubuntu下卸载vsftpd出现dpkg报错处理方法
1.卸载vsftpd出错
apt remove vsftpd
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following package was automatically installed and is no longer required:
ssl-cert
Use 'apt autoremove' to remove it.
The following packages will be REMOVED:
vsftpd
0 upgraded, 0 newly installed, 1 to remove and 56 not upgraded.
1 not fully installed or removed.
After this operation, 326 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 105321 files and directories currently installed.)
Removing vsftpd (3.0.5-0ubuntu1) ...
dpkg: error processing package vsftpd (--remove):
Processing was halted because there were too many errors.
E: Sub-process /usr/bin/dpkg returned an error code (1)

2.解决方法
\# 手动删除用户ftp
sudo deluser --system ftp

如果提示 `The user `ftp' is not a system user. Exiting.`,可以执行一下命令
sudo deluser ftp
\# 删除vsftpd
sudo apt remove vsftpd
Ubuntu系统如何安装跟使用tcping命令
1.安装所需要的依赖包
apt-get install tcptraceroute bc -y

2下载tcping工具
wget http://www.vdberg.org/~richard/tcpping -O /usr/bin/tcping

3设置tcping权限
chmod +x /usr/bin/tcping
4测试工具可用性
tcping www.baidu.com 443

解决Ubuntu下csv格式文件显示乱码问题
1.中文乱码问题
通过cat命令查看csv格式文件出现报错

通过vi命令查看中文显示存在乱码问题

2.解决方法
通过iconv命令转换文件编码
示例:iconv -f GBK -t UTF-8 源文件 -o 输出文件

iconv -f GBK -t UTF-8 site_sum.csv -o site_sum_encode.csv
3.查看转换后输出的文件

Ubuntu18.04系统中如何用arping命令测试网络
如何用arping命令测试网络呢?本文给出详细说明。
1.arping命令测试网络
**arping 目标地址**

**说明:**arping命令效果类似于ping,但是用的是arp协议而非icmp协议
Ubuntu18.04系统中如何安装arp包过滤工具arptables
如何安装arp包过滤工具arptables呢?本文给出详细说明。
1.更新apt资源
**sudo apt-get update**

2.安装arptables,等待安装完成
**apt-get install arptables**

Ubuntu18.04系统中如何安装用户查找工具finger
如何安装用户查找工具finger呢?本文给出详细说明。
1.更新apt资源
**sudo apt-get update**

2.安装finger,等待安装完成
**apt-get install finger**
