๋ผ์ฆ๋ฒ ๋ฆฌํ์ด 5์์ NVMe SSD๋ฅผ ZFS๋ก ์ด๊ธฐํํ๊ณ ๋ผ์ฆ๋ฒ ๋ฆฌํ์ด OS๋ฅผ ์ค์นํ ํ ๋ถํ ํ๋ ๋ฐฉ๋ฒ์ ๋จ๊ณ๋ณ๋ก ์ค๋ช ํด ๋๋ฆฌ๊ฒ ์ต๋๋ค.
- ๋จผ์ ZFS๋ฅผ ์ค์นํฉ๋๋ค:
sudo apt update
sudo apt install zfsutils-linux
https://unix.stackexchange.com/a/669602 |
#!/bin/bash | |
set -e | |
PACKAGES="raspberrypi-kernel-headers zfs-dkms zfsutils-linux curl cryptsetup lvm2 lsof grub-efi-arm64" | |
ZFS_MODULE="zfs" | |
MOUNT_POINT="/mnt/newroot" | |
IMAGE_URL="https://downloads.raspberrypi.org/raspios_lite_arm64_latest" | |
IMAGE_FILE="raspios_lite_arm64_latest.img" | |
COMPRESSED_FILE="${IMAGE_FILE}.xz" |
/* EDIT MODE */ | |
.canvas-node .HyperMD-header.HyperMD-header-1 { | |
text-align: center; | |
} | |
/* PREVIEW MODE */ | |
.canvas-node .markdown-preview-view h1 { | |
text-align: center; |
{ | |
"$schema": "", | |
"type": "object", | |
"properties": { | |
"author": { | |
"type": "string" | |
}, | |
"extensions": { | |
"type": {"string"} | |
} |
import datetime as dt | |
class Color(): | |
red = "\x1b[31m" | |
green = "\x1b[32m" | |
yellow = "\x1b[33m" | |
blue = "\x1b[34m" | |
white = "\x1b[37m" | |
bold = "\x1b[1m" |
์ปค๋ฐ ๋ฉ์์ง ์คํ์ผ์ ์ฝ๊ฐ ๋ฐ๊ฟ์ผ๋ก์จ ์ด๋ป๊ฒ ๋ ๋์ ํ๋ก๊ทธ๋๋จธ๊ฐ ๋ ์ ์๋์ง ์์๋ณด์ธ์.
ํฌ๋ฉง:
<ํ์ >(<์ค์ฝํ>): <์งง์ ์์ฝ>
Format:<type>(<scope>): <short summary>
<scope>
๋ ์ ํ์ ์ ๋๋ค.
root = true | |
[*.tsx] | |
indent_style = space | |
indent_size = 2 | |
# semicolon | |
ij_typescript_force_semicolon_style = false | |
ij_typescript_space_before_for_semicolon = false | |
ij_typescript_use_semicolon_after_statement = false |