{$cfg_webname}
主页 > 计算机 > Linux >

基于Linux系统简易Shell设计与实现(unix,C语言)含录像

来源:56doc.com  资料编号:5D11859 资料等级:★★★★★ %E8%B5%84%E6%96%99%E7%BC%96%E5%8F%B7%EF%BC%9A5D11859
资料以网页介绍的为准,下载后不会有水印.资料仅供学习参考之用. 帮助
资料介绍

基于Linux系统简易Shell设计与实现(unix,C语言)含录像(任务书,外文翻译,毕业论文20000字,程序代码,答辩PPT)
摘 要
Shell的开发与使用是linux操作系统日渐普及的产物。而对于微型linux shell的研究是linux研究的重点。利用微型的shell,不仅可以让用户更容易操作linux,也可以帮助用户理解linux工作原理,同时保护内核的安全性。本文对shell的研究包括对其功能的了解,并实现对shell的列表、管道、输入重定向、输出重定向等命令功能,可以比较全面地认识shell解释器,编写出可以实现的各种功能的具体代码,这样来编写一个简易的linux shell解释器。在本文中所编写的shell是专门用于嵌入式设备的,在此类设备中,往往存储量小,功耗较低,但是对要求很苛刻,所以有一定的难度。
本文的主要内容现先是介绍了一下shell的发展历史、特点和应用前景,紧接着解释shell与嵌入式的关系,大致了解一下linux与安卓在嵌入式开发中的地位。还罗列了shell的开发技术与unix系统编程。最终详细设计了shell的工作原理,并且附上了相关源代码,使得读者有一个大致了解。本系统全程采用C语言与unix系统高级编程开发,由本人独立完成。
本系统对嵌入式开发人员操作linux系统内核与文件系统有较大帮助。
关键词:Shell;程序;设计与实现;嵌入式
 
Design and development of linux shell system
Abstract
Accompanied by the popularize of the linux, more and more people are doing deeply study in it. The study of the shell in linux is the most important thing when study the linux. And how to study? It mainly includes the understand of some knowledge and function of the micro linux shell. Through the study of the orders in shell like list, pipe, input redirect and output redirect, readers can have a thorough sense about the shell and learn to use these orders accurately in shell which play an important role in programming later. Code accurately and achieve  a simple shell with the functions above after analyzing the details of every functions module.
Moreover, in the embedded field, the hardware resources are limited, but demand is unlimited. This means they have to use limited resources to accomplish a variety of needs, and embedded design and programming in the traditional PC, is very different, and it often requires only a small part of a large program on meet its needs, so we had to cut out a number of use less programs in exchange for space. In the embedded field, as the traditional K shell, C shell, Bourne Shell and other large-scale shell program will make our hardware resources are stretched. So we need a more suitable for embedded systems used in the shell, this is my another objective of this design.
Keywords: Shell; Process; Design and achieve; embedded

 

基于Linux系统简易Shell设计与实现(unix,C语言)
基于Linux系统简易Shell设计与实现(unix,C语言)


目  录
摘 要    i
Abstract    ii
前 言    1
1  绪论    2
1.1  Shell的使用    2
1.2  嵌入式linux    2
1.3  嵌入式linux应用特点    3
1.4  发展前景    4
2  Linux Shell与嵌入式简介    5
2.1  shell 的定义    5
2.1.1  UNIX Shell    6
2.1.2  Linux Shell    6
2.2  shell的历史    7
2.3  shell的作用    7
2.4  shell的职责    8
2.5  嵌入式简介    8
2.6  安卓与linux    10
3  Linux Shell的设计及相关技术    13
3. 1  简单shell设计思想    13
3.2  复杂shell设计思想    13
3.2.1  作业及作业前后调度实现方法    13
3.2.2  管道    13
3.3 相关函数介绍    14
4  Myshell的实现    20
4.1  Myshell简介    20
4.2  Myshell的具体实现(附代码)    20
4.2.1  main主函数的实现    20
4.2.2  分功能的实现    24
5  效果图    25
参考文献    31
致 谢    32
外文原文    33
中文翻译    39

推荐资料