- hyper-v
//-------------------------------------
기초 준비 작업 : 리눅스 드라이브 단편화 정리(linux drive defrag)
https://www.tecmint.com/defragment-linux-system-partitions-and-directories/
- 디스크 검사
$ sudo umount /dev/sda1
$ sudo e2fsck -fn /dev/sda1
- 폴더 용량 확인
sudo du -shc /usr/local/* | sort -n -r
- 필요없는 파일 삭제
- 단편화 정리
$ sudo apt-get install e2fsprogs
$ sudo e4defrag "<device> or <location>"
//-------------------------------------
diskpart 이용하여 가상 디스크 용량 정리(줄이기, compact)
https://writeabout.net/2021/10/14/shrink-your-wsl2-virtual-disk-on-windows-home/
$ wsl --shutdown
$ diskpart
select vdisk file="가상 디스크(vhdx) 경로"
compact vdisk
//-----------------------------------------------------------------------------
wsl v2.0 새 기능으로 디스크 용량 정리하기
//-------------------------------------
https://github.com/microsoft/WSL/releases
https://devblogs.microsoft.com/commandline/windows-subsystem-for-linux-september-2023-update/
- 개발 버전으로 wsl 최신 업데이트( 버전 업그레이드)
> wsl --update --pre-release
- 용량 정리
https://superuser.com/questions/1606213/how-do-i-get-back-unused-disk-space-from-ubuntu-on-wsl2
.wslconfig 수정
[experimental]
sparseVhd=true
> wsl --manage <distro> --set-sparse true
'IT' 카테고리의 다른 글
MaxOS 복구 방법 (support.apple.com/mac/restore) (0) | 2024.05.12 |
---|---|
WMI(Windows Management Instrumentation) 사용법 (0) | 2024.03.09 |
사진 색상이 '포토샵' 과 '이미지 뷰어' 에서 다르게 보이는 현상 해결 방법 (0) | 2023.08.14 |
[WSL] msrdc.exe , WSLDVCPlugin.dll 관련 에러 해결 방법 (0) | 2023.08.14 |
이미지 뷰어 프로그램 비교 (0) | 2023.08.14 |