|

楼主 |
发表于 2003-4-4 23:25:02
|
显示全部楼层
1. Lightweight Directory Access Protocol
2.
http://thunder.prohosting.com/~l ... nel/linuxkernel.htm
3. http://hostingworks.com/support/dict.phtml?foldoc=HURD
Hurd
The Hurd will be the foundation of the whole GNU system. It
is built on top of the Mach 3.0 kernel, a free
message-passing kernel developed by CMU. Mach's virtual
memory management and message-passing facilities are
extensively used by the Hurd. The GNU C Library will provide
the Unix system call interface, and will call the Hurd for
needed services it can't provide itself.
One goal of the Hurd is to establish a framework for shared
development and maintenance. The Hurd is like GNU Emacs in
that it will allow a broad range of users to create and share
useful projects without knowing much about the internal
workings of the system -- projects that might never have been
attempted without freely available source, a well-designed
interface, and a multi-server-based design.
Currently there are free ports of the Mach kernel to the
Intel 80386 IBM PC, the DEC PMAX workstation, the
Luna 88k and several other machines, with more in
progress, including the Amiga and DEC Alpha-3000
machines. Contact , if you want to help with
one of these or start your own. Porting the GNU Hurd and GNU
C Library is easy (easier than porting GNU Emacs, certainly
easier than porting GCC) once a Mach port to a particular
platform exists.
[June 1994 GNU's Bulletin].
(1994-12-07)
8. ls > ~/ls.list
9. dmesg | less
LDAP:一个目录协议,用来保存一些账户信息
X-WIN又可以说叫图形化界面,REDHAT默认的图形化界面是GNOME
KDE是一种欧洲的版本的图形化界面
至于XFREE86呀,什么的是一些项目名称,86如果没猜错是86年的意思
我瞎猜的,别信哦~
我就知道这几个
二、什么是进程和守护进程???
个人理解进程是程序执行过程中的一步
守护进程就WIN来说,就是EXPLORER
X是一种协议,允许客户端访问远程可能存在的服务器端,FREE是免费,86是CPU的架构
<、>、覆盖原来的文件;<<、>>在原文件后接着写,不改变原来的文件内容
九、管道符号“|”的用法是什么,我不太明白,请举例子
PS|MORE
LS|MORE
进程不用说了 守护进程下可以有很多进程 守护进程要是被 kill则其下的所有进程全都 被kill
举个不太恰当的例子 (线程) 一个运行在IE上的java小游戏 游戏本身有很多线程, 实现游戏各种动作 其中IE是守护线程 如果你关掉IE 则小游戏自然停止运行
进程和线程 理解上差不太多 呵呵 系统要是崩溃 则系统中的所有进程(各种应用程序) 自然中止. 不知道说的对不对 不要见笑
我来回答问题 8 : 八、请把<、>、<<、>>他们的具体用法告诉我,我有点糊涂了。
是这样的 < 和 > 这两个符号是重定向 输入和输出的符号.
通常很多命令是直接将运行的结果显示到屏幕上的, 但是有时我们希望把结果输出到一个文件里,以便将来使用. 这样就用到 > 符号
例如: ls > file.txt ,这个命令并不在屏幕上显示 ls 的结果 ,而是创建 file.txt 文件,将结果写入该文件. 如果文件存在将清空文件,然后写入新的内容, 与 > 相类似的 是 >> , 它的意思是说如果文件存在的话, 则不清除原内容,而是在内容的后面最近输出命令的结果.
例如: date >> file.txt ,由于文件 file.txt ,所以 file.txt 的内容为上面是 ls 的结果,然后下面date 的内容.
< 符号是重定向输入, 有些命令是要跟 文件名做参数的 ,如 cat file.txt ,这是也可以写成 cat < file.txt , 到现在我还没有看到有 << 符号.
管道符号“|”的用法其实很简单. 它是将左面命令的结果输出到又面命令的输入的.这样在一条语句中便简单的组合了两个命令.
例如 ls | wc , 这样 ls将输出的结果不送到屏幕上,而是送给 wc 做参数, 这样 wc 计算 ls 输出的行数, 实际上这条命令 ls | wc -l 的作用是显示当前目录下的文件数目.
好了,写了这么多不知道对你是否有帮助呢
kvm是个切换器,N多的机器可以用一个键盘、鼠标、显示器 |
|