摘要:
摘自:https://blog.csdn.net/fuyuande/article/details/82915800 windows共享在linux下挂载 mount -t cifs -o username=root,password=123456 //172.55.20.9/public /mnt 阅读全文
摘要:
摘自:https://zhuanlan.zhihu.com/p/97609880 摘自:https://blog.csdn.net/realDonaldTrump/article/details/82697757 有些网页上的视频是分成多个ts片段的,无法被chrome的各种嗅探器插件捕获,但通过F 阅读全文
摘要:
摘自:https://blog.csdn.net/chizhanghai9659/article/details/101005149 摘自:https://my.oschina.net/sunjin/blog/350094 今天用Samba共享CentOS里面的文件夹给Windows使用,无奈在配置 阅读全文
摘要:
摘自:https://www.jianshu.com/p/3f9c2e8ac9d0 1 #include <stdio.h> 2 #include <uuid/uuid.h> 3 // yum -y install libuuid-devel.x86_64 4 5 int test_libuuid( 阅读全文
摘要:
摘自:https://blog.csdn.net/chanshibing/article/details/80048495 1 #include<stdio.h> 2 #include <sys/stat.h> 3 #include <sys/types.h> 4 int CreateDir(con 阅读全文
摘要:
摘自:https://my.oschina.net/woodyyang/blog/158852 今天在遇到一个问题,在Linux下用system()函数执行命令时出错,返回-1,错误原因NO child processes。在网上查找了一下发现是如果SIGCHLD信号行为被设置为SIG_IGN时,w 阅读全文
摘要:
摘自:https://www.cnblogs.com/yuanye007/p/5674400.html 摘自:http://www.ibm.com/developerworks/cn/linux/l-cn-nohup/ 我们经常会碰到这样的问题,用 telnet/ssh 登录了远程的 Linux 服 阅读全文
摘要:
摘自:https://www.cnblogs.com/xueweihan/p/5743368.html 转载于:https://havee.me/linux/2015-05/git-pretty-output.html 美化完的格式: git log --graph --pretty=format: 阅读全文
摘要:
摘自:https://www.dazhuanlan.com/tahao/topics/1562291 今天我为了makefile的方便起见,将一些变量通过脚本的形式给到makefile中,但是通过shell命令给makefile变量赋值让我头疼了一波.. 🙄 在shell中赋值非常简单 1234 阅读全文
摘要:
摘自:https://blog.csdn.net/jchen1218/article/details/12948731 先来看看“编译三步曲”:./configure ——检查编译环境make ——进行编译make install ——安装编译好的程序 由此可见,加速得在“make”阶段下功夫我们只 阅读全文