搜索资源列表
testclasses
- Linux中编译的CVM的测试文件,可以使用bin/cvm -cp testclasses.zip Test来测试CVM的安装正确与否》-Linux in the compilation of the CVM test file, you can use bin/cvm-cp testclasses.zip Test to test the CVM is installed correctly or not. " .
linuxShellCode
- Linux shell 中多个命令的源代码,如:CP,RM,SU ,UNAME ,mv ,pwd ,ln ,cut ,touch ,unlink, stat ,rmdir ,mkdir等终端命令的源代码-Linux shell commands in multiple source code, such as: CP, RM, SU, UNAME, mv, pwd, ln, cut, touch, unlink, stat, rmdir, mkdir and other terminal com
MyVV-NAND-CP.tar
- s3c2410 bootloader 简短的启动代码-s3c2410 bootloader
Linux-A-named-pipe-experiment
- 在Linux环境下用C语言编程,编程的主要内容是:命名管道的实验。包括:研究mkfifo命令,在当前目录下创建一个myfifo的命名管道 用mkfifo()函数实现相同的功能 编写一个服务器程序server.c,实现从管道myfifo中读取内容,并在终端中显示出来。打开一个命令行终端,运行server,然后打开另一个命令行终端,使用“cp 文件1 myfifo”命令把文件1的内容输出到myfifo,测试server.c的功能 编写客户机程序,实现把指定文件输出到myfifo的功能,从