歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Linux下ext2、ext3及reiserfs文件系統祥解

Linux下ext2、ext3及reiserfs文件系統祥解

日期:2017/2/28 17:48:58   编辑:Linux教程

一、什麼是文件系統 (Filesystem);

1、常見定義方法;

什麼是文件系統(filesystem),用一兩句話解答出來,實在有點困難,這個問題只能留給文件系統的設計者或對文件系統精通的專業人士來答復;下面是關於filesystem的定義是我從 Google.com 上搜索到的;下面我們分析一下,對我們來說,了解一下也有好處。如果您是專業人士,如果您有自己的定義方法,請在本文後面留言;謝謝;

定義一;

A directory structure contained within a disk drive or disk area. The total available disk space can be composed of one or more filesystems. A filesystem must be mounted before it can be accessed. To mount a filesystem, you must specify a directory to act as the mount point. Once mounted, any access to the mount point directory or its subdirectories will access the separate filesystem.

文件系統是包括在一個磁盤(包括光盤、軟盤、閃盤及其它存儲設備)或分區的目錄結構;一個可應用的磁盤設備可以包含一個或多個文件系統;如果您想進入一個文件系統,首先您要做的是掛載(mount)文件系統;為了掛載(mount)文件系統,您必須指定一個掛載點;一旦文件系統被掛載,

freebooks.by.ru/view/ShellProgIn24h/31480175.htm

定義二;

A method of organising files on a disk, eg NTFS, FAT.

linux-ntfs.sourceforge.net/ldm/home/terms.html

文件系統是在一個磁盤(包括光盤、軟盤、閃盤及其它存儲設備)或分區組織文件的方法,如NTFS或FAT;

定義三;

A data structure or a collection of files. In Unix, filesystem can refer to two very distinct things, the directory tree or the arrangement of files on disk partitions.

文件系統是文件的數據結構或組織方法。在Unix中,文件系統涉及兩個非常獨特的事情,目錄樹或在磁盤或分區上文件的排列;

www.emulex.com/ts/docfc/glossary.htm

定義四;

the structure of files on a disk medium which is visible via the operating system, ie the structure of files which a Unix user can see using "ls" and other tools

文件系統是基於操作系統的,建立在磁盤媒質上的可見體系結構,例如這種結構對於一個Unix用戶來說可以用ls 或其它工具可以看到;

www.ucolick.org/~de/deimos/glossary.html

定義五;

A software mechanism that defines the way that files are named, stored, organized, and accessed on logical volumes of partitioned memory.

文件系統是基於被劃分的存儲設備上的邏輯上單位上的一種定義文件的命名、存儲、組織及取出的方法;

www.evestigations.com/html/glossary.html

定義六;

In computing, a file system is a method for storing and organizing computer files and the data they contain to make it easy to find and access them. File systems may use a storage device such as a hard disk or CD-ROM and involve maintaining the physical location of the files, or they may be virtual and exist only as an access method for virtual data or for data over a network (e.g. NFS).

在計算機業,一個文件系統是有組織存儲文件或數據的方法,目的是易於查詢和存取。文件系統是基於一個存儲設備,比如硬盤或光盤,並且包含文件文件物理位置的維護;也可以說文件系統也是虛擬數據或網絡數據存儲的方法,比如NFS;

en.wikipedia.org/wiki/Filesystem

Copyright © Linux教程網 All Rights Reserved