f2fs文件系統簡介:
F2FS (Flash-Friendly File System) 是一個為配備了 Flash Transition Layer 的 NAND 閃存開發的文件系統。
它能夠有效的延長SSD的使用壽命;對4K左右的細碎小文件,有非常明顯的讀寫速度提升;對於隨機訪問也有優秀的表現。所以我選擇使用F2FS
文件系統
准備
我們需要一個Debian 11
的Live
鏡像,以便進入Live系統中,來實現簡單方便地安裝到F2FS
文件系統中
本文中選擇的是debian-live-11.0.0-amd64-kde.iso
安裝
進入Live鏡像
進入燒錄好的系統鏡像后,選擇進入Live鏡像。
修改apt源為清華源:vi /etc/apt/sources.list
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
執行sudo apt update
更新源
添加對F2FS的支持
在終端下輸入sudo apt install f2fs-tools
添加對F2FS
文件系統的支持
執行安裝程序
回到桌面,點擊Debian Installer
,在硬盤分區部分選擇手動分區,就能看到對F2FS
的支持了