우분투 위키 에 따르면 dpkg
문서를 설치하지 말라고 지시 할 수 있습니다 . 이로 인해 apt가 모든 문서 (저작권 정보 제외)를 설치하지 못하게됩니다.
/etc/dpkg/dpkg.cfg.d/01_nodoc
원하는 필터를 지정 하는 파일 을 작성하십시오 . 예:
path-exclude /usr/share/doc/*
# we need to keep copyright files for legal reasons
path-include /usr/share/doc/*/copyright
# if you also want to remove the man pages uncomment the next line
#path-exclude /usr/share/man/*
path-exclude /usr/share/groff/*
path-exclude /usr/share/info/*
# lintian stuff is small, but really unnecessary
path-exclude /usr/share/lintian/*
path-exclude /usr/share/linda/*
그런 다음 이미 설치된 모든 문서를 수동으로 제거 할 수 있습니다.
find /usr/share/doc -depth -type f ! -name copyright|xargs rm || true
find /usr/share/doc -empty|xargs rmdir || true
rm -rf /usr/share/groff/* /usr/share/info/*
rm -rf /usr/share/lintian/* /usr/share/linda/* /var/cache/man/*
매뉴얼 페이지도 제거하려면 다음을 수행하십시오.
rm -rf /usr/share/man/*
이 예제는 OEM을 위해 작성되었지만 나에게도 효과적이었습니다. 내 /usr/share/doc/
디렉토리를 ~ 150MB에서 ~ 20MB로 줄였습니다.