ตามวิกิพีเดียของ Ubuntuคุณสามารถแนะนำ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/*
หากคุณต้องการลบ man pages ออกด้วย:
rm -rf /usr/share/man/*
ตัวอย่างนี้เขียนขึ้นสำหรับ OEM แต่ก็ใช้ได้ดีสำหรับฉันเช่นกัน เอา/usr/share/doc/
ไดเรกทอรีของฉันลงจาก ~ 150MB ถึง ~ 20MB