
工具箱
收集各类软件工具及使用方式
dr.xun
迭代
展开
-
现代链接器Mold安装
高效链接器,可以提升编译时的链接效率。原创 2023-01-11 20:15:41 · 646 阅读 · 0 评论 -
C++ 测试框架收集
单元测试C+±doctest-测试框架C++单元测试工具——doctestgithub: doctest【先记录着,后续看到再更新】原创 2022-05-22 17:54:26 · 599 阅读 · 0 评论 -
CentOS7安装jdk1.8
一、查找yum源支持的jdk版本[root@drxun ~]# yum search jdk已加载插件:fastestmirror, product-id, search-disabled-repos, subscription-managerThis system is not registered with an entitlement server. You can use subscription-manager to register.Loading mirror speeds fro原创 2022-05-22 15:06:10 · 445 阅读 · 0 评论 -
CentOS7 升级gcc版本到gcc9
CentOS7 升级gcc版本到gcc9CentOS7自带的GCC版本是4.8.5,如下所示:# cat /etc/redhat-releaseCentOS Linux release <strong>7.6.1810</strong> (Core)#which gcc#gcc -vUsing built-in specs.COLLECT_GCC=gccCOLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux原创 2020-10-04 13:27:04 · 11393 阅读 · 10 评论 -
CentOS7 升级gcc 4.9版本到10.2
CentOS7 升级gcc 4.9版本到10.2原创 2022-05-04 15:52:47 · 2212 阅读 · 0 评论 -
windows docker部署sonarqube
前言下载sonarqube镜像:https://hub.docker.com/_/sonarqube/下载postgresql镜像:https://hub.docker.com/_/postgres这里采用的是如下版本:sonarqube版本:sonarqube:7.9.4-communitypostgresql版本:postgres:9.6.19-alpine准备映射目录创建postgresql的目录D:\postgresql\data,用于存放数据库数据。创建sonarqube的目录:原创 2022-04-17 22:57:26 · 1380 阅读 · 0 评论 -
window下安装netwox
一、下载1、访问网址https://sourceforge.net/projects/ntwox/,进入 netwox 下载页面2、下载最新版本,单击Download按钮下载安装包,当前最新版本netw-ib-ox-ag-5.39.0.tgz二、安装1、解压netw-ib-ox-ag-5.39.0.tgz安装包,找到可执行安装文件installwindows.exe,双击该文件进行安装,弹出安装确认对话框。输入y确认安装,可以修改默认安装目录。安装完成后的桌面图.原创 2021-05-21 22:32:28 · 2309 阅读 · 0 评论 -
window上升级pip版本
一、管理员权限打开cmd二、执行升级命令python -m pip install --upgrade pip原创 2021-05-14 16:14:07 · 996 阅读 · 0 评论 -
curl学习资源收集
https://man.linuxde.net/curl原创 2020-04-01 22:42:25 · 147 阅读 · 0 评论 -
学会使用x2struct(json -> struct)
库资源链接:https://github.com/xyz347/x2struct试用例子:#include <iostream>#include <string>#include "x2struct.hpp"using namespace std;struct Person{ string name; string address; int age; XTOSTRUCT(O(name, address, age));};int main(int原创 2020-08-08 17:14:58 · 1888 阅读 · 0 评论 -
xpath
https://www.runoob.com/xpath/xpath-tutorial.html原创 2020-12-31 23:31:11 · 90 阅读 · 0 评论 -
sshd的使用
sshd参数设置[xy@xunye ~]$ sshd --helpunknown option -- -OpenSSH_7.4p1, OpenSSL 1.0.2k-fips 26 Jan 2017usage: sshd [-46DdeiqTt] [-C connection_spec] [-c host_cert_file] [-E log_file] [-f config_file] [-g login_grace_time] [-h host_...原创 2020-12-27 12:04:29 · 975 阅读 · 0 评论 -
sshd建立会话过程
1、建立客户端连接2、交换公共主机密钥3、断开连接总结连接过程:• 22号端口的客户端连接请求。• 服务器进程派生出一个子进程。• 服务器进程之间交换主机密钥。• 与客户端交换会话密钥和本地主机密钥。• 在服务器之间决定采用的加密技术。• 加密数据的传送。• 断开连接。...原创 2020-12-27 11:45:13 · 279 阅读 · 0 评论 -
查看服务端ssh是否启动
方式一:systemctl查看服务状态[xy@xunye ~]$ systemctl status sshd● sshd.service - OpenSSH server daemon Loaded: loaded (/usr/lib/systemd/system/sshd.service; enabled; vendor preset: enabled) Active: active (running) since 日 2020-11-29 14:51:51 CST; 3 weeks 6...原创 2020-12-27 11:17:09 · 18958 阅读 · 0 评论 -
SSH之s命令
一、介绍替代不安全的r命令,使用和命名与r命令一致 提供对用户透明的安全特性二、客户端命令原创 2020-12-27 10:45:31 · 1490 阅读 · 0 评论 -
初识SSH(Secure Shell)
SSH特点:1、开源;2、通过Internet传送密码安全可靠;好处:防止I P地址欺骗、 D N S欺骗和源路径攻击。用户身份认证:公共密钥加密法。网络攻击类型:SSH不能保护的攻击类型SSH的工作机制(Client——用户界面 和 Server——守护进程)Sever端——sshd程序,放在/usr/local/sbin下。 ...原创 2018-09-14 20:36:48 · 2849 阅读 · 0 评论 -
VS Code使用教程收集
如何在VSCode内编译运行C++?VSCode安装,配置,编译运行C++(详细整理)原创 2020-04-04 10:16:33 · 282 阅读 · 0 评论 -
vim-plug 配置安裝和配置
做個記錄地址:https://github.com/junegunn/vim-plug安裝方式:InstallationDownload plug.vimand put it in the "autoload" directory.VimUnixcurl -fLo ~/.vim/autoload/plug.vim --create-dirs \ http...原创 2019-04-13 21:42:44 · 2765 阅读 · 0 评论