This document expands upon the official Arch Linux Wiki installation guide by covering some more steps:
- Arch Linux installation on a LUKS2 container on Btrfs
- Microsoft Windows 10/11 installation with BitLocker
| #!/usr/bin/env bash | |
| # | |
| # find_affected_files.sh | |
| # | |
| # Identifies files affected by bad sectors in a ddrescue rescue. | |
| # Reads the ddrescue mapfile, locates each bad region within the image's | |
| # partitions, and uses ntfscluster (for NTFS) to map sectors to file paths. | |
| # | |
| # Usage: sudo ./find_affected_files.sh | |
| # |
| --- | |
| services: | |
| ollama-server: | |
| image: ollama/ollama:latest | |
| container_name: ollama-server | |
| ports: | |
| - "11434:11434" | |
| volumes: | |
| - ./ollama-data:/root/.ollama |
This document expands upon the official Arch Linux Wiki installation guide by covering some more steps: