安装 Debian 时自定义 btrfs 子卷

Debian 默认的安装器不支持在安装的时候对 btrfs 子卷进行配置,记录一下在安装过程中自定义 btrfs 子卷的流程。

  1. 启动设备到安装菜单,选择高级安装选项进入二级菜单,选择专家安装。

  2. 执行一般安装步骤,直到磁盘分区步骤。

  3. 磁盘分区,选择手动分区,按喜好进行设置。如创建分区表(gpt)、创建分区(esp、swap、/)、写入等。

  4. 完成磁盘分区后,在进入下一步骤安装基本系统之前,按快捷键 ctrl alt F2 进入 shell。

  5. 按照以下命令执行。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# 查看一下当前文件系统使用情况
df

# 取消挂载准备安装的目标
umount /target/boot/efi
# 如果你单独分区了 boot
umount /target/boot
umount /target

# 将准备安装的目标分区挂载到 /mnt
mount /dev/sdaX /mnt

# 进入 /mnt 并查看内容
cd /mnt
ls

# 可选,如果想使用 Ubuntu 子卷布局的话
mv @rootfs @

# 按自己需求新建子卷
btrfs subvolume create @home
btrfs subvolume create @snapshots
btrfs subvolume create @log
btrfs subvolume create @cache
btrfs subvolume create @tmp
btrfs subvolume create @swap

# 查看子卷情况
btrfs subvolume list .

# 挂载子卷到安装目标
mount -o rw,noatime,subvol=@ /dev/sdaX /target
mkdir -p /target/boot/efi

# 创建子卷对应文件夹
mkdir /target/home
mkdir /target/.snapshots
mkdir /target/var/log
mkdir /target/var/cache
mkdir /target/tmp
mkdir /target/swap

# 挂载新建的子卷
mount -o rw,noatime,subvol=@home /dev/sdaX /target/home
mount -o rw,noatime,subvol=@snapshots /dev/sdaX /target/.snapshots
mount -o rw,noatime,subvol=@log /dev/sdaX /target/var/log
mount -o rw,noatime,subvol=@cache /dev/sdaX /target/var/cache
mount -o rw,noatime,subvol=@tmp /dev/sdaX /target/tmp
mount -o rw,noatime,subvol=@swap /dev/sdaX /target/swap

# 挂载 boot 分区,如有
mount /dev/sdaX /target/boot
# 挂载 esp
mount /dev/sdaX /target/boot/efi

# 编辑 fstab
cd /target/etc/
nano fstab

# 按子卷设置写入,ctrl+x 保存退出
UUID=*** / btrfs rw,noatime,subvol=@ 0 0
UUID=*** /home btrfs rw,noatime,subvol=@home 0 0
UUID=*** /.snapshots btrfs rw,noatime,subvol=@snapshots 0 0
UUID=*** /var/log btrfs rw,noatime,subvol=@log 0 0
UUID=*** /var/cache btrfs rw,noatime,subvol=@cache 0 0
UUID=*** /tmp btrfs rw,noatime,subvol=@tmp 0 0
UUID=*** /swap btrfs rw,noatime,subvol=@swap 0 0

# 退出 shell
exit
  1. 使用快捷键 ctrl alt f1 返回安装界面,按正常步骤继续安装。

关于 swap 子卷配置(摘自 ArchWiki):

To properly initialize a swap file, first create a non-snapshotted subvolume to host the file, e.g.

1
# btrfs subvolume create /swap

Tip: Consider creating the subvolume directly below the top-level subvolume, e.g. @swap. Then, make sure the subvolume is mounted to /swap (or any other accessible location).

Create the swap file:

1
# btrfs filesystem mkswapfile --size 4g --uuid clear /swap/swapfile

If --size is omitted, the default of 2GiB is used.

Activate the swap file:

1
# swapon /swap/swapfile

Finally, edit the fstab configuration to add an entry for the swap file:

1
2
# /etc/fstab
/swap/swapfile none swap defaults 0 0