Theo wiki Ubuntu , bạn có thể hướng dẫn dpkg
không cài đặt bất kỳ tài liệu nào. Điều này sẽ ngăn bất kỳ tài liệu nào (ngoại trừ thông tin bản quyền) được cài đặt bởi apt.
Tạo một tệp /etc/dpkg/dpkg.cfg.d/01_nodoc
chỉ định các bộ lọc mong muốn. Thí dụ:
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/*
Sau đó, bạn có thể xóa thủ công mọi tài liệu đã được cài đặt:
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/*
Nếu bạn cũng muốn xóa các trang man, hãy làm:
rm -rf /usr/share/man/*
Ví dụ này được viết cho các OEM, nhưng nó cũng hoạt động tốt với tôi. Lấy /usr/share/doc/
thư mục của tôi xuống từ ~ 150MB xuống ~ 20MB.