从现在开始,每天一点点……

发布新日志

  • 文件系统基础

    2008-10-09 12:24:17

    1.Linux文件系统是“倒置树”,其根目录 "/"

    2.文件的相对(relative)引用和绝对(absolute)引用

      绝对(absolute)引用:相对于根目录的文件

      相对(relative)引用:相对于进程中当前工作目录(current working directory 即cwd)的文件

    3.每个用户都会有指定的主目录(home directory),通常为/home下的子目录;超级用户的主目录为/root

    4./tmp目录为通用临时空间

    5./bin 和/usr/bin目录下放置常用的可执行文件。如:系统必须的核心工具命令:ls,cd,cp,mv和文本编辑vi等放在/bin目录中;辅助工具如编译器、网页浏览器和办公软件存放在/usr/bin

    6./sbin 和/usr/sbin 为超级用户保存命令文件。如:安装和删除硬件,启动关闭系统及进行系统维护的命令

    7./etc 包含系统配置文件

    8./var 放置一些经常变化的文件

    9.pwd(print working directory)显示bash shell 的当前工作目录;

    10.cd(change directory)改变bash shell的当前工作目录;"."当前工作目录;".."父目录; "~"用户主目录,默认状态下,若没指定目录,cd会使用~;"-"上个工作目录

     

  • 内核、程序与进程

    2008-10-09 10:49:18

    1、Linux 内核是一种操作系统,为进程提供运行环境。

      操作系统是程序的运行环境,为程序和计算机硬件之间的交互提供机制

    2、程序是存储在计算机硬盘里的文件(是文件系统中的可执行文件)。

      计算机可执行的任务取决于不同的CPU,并且不同的操作系统用不同的方式对任务进行编号,所以为一种操作系统编译的程序一般不能再另一种操作系统上使用。

    3、进程是正在运行程序的实例。

    4、Linux使用Shell和内核进行交互。

  • Benefits of Automated Testing

    2008-03-13 11:04:34

    Fast
    QuickTest runs tests significantly faster than human users.
    Reliable
    Tests perform precisely the same operations each time they are run, thereby eliminating human error.
    Repeatable
    You can test how the Web site or application reacts after repeated execution of the same operations.
    Programmable
    You can program sophisticated tests that bring out hidden information.
    Comprehensive
    You can build a suite of tests that covers every feature in your Web site or application.
    Reusable
    You can reuse tests on different versions of a Web site or application, even if the user interface changes.
232/2<12
Open Toolbar