Debian
apt-get update --dry-run
命令不再起作用
在較舊的系統上,該命令
apt-get update --dry-run
確實有效,並且對於檢查真正的命令是否有效非常有用。對於較新的版本,我們有:
$ apt-get update --dry-run E: Command line option --dry-run is not understood in combination with the other options
有替代方案嗎?
注意:如果有人敢問“你為什麼要這樣做?”,我會回答“為什麼不再可能了?” !:)
我剛剛測試了
apt-get update --dry-run
在喘息系統上的行為。如果我從 /var/lib/apt/lists 中刪除列表文件之一,則會apt-get update --dry-run
下載失去的文件。這向我表明,
apt-get update --dry-run
與 simple 做同樣的事情apt-get update
。該
--dry-run
選項可能不再有效,因為它使人們誤以為它沒有修改系統,而事實上有證據表明它是。