Link to home
Start Free TrialLog in
Avatar of sargent240
sargent240Flag for United States of America

asked on

Linux Mint

I am using Linux Mint and as suggested by several postings on the internet I am trying to install MySQL with the following command.

sudo apt-get install mysql-server-core-5.5

I get the following error.

Err http://archive.ubuntu.com/ubuntu/ quantal-updates/main mysql-server-core-5.5 i386 5.5.28-0ubuntu0.12.10.1
  404  Not Found [IP: 91.189.92.200 80]

Any ideas?  THANKS!
Avatar of bigeven2002
bigeven2002
Flag of United States of America image

Hello,

According to the link below, looks like the file given in your install syntax is incorrect, hence the file not found error.  It should be like so:

apt-get install mysql-client
apt-get install mysql-server

Open in new window

http://thechemicallinux.wordpress.com/2013/06/25/easy-installation-of-mysql-in-linux-mint-15/
I did some testing on this in a virtual environment on a fresh Linux Mint install.  I had to do the following:
sudo apt-get install mysql-client-5.5

Open in new window

Avatar of Seth Simmons
@bigeven2002 - the author has mint based off of ubuntu quantal which is version 14, not 15

http://www.linuxmint.com/oldreleases.php

also, the syntax itself is correct.  if you only put part of the package name with *, i see mysql-server-core-5.5 is on the list

i tried the same thing in mint 14 and also got a 404.  you need to do sudo apt-get update and give it a couple minutes to do its thing then install mysql-server-core-5.5 again.  i just did this on my system and it installed
@Seth, thanks for the clarification, I wasn't aware.  I had just recently begun using v15, so another thing new learned for me.  :)
Avatar of sargent240

ASKER

Thanks to you both.  The answer that allowed me to load mysql was the update.  Now I have it loaded but I can't bring it up from the command line.  I have been using Suse and in Suse I load mysql using yast and then go in and set mysql to run at start up.  Do I need to do another stop in Mint to start the mysqld?  Let me know if you think I need to post another question but if it is a quick answer I would appreciate it.  Again THANKS!
ASKER CERTIFIED SOLUTION
Avatar of Seth Simmons
Seth Simmons
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you very much.  All is well in Montana USA!