Possible Duplicate:
How do I upgrade MySQL to 5.5, am I best off waiting for it to be available through apt-get?
This fetches revision 5.1 only:
sudo apt-get install mysql-server
but the latest community server version is 5.5.9
This fetches revision 5.1 only:
but the latest community server version is 5.5.9 |
|||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
apt-get is a tool specific to debian-based linux distributions, and will only download packages from locations specified in /etc/apt/source.lst. To update to 5.5, you will either need to find a repository with the newer builds and add it to your sources.lst, or you'll have to manually download and install one of the packages from mysql's site. |
|||
|
|
You can download RPM package from MySQL download page and convert it using alien. Then you can install .deb package using "dpkg -i". Download RPM package (64bit or 32bit), and run following commands:
That is better than installing from source code, as now files are tracked by dpkg (backend for apt, aptitude and other package managers in Ubuntu). There is no PPA offering newest mysql-server for Ubuntu, at least I couldn't find it. 5.1 is considered as stable mysql, while 5.5 is "upstream version". There will be Ubuntu packages, but good question is when. |
|||
|
|