Upgrading from Ubuntu 11.04 to the next version seems to reinstall Mysql. Any way to ignore MySQL install during OS Update?
Asked
Active
Viewed 2,146 times
1 Answers
2
if you want to avoid that apt-get upgrade update certain package, you can "hold" it in the following way:
Hold a package (do not upgrade):
sudo apt-mark hold <package-name>
disable hold (upgrade package the usual way):
sudo apt-mark unhold <package-name>
for MySQL:
sudo apt-mark hold mysql-server
spaceman117X
- 379
- 2
- 13