Manticore Search 13.11.1
2025年9月13日
包管理器
在 Debian、Ubuntu 或 Linux Mint 上使用 APT 安装 Manticore Search
安装 APT 仓库和新版本:
wget https://repo.manticoresearch.com/manticore-repo.noarch.deb
sudo dpkg -i manticore-repo.noarch.deb
sudo apt update
sudo apt install manticore manticore-extra
如果您是从旧版本升级,建议先删除旧软件包,以避免由于更新的软件包结构而导致的冲突:
sudo apt remove 'manticore*'
这不会删除您的数据或配置文件。
启动 Manticore
sudo systemctl start manticore
在 文档 中了解更多关于 Manticore Search 的 APT 仓库的信息。
在 Centos、RHEL、Oracle Linux 和 Amazon Linux 上使用 YUM 安装 Manticore Search
安装 YUM 仓库和新版本:
sudo yum install https://repo.manticoresearch.com/manticore-repo.noarch.rpm
sudo yum install manticore manticore-extra
如果您是从旧版本升级,建议先删除旧软件包,以避免由于更新的软件包结构而导致的冲突:
sudo yum --setopt=tsflags=noscripts remove 'manticore*'
这不会删除您的数据。如果您对配置文件进行了更改,它将被保存到 /etc/manticoresearch/manticore.conf.rpmsave
。
启动 Manticore
sudo systemctl start manticore
在 文档 中了解更多关于 Manticore Search 的 YUM 仓库的信息。
在 MacOS 上使用 Homebrew 安装 Manticore Search
brew install manticoresoftware/tap/manticoresearch manticoresoftware/tap/manticore-extra
启动 Manticore
brew services start manticoresearch
在 文档 中了解更多关于 Manticore Search 的 Homebrew 包的信息。
通过 WSL 在 Windows 上安装 Manticore Search
要在 Windows 上安装 Manticore Search,您首先需要启用 WSL2(Windows 子系统 Linux)。WSL2 允许您在 Windows 上原生运行 Linux 二进制文件。要使此方法有效,您需要运行 Windows 10 版本 2004 及更高版本或 Windows 11。
安装或启用 WSL2
请按照 官方 Microsoft 指南 的逐步说明安装 WSL。此指南将使用 Ubuntu 作为默认 Linux 发行版。
安装 Manticore
一旦 WSL2 设置完成,您可以通过添加 APT 仓库并安装必要的 Manticore 软件包来安装 Manticore:
wget https://repo.manticoresearch.com/manticore-repo.noarch.deb
sudo dpkg -i manticore-repo.noarch.deb
sudo apt update
sudo apt install manticore manticore-extra
如果您是从旧版本升级,最好先删除以前的 Manticore 软件包,以防止与更新的软件包结构发生冲突:
sudo apt remove 'manticore*'
此命令不会删除您的数据或配置文件。
启动 Manticore
sudo systemctl start manticore
替代方法:作为单独的软件包安装
如果您更喜欢在不添加 APT 仓库的情况下安装单个软件包,请继续下一部分: 单独的软件包 。
使用安装程序在 Windows 上安装 Manticore Search
- 下载 Manticore Search 安装程序 并运行。按照安装说明进行操作。
- 选择要安装的目录。
- 选择您要安装的组件。我们建议安装所有组件。
- Manticore 附带一个预配置的
manticore.conf
文件,处于 RT 模式 。无需额外配置。
请在 文档 中找到有关在 Windows 上安装和使用 Manticore 的更多详细信息。
在 Docker 中运行 Manticore Search
docker run --name manticore -v $(pwd)/data:/var/lib/manticore -p 127.0.0.1:9306:9306 -p 127.0.0.1:9308:9308 -d manticoresearch/manticore
此设置将启用 Manticore 列式库和 Manticore Buddy,并在端口 9306 上运行 Manticore 以进行 MySQL 连接,在端口 9308 上进行所有其他连接,使用 ./data/
作为指定的数据目录。
在 文档 中了解更多关于生产使用的信息。
使用 Helm 在 Kubernetes 上安装 Manticore Search
helm repo add manticoresearch https://helm.manticoresearch.com
# 如有需要,更新 values.yaml
helm install manticore -n manticore --create-namespace manticoresearch/manticoresearch
您可以在 文档 中找到有关安装 Helm 图表的更多信息。
单独的软件包
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoreearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_buster/dists/buster/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bullseye/dists/bullseye/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-icudata-65l.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoreearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticorearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoreearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-icudata-65l.deb https://repo.manticoresearch.com/repository/manticoreearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoreearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoreearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoreearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoreearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoreearch_bookworm/dists/bookworm/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoreearch_bookworm/dists/bookworm/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-13.11.1_25091317.134b36912-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-backup-1.9.6+25070510.5247d066-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-buddy-3.35.1+25090418.41d9811f-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-columnar-lib-8.0.3+25091012.6d8ff919-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-common-13.11.1_25091317.134b36912-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-converter-13.11.1_25091317.134b36912-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-devel-13.11.1_25091317.134b36912-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/x86_64/manticore-executor-1.3.5+25070803.6c4be4c1-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/x86_64/manticore-extra-1.3.5+25070803.6c4be4c1-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-galera-3.37-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-icudata.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-language-packs-1.0.13_250708.1e9c2cd-1.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-load-1.19.0+25063014.1ff59652-1.el8.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-server-13.11.1_25091317.134b36912-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-server-core-13.11.1_25091317.134b36912-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-tools-13.11.1_25091317.134b36912-1.el8.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/8/${arch}/manticore-tzdata-1.0.1_250708.4dfa71e-1.noarch.rpm
arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-13.11.1_25091317.134b36912-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-backup-1.9.6+25070510.5247d066-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-buddy-3.35.1+25090418.41d9811f-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-columnar-lib-8.0.3+25091012.6d8ff919-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-common-13.11.1_25091317.134b36912-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-converter-13.11.1_25091317.134b36912-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-devel-13.11.1_25091317.134b36912-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/x86_64/manticore-executor-1.3.5+25070803.6c4be4c1-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/x86_64/manticore-extra-1.3.5+25070803.6c4be4c1-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-galera-3.37-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-icudata.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-language-packs-1.0.13_250708.1e9c2cd-1.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-load-1.19.0+25063014.1ff59652-1.el9.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-server-13.11.1_25091317.134b36912-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-server-core-13.11.1_25091317.134b36912-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-tools-13.11.1_25091317.134b36912-1.el9.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/9/${arch}/manticore-tzdata-1.0.1_250708.4dfa71e-1.noarch.rpm
arch=`arch`
yum -y install https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-13.11.1_25091317.134b36912-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-backup-1.9.6+25070510.5247d066-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-buddy-3.35.1+25090418.41d9811f-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-columnar-lib-8.0.3+25091012.6d8ff919-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-common-13.11.1_25091317.134b36912-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-converter-13.11.1_25091317.134b36912-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-devel-13.11.1_25091317.134b36912-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/x86_64/manticore-executor-1.3.5+25070803.6c4be4c1-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/x86_64/manticore-extra-1.3.5+25070803.6c4be4c1-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-galera-3.37-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-icudata-65l.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-language-packs-1.0.13_250708.1e9c2cd-1.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-load-1.19.0+25063014.1ff59652-1.el10.noarch.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-server-13.11.1_25091317.134b36912-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-server-core-13.11.1_25091317.134b36912-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-tools-13.11.1_25091317.134b36912-1.el10.${arch}.rpm https://repo.manticoresearch.com/repository/manticoresearch/release/centos/10/${arch}/manticore-tzdata-1.0.1_250708.4dfa71e-1.noarch.rpm
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_bionic/dists/bionic/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_focal/dists/focal/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_jammy/dists/jammy/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo apt -y update && sudo apt -y install ./*.deb
mkdir -p /tmp/manticore_install && cd /tmp/manticore_install
source /etc/os-release
arch=`dpkg --print-architecture`
wget https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-backup_1.9.6+25070510-5247d066_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-buddy_3.35.1+25090418-41d9811f_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-columnar-lib_8.0.3+25091012-6d8ff919_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-common_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-converter_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-dev_13.11.1-25091317-134b36912_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-executor_1.3.5+25070803-6c4be4c1_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-extra_1.3.5-25070803-6c4be4c1_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-galera_3.37_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-icudata-65l_5.0.2-220530-348514c86_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-language-packs_1.0.13-250708-1e9c2cd_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-load_1.18.2+25050118-8537968a_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server-core_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-server_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tools_13.11.1-25091317-134b36912_${arch}.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore-tzdata_1.0.1-250708-4dfa71e_all.deb https://repo.manticoresearch.com/repository/manticoresearch_${VERSION_CODENAME}/dists/${VERSION_CODENAME}/main/binary-${arch}/manticore_13.11.1-25091317-134b36912_${arch}.deb
sudo chmod -R o+r /tmp/manticore_install
sudo apt -y update && sudo apt -y install ./*.deb
其他下载
Manticore Search 的英语、德语和俄语词形还原器
阅读有关 Manticore Search 中形态学的更多信息 在文档中 。
通过 APT:
apt install manticore-language-packs
通过 YUM:
yum install manticore-language-packs
通过 MacOS 上的 Homebrew:
brew tap manticoresoftware/tap
brew install manticoresoftware/tap/manticore-language-packs
Windows(非 WSL):
解压 en.pak.tgz 用于英语, de.pak.tgz 用于德语,或 ru.pak.tgz 用于俄语到指定为 lemmatizer_base 的文件夹中,并重启 Manticore Search。