nix*: add Korean translation (#14516)

This commit is contained in:
코드싸이
2024-11-02 03:01:32 +09:00
committed by GitHub
parent be3479bebf
commit f76992563a
20 changed files with 479 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# nix-collect-garbage
> 사용되지 않거나 접근할 수 없는 nix 저장소 경로 삭제.
> 세대는 `nix-env --list-generations` 명령어로 나열할 수 있습니다.
> 더 많은 정보: <https://nixos.org/manual/nix/stable/command-ref/nix-collect-garbage.html>.
- 각 프로필의 현재 세대에서 사용되지 않는 모든 저장소 경로 삭제:
`sudo nix-collect-garbage --delete-old`
- 오래된 저장소 경로 삭제 시뮬레이션:
`sudo nix-collect-garbage --delete-old --dry-run`
- 30일보다 오래된 모든 저장소 경로 삭제:
`sudo nix-collect-garbage --delete-older-than 30d`