分类: 我的草稿箱

26 篇文章

Samba Server setup
Simple Samba file sharing server setup This is a minimal Samba setup to let other machines access files on a Debian machine. Install Samba Server and Samba Client sudo apt-get…
Aria2c安装配置
获取最新版下载地址 https://github.com/aria2/aria2/releases 获取并解压文件 wget https://github.com/aria2/aria2/releases/download/release-1.34.0/aria2-1.34.0.tar.gz tar -xzvf aria2*.tar.gz cd a…
vlmcsd安装配置
获取最新版下载地址 https://github.com/Wind4/vlmcsd/releases 获取并解压文件 wget https://github.com/Wind4/vlmcsd/releases/download/svn1111/binaries.tar.gz tar -zxvf binaries.tar.gz //进入相对应的目录 …
Linux IO文件编程
基本文件操作 常用头文件 #include #include #include //unix std #include //file control 常用函数 open() int open(const char *pathname, int flags, int perms); 所需头文件 #include #include #include 参…
Linux GCC编译过程及库的使用
GCC编译 编译过程 预处理->编译->汇编->链接 预编译:去掉(替换)源文件中的以#开头的预处理指令; 编译:将源文件变成目标处理器格式的汇编语言文件; 汇编:将汇编语言文件变成目标处理器格式的二进制文件; 链接:将多个相关的目标文件组装成最后的可执行文件。 分步编译、链接 预处理(-E) gcc -E hello.c -o hello.i […