dpkg-divert

Debian Linux中創建並管理一個轉向列表

補充說明

dpkg-divert命令 是Debian Linux中創建並管理一個轉向(diversion)列表,其使得安裝文件的默認位置失效的工具。

語法

1dpkg-divert(選項)(參數)

選項

1--add:添加一個轉移文件;
2--remove:刪除一個轉移文件;
3--list:列出匹配的轉移;
4--truename:對應轉移文件真實文件名;
5--quidet:安靜模式。

參數

文件:指定轉移文件名。

實例

指定軟件包wibble安裝時,寫入/usr/bin/example.foo,而不是/usr/bin/example

1dpkg-divert --package wibble --divert /usr/bin/example.foo --rename /usr/bin/example

指定軟件包wibble安裝時,刪除對/usr/bin/example的轉移修改:

1dpkg-divert --package wibble --rename --remove /usr/bin/example

刪除對/usr/bin/example的轉移修改:

1dpkg-divert --rename --remove /usr/bin/example

添加一個軟件包安裝時,寫入/usr/bin/example.foo,而不是/usr/bin/example的修改:

1dpkg-divert --divert /usr/bin/example.foo --rename /usr/bin/example

來源:https://github.com/jaywcjlove/linux-command

最後修改於: Wednesday, January 31, 2024

相關文章:

翻譯: