首页
系统
Android
Mac&iOS
Windows
Debian
Ubuntu
CentOS
ProxmoxVE
编程语言
Go
Js/Ts
Java
C#
C/C++
软件使用
大模型
博客
Office
Docker
Nginx
MySQL
MongoDB
工具
IP查询接口
随笔
归档
动态
留言
关于
过客
累计撰写
416
篇文章
累计创建
55
个标签
累计收到
0
条评论
栏目
首页
系统
Android
Mac&iOS
Windows
Debian
Ubuntu
CentOS
ProxmoxVE
编程语言
Go
Js/Ts
Java
C#
C/C++
软件使用
大模型
博客
Office
Docker
Nginx
MySQL
MongoDB
工具
IP查询接口
随笔
归档
动态
留言
关于
目 录
CONTENT
最新文章
CentOS7 在线安装dotnet环境
rpm -Uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm yum update yum install dotnet-sdk-2.2 dotnet --version
2019-10-18
5
0
0
CentOS
SSH获取连接者IP
who am i | awk '{print $5}' | sed 's/(//g' | sed 's/)//g'
2019-10-18
4
0
0
系统
使用Visual Studio Code调试Golang工程
一、准备VSCode 在官网下载最新版的VSCode: Visual Studio Code - Code Editing. Redefined 二、安装Golang插件 打开扩展面板 VSCode->查看->扩展 找到Go插件 在搜索框里输入Go, 找到第二行写有 Rich Go language
2019-10-17
8
0
0
Go
Java 中 file 读写 与 Zip 压缩解压
以byte[]读文件 public static byte[] file2byte(String path) { try { FileInputStream in =new FileInputStream(new File(path)); //当文件没有结束时
2019-10-17
7
0
0
Java
Nginx转发阿里云内网Redis
修改Nginx配置文件,加入流转发 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log inf
2019-10-17
5
0
0
Nginx
CentOS7 下端口转发rinetd
1、下载,解压,安装 $ wget http://www.boutell.com/rinetd/http/rinetd.tar.gz&&tar -xvf rinetd.tar.gz&&cd rinetd $ sed -i 's/65536/65535/g' rinetd.c (修改端口范围) $ m
2019-10-17
9
0
0
CentOS
1
...
38
39
40
41
42