
| Yukun Liu(刘玉坤) 河北科技大学计算机系副教授,英国贝德福特大学应用计算研究所博士研究生。 Yong Yue(岳勇) 英国贝德福特大学教授,应用计算研究所主任,计算机科学与技术系执行主任。 Liwei Guo(郭立炜) 河北科技大学教授,信息科学与工程学院院长。 .. << 查看详细 |
| 《unix操作系统:依据unix内核服务的开发指南(英文版)》 1 background of unix operating system 1.1 introduction of operating system 1.2 types of unix 1.3 history of unix 1.4 summary problems references 2 how to start 2.1 unix software architecture 2.1.1 unix kernel 2.1.2 system call interface 2.1.3 standard libraries and language libraries 2.1.4 unix shell 2.1.5 applications 2.2 unix environment 2.3 character user interface versus graphical user interface 2.4 unix command lines 2.4.1 unix command syntax 2.4.2 directory operation commands .2.4.3 file operation commands 2.4.4 displaying online help 2.4.5 general utility commands 2.4.6 summary for useful common commands 2.5 unix window systems 2.5.1 starting x 2.5.2 working with a mouse and windows 2.5.3 terminal window 2.5.4 using a mouse in terminal windows 2.6 shell setup files 2.7 summary problems references 3 text editors 3.1 difference between text editors and word processors 3.2 introduction of pico editor 3.2.1 start pico, save file, exit pico 3.2.2 create a new file with pico 3.2.3 cursor-moving commands in pico 3.2.4 general keystroke commands in pico 3.3 the vi editor and modes 3.3.1 three modes of the vi and switch between them 3.3.2 start vi, create a file, exit vi 3.3.3 syntax of the vi commands 3.4 practicing in insert mode of the vi editor 3.5 practicing in command mode and last line mode of the vi editor 3.6 using buffers of the vi editor 3.7 the vi environment setting 3.8 introduction of the emacs editor 3.8.1 start emacs, create file, exit emacs 3.8.2 buffers, mark and region in emacs 3.8.3 cursor movement commands 3.8.4 keyboard macros 3.8.5 search and replace 3.8.6 operation example 3.8.7 programming in emacs 3.9 summary problems references 4 unix process management 4.1 multiple processes' running concurrently 4.1.1 fundamental concept for scheduler and scheduling algorithm 4.1.2 unix scheduling algorithm and context switch 4.2 process states 4.2.1 fundamental concept for process states 4.2.2 unix process states 4.3 process image and attributes 4.3.1 unix process attributes in kernel 4.3.2 unix process attributes from user angle 4.4 creating a process in unix 4.4.1 fork system call 4.4.2 how unix kernel to execute shell commands 4.5 process control 4.5.1 running command in foreground or in background 4.5.2 more concepts about process concurrently execution in unix 4.5.3 unix inter-process communication 4.5.4 unix signals 4.5.5 termination of processes 4.5.6 daemons--unix background "guardian spirits" 4.6 unix system boot and init process 4.7 summary problems references 5 unix memory management 5.1 outline of memory management 5.1.1 evolution of memory management 5.1.2 memory allocation algorithms in swapping 5.1.3 page replacement algorithms in demand paging 5.2 process swapping in unix 5.2.1 swapped content 5.2.2 timing of swapping 5.2.3 allocation algorithm 5.2.4 selection principle of swapped processes 5.2.5 swapper 5.2.6 swapping effect 5.3 demand paging in unix 5.3.1 demand paging 5.3.2 page replacement 5.4 summary problems references 6 unix file system 6.1 unix file system structure 6.1.1 file system organization 6.1.2 home and working directories 6.1.3 absolute and relative pathnames 6.1.4 unix inodes and data structures for file system 6.2 unix file concept and types of files 6.2.1 types of files 6.2.2 ordinary files 6.2.3 directories 6.2.4 special files 6.2.5 pipes 6.2.6 sockets 6.2.7 link files 6.3 managing files and directories 6.3.1 displaying pathname for home directory and changing directories 6.3.2 viewing directories and file attributes 6.3.3 creating directories and files 6.3.4 displaying type of a file 6.3.5 making lines in file ordered 6.3.6 searching strings in files 6.3.7 the eof and crtl-d 6.4 file and directory wildcards 6.5 unix file storage and file system implementation 6.5.1 file system physical structure and allocation strategies 6.5.2 inode, inode list and inode table 6.5.3 disk physical structure and mapping pathname to inode 6.5.4 file descriptors 6.5.5 system calls for file system management 6.5.6 standard files 6.6 summary problems references 7 unix i/o system, i/o redirection and piping 7.1 standard input and output, standard files 7.1.1 standard input and output 7.1.2 standard input, output and error files 7.2 input redirection 7.2.1 input redirection with [ operator 7.2.2 input redirection with file descriptor 7.3 output redirection 7.3.1 output redirection with ] operator 7.3.2 creating a file with output redirection 7.3.3 output redirection with file descriptor 7.4 appending output redirection 7.4.1 appending output redirection with ]] operator 7.4.2 appending output redirection with the file descriptor 7.5 standard error redirection 7.5.1 error redirection by using file descriptor 7.5.2 appending error redirection by using file descriptor 7.5.3 error redirection in c shell 7.6 combining several redirection operators in one command line 7.6.1 combining input and output redirections in one command line 7.6.2 combining output and error redirections in one command line 7.6.3 combining input, output and error redirections in one command line 7.6.4 combining appending redirection with other redirections in one command line 7.7 unix pipes and filters 7.7.1 concepts of pipe and filter 7.7.2 examples of pipes and filters 7.7.3 combining pipes and i/o redirections in one command line 7.7.4 practical examples of pipes 7.7.5 pipes in c shell 7.7.6 named pipes 7.8 unix redirection and pipe summary 7.9 i/o system implementation in unix 7.9.1 i/o mechanisms in unix 7.9.2 block special files and buffer cache 7.9.3 character special files and streams 7.9.4 sockets for networks in unix 7.10 summary problems references 8 unix shell introduction 8.1 variety of unix shells 8.1.1 shell evolution 8.1.2 login shell 8.2 unix shell as a command interpreter 8.2.1 shell internal and external commands 8.2.2 shell's interpreting function 8.2.3 searching files corresponding to external commands 8.3 environment variables 8.3.1 some important environment variables 8.3.2 how to change environment variables 8.3.3 displaying the current values of environment variables 8.4 switching between unix shells 8.4.1 why to change shell 8.4.2 how to change shell 8.4.3 searching for a shell program 8.5 shell metacharacters 8.6 summary problems references 9 how to program in bourne shell (1) 9.1 bourne shell scripts 9.1.1 simplified structure of bourne shell scripts 9.1.2 program headers and comments 9.1.3 exit command 9.2 shell variables 9.3 bourne shell variable commands 9.3.1 reading shell variables 9.3.2 assignment statement 9.3.3 resetting variables 9.3.4 exporting variables 9.3.5 making variables read-only 9.3.6 reading standard input 9.4 shell scripts' argument transport 9.4.1 shell positional parameters 9.4.2 setting values of positional parameters 9.4.3 shift command 9.5 how to execute a bourne shell script 9.5.1 setting file access permissions 9.5.2 one way to make bourne shell script executable 9.5.3 another way to make bourne shell script executable 9.6 program control flow statement (a): if statement 9.6.1 the simplest if statement 9.6.2 the test command 9.6.3 the if statement with the else keyword 9.6.4 integral structure of if statement 9.7 program control flow statement (b): for statement 9.7.1 the for statement with a word list 9.7.2 the for statement without a word list 9.8 summary problems references 10 how to program in bourne shell (2) 10.1 program control flow statement (c): case statement 10.2 program control flow statement (d): while statement 10.3 program control flow statement (e): until statement 10.4 program control flow statement (f): break and continue commands 10.4.1 the break command 10.4.2 the continue command 10.5 processing numeric data 10.6 the exec command 10.6.1 execution function of the exec command 10.6.2 redirection function of the exec command 10.7 bourne shell functions 10.7.1 defining function 10.7.2 calling function 10.8 how to debug shell scripts 10.9 summary problems references 11 unix in internet and computer networking 11.1 unix's contribution to development of computer networking 11.2 general concepts of computer networks and internet 11.2.1 request for comments 11.2.2 computer networks and internet 11.2.3 client-server vs peer-to-peer models 11.2.4 tcp/ip and iso models 11.2.5 tcp/ip protocol suite 11.3 encapsulation and demultiplexing 11.4 networking operating systems 11.5 ip protocol 11.5.1 ip header 11.5.2 ipv4 addressing 11.5.3 ipv4 routing 11.5.4 two commands, ping and traceroute 11.6 tcp protocol and applications 11.6.1 tcp segment, header and services 11.6.2 tcp applications 11.7 udp protocol and applications 11.7.1 udp protocol 11.7.2 udp applications 11.8 summary problems references index |
商品评论(0条)