由于 CentOS7 无法识别最新的 Realtek 网卡,我们需要通过单独安装一个内核程序才能使用网卡。
错误提示如下: 1 2 3 4 5 6 7 8 git push origin master Alias tip: gp origin master Username for 'https://github.com': williamlfang Password for 'https://williamlfang@github.com': remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. fatal: Authentication failed for 'https://github.com/williamlfang/blog.git/' 参考:How to fix the
1
2
3
4
5
6
7
8
9
10
11
|
# pip download -r requirements.txt
# pip install --no-index --find-links=./ -r requirements.txt
pybind11
pandas
requests
clickhouse_driver==0.2.1
paramiko
loguru
xlrd==1.2.0
clickhouse-cli
|
Clickhouse
是一款高性能的列式存储数据库。
建立组播 tcpdump 解析报文 Tips&Tricks
在 ~/.vimrc 添加 1 2 3 set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936 set termencoding=utf-8 set encoding=utf-8 另外,有可能出现 ^M 这样的表示符号,其实是 return 的显示,替换掉 1 :%s/\r//g