Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there somewhere you can get an ISO image for linux - preferably CentOS or Ubuntu - with MySQL pre-installed and running?
On CentOS, you could install MySQL with:
yum install community-mysql community-mysql-server
On Ubuntu, with:
apt-get install mysql-server mysql-client
Debian has pre-installed mysql If you select option while install.
http://www.debian.org/CD/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I dont have both these packages on my system. I am not able to install any package due to same. Can anybody tell me how to install these without root access??
dpkg is the low level package tool of the Debian distribution (and derived distributions such as Ubuntu, Linux Mint and others). It is used to install single Debian packages (files with the .deb extension).
apt-get is a higher-level (user facing) program used to retrieve and install Debian packages on Debian systems. It does not work on CentOS, because CentOS uses a different package format (RPM) and cannot work with packages that were made for the Debian distribution.
Also, you can not install packages without root access (neither CentOS nor Debian packages).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I'd like to examine some live MySQL queries so have just tried installing mtop on a Ubuntu 12.04 LTS box.
However when I try and install it using apt-get I get:
sudo apt-get install mtop
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mtop
Given that apt-get returns Unable to locate how do I install mtop for Ubuntu 12.04?!
install mytop instead of mtop
http://www.ubuntugeek.com/mytop-top-like-query-monitor-for-mysql.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am trying to download the MySQL no-install version, but I can't find it on their site.
Can anyone help? I tried with this link but it doesn't work.
You can get the latest one from here (32-bit or 64-bit no-install zipped versions are underneath the MSI installer link).
You can also get archived versions if you click "Looking for previous GA versions?" seeing as your question references the very old 5.1 version.
The process for installing MySQL (noinstall) from a Zip archive is as follows:
Extract the archive to the desired install directory
Create an option file
Choose a MySQL server type
Start the MySQL server
Secure the default user accounts
Detailed info
How to use MYSQL no-install on Windows
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I am getting the grub prompt on my machine. I know that I can use the information at https://fedoraproject.org/wiki/GRUB_2 to reboot but I donĀ“t know where the fedora linux partition is located on the harddrive. How can I find the information regarding /dev/sda etc in the grub prompt?
I tried the commands in the above URL concerning the grub prompt but I keep ending on a black screen.
You can use LiveCD distribution of your favourite distro and boot from it. Then use tools like fdisk or gparted to locate your Fedora Linux partition. After that you can chroot inside your Fedora partition and repair your grub using grub-mkconfig or manually.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I want to install a database, preferably MySQL, on my domain (Strato) to make my database accessible remotely.
Is it possible?
Has somebody tutorials on it?
I'm absolutelly inexperienced in this area. The only webserver I have ever set up was Apache (XAMPP).
Strato is a hosting provider. If you have the basic service, you can't install or use MySQL databases.
For other levels of service, see their FAQ.
Usually it's apt-get install mysql or zypper install mysql. It depends what Linux it's installed. Most likely you can also build from the sources. Then you need gcc and all tools. Apt-get install gcc or zypper install gcc. When you can disclose a bit more information maybe we can help?