unix-linux编程实践教程,PDF版本,包含随书源码
2021-11-25 16:05:34 15MB unix linux 编程实践教程 PDF
1
UNIX_Linux编程实践教程_附光盘,找了很久才找到的完整版的,很简单的操作就可以看到习题解答和源代码,方便易用。
2021-11-10 16:13:14 44.71MB UNIX Linux 编程实践教程 附光盘
1
unix+linux设计思想,包含一整套unix设计哲学
2021-11-09 16:48:26 19.41MB linux
1
Covering all the essential components of Unix/Linux, including process management, concurrent programming, timer and time service, file systems and network programming, this textbook emphasizes programming practice in the Unix/Linux environment. Systems Programming in Unix/Linux is intended as a textbook for systems programming courses in technically-oriented Computer Science/Engineering curricula that emphasize both theory and programming practice. The book contains many detailed working example programs with complete source code. It is also suitable for self-study by advanced programmers and computer enthusiasts. Systems programming is an indispensable part of Computer Science/Engineering education. After taking an introductory programming course, this book is meant to further knowledge by detailing how dynamic data structures are used in practice, using programming exercises and programming projects on such topics as C structures, pointers, link lists and trees.
2021-10-30 01:44:43 8.55MB Linux
1
很详细的make使用说明,叫你如何编写makefile文件,makefile关系到了整个工程的编译规则。一个工程中的源文件不计数,其按类抄型、功能、模块分别放在若干个目录中,makefile定义了一系列的规则来指定,哪些文件袭需要先编译,哪些文件需要后编译,哪些文件需要重新编译,甚至于进行更复杂的功能操作,因为makefile就像一个Shell脚本一样,其中也可以执百行操作系统的命令。
2021-10-23 16:39:04 979KB c/c++ unix/linux 嵌入式 GNU
1
《UNIX/Linux系统管理技术手册(第四版)》(ulahv4)是《Linux系统管理技术手册》和《UNIX系统管理技术手册》的终结版,也是evi nemeth的封刀之作。
2021-10-18 16:10:53 37.45MB UNIX_Linux
1
UNIX·Linux.系统管理技术手册(第4版)分卷1 请下载两个分卷到同一目录下解压
2021-10-18 15:52:02 59MB UNIX linux 系统管理
1
5.用户打开文件表(或称用户文件描述符表) 在系统中每一个进程都有一个描述该进程的数据结构user(类似于描述文件的i节点),在user中有一个数组,存放一组指针指向系统打开文件表中该进程打开的文件所对应的表项。 struct file *u_ofile[NOFILE] NOFILE 为每个进程最多可同时打开的文件数,这与系统中的进程数和内存大小以及交换区大小等有关系,一般为20~100。 这个u_ofile数组就是该进程的用户打开文件表。
2021-10-18 09:29:52 927KB UNIX_Linux
1
本书讲述unix shell编程,分为文本过滤、登录环境、基础shell编程以及高级shell编程技巧等几个部分,是unix/Linux用户入门及进阶的优秀书籍。
2021-10-15 21:20:47 9.94MB unix linux shell
1
在linux中实现一个简单的命令解释程序,功能要求: 1)同时支持内部命令和外部命令,内部命令支持两个(cd、exit) 2)支持后台命令
2021-10-11 13:01:15 1KB unix Linux 解释程序 shell