跳至内容
AzerothCore 中文
用户工具
登录
站点工具
搜索
工具
显示页面
修订记录
反向链接
最近更改
媒体管理器
网站地图
登录
>
最近更改
媒体管理器
网站地图
您的足迹:
linux_安装要求
本页面只读。您可以查看源文件,但不能更改它。如果您觉得这是系统错误,请联系管理员。
====== Linux 安装要求 ====== |安装指南| | |本文是《安装指南》的一部分。您可以单独阅读它,也可以单击上一个链接以在步骤之间轻松移动。| | |[[安装指南|<< Start: 安装指南]]|[[核心安装|Step 2: 核心安装 >>]]| |MySQL ≥ 5.7.0| |Boost ≥ 1.74| |OpenSSL ≥ 3.0.x| |CMake ≥ 3.16| |Clang ≥ 10| **Ubuntu with MariaDB 10.x** AzerothCore does only support MariaDB versions 10.6 and 10.5. <code> sudo apt update && sudo apt full-upgrade -y && sudo apt install git cmake make gcc g++ clang libssl-dev libbz2-dev libreadline-dev libncurses-dev libboost-all-dev mariadb-server mariadb-client libmariadb-dev libmariadb-dev-compat </code> **Ubuntu with MySQL 8.x** <code> sudo apt-get update && sudo apt-get install git cmake make gcc g++ clang libmysqlclient-dev libssl-dev libbz2-dev libreadline-dev libncurses-dev mysql-server libboost-all-dev </code> Remember that if you are using the <color #e83e8c/#eee> root </color> user, it is not necessary to use <color #e83e8c/#eee> sudo </color>. **Note:** If you get the error cannot find -lstdc++ you need to install <color #e83e8c/#eee>g++-12 </color>and it's dependencies. To configure MySQL in Ubuntu 18.04 and similar (set <color #e83e8c/#eee>root </color>password and other settings) read this guide. **Note:** in older versions of Ubuntu like 18.04 you need to install <color #e83e8c/#eee>gcc-10 </color>and <color #e83e8c/#eee>libboost1.74-dev </color>: <code> sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test sudo add-apt-repository -y ppa:mhier/libboost-latest sudo apt-get update sudo apt install -y gcc-10 g++-10 sudo apt install -y install libboost1.74-dev </code> **Debian 10** <code> sudo apt-get update && sudo apt-get install git cmake make gcc g++ clang default-libmysqlclient-dev libssl-dev libbz2-dev libreadline-dev libncurses-dev mariadb-server libboost-all-dev </code> Remember that if you are using the root user, it is not necessary to use sudo. **Note:** If you add the option -y and at the end of the list, it will start installing them without the need for you to confirm. **Example:** <code> apt-get update && apt-get install git cmake make gcc g++ clang default-libmysqlclient-dev libssl-dev libbz2-dev libreadline-dev libncurses-dev mariadb-server libboost-all-dev -y </code> **Check your clang version** <code>clang --version</code> Your clang version MUST be 10 or higher (here you can check the versions that run in our Github Actions pipeline, we recommend to use one of those versions). For example, if you are using an older version of Ubuntu like 18.04, you need to install clang using: <code>sudo apt-get install clang-10.0</code> If you use another distro or version, search on google for how to install the right clang version for your system. Currently the project requires clang10 or higher. This is a way to upgrade and install version 11. The answer is detailed here: How to install clang 11 on Debian Check your cmake version <code>cmake --version</code> Your cmake version MUST be 3.16 or higher. On an older version of Ubuntu (example: 16.04), you can follow the instructions here in order to install the latest cmake version. On debian you would need to use the backports sources or build Cmake manually. Remember that it is possible to update cmake, using Python. Install: <code>python -m pip install cmake</code> Update: <code>python -m pip install --upgrade cmake</code> Ensure that the gcc-8 headers are installed This is an issue if for example using an older version of Ubuntu like 16.04. There you have to add the PPA "Toolchain test builds": https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test After <code>sudo apt-get update</code> you can install gcc-8: <code>sudo apt-get install g++-8 gcc-8</code>
linux_安装要求.txt
· 最后更改: 2023/09/23 21:21 由
admin
页面工具
显示页面
修订记录
反向链接
回到顶部