联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All Linux/Unix编程(576) 

[Linux/Unix编程] PC-Tizi

电脑pc翻墙机场与手机翻墙梯子的安装使用有什么区别?windows MacOS Linux等PC电脑系统和苹果安卓等手机系统使用翻墙机场时,将订阅的翻墙节点导入Clash、Shadowrocket(小火箭)、Stash(Clash for iOS)、Quantumult X(圈叉)、Surge、V2rayN、sing-box 等翻墙客户端后都可以轻松实现科学上网。今天给大家分享六个pc电脑和手机上都能稳定流畅科学上网的翻墙机场节点梯子推荐,这些翻墙机场相较传统的翻墙vpn和网络加速器来说,便宜好用性价比超高,如果你也想买一个便宜的稳定靠谱梯子,那么不妨从其中选择一个。
What is the difference between the installation and use of computer PC over wall airport and mobile phone over wall ladder? When Windows MacOS Linux and other PC systems and Apple Android and other mobile phone systems use the wall crossing airport, the subscribed wall crossing nodes can be easily connected to the Internet after being imported into Clash, Shadowlock, Stash (Clash for iOS), Quantum X, Surge, V2rayN, Sing box and other wall crossing clients. Today, I would like to share with you six recommendations on the node ladder of the airport over the wall that can stably, smoothly and scientifically access the Internet on PC computers and mobile phones. Compared with the traditional vpn over the wall and network accelerator, these airports over the wall are cheap, easy to use, and cost-effective. If you want to buy a cheap stable spectrum ladder, you can choose one of them. (2024-01-06, Others, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1704472352306444.html

[Linux/Unix编程] admin

iapp后台功能用于对接iapp,适用于iapp后台
iappadminIn the background of the program, do not use it for illegal activities (2018-04-13, PHP, 794KB, 下载20次)

http://www.pudn.com/Download/item/id/1523622972906070.html

[Linux/Unix编程] DMC2440F

DMC-2440-F采用基于ARM920T内核的Samsung处理器 S3C2440A, 标准主频400MHz,最高主频可达533MHz。采用64MB的SDRAM和64MB的Nand Flash。DMC-2440-F嵌入式开发系统外设非常丰富,功能强大,适用于各种手持设备、消费电子和工业控制设备的开发。支持嵌入式Linux和WINCE5.0.NET操作系统。提供完整的Wince5.0 BSP。 采用linux-2.4.18内核,支持多种文件系统,像cramfs、yaffs2、ext2、Fat、NFS等。linux驱动支持:串口、10/100M网口、音频、USB Host、LCD、触摸屏、USB鼠标、U盘等,支持Qt图形界面。 Wince5.0驱动支持:LCD、触摸屏、KEY 、Nandflsh、串口、USB等
DMC- 2440- F the Samsung processor S3C2440A based on ARM920T kernel, standard frequency 400 MHZ, the highest frequency of up to 533 MHZ. The 64 MB SDRAM and 64 MB Nand Flash. DMC- 2440- F embedded development system peripherals is rich, powerful functions, suitable for all kinds of handheld devices, consumer electronics and industrial control equipment development. Support the embedded Linux operating system and WINCE5.0.NET. Provide complete Wince5.0 BSP. The Linux- 2.4.18 kernel, support for multiple file system, like cramfs, yaffs2, however, Fat, NFS, etc. Linux driver support: a serial port, 10/100 m so, audio, USB Host, LCD, touch screen, USB mouse, U disk, etc., to support Qt graphical interface. Wince5.0 driver support: LCD, touch screen, KEY, Nandflsh, serial port, USB, etc (2014-12-23, C++, 31KB, 下载3次)

http://www.pudn.com/Download/item/id/2679535.html

[Linux/Unix编程] 3w-xxxx

3ware Storage Controller device driver for Linux.
3ware Storage Controller device driver for Linux. (2014-03-24, Unix_Linux, 17KB, 下载1次)

http://www.pudn.com/Download/item/id/2491762.html

[Linux/Unix编程] taoqianzimulu

linux下如果目录为空目录,则只有.和.这两个也是属于目录类型的本代码使用递归来判断目录及其子目录是否为空目录 /*判断目录是否为空目录*/int IsEmptyDir(char*pszDir){DIR*pstDirp=NULL;struct dirent*pstDirStru=NULL;int ulFileNum=0;int ret=1;char szDir[100];memset(szDir,0,100);pstDirp=opendir(pszDir);if(NULL==pstDirp){printf("open dir error\n");return 0;}while(pstDirStru=readdir(pstDirp)){strcpy(szDir,pszDir);if(DT_DIR==pstDirStru-d_type){if(strcmp(pstDirStru-d_name,".")&&strcmp(pstDirStru-d_name,"."{ret=0;memset(szDir,0,100);sprintf(szDir,"s/s",pszDir,pstDirStru-d_name);IsEmptyDir(szDir);}}else{ret=0;}}closedir(pstDirp);if(ret==1){printf("s is empty dir\n",szDir);}else{printf("is not empty dir\n",szDir);}return ret;}经自己在dedora9下测试通过,希望代码能对大家有点帮助 本文来自: 高校自动化网(Www.zdh1909.com) 详细出处参考(转载请保留本链接):http://www.zdh1909.com/html/linux/12177.html
int IsEmptyDir(char*pszDir){DIR*pstDirp=NULL;struct dirent*pstDirStru=NULL;int ulFileNum=0;int ret=1;char szDir[100];memset(szDir,0,100);pstDirp=opendir(pszDir);if(NULL==pstDirp){printf("open dir error\n");return 0;}while(pstDirStru=readdir(pstDirp)){strcpy(szDir,pszDir);if(DT_DIR==pstDirStru-d_type){if(strcmp(pstDirStru-d_name,".")&&strcmp(pstDirStru-d_name,"."{ret=0;memset(szDir,0,100);sprintf(szDir,"s/s",pszDir,pstDirStru-d_name);IsEmptyDir(szDir);}}else{ret=0;}}closedir(pstDirp);if(ret==1){printf("s is empty dir\n",szDir);}else{printf("is not empty dir\n",szDir);}return ret;} (2011-12-27, C++, 58KB, 下载4次)

http://www.pudn.com/Download/item/id/1743485.html

[Linux/Unix编程] Advanced-Programming-in-the-UNIX-

斯蒂芬罗岛的更新是一个早就应该有利于社会的专​ ​ 业人士使用的UNIX和类UNIX操作系统环境的多功能家庭。它删除过时的,包括新的发展。它也彻底更新所有主题,范例和应用的背景下,最近流行的UNIX和类UNIX环境的实现版本。然而,所有这一切,同时保留原有经典的风格和品味。“ - 穆克什Kacker,Pronto Networks公司,公司的创始人和前首席技术官”UNIX编程的基本经典之一“ - 埃里克S。雷蒙德的UNIX编程艺术“,这是任何严重的或专业的UNIX系统程序员的权威参考书的作者。罗岛已更新和扩展史蒂文斯的经典文本,同时保持真实原。这些API都亮起明确自己的使用例子。他还提到许多的陷阱,寻找跨不同的UNIX系统的实现,并指出如何避免
Stephen Rago s update is a long overdue benefit to the community of professionals using the versatile family of UNIX and UNIX-like operating environments. It removes obsolescence and includes newer developments. It also thoroughly updates the context of all topics, examples, and applications to recent releases of popular implementations of UNIX and UNIX-like environments. And yet, it does all this while retaining the style and taste of the original classic."--Mukesh Kacker, cofounder and former CTO of Pronto Networks, Inc."One of the essential classics of UNIX programming."--Eric S. Raymond, author of The Art of UNIX Programming"This is the definitive reference book for any serious or professional UNIX systems programmer. Rago has updated and extended the classic Stevens text while keeping true to the original. The APIs are illuminated by clear examples of their use. He also mentions many of the pitfalls to look out for when programming across different UNIX system implementations and (2011-11-06, Unix_Linux, 3268KB, 下载4次)

http://www.pudn.com/Download/item/id/1690109.html

[Linux/Unix编程] GNU-CPP-for-Linux-[cn]

在美国,汤姆·斯旺是“鼎鼎大名”的计算机图书作家,他的30余本计算机图书“本本热销”。这些热销图书中的很多种已经翻译成了中文简体版,同样也都成为了国内市场的畅销书。现在汤姆·斯旺再为Linux自由软件世界执笔,写下了Linux系统下C++编程方面的专著。书中介绍了在各种Linux系统下C++工具的差别及编程方法,介绍了面向对象式编程中常常遇到的类、包装、继承等常见课题,介绍了C++的字符串类、各种模板及算法库,还介绍了在X环境下,图形化软件的开发方式,等等。凭借多年写作的经验,汤姆·斯旺的著作,简单易懂,透视主题。他帮助读者,在轻松愉快的环境下,快速掌握相关的编程技术。
In the United States, Thomas Wong is the "famous" of computer book writer, and his more than 30 books in this computer "books selling." The selling of books have been translated into many Chinese Simplified, also the domestic market have become bestsellers. Thomas is now busy re-write for Linux free software world, wrote a Linux system programming in C++ monographs. The book describes a variety of Linux systems in C++ programming tools and the differences introduced object-oriented programming is often encountered in class, packaging, inheritance and other common issues, describes the C++ string class, a variety of templates and algorithm library, also introduced in the X environment, the graphical software development methods, and so on. With many years of writing experience, Thomas Wang s work, easy to understand perspective theme. He helps the reader, in a relaxed environment, to grasp the relevant programming. (2011-09-19, Unix_Linux, 35676KB, 下载11次)

http://www.pudn.com/Download/item/id/1649727.html

[Linux/Unix编程] getIP-impro

本程序用户获取主机的IP地址和MAC地址,头文件与函数原型如下 #include "getIP.h" int get_ip(char *ipaddr, char *netmask, const char *ethname) #include "getIP.h" int get_mac(char *mac) 以下是get_ip函数简单使用范例 //定义IP和MAC所需要的存储空间 char ethname[] = "eth0" char ipaddr[20] //IP地址最长为16个字符 char netmask[20] //子网掩码最长为18个字符 //获取IP地址 get_ip(ipaddr,netmask,ethname) //输出结果 printf(" s\n",ipaddr) printf(" s\n",netmask) 以下是get_mac函数简单使用范例
The program user access to the host' s IP address and MAC address, the following function prototype header file# include " getIP.h" int get_ip (char* ipaddr, char* netmask, const char* ethname) # include " getIP.h" int get_mac (char* mac) use the following simple example is get_ip function// define the IP and MAC need storage space char ethname [] = " eth0" char ipaddr [20] // IP address of up to 16 characters char netmask [20] // mask for up to 18 characters// Obtain an IP address get_ip (ipaddr, netmask, ethname) // output printf (" s \ n" , ipaddr) printf ( " s \ n" , netmask) use the following simple example is get_mac function (2011-09-01, Unix_Linux, 6KB, 下载18次)

http://www.pudn.com/Download/item/id/1636412.html

[Linux/Unix编程] abs_guid_cn

shell 是一个命令解释器.是介于操作系统 kernel 与用户之间的一个绝缘层.准确地说,它也是一种强力的计算机语言.过 将系统调用,公共程序,工具,和编译过的二进制程序粘合在一起来建立应用.事实上,所有的 UNIX 命令和工具再加上公共程序,对于shell脚本来说,都是可调用的.如果这些你还觉得不够,那么 shell 内建命令,比如 test 与循环结构,也会给脚本添加强力的支持和增加灵活性.Shell 脚本对 于 管理系统任务和其它的重复工作的例程来说,表现的非常好,根本不需要那些华而不实的成 熟
shell is a command interpreter. is between the operating system kernel and an insulating layer between users. precisely, it is also a powerful computer language. through the system call, public programs, tools, and compiled binaries bonded together to create application programs. In fact, all the UNIX commands and tools coupled with the public process,对于shell scripts are available Diaoyong' s. If you feel that you Bugou Zhexie, Name shell Neijian commands such as test and the loop structure, will add strong support to the script, and increase flexibility. Shell script management system for the duplication of tasks and other routine work, the performance is very good, do not need those fancy mature (2010-09-08, Unix_Linux, 1098KB, 下载14次)

http://www.pudn.com/Download/item/id/1291414.html

[Linux/Unix编程] Linux-Network-Programming

《Linux网络编程》内容简介:Linux是目前最流行的开源操作系统,网络功能在Linux下占有核心的地位。《Linux网络编程》循序渐进地从应用层到Linux内核、从基本知识点到综合案例,向读者介绍如何在Linux下进行网络程序设计。《Linux网络编程》内容分为4个部分:Linux程序设计基础部分、Linux用户空间网络编程部分、Linux内核网络编程部分以及综合案例部分。内容包含Linux系统概述、Linux编程环境、Linux文件系统简介、Linux下的进程和线程、TCP/IP协议族、应用层网络服务程序、TCP编程、主机信息获取、数据IO复用、UDP编程、高级套接字、套接字选项、原始套接字、服务器模型、IPv6、Linux内核网络部分结构及分布、netfilter框架内报文处理。为了方便读者学习,《Linux网络编程》最后一个部分介绍了3个综合案例,包括应用层的Web服务器例子、简单的应用层网络协议站例子和内核层网防火墙的例子。
"Linux Network Programming" Introduction: Linux is the most popular open source operating systems, network functionality in Linux, occupies the core position. "Linux Network Programming" step by step from the application layer to the Linux kernel, the basic knowledge from the point to the integrated case, the readers how to network programming under Linux. "Linux Network Programming" is divided into four parts: Linux part of program design, Linux user space part of network programming, Linux kernel network programming and integrated case some part. Includes an overview of Linux system, Linux programming environment, Linux File System Introduction, Linux processes and threads under, TCP/IP protocol suite, application layer network services program, TCP programming, host information access, data IO Multiplexing, UDP programming, advanced socket, socket option, the original socket, server model, IPv6, Linux kernel network part of the structure and distribution, netfilter framework of mess (2010-08-08, Visual C++, 1694KB, 下载113次)

http://www.pudn.com/Download/item/id/1262897.html

[Linux/Unix编程] Qt-Whitepaper(CN)

此白皮书介绍了 Qt C++ 框架。Qt 采用“一写永逸”的方法支持开发跨平台的 GUI应用程序。使用单一源码树和简单的重编译式,可以为 Windows 98 至 WindowsXP、Mac OS X、Linux、Solaris、HP-UX 以及其他使用 X11 的 Unix 版本编写各种序。此外,还可以编译在嵌入式 Linux 平台中运行的 Qt 应用程序。Qt 引入了一种名为“信号和槽”的独特对象间通信机制。Qt 还为 2D 和 3D 图形、国际化、SQL、XML、单元测试提供了卓越的跨平台支持,并为特定应用程序提供了针对具体平台的扩展。您可以使QtDesigner(Qt 设计者)(一种支持 IDE 集成的灵活用户界面构建器)构建器来可视化的建立 Qt 应用程序。
This white paper describes the Qt C++ framework. Qt uses "Wing Yi will write" approach to support cross-platform GUI development Application. Using a single source tree and a simple recompile, it can be for the Windows 98 to Windows XP, Mac OS X, Linux, Solaris, HP-UX and other Unix version uses X11 s written procedures. This , But also can compile in the embedded Linux platform running Qt application. Qt introduced called "signals and Trough, "the unique communication mechanism between objects. Qt 2D and 3D graphics also, international, SQL, XML, unit testing provides Excellent cross-platform support, and provide for a specific application, platform-specific extensions. You can use the Qt Designer (Qt designer) (a kind of IDE integration support for flexible user interface builder) to the visual builder Build Qt applications. (2010-06-22, Visual C++, 1270KB, 下载47次)

http://www.pudn.com/Download/item/id/1220325.html

[Linux/Unix编程] source

编译说明 1:需要的基本软件包 gtk+-2.0 libxml 2:编译选项 PREFIX:软件安装位置 CONFIG_FILE:软件配置文件位置 3:编译步骤 make sudo make install 4:使用说明 本程序需要root权限,用sudo执行它 第一次运行会弹出配置对话框,点击确定即保存配置。 5:常见问题 1)对话框提示网络发生错误: 查看命令行输出的调试信息,根据错误信息来确定出错原因。常见错误:无效的网卡=>需要修改网络接口名;操作不允许=>你是否为root用户? 2)程序提示连接成功,但是还上不了网: 用你的系统提供的网络工具把网络接口设为dhcp方式。 修正/usr/local/linkage4l/bin/rc文件,该文件是配置网络调用的shell脚本。
Compile instructions 1: The basic package needed gtk+-2.0 libxml 2: Compile Options PREFIX: software installation location CONFIG_FILE: Software Configuration file location 3: Compile step make sudo make install 4: Use This program requires root privileges, run it with sudo The first run configuration dialog box will pop up, click OK or save configuration. 5: Frequently Asked Questions 1) The dialog box prompts the network error: See the command line output debugging information, based on erroneous information to determine the cause of errors. Common errors: Invalid card => need to modify the network interface name operation does not allow => you whether the root user? 2) The program prompts to connect successfully, but also unable to get online: With your system network interface of network tools to set dhcp mode. Correction/usr/local/linkage4l/bin/rc file, the file is called shell scripts configure the network. (2010-04-14, Unix_Linux, 184KB, 下载5次)

http://www.pudn.com/Download/item/id/1125250.html

[Linux/Unix编程] aodv

基于NS2仿真的AODV协议脚本文件. NS2(Network Simulation Version 2)是一种功能强大的网络模拟仿真器,它是用C++和OTCL两种语言完成的。C++语言编写协议执行模块,OTCL语言编写模拟任务。NS2主要针对有线局域网、无线局域网、Ad Hoc网络、卫星通信网、路由选择协议、组播路由协议等进行网络模拟仿真。
NS2-based simulation of AODV protocol script file. NS2 (Network Simulation Version 2) is a powerful network simulation device, which is the C++, and OTCL done in both languages. C++ language agreed to implement the module, OTCL language simulation tasks. NS2 targeted at wired LAN, wireless LAN, Ad Hoc networks, satellite communications network, routing protocol, multicast routing protocols such as the network simulation. (2010-03-18, tcl/tk, 1KB, 下载295次)

http://www.pudn.com/Download/item/id/1091212.html

[Linux/Unix编程] softhy164h

整站程序 源码介绍: 1、运行环境要求:   Linux/FreeBSD/Solaris+Apache+Mysql 5+PHP5以上版本支持   或Windows+IIS 5/Apache+Mysql 5+PHP5以上版本支持 2、使用FTP工具,将解压后的文件上传至您的空间 3、确认以下目录或文件属性为可写模式:   Inc/Config.inc   install.php   index.php   UpLoadFile 4、输入空间绑定的域名开始安装 安装完后您可以用记事本打开配置文件 Inc/Config.php, 在配置文件中您可以设置网站一共开通几种语言版本,关闭不需要的模块(默认开能所有模块), 关闭一些不需要的选项、字段、并设置缩略图规格、上传限制等参数。 后台目录:admin 管理员:admin 密码:admin 为了您的系统安全,安装后请重命名后台管理目录,默认后台管理目录为"admin", 更改后台目录名后请注意替换Inc/AdminStyle.css中的admin路径;
源码介绍: 1、运行环境要求:   Linux/FreeBSD/Solaris+Apache+Mysql 5+PHP5以上版本支持   或Windows+IIS 5/Apache+Mysql 5+PHP5以上版本支持 2、使用FTP工具,将解压后的文件上传至您的空间 3、确认以下目录或文件属性为可写模式:   Inc/Config.inc   install.php   index.php   UpLoadFile 4、输入空间绑定的域名开始安装 安装完后您可以用记事本打开配置文件 Inc/Config.php, 在配置文件中您可以设置网站一共开通几种语言版本,关闭不需要的模块(默认开能所有模块), 关闭一些不需要的选项、字段、并设置缩略图规格、上传限制等参数。 后台目录:admin 管理员:admin 密码:admin 为了您的系统安全,安装后请重命名后台管理目录,默认后台管理目录为"admin", 更改后台目录名后请注意替换Inc/AdminStyle.css中的admin路径; (2009-06-09, PHP-PERL, 996KB, 下载3次)

http://www.pudn.com/Download/item/id/800229.html

[Linux/Unix编程] ABS_Guide_cn

高级Bash脚本编程指南 这本使用大量的例子详细地介绍了Bash的语法,各种技巧,调试等等的技术,以循序渐进的学习方式,让你了解Bash的所有特性,在书中还有许多练习可以引导你思考,以得到更深入的知识。无论你是新手还是老手,或是使用其他语言的程序员,我能肯定你能在此书用受益。而本书除了介绍BASH的知识之外,也有许多有用的关于Linux/UNIX的知识和其他shell的介绍。
Advanced Bash Scripting Guide The use of a large number of examples of detailed description of the grammar Bash, a variety of techniques, debugging techniques, etc. in an orderly and progressive approach to learning, so that you understand all the features of Bash, in the book there are many practice can lead you to think in order to obtain more in-depth knowledge. Whether you are a novice or a veteran, or to use other language programmers, I am sure you can use to benefit from this book. And introduce this book apart from knowledge of BASH, but also has many useful on Linux/UNIX knowledge and the introduction of other shell. (2008-05-08, Others, 262KB, 下载152次)

http://www.pudn.com/Download/item/id/456163.html

[Linux/Unix编程] Linux_Kernel_CN(1)

本书并不是特意一本Linux 的内部手册相反它是对操作系统的介绍同时以Linux作为示例书中每一章遵循从共性到特性的原则它们将首先给出核心子系统的概叙然后进行尽可能的详细描叙 我不会用routine_X()调用routine_Y()来增加bar 数据结构中foo 域的值这种方式来描叙核心算法 你自己可以通过阅读代码发现它每当需要理解一段代码时我总是将其数据结构画出来这样我发现了许多相关的核心数据结构以及它们之间的关系 每一章都是非常独立的就象Linux 核心子系统一样当然有时它们还是有联系的比如说如果你没有理解虚拟内存工作原理就无法描叙进程 硬件基本概念一章对现代PC 做了简要介绍操作系统必须与硬件系统紧密结合在一起协同工作操作系统需要一些只能够由硬件提供的服务为了全面理解Linux 你必须了解有关硬件的基础知识 软件基本概念一章介绍了软件基本原理与C 程序语言讨论了建立Linux 这样的操作系统的工具并且给出了操作系统的目标与功能的概叙 内存管理这章描叙了Linux 如何处理物理内存以及虚拟存储技术 进程管理描叙了进程的概念以及Linux 核心是如何创建管理与删除系统中的进程 进程间及进程与核心间通讯以协调它们的活动Linux 支持大量进程间通讯IPC
the book is not specifically a Linux internal manual Rather, it was the introduction of the operating system Linux simultaneously in each chapter of the book as an example to follow from the common characteristics of the principles is that they will be the first core subsystems of Syria will then proceed to the detailed depicts as possible, I will not use routine_X () call routine _Y () to increase the bar data structure foo domain of values in this manner, depicts the core algorithm you can read the code when it was found necessary to understand some code, I will always data structure drawn so I found many of the core data structure and the relationship between them each chapter very independent, just like the Linux kernel subsystem of course sometimes they like or linked, for instance if (2005-04-08, Unix_Linux, 1172KB, 下载32次)

http://www.pudn.com/Download/item/id/1112895588185026.html