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

Search list

[CSharpBitStormLite-0.1a.tar

Description: 经过两个多星期业余时间的努力,终于做出了一个可以发布的BitStorm版本 目前版本是BitStorm 0.1 Lite version,主要特性如下 1)基于C++和GTK2,占用系统资源少 2)可调整大小的磁盘缓存,极大的减轻磁盘负担 3)支持多Tracker 4)支持UTF-8编码的Torrent文件,文件名不会出现乱码 5)可设置最大连接数量和最大同时上传数量 Ubuntu 5.10用户可以使用下面的deb包 http://www.socks5cn.com/bitstorm/bitstormlite-0.1_0.1-1_i386.deb 源代码下载安装: http://www.socks5cn.com/bitstorm/BitStormLite-0.1a.tar.gz 目前只支持Linux Kernel 2.6+、GTK2.6+的平台 首先请安装以下开发包: libcurl3-dev libgtk2.0-dev libboost-dev 然后将BitStormLite-0.1.tar.gz下载到本地,解压文件 tar xvzf BitStormLite-0.1.tar.gz 进入解压目录 cd BitStormLite-0.1 配置和编译 ./configure make 安装 make install 安装完成后就可以用过bitstormlite命令来起动程序了 -After more than two weeks of free time, finally made the release of a version of the current version BitStorm is BitStorm Lite version 0.1, the main characteristics are as follows 1) based on C and GTK2, less taxing system resources 2) adjustable size of disk cache, greatly reducing the disk burden 3) support multiple Tracker 4) support UTF-8 encoding Torrent document, which names should not appear gibberish 5) to set the maximum number of connections for both uplink and the largest number of Ubuntu 5.10 users can use the following http://www.socks5cn deb packages. com/bitstorm/bitstormlite-0.1_0.1-1_i386.deb to download and install the source code : http://www.socks5cn.com/bitstorm/BitStormLite-0.1a.tar.gz currently supports only two Linux Kernel .6, GTK2.6 platform to begin development k
Platform: | Size: 115931 | Author: andy | 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:

[CSharpBitStormLite-0.1a.tar

Description: 经过两个多星期业余时间的努力,终于做出了一个可以发布的BitStorm版本 目前版本是BitStorm 0.1 Lite version,主要特性如下 1)基于C++和GTK2,占用系统资源少 2)可调整大小的磁盘缓存,极大的减轻磁盘负担 3)支持多Tracker 4)支持UTF-8编码的Torrent文件,文件名不会出现乱码 5)可设置最大连接数量和最大同时上传数量 Ubuntu 5.10用户可以使用下面的deb包 http://www.socks5cn.com/bitstorm/bitstormlite-0.1_0.1-1_i386.deb 源代码下载安装: http://www.socks5cn.com/bitstorm/BitStormLite-0.1a.tar.gz 目前只支持Linux Kernel 2.6+、GTK2.6+的平台 首先请安装以下开发包: libcurl3-dev libgtk2.0-dev libboost-dev 然后将BitStormLite-0.1.tar.gz下载到本地,解压文件 tar xvzf BitStormLite-0.1.tar.gz 进入解压目录 cd BitStormLite-0.1 配置和编译 ./configure make 安装 make install 安装完成后就可以用过bitstormlite命令来起动程序了 -After more than two weeks of free time, finally made the release of a version of the current version BitStorm is BitStorm Lite version 0.1, the main characteristics are as follows 1) based on C and GTK2, less taxing system resources 2) adjustable size of disk cache, greatly reducing the disk burden 3) support multiple Tracker 4) support UTF-8 encoding Torrent document, which names should not appear gibberish 5) to set the maximum number of connections for both uplink and the largest number of Ubuntu 5.10 users can use the following http://www.socks5cn deb packages. com/bitstorm/bitstormlite-0.1_0.1-1_i386.deb to download and install the source code : http://www.socks5cn.com/bitstorm/BitStormLite-0.1a.tar.gz currently supports only two Linux Kernel .6, GTK2.6 platform to begin development k
Platform: | Size: 115712 | Author: andy | Hits:

[2D Graphiclibminigui-1.6.2-linux

Description: miniGUI图形系统源码libminigui-1.6.2.tar.gz。-MiniGUI source graphics system libminigui-1.6.2.tar.gz.
Platform: | Size: 10834944 | Author: 黄毅 | Hits:

[Linux-Unixlibminigui-1.6.10.tar

Description: minigui 1.6.10 8.1开源版-minigui 1.6.10 8.1 Open Source Edition
Platform: | Size: 2786304 | Author: | Hits:

[Internet-NetworkAR81Family-linux-v1.0.1.0

Description: Atheros公司AR8121/AR8113无线网卡的Linux驱动,Atheros公司处理器以及无线网卡芯片常用于无线路由器,例如TP-LINK产品。-linux driver of Atheros AR8121/AR8113 PCI-E Ethernet Adapter, as common used in wireless router
Platform: | Size: 83968 | Author: gxliu | Hits:

[Linux-Unixvim-6.4.tar

Description: 安装完solaris整完ls支持颜色,也装了经常使用的一些工具,改了环境变量.用着已经顺手多了,但是就有一样.vi不支持语法功能,也不高亮显示.也像原来那样,在根目录下加了个.vimrc写上一些自己习惯性的配置,可是不起作用,郁闷!难道我人品有问题?打开linux,alias看了一下环境变量,乖乖 alias vi vim!郁闷,早就知道linux用的是vim了,可是平常用的时候习惯性的敲vi,竟把这事给忘记了.早到病根下药就简单了,装个vim! 就像上次装ls一样访问:http://www.sunfreeware.com/indexintel10.html找到vim-7.1下载地址 是:ftp://ftp.sunfreeware.com/pub/freeware/intel/10/vim-7.1-sol10-x86-local.gz.OK 解压一下:gzip -d coreutils-6.4-sol10-x86-local.gz 安装:pkgadd -d coreutils-6.4-sol10-x86-local OK安装很顺利,自我感觉良好,可是执行/usr/local/bin/vim的时候却意外的提示:ld.so.1: ./vim 致命的: libgtk-1.2.so.0 没有这个文件或文件夹.网上找了一下,发现CU06年有人提过这个问题 http://bbs.chinaunix.net/thread-683746-1-1.html帖的- http://bbs.chinaunix.net/thread-683746-1-1.html
Platform: | Size: 3737600 | Author: jtp | Hits:

[Linux-UnixIOR-2.10.1

Description: 关于MPI的并行I/O程序,环境是linux,语言是c+mpi-On the MPI parallel I/O process, the environment is linux, language is c+ mpi
Platform: | Size: 81920 | Author: 澄海 | Hits:

[Embeded Linuxlinux-2.6.10.tar

Description: gcc-3.3.6.tar.gz,linux编译器,适合linux arm系统开发与应用。-gcc-3.3.6.tar.gz, linux compiler for linux arm system and application development.
Platform: | Size: 45799424 | Author: jinjin | 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:

[Linux-Unixlibminigui-1.6.10

Description: 基于linux的minigui 界面的开发源码 -Minigui linux-based open-source interface
Platform: | Size: 4152320 | Author: 孙皓 | Hits:

CodeBus www.codebus.net