简单地将Debian11 安装到f2fs文件系统中
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
的支持了