Juts working on getting FM projection going so far I have downloaded , loaded, and installed the KIDS file and now I am working on getting the Mysql piece
I am working off of the PPS instructions on
https://launchpad.net/~fm-projection+team/+archive/ppa
I am on ubuntu jaunty so i added the following lines to my sources.list
deb http://ppa.launchpad.net/fm-projection+team/ppa/ubuntu jaunty main
deb-src http://ppa.launchpad.net/fm-projection+team/ppa/ubuntu jaunty main
I added the keys like this:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D69FB939
[sudo] password for openvista:
Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg --trustdb-name /etc/apt/trustdb.gpg --keyring /etc/apt/trusted.gpg --keyserver keyserver.ubuntu.com --recv-keys D69FB939
gpg: requesting key D69FB939 from hkp server keyserver.ubuntu.com
gpg: key D69FB939: public key "Launchpad PPA for FM Projection" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
and ran sudo apt-get update
Now, what is the package name to apt-get install. I tried
sudo apt-get install mysql-dfsg-5.1
but that returned package not found
Hi Richard, mysql-dfsg-5.1 is the name of the source package. I think you want to
apt-get install mysql-server-5.1That's odd. I think during the installation it prompts you to set a password, but if you just leave it blank, it doesn't set one.
When you uninstalled, did you use --purge? (apt-get remove --purge mysql-server-5.1 or dpkg --purge mysql-server-5.1) If you didn't, I don't think it wipes out the initial database that it created.
Nothing has been changed with regard to basic authentication and authorization for the server itself. I did a quick Google search on "mysql default password" and had a couple of interesting hits. Please see http://www.debian-administration.org/articles/442 for example.
My command line is appending some wired stuff automatically
I got it working after i followed Jon's advice. It may be useful to delete these posts as they may be confusing
Glad you got it working. I don't think we want to delete these, since someone may have the same issues in the future.