https://github.com/alainpham/debian-os-image
https://github.com/alainpham/debian-os-image
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alainpham/debian-os-image
- Owner: alainpham
- Created: 2024-07-18T12:02:22.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-03-17T08:49:42.000Z (3 months ago)
- Last Synced: 2025-03-17T09:42:39.646Z (3 months ago)
- Language: Shell
- Size: 240 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme-btrfs.md
Awesome Lists containing this project
README
1. Expert install
2. Format btrfs
3. `CTRL + ALT + F2` to access shell```bash
umount /target/boot/efi/
umount /target/
mount /dev/sda2 /mnt
cd /mnt
mv @root @
btrfs subvolume create './@home'
mount -o rw,noatime,space_cache=v2,compress=zstd,ssd,discard=async,subvol=@ /dev/sda2 /targetmkdir -p /target/boot/efi
mkdir -p /target/homemount -o rw,noatime,space_cache=v2,compress=zstd,ssd,discard=async,subvol=@home /dev/sda2 /target/home
mount /dev/sda1 /target/boot/efi/nano /target/etc/fstab
```
3. `CTRL + ALT + F1` to access shell