Sometimes it does this:

After this operation, 713kB of additional disk space will be used.
Do you want to continue [Y/n]?

And sometimes not, and just assumes 'yes' and downloads automatically (I can't paste the actual output because I don't know how to reproduce it).

Why?

link|improve this question

feedback

2 Answers

up vote 14 down vote accepted

The confirmation dialog will not only appear when you would install packages you didn't ask for, but also in the following cases:

  • Installing packages that you didn't specifically want to install
  • Removal of essential packages
  • Changing a held package (a held package is one you want to keep in the version currently installed)

You can override it with one of the following switches:

  • -y
  • -yes
  • --assume-yes

Which acts as if you answered yes to all those questions. However, prompts for essential packages will still be displayed for safety reasons.

Essential packages:

Essential is defined as the minimal set of functionality that must be available and usable on the system at all times, even when packages are in an unconfigured (but unpacked) state.

Thanks to @Liori for pointing that out.

link|improve this answer
Essential packages: debian.org/doc/debian-policy/ch-binary.html#s3.8 – liori May 23 '11 at 13:18
feedback

If it needs to install more than the packages you explicitly asked for, it'll ask for permission, else it won't, i believe. If its an annoyance, you can use the -y switch to automatically assume yes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.