diff options
author | XTZGZoReX <none@none> | 2008-10-10 12:19:38 -0500 |
---|---|---|
committer | XTZGZoReX <none@none> | 2008-10-10 12:19:38 -0500 |
commit | ded2714f89267e10b99ba725353afefe37b71645 (patch) | |
tree | 0ff89e2ab923ff1d1bad18806964d67d16c4ffdb /INSTALL | |
parent | 93e301236532048323d40c6ec1cddf9c1ddced92 (diff) |
[svn] * Changing text in various files to make it more Trinity Core-like, as well as fixing the grammar and understandability in certain files.
* Adding INSTALL file to root with Linux instructions.
* Renaming mangos.sql to world.sql until we figure another world database name (if we actually do, world seems fine to me).
* Updating config files with Trinity text instead of MaNGOS text.
--HG--
branch : trunk
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL new file mode 100644 index 00000000000..7a2f7e2ff66 --- /dev/null +++ b/INSTALL @@ -0,0 +1,51 @@ +Installing Trinity Core is fairly simple on a Linux machine, assuming
+you have all required applications
+
+The most important ones are:
+
+ * make
+ * automake
+ * autoconf
+ * gcc
+
+After that, you can simply run these commands:
+
+ * autoreconf --install --force
+ * ./configure
+
+The configure script will tell you if you miss any libraries, and
+if so, which ones. You can then download them from your preferred
+package provider (apt-get, emerge, yum, and the alikes).
+
+When you have all required packages, be sure to properly configure
+your build of Trinity Core:
+
+ * ./configure --help
+
+That command will tell you which config options are available. For
+the most part, the following should be used:
+
+ * --enable-cli
+ * --enable-ra
+ * --with-mysql
+ * --prefix=/home/trinitycore
+ * --datadir=/home/trinitycore/dat
+ * --sysconfdir=/home/trinitycore/etc
+
+Of course, replace the paths in prefix, datadir, and sysconfdir
+with the directories you wish to install Trinity Core to. The
+datadir is where maps, DBCs, and SQLs are stored. The sysconfdir
+is where configuration files are stored.
+
+When you've configured your build, simply run:
+
+ * make
+
+And finally, to install Trinity Core:
+
+ * make install
+
+Done! Trinity Core should now be installed. Now you will need to
+apply database updates where necessary. Furthermore, you must
+configure your installation by editing the config files in the
+sysconfdir.
\ No newline at end of file |