Na página do manual do apt-get,
-s, --simulate, --just-print, --dry-run, --recon, --no-act No action; perform a simulation of events that would occur but do not actually change the system. Configuration Item: APT::Get::Simulate. Simulation run as user will deactivate locking (Debug::NoLocking) automatic. Also a notice will be displayed indicating that this is only a simulation, if the option APT::Get::Show-User-Simulation-Note is set (Default: true). Neither NoLocking nor the notice will be triggered if run as root (root should know what he is doing without further warnings by apt-get). Simulate prints out a series of lines each one representing a dpkg operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets indicate broken packages and empty set of square brackets meaning breaks that are of no consequence (rare).
Portanto, certifique-se de ter apt-get -s upgrade
.
Se você quiser atualizar alguns pacotes, apenas apt-get install <package name>
e ele será atualizado se já estiver instalado. No entanto, também terá que atualizar todas as dependências e, dependendo do que for, pode entrar em cascata em muitas atualizações.
Se eu estiver atrasado nas atualizações de pacotes, farei um apt-get install
em alguns dos grandes (talvez php, apache2 etc.) para que eu possa mantê-los contidos e verificar quaisquer problemas e, em seguida, apt-get upgrade
depois que eu terminar.