File System in Linux

Posted SunicYosen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了File System in Linux相关的知识,希望对你有一定的参考价值。

Linux File Systems

0. Introduction

    ext4是Linux流行的File System, 

    mkfs是格式化Disk总的命令,用于在特定的分区上建立 linux 文件系统。

   使用方式 : mkfs [-V] [-t fstype] [fs-options] filesys [blocks]

   参数 

  • device : 预备检查的硬盘分区,例如:/dev/sda1
  • -V : 详细显示模式
  • -t : 给定档案系统的型式,Linux 的预设值为 ext2
  • -c : 在制做档案系统前,检查该partition 是否有坏轨
  • -l bad_blocks_file : 将有坏轨的block资料加到 bad_blocks_file 里面
  • block : 给定 block 的大小

1. EXT4 <- EXT3 <- EXT2

2. FAT (FAT16)

3. VFAT(FAT32)

4. EXFAT

5. NTFS

6. BTRFS

7. 

以上是关于File System in Linux的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 609: Find Duplicate File in System

File System in Linux

key directories in the linux file system

609. Find Duplicate File in System

[LeetCode] Find Duplicate File in System 在系统中寻找重复文件

[LeetCode] Design In-Memory File System 设计内存文件系统