摘要: include include include include include int main(int argc, char argv[]) { int status; pid_t pid; pid = fork(); if (0 == pid) { exit(atoi(argv[1])); } 阅读全文
posted @ 2019-06-06 19:31 huyang892 阅读(1272) 评论(0) 推荐(0) 编辑
摘要: samba由来 samba是模仿Windows网上邻居的SMB的通讯协议,将Linux操作系统“假装成”Windows操作系统,通过网上邻居的方式来进行文件传输的。 CentOS环境下: 命令 [root@localhost] yum install samba y   // y的意思是, 阅读全文
posted @ 2019-06-06 10:54 huyang892 阅读(351) 评论(0) 推荐(0) 编辑