搜索资源列表
os
- 操作系统接口:兼容Unix 和Linux 命令接口。 为Windows 操作系统建立一个兼容Unix 命令的命令接口; 实现命令包括ls,cat,cp,rm,mv,ren,mkdir,rmdir,cd,help,exit命令的内容与详细格式请查阅unix 命令手册; 可以字符形式接收命令,执行命令,然后显示命令执行结果。
Linux-MAC20081224.rar
- 在linux下,c语言编写,可以根据对方的IP,查看其MAC地址,也可以扫描局域网在线IP的MAC和主机名。原理:建立socket ,构造netbios-ns包,循环sendto()把数据发送给对方并recvfrom()读取返回信息。根据返回的netbios回应包,读取对方的主机名,组名和mac地址。 显示结果如下: IP: 192.168.116.124 Host Name: BRN_8EEE6A/BRN_8EEE6A MAC: 00-80-77-8E-EE-6A I
File-integrity-testing-procedures
- 基于MD5的文件完整性检测程序,共包含4个文件:md5.h、md5.cpp、test.cpp、nankai.txt。其中md5.h与md5.cpp文件实现了md5类。test.cpp文件包含了整个程序的main函数,根据不同的命令完成不同的功能,如显示摘要信息,生成MD5摘要等。nankai.txt是本书提供的用于验证文件完整性测试文件。读者可以自己编写程序来生成nankai.txt的md5摘要,然后与书中的结果进行比较,验证所编程序的正确性。-MD5 File Integrity based
sqlbrowser
- qt用SQL模块写的访问数据库的例子,把结果显示在视图下,能帮助学习哦-qt module used to write SQL access to the database examples, the results displayed in the view, the study can help Oh
pv
- 设有父子2个进程共享一个临界资源,每个进程循环进入该临界区3次:父进程每次进入临界区后显示“prnt in”,出临界区则显示“prnt out”;子进程每次进入临界区后显示“chld in”出临界区则显示“chld out”。观察运行结果,应该是一个进程出来后另一个才能进去。 -Father and son with two processes share a critical resource in each process cycle to enter the critical sect
myxray
- 一个Linux下抓包软件,可以实现抓包,并对多种数据帧格式(TCP,ARP等)分析并对结果进行输出显示的功能。-Capture under a Linux software, can capture, frame format and a variety of data (TCP, ARP, etc.) analysis of the results shows that the function of the output.
linux2
- 分窗口同时显示三个并发进程 编一个C程序,其内容为分窗口同时显示三个并发进程的运行结果。要求用到Linux下的图形库-Sub-window display of three concurrent processes at the same time for a C program, which at the same time as the sub-window display of three concurrent processes the results. Request to us
8queen
- 参考网上资料写的一个能在linux下编译通过的8皇后问题,可以显示出每一步的过程,和所有的结果。-Written in a reference to on-line information.It can be compiled under linux, adopted by 8 Queens problem, It can show every step of the process, and all the results.
wenjianguanli
- 1)程序主界面可选择进程调度算法进行演示,其中调度算法包括:时间片轮转法,短作业优先算法,动态优先级算法。 2)然后进入子界面可选择进程数量和输入进程运行所需要的时间。 3)每个进程的优先数由随机函数产生且优先数随等待时间而变化,执行并显示结果。 -1) The program can choose the main interface shows the process of scheduling algorithm, scheduling algorithm which incl
qstardict-0.13.1
- QStarDict 是一款基于 Qt4 的 StarDict 的克隆,它完全兼容 StarDict 的字典,适合于使用 KDE4 朋友使用,节省了使用StarDict加载gtk+运行环境的系统资源,并且界面也更加协调。 目前 QStarDict 0.12.9 版本已经实现以下功能: 完全兼容已有的 Stardict 辞典,暂不支持树型辞典。 支持屏幕取词,通过 D-bus 支持在 Qt4 应用程序中的屏幕取词。 支持通过 festival TTS 发音,暂不支持
linux-proc-
- • 内核模块创建在proc文件系统上建立_ps文件.遍例进程内核链表task_struct.将遍例结果存入缓冲区.影射到/proc/_ps文件中.用户态的程序去读取 这个文件.打印显示 当前进程的的pid,ppid 和进程名.-Display the current process pid,ppid and processname.
Source-code
- 基本分段存储管理系统的设计 要求:(1)建立段表 (2)设计地址变换机构 (3)将变换后的结果显示出来 -Basic storage management sub-system design requirements: (1) the establishment of segment table (2) design address translation agencies (3) will display the results after transformation
mytree
- linux下tree命令的简单实现,采用递归算法,几乎可以列出整个文件系统的内容!除文件着色外,其显示结果,排布基本和tree命令一样。 用gcc编译时需加参数 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64-simple linux command to achieve the next tree, using a recursive algorithm, almost the entire file system can list the contents!
adc-test
- S3C6410中ADC的例子,基于终端的程序,可以把AD转化的结果显示在终端中.-In the example S3C6410 ADC, based on the terminal of the program, we can put the AD transformation results show that in the terminal.
mask
- 本文主要讲讲怎样对Mat矩阵进行mask操作,其实也就是对Mat矩阵的滤波操作,俗称卷积,参考文献为opencv自带的tutiol及其code. 开发环境:ubuntu12.04+opencv2.4.2+Qt4.8.2+QtCreator2.5. 实验功能: 单击Open image按钮,手动选择所需滤波的原图片。 单击Setting按钮,弹出对话框,选择滤波所用的模式,这里有2种模式,分别为自己实现滤波功能和采用opencv自带的滤波函数filter2D实现。
ScientificCalculator
- Qt 4.8.1写的科学计算器。实现功能: 平方、幂计算、整型进制转换等。不使用科学计数法显示结果。-Scientific calculator in Qt 4.8.1. Function: square, exponentiation, integer hex conversion. Do not use scientific notation to display the results.
jinchengchuangjianxitong
- 使用系统调用fork( )创建两个子进程。当此程序运行时,在系统中有一个父进程和两个子进程活动。让每一个进程在屏幕上显示一个字符,如父进程显示 a ,子进程分别显示字符 b 和字符 c 。试观察记录屏幕上的显示结果,并分析原因; 修改程序,每一个进程循环显示一句话,如子进程显示 daughter … 及 son …… ,父进程显示 parent …… -The process creation system
ProcessManager
- 1.进程的创建 编写一段程序,使用系统调用fork()创建两个子进程。当此程序运行时,在系统中有一个父进程和两个子进程活动。让每一个进程在屏幕上显示一个字符:父进程显示字符“a”;子进程分别显示字符“b”和字符“c”。试观察记录屏幕上的显示结果,并分析原因。 2.进程的控制 修改已有程序,将每个进程输出一个字符改为每个进程输出几行字符,再观察程序执行时屏幕上的现象,并分析原因。 如果在程序中使用系统调用lockf()来给每一个进程加锁,可以实现进程之间的互斥,观察并分析出现的现象
Linux
- 安排一个数据区,内存有若干个正数,负数和零.每类数的个数都不超过9;编写一个程序统计数据区中正数,负数和零的个数;将统计结果在屏幕上显示.-Arrange a data area, the memory has several positive, negative and zero the number of each type of number is not more than 9 . Chiang Kai-shek, negative, and the number of zeros to
traffic-sign-detection
- 实现场景中标志的检测,能够用OpenCV将结果显示输出。(Realize the detection of flag in scene)