/usr/share/mysql
NameSizeModeActions
charsets/-0755rm
czech/-0755rm
danish/-0755rm
dutch/-0755rm
english/-0755rm
estonian/-0755rm
french/-0755rm
german/-0755rm
greek/-0755rm
hungarian/-0755rm
italian/-0755rm
japanese/-0755rm
korean/-0755rm
norwegian/-0755rm
norwegian-ny/-0755rm
polish/-0755rm
portuguese/-0755rm
romanian/-0755rm
russian/-0755rm
SELinux/-0755rm
serbian/-0755rm
slovak/-0755rm
spanish/-0755rm
swedish/-0755rm
ukrainian/-0755rm
binary-configure11570755editdlrm
config.huge.ini45280755editdlrm
config.medium.ini23820755editdlrm
config.small.ini16260755editdlrm
errmsg-utf8.txt4705200755editdlrm
fill_help_tables.sql6890660755editdlrm
magic7730755editdlrm
my-huge.cnf46970755editdlrm
my-innodb-heavy-4G.cnf197790755editdlrm
my-large.cnf46710755editdlrm
my-medium.cnf46820755editdlrm
my-small.cnf28460755editdlrm
mysql-log-rotate7890755editdlrm
mysql.server114920755editdlrm
mysqld_multi.server10650755editdlrm
mysql_system_tables.sql289800755editdlrm
mysql_system_tables_data.sql34480755editdlrm
mysql_test_data_timezone.sql104110755editdlrm
ndb-config-2-node.ini13260755editdlrm
Edit: /usr/share/mysql/binary-configure (1157B)
#!/usr/bin/sh SCRIPT_NAME="`basename $0`" usage() { echo "Usage: ${SCRIPT_NAME} [--help|-h]" echo "" echo "This script creates the MySQL system tables and starts the server." } for arg do case "$arg" in --help|-h) usage exit 0 ;; *) echo "${SCRIPT_NAME}: unknown option $arg" usage exit 2 ;; esac done if test ! -x ./scripts/mysql_install_db then echo "I didn't find the script './scripts/mysql_install_db'." echo "Please execute this script in the mysql distribution directory!" exit 1; fi echo "NOTE: This is a MySQL binary distribution. It's ready to run, you don't" echo "need to configure it!" echo "" echo "To help you a bit, I am now going to create the needed MySQL databases" echo "and start the MySQL server for you. If you run into any trouble, please" echo "consult the MySQL manual, that you can find in the Docs directory." echo "" ./scripts/mysql_install_db --no-defaults if [ $? = 0 ] then echo "Starting the mysqld server. You can test that it is up and running" echo "with the command:" echo "./bin/mysqladmin version" ./bin/mysqld_safe --no-defaults & fi