Debian/Ubuntu安装配置Rsync服务 安装 使用apt install rsync命令一键安装rsync 配置 创建/etc/rsyncd.conf配置文件,内容如下: uid = nobody gid = nobody use chroot = yes max connections = 4 pid file Linux Rsync配置 2021-08-13 One minute to read
对Go打包程序进行“优化”、“混淆” 1.去除程序调试符号 编译过程中使用-ldflags ‘-s -w’ -trimpath去掉调试符号。 2.buildmode 编译过程中使用-buildmode=pie,生成地址 Go Go Build 优化 2021-08-11 2 minutes to read