apt-get --purge remove {package_name}
ฉันได้รับการถอนการติดตั้งการใช้งานเช่นเดียวกับการลบหรือล้างแฟ้มการกำหนดค่าของตนโดยใช้คำสั่ง
ฉันได้เจอหลายโพสต์ในเน็ตรวมทั้งคู่มือของ Ubuntu ที่https://help.ubuntu.com/community/AptGet/Howtoที่อ่านเมื่อเพียงแค่ใช้คำสั่ง"This command completely removes a package and the associated configuration files. Configuration files residing in ~ are not usually affected by this command"
apt-get purge {package_name}
มีความแตกต่างในการทำงานคำสั่งapt-get --purge remove {package_name}
และapt-get purge {package_name}
? ทำไมคุณถึงใช้อันอื่น?
dpkg -l | grep '^rc' | awk '{print $2}' | xargs dpkg --purge
(คำสั่งจากhelp.ubuntu.com/community/AptGet/Howto )