14 lines
498 B
Markdown
14 lines
498 B
Markdown
Dedibox Scaleway Online.net
|
|
|
|
## Installation btrfs /data
|
|
|
|
* Create big `/data/` disk as `ext4` (via webgui)
|
|
* `umount /data`
|
|
* Install btrfs tools: `apt install btrfs-progs`
|
|
* List disks: `fdisk -l`
|
|
* Format whole partition to btrfs: `/sbin/mkfs.btrfs -f /dev/sda4`
|
|
* Install neovim: `apt install neovim`
|
|
* Get disk UUID: `blkid`
|
|
* Add entry in fstab:
|
|
* `UUID=2e4ffa36-579c-4c46-8cca-0f3ba79f5e21 /data btrfs noatime 0 0`
|
|
* `systemctl daemon-reload && mount -a && df -h` |