我正在使用 命令对包进行测试apt-get --dry-run
,但是我没有使用sudo
。不使用 是否会sudo
以某种方式影响结果,或者sudo
对于这样的模拟来说没有必要?
答案1
apt-get --dry-run
当你在没有的情况下运行时sudo
,你会收到警告:
NOTE: This is only a simulation!
apt-get needs root privileges for real execution.
Keep also in mind that locking is deactivated,
so don't depend on the relevance to the real current situation!
因此最好使用sudo
真实的测试。