上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页
摘要: OBJS= $1.o CC=gcc CFLAGS+=-Wall -g $1:$(OBJS) $(CC) $^ -o $@ %.o:%.c $(CC) $^ $(CFLAGS) -o $@ clean: $(RM) *.o $1 -r 可实现 server.c make server 直接生成serv 阅读全文
posted @ 2022-09-26 17:29 simp00 阅读(23) 评论(0) 推荐(0) 编辑
摘要: Makefile OBJS=main.o tool1.o tool2.o CC=gcc CFLAGS+=-c -Wall -g mytool:$(OBJS) $(CC) $^ -o $@ %.o:%.c $(CC) $^ $(CFLAGS) -o $@ clean: $(RM) *.o mytool 阅读全文
posted @ 2022-09-24 09:49 simp00 阅读(137) 评论(0) 推荐(0) 编辑
摘要: How to Install and Configure an NFS Server on Ubuntu 22.04 https://linuxhint.com/install-and-configure-nfs-server-ubuntu-22-04/ 使用的是buildroot生成的linux操 阅读全文
posted @ 2022-09-08 14:06 simp00 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 获取当makefile 路径 SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))#获取最近使用Makefile的路径 ROOT_DIR := $(realpath $(dir $(lastword $(MAKEFILE_LIST))))#获取最近使用Mak 阅读全文
posted @ 2022-09-02 11:07 simp00 阅读(19) 评论(0) 推荐(0) 编辑
摘要: #python 运行时参数设置 import argparse # Press the green button in the gutter to run the script. if __name__ == '__main__': parser = argparse.ArgumentParser( 阅读全文
posted @ 2022-08-23 18:16 simp00 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 安装程序下载链接 https://github.com/winsw/winsw/releases/tag/v2.11.0 修改文件名 这里我就下载了红框中的两个 下载完成之后 修改这两个文件的名称为 nginxService.xml nginxService.exe 我这里是使用的Nginx 所以就 阅读全文
posted @ 2022-08-19 17:13 simp00 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 缺少什么就装什么 pip install PyPDF2 from PyPDF2 import PdfFileWriter, PdfFileReader def pdf_split(pdf_in,pdf_out,start,end): # 初始化一个pdf output = PdfFileWriter 阅读全文
posted @ 2022-08-16 10:11 simp00 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 参考的原文链接 https://www.cnblogs.com/Hakurei-Reimu-Zh/p/14999269.html 1.安装cuda 这里我只安装最新版驱动也是可以的没有刻意去安装cuda 2.下载编译好的全版本ffmpeg https://www.gyan.dev/ffmpeg/bu 阅读全文
posted @ 2022-08-15 14:46 simp00 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 官网路径 https://ehang-io.github.io/nps/#/?id=nps nps 服务端安装及配置 nps 端配置文件,只有conf文件需要按照nps官网的配置 其他的json文件需要手动创建个空的文件即可 #pwd /usr/local/nps # ll total 12 -rw 阅读全文
posted @ 2022-08-13 21:24 simp00 阅读(1280) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get remove docker docker-engine docker.io containerd runc udo apt-get update sudo apt-get install \ ca-certificates \ curl \ gnupg \ lsb-rele 阅读全文
posted @ 2022-08-12 15:17 simp00 阅读(485) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页