Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Management and Application of btrfs

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Btrfs file system (only available in centos 7. 0). )

Btrfs (usually pronounced Butter FS), a COW (copy-on-write) file system in progress announced by Oracle in 2007. The goal is to replace Linux's current ext3 file system and improve ext3 restrictions, especially the single file size limit, the total file system size limit, and the addition of file checksum features. Add some features that are not currently supported by ext3/4, such as writable disk snapshots (snapshots), recursive snapshots (snapshots of snapshots), built-in disk array (RAID) support, support the concept of subvolumes (Subvolumes), and allow file system resizing online.

Core features of btrfs

Multi-physical volume support: btrfs can be composed of multiple underlying physical volumes; RAID is supported to "add", "remove" and "modify" online

Copy update mechanism on write (CoW): copy, update, and replace pointers, rather than "in-place" updates. That is, when we modify a file, we will not directly modify the source file, but copy a copy and then modify the copied file and point the pointer of the source file to the copied file.

Data and metadata check code: when storing each file, the data check code and metadata check code are saved through some extensions of the file, and each file is read to quickly check whether the file is damaged. If damage is detected, it will automatically try to repair it.

Sub-volume: sub_volume. Each sub-volume can be mounted independently

Snapshot: Btrfs supports the creation of snapshots (snapshot), clones (clone), and snapshots of snapshots

Transparent compression: when any data stream is sent to the btrfs file system, it can automatically compress and store the data by occupying the clock cycle of the CPU, and automatically decompress the file when it needs to be read. It saves space, but costs CPU clock cycles.

File system creation:

Mkfs.btrfs

-Lhasa Labelle'

-d: raid0, raid1, raid5, raid6, raid10, single

-m: raid0, raid1, raid5, raid6, raid10, single, dup

-O

-Olist-all: lists all supported feature

Here are the two disks I created.

[root@localhost ~] # fdisk-l

Disk / dev/sda: 21.5 GB, 21474836480 bytes

255 heads, 63 sectors/track, 2610 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x0003b92c

Device Boot Start End Blocks Id System

/ dev/sda1 * 1 64 512000 83 Linux

Partition 1 does not end on cylinder boundary.

/ dev/sda2 64 2611 20458496 8e Linux LVM

Disk / dev/mapper/VolGroup-lv_root: 18.9 GB, 18865979392 bytes

255 heads, 63 sectors/track, 2293 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Disk / dev/mapper/VolGroup-lv_swap: 2080 MB, 2080374784 bytes

255 heads, 63 sectors/track, 252 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Property View:

Btrfsfilesystem show

Mount the file system:

Mount-t btrfs / dev/sdb MOUNT_POINT

Transparent compression mechanism:

Mount-o compress= {lzo | zlib} DEVICE MOUNT_POINT

Here subcommands: filesystem,device, balance, subvolume

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report