Welcome![Sign In][Sign Up]
Location:
Search - linux-2.4.4.tar.gz

Search list

[Other Databasessqlite-3.6.11 linux下安装包

Description: sqlite-3.6.11.tar.gz 嵌入式数据库sqlite的linux安装包.嵌入式数据库是指运行在本机上、不用启动服务端的轻型数据库,它与应用程序紧密集成,被应用程序所启动,并伴随应用程序的退出而终止。 SQLite的特点如下: 1、无需安装配置,应用程序只需携带一个动态链接库。 2、非常小巧,For Windows 3.3.8版本的DLL文件才374KB。 3、ACID事务支持,ACID即原子性、一致性、隔离性、和持久性(Atomic、Consistent、Isolated、和 Durable)。 4、数据库文件可以在不同字节顺序的机器间自由的共享,比如可以直接从Windows移植到Linux或MAC。 5、支持数据库大小至2TB。
Platform: | Size: 2804714 | Author: bong_chu | Hits:

[Embeded Linuxblob-2.0.4.tar.gz

Description: blob-2.0.4.tar.gz blob bootloader embedded system linux
Platform: | Size: 94438 | Author: zh_xt@126.com | Hits:

[Bookslinux设备驱动程序开发详解

Description: 详细讲述了linux设备驱动程序的开发,想学习linux下设备驱动程序开发工作的人员可以参考。文件清单列出如下: linuxdriver_code_tool |-- 03 | `-- 2.6内核升级工具 | |-- device-mapper-1.00.19-2.i386.rpm | |-- lvm2-2.00.25-1.01.i386.rpm | |-- mkinitrd-4.2.0.3.tar.tar | |-- module-init-tools-3.2.2.tar.bz2 | `-- modutils-2.4.5-1.src.rpm |-- 04 | |-- 内核模块参数范例 | | `-- book.c | |-- 内核模块导出符号 | | `-- export_symb.c | `-- 最简单的内核模块 | `-- hello.c |-- 05 | `-- udev源代码 | `-- udev-114.tar.gz |-- 06 | |-- globalmem驱动 | | `-- globalmem.c | `-- 包含2个globalmem设备的驱动 | `-- globalmem_two.c |-- 07 | `-- 含并发控制的globalmem驱动 | `-- globalmem_lock.c |-- 08 | |-- globalfifo驱动 | | `-- globalfifo.c | `-- poll应用程序范例 | `-- pollmonitor.c |-- 09 | |-- 异步通知应用程序范例 | | `-- asyncmonitor.c | `-- 支持异步通知的globalfifo | `-- globalfifo_async.c |-- 10 | |-- S3C2410实时钟驱动 | | `-- s3c2410-rtc.c | `-- 秒设备驱动与应用程序 | |-- second.c | `-- second_test.c |-- 11 | |-- DMA范例 | | |-- 3c505.c | | |-- 3c505.h | | `-- dma.h | `-- 静态映射范例 | `-- mach-smdk2440.c |-- 12 | |-- NVRAM驱动 | | `-- generic_nvram.c | |-- 触摸屏驱动 | | |-- 作为input设备 | | | |-- s3c2410_ts.c | | | `-- s3c2410_ts.h | | `-- 作为普通字符设备 | | `-- s3c2410-ts.c | |-- 看门狗驱动 | | `-- s3c2410_wdt.c | `-- 平台设备 | `-- devs.c |-- 13 | |-- IDE驱动 | | |-- ide-disk.c | | `-- ide-h8300.c | `-- RAMDISK驱动 | `-- rd.c |-- 14 | |-- S3C2410串口驱动 | | |-- regs-gpio.h | | |-- regs-serial.h | | `-- s3c2410.c | `-- 串口核心层 | |-- serial_core.c | `-- serial_core.h |-- 15 | |-- S3C2410 I2C主机驱动 | | |-- i2c-s3c2410.c | | |-- iic.h | | |-- regs-gpio.h | | `-- regs-iic.h | `-- SAA711x I2C设备驱动 | `-- saa711x.c |-- 16 | `-- CS8900以太网设备驱动 | |-- cs89x0.c | `-- cs89x0.h |-- 17 | |-- ALSA工具及库 | | |-- alsa-driver-1.0.15.tar.bz2 | | |-- alsa-firmware-1.0.15.tar.bz2 | | |-- alsa-lib-1.0.15.tar.bz2 | | |-- alsa-oss-1.0.15.tar.bz2 | | |-- alsa-tools-1.0.15.tar.bz2 | | |-- alsa-utils-1.0.13.tar.bz2 | | `-- pyalsa-1.0.15.tar.bz2 | |-- ALSA驱动范例 | | |-- sa11xx-uda1341.c | | `-- uda1341.h | |-- ALSA应用程序范例 | | |-- pcm.c | | `-- pcm_min.c | |-- OSS驱动范例 | | `-- s3c2410-uda1341.c | `-- OSS应用程序范例 | |-- mixer.c | `-- sound.c |-- 18 | |-- FRAMEBUFFER应用程序范例 | | `-- fb_display | | |-- fb_display.c | | |-- fb_display.h | | |-- Makefile | | |-- README | | `-- test.c | `-- S3C2410 LCD驱动 | |-- s3c2410fb.c | `-- s3c2410fb.h |-- 19 | |-- busybox源代码 | | `-- busybox-1.2.1.tar.bz2 | |-- MTD工具 | | `-- mtd-utils-1.0.0.tar.gz | |-- nand驱动范例 | | `-- s3c2410.c | |-- nor驱动范例 | | `-- s3c2410nor.c | `-- yaffs&yaffs2源代码 | |-- yaffs.tar.gz | `-- yaffs2.tar.gz |-- 20 | |-- USB串口驱动 | | |-- usb-serial.c | | `-- usb-serial.h | |-- USB工具 | | `-- usbview-1.0.tar.tar | |-- USB骨架程序 | | `-- usb-skeleton.c | |-- USB键盘驱动 | | |-- input.h | | |-- usb_input.h | | `-- usbkbd.c | `-- usb主机控制器驱动范例 | |-- ohci-s3c2410.c | `-- usb-control.h |-- 21 | |-- PCI骨架程序 | | `-- pci-skeleton.c | `-- PCI驱动范例 | `-- i810_audio.c `-- 22 |-- 范例代码 | |-- oops范例 | | |-- oops_example.asm | | `-- oops_example.c | `-- proc范例 | `-- sim_proc.c `-- 内核调试工具 |-- ddd-3.3.11.tar.gz |-- gdbmod-2.4.bz2 |-- kdb-v4.4-2.6.15-rc5-common-1.bz2 |-- kdb-v4.4-2.6.15-rc5-common-2.bz2 |-- kdb-v4.4-2.6.15-rc5-i386-1.bz2 `-- linux-2.6.15.5-kgdb-2.4.tar.tar
Platform: | Size: 25078324 | Author: zxx000 | Hits:

[Game Server Simulator石器时代Linux服务端

Description: 7.5的石器时代服务端,以下是架设说明 1.这个包中有两个小包,一个是saserver.tar.gz,这个是已经配置好的直接下下来就可运行的完整服务器端,一个是tool.rar,里面是登陆器和附带的一个内码转换的小工具,因为数据库是繁体的,所以要用这个工具转换。具体方法下面会说。 2.本服务器端要求架设的人有一定Linux基础,如果有看不懂的地方建议先补习一下Linux基本操作。 3.先将saserver.tar.gz拷到linux系统下,然后解压。(一定要在Linux下解压,在windows下解压的话用不了不怪我) 4.在Linux系统下面,进入刚才解压出来的saserver目录,然后在进入saac目录,输入./saac命令(主意下面所有指令都需要root权限!)。等运行稳定,即出现: start loop xxxxxxDeadline 2005xxxxx 表示程序已经启动完全。 5.重新开个console,还是在saserver目录的saac目录下面,输入./acwk -a localhost -c 123,等到出现connect ac..就表示启动完了 6.再开一个console,在saserver目录的gmsv目录下面,输入./gmsv,等待出现: Player=0 PM:0 B:0 Sys:.............的时候,表示服务器已经完全启动完毕。 7.程序的启动顺序千万不能变! 8.运行中可能遇到的错误,在运行./saac的时候,如果出现:cannot init tcpstruct错误,一般来说是由于服务器瞬间负载过高造成的,只要反复尝试,直到运行成功即可。也有可能是机器的内存或者swap太小。 在运行./gmsv中也可能出现:Received signal:xx,或者killed或者“被*”错误,都跟saac一个原因,处理方法和处理saac的一样 9.到目前位置服务器已经就位了,可以连接了,请将tool.rar包里面的sa_7505.exe和servlist.txt拷贝到石器客户端,然后修改servlist.txt里面0=测试服务器1,1192.168.1.100,9065中的1192.168.1.100为“1你的IP地址”(第一个1不能去),然后保存,这样你的客户端就能连接上服务器了。
Platform: | Size: 16584032 | Author: mmmwkmw | Hits:

[Embeded Linuxlinux-2.4.21.tar

Description: 一个2.4.21版本的嵌入式linux内核-a 2.4 version of embedded Linux kernel
Platform: | Size: 43749376 | Author: 柳林 | Hits:

[Ftp Clientautoftp

Description: How to compile and install: --------------------------- First run "./configure", then "make". Then run "make install" as root. On RPM based Linux systems you can use this: rpm -ta puf-*.tar.gz && rpm -i /usr/src/redhat/RPMS/i386/puf*.rpm Tested platforms (as of 0.93.2a) include Linux, MaxOS X, and even CygWin. Previously tested platforms included Solaris, OpenBSD, and Digital UNIX 4.0, but recent puf versions have not been tested on them. Ultrix is known not to work. If you (don t) manage to compile puf on a platform which is not specified herein, then I d appreciate if you email me about it. -How to compile and install :--------------------------- First run. "/ co nfigure " then "make." Then run "make install" as root. On RPM based Linux systems you can use this : rpm- ta 37-*. tar.gz
Platform: | Size: 66560 | Author: yuewenfei | Hits:

[Linux-Unixusb-2.4.31LE06.patch.tar

Description: 嵌入式linux的摄像头驱动程序,补丁形式的-Embedded Linux camera driver, patch form
Platform: | Size: 61440 | Author: 苏腾 | Hits:

[Internet-Networklibpcap-0.9.4

Description: linux下的抓包函数库,支持交叉编译并移植到嵌入式开发平台.-under linux-capturing Packet libraries, and support for cross compiler transplant embedded development platform.
Platform: | Size: 501760 | Author: 丁力 | Hits:

[Linux-Unixglibc-linuxthreads-2.3.4

Description: glibc-linuxthreads-2.3.4.tar,glibc中多线程的实现,觉得好的可以下来-glibc- linuxthreads- 2.3.4.tar. Multithread glibc the realization feel good to see it down
Platform: | Size: 542720 | Author: 周兆维 | Hits:

[Embeded Linuxzlg_7289

Description: 1) 复制libminigui-str-1.6.2.tar.gz至任意用户目录。 2) 解压此文件 tar zxvf libminigui-str-1.6.2.tar.gz 4) 将zlg7289.c zlg7289.h二文件拷贝入增值版的相应目录中 libminigui-1.6.2-linux/src/ial/ 5) 修改相关宏定义使上述二文件加入库编译。 a. 修改libminigui-1.6.2-linux/src/ial/Makefile.am 在29行增加 ZLG7289_SRCS = zlg7289.c zlg7289.h 在37行增加 $(ZLG7289_SRCS) b. 修改libminigui-1.6.2-linux/src/ial/ial.c 在166行加入 #include "zlg7289.h" 在282行的数组内加入 {"zlg7289", InitZLG7289Input, TermZLG7289Input}, c. 进入项目主目录, 重新配置编译依赖 cd libminigui-1.6.2-linux 去掉后aclocal和automake后的版本号后,运行此脚本,忽略警告项。 d. 同上配置方法配置MiniGUI 6) 修改运行时配置文件MiniGUI.cfg中的IAL ial_engine=zlg7289-a) Copy libminigui- str- 1.6.2.tar.gz to arbitrary users Contents. 2) extract this document tar zxvf libminigui- str- 1.6.2.tar.g z 4) zlg7289.c zlg7289.h two paper copies into value-added version of the corresponding directory lib minigui-1.6.2-linux/src/ial/5) to amend the definition so that the above- two papers to the compiler. A. revise libminigui-1.6.2-linux/src/ial/Makef ile.am the 29 firms to increase ZLG7289_SRCS = zlg7289.c zlg728 9.h the 37 firms to increase $ (ZLG7289_SRCS) b. revise libminigui-1 .6.2-linux/src/ial/ial.c in 166 firms join# include " zlg7289.h "in the array 282 to add (" zlg7289 " InitZLG7289Input, TermZLG7289Input). c. entering the main project directory, re-allocation of compiler- dependent cd libminigui- 1.6.2- linux removed aft
Platform: | Size: 8192 | Author: 周波 | Hits:

[Internet-Networkppp-2.4.4.tar

Description: linux 下的ppp源码,难得难得,大家快来下吧-ppp source code under linux, rare rare, we Come, are you
Platform: | Size: 689152 | Author: harley | Hits:

[Linux-Unixmadwifi-0.9.2-src

Description: Linux下wifi实现,通过它可以学习无线相关知识。-Wifi under Linux realize, through its wireless-related knowledge can learn.
Platform: | Size: 3473408 | Author: daniel | Hits:

[Linux-Unixctorrent-1.3.4

Description: 一个用c语言写的bittorrent客户端,运行在linux下面.-A written using c language bittorrent client, running on linux below.
Platform: | Size: 110592 | Author: kevin | Hits:

[Linux-Unixqt-x11-free_3.2.3.orig.tar

Description: 这个是Linux的qt源代码,版本3.2.3-This is the qt source code for Linux, version 3.2.3
Platform: | Size: 16803840 | Author: 张大力 | Hits:

[MiddleWaretslib-1.4.tar

Description: 最新嵌入式触摸屏中间件(库),源码级。已测试过,很好用,包括例子程序-Touchpanel library for embedded linux development
Platform: | Size: 389120 | Author: AAA | Hits:

[Othervasp.4.6.tar

Description: vasp4.6的源文件 for linux(已测试)-vasp4.6 of the source file for linux (tested)
Platform: | Size: 716800 | Author: dzhijie | Hits:

[Linux-Unixr8180emb-0.0.4

Description: RTL8181 wireless (embedded RTL8180) driver for Linux, version 0.0.4
Platform: | Size: 61440 | Author: Jose | Hits:

[Embeded-SCM DevelopMiniGUI-var-1.6.8

Description: 名称 MiniGUI - 面向实时嵌入式 Linux 系统的小型跨平台图形用户界面支持系统 目录 1. 介绍 2. 什么是 MiniGUI-Lite 3. MiniGUI 版本 1.6 的新功能特点 4. 在 Linux 上安装 MiniGUI 5. Linux 上的安装及配置示例 6. 开发历史 7. 有关作者 8. 如果遇到问题 9. 版权信息 10. 在商业或专有系统中的使用 MiniGUI 1. 介绍 MiniGUI 是一个遵循 GPL 条款的自由软件项目. 该项目由北京飞漫软件技术有限公 司主持. MiniGUI 的目标是提供一个稳定的, 轻量级的跨操作系统图形用户界面支持系统, 尤其适合基于 Linux/uClinux, eCos, uC/OS-II, VxWorks, ThreadX 等的实时嵌入 式系统. -Version 1.6.8 (2005/09/05) This release needs the following resource packages: * minigui-res-1.6.tar.gz The latest demo package is: * mde-1.6.8.tar.gz The latest samples package is: * mg-samples-1.6.8.tar.gz NAME MiniGUI- a compact cross-platform Graphics User Interface support system for real-time embedded systems. TABLE OF CONTENTS 1. Introduction 2. What s MiniGUI-Lite 3. New features of MiniGUI version 1.6 4. Installing MiniGUI on a Linux box 5. History 6. About the authors 7. If you have a problem 8. A Little FAQ 9. Copying 10. If you are developing commercial or proprietary software by using MiniGUI
Platform: | Size: 17561600 | Author: guyunchong | Hits:

[Embeded Linuxlibminigui-2.0.4-linux.tar

Description: minigui 2.0.4 开发库源码,适用于基于miniGUI进行嵌入式图形界面开发的朋友。-minigui 2.0.4 development source library for GUI-based development.
Platform: | Size: 9238528 | Author: zhangwujiang | Hits:

[Embeded LinuxLinux-driver-develop-and-source-code

Description: jsp source code.4444jsp.tar.gz
Platform: | Size: 279552 | Author: qinxiaoyun | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net