Skip to content

Commit 25dd94a

Browse files
Update the packages download commands (#766)
modified: docs/apt-download-deb.md modified: docs/yum-download-rpm.md
1 parent a664add commit 25dd94a

2 files changed

Lines changed: 36 additions & 35 deletions

File tree

docs/apt-download-deb.md

Lines changed: 34 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,43 @@
22

33
Download the packages from [Percona Product Downloads :octicons-link-external-16:](https://www.percona.com/downloads). If needed, [Instructions for the Percona Product Download](download-instructions.md) are available.
44

5-
<!-- Update the following instruction to be valid for 9.7-->
6-
7-
The following example downloads Percona Server for MySQL {{release}} release packages for Ubuntu 22.04:
8-
9-
```shell
10-
wget https://downloads.percona.com/downloads/Percona-Server-8.4/Percona-Server-8.4.0-1/binary/debian/jammy/x86_64/Percona-Server-8.4.0-1-r238b3c02-jammy-x86_64-bundle.tar
11-
```
12-
13-
Unpack the download to get the packages:
14-
15-
```shell
16-
tar xvf Percona-Server-8.4.0-1-r71449379-buster-x86_64-bundle.tar
17-
```
18-
??? example "Expected output"
19-
20-
```{.text .no-copy}
21-
libperconaserverclient21_{{release}}-1.buster_amd64.deb
22-
libperconaserverclient21-dev_{{release}}-1.buster_amd64.deb
23-
percona-mysql-router_{{release}}-1.buster_amd64.deb
24-
percona-server-client_{{release}}-1.buster_amd64.deb
25-
percona-server-common_{{release}}-1.buster_amd64.deb
26-
percona-server-dbg_{{release}}-1.buster_amd64.deb
27-
percona-server-rocksdb_{{release}}-1.buster_amd64.deb
28-
percona-server-server_{{release}}-1.buster_amd64.deb
29-
percona-server-source_{{release}}-1.buster_amd64.deb
30-
percona-server-test_{{release}}-1.buster_amd64.deb
5+
The following example downloads *Percona Server for MySQL* {{release}} release `x86_64` packages for Ubuntu 22.04:
6+
{.power-number}
7+
8+
1. Use `wget` to download the tar file:
9+
10+
The download filename includes a `<revision-identifier>` value. This value is *build-specific* and must be obtained from the [Percona Product Downloads :octicons-link-external-16:](https://www.percona.com/downloads) page for the exact release you are installing. Select the product, version, and operating system, and find the link with the required `<revision identifier>` under the **Download all packages** button. For more details, see the [Instructions for Percona Product Downloads](download-instructions.md).
11+
12+
```shell
13+
wget https://downloads.percona.com/downloads/Percona-Server-{{vers}}/Percona-Server-{{release}}/binary/debian/jammy/x86_64/Percona-Server-{{release}}-<revision-identifier>-jammy-x86_64-bundle.tar
3114
```
3215

33-
Install Percona Server for MySQL using `dpkg`. Run this command as root or use the sudo command:
16+
2. Unpack the download to get the packages:
3417

35-
```shell
36-
sudo dpkg -i *.deb
37-
```
18+
```shell
19+
tar xvf Percona-Server-{{release}}-<revision-identifier>-jammy-x86_64-bundle.tar
20+
```
21+
22+
??? example "Expected output"
23+
24+
```{.text .no-copy}
25+
libperconaserverclient21_{{release}}-1.buster_amd64.deb
26+
libperconaserverclient21-dev_{{release}}-1.buster_amd64.deb
27+
percona-mysql-router_{{release}}-1.buster_amd64.deb
28+
percona-server-client_{{release}}-1.buster_amd64.deb
29+
percona-server-common_{{release}}-1.buster_amd64.deb
30+
percona-server-dbg_{{release}}-1.buster_amd64.deb
31+
percona-server-rocksdb_{{release}}-1.buster_amd64.deb
32+
percona-server-server_{{release}}-1.buster_amd64.deb
33+
percona-server-source_{{release}}-1.buster_amd64.deb
34+
percona-server-test_{{release}}-1.buster_amd64.deb
35+
```
36+
37+
3. Install Percona Server for MySQL using `dpkg`. Run this command as root or use the sudo command:
38+
39+
```shell
40+
sudo dpkg -i *.deb
41+
```
3842

3943
!!! warning
4044

docs/yum-download-rpm.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,15 @@ Download the packages from [Percona Product Downloads :octicons-link-external-16
44

55
The RPM builds for *RHEL* 8 and *RHEL* 9 contain ARM packages with the aarch64.rpm extension. This means that Percona Server for MySQL is available for users on ARM-based systems.
66

7-
<!-- Update this doc to be valid for 9.7-->
8-
9-
107
The following example downloads *Percona Server for MySQL* {{release}} release `x86_64` packages for *RHEL* 8.
118
{.power-number}
129

13-
1. Use `wget` to download the tar file.
10+
1. Use `wget` to download the tar file:
1411

1512
The download filename includes a `<revision-identifier>` value. This value is *build-specific* and must be obtained from the [Percona Product Downloads :octicons-link-external-16:](https://www.percona.com/downloads) page for the exact release you are installing. Select the product, version, and operating system, and find the link with the required `<revision identifier>` under the **Download all packages** button. For more details, see the [Instructions for Percona Product Downloads](download-instructions.md).
1613

1714
```shell
18-
wget https://downloads.percona.com/downloads/Percona-Server-8.4/Percona-Server-{{release}}/binary/redhat/8/x86_64/Percona-Server-{{release}}-<revision identifier>-el8-x86_64-bundle.tar
15+
wget https://downloads.percona.com/downloads/Percona-Server-{{vers}}/Percona-Server-{{release}}/binary/redhat/8/x86_64/Percona-Server-{{release}}-<revision identifier>-el8-x86_64-bundle.tar
1916
```
2017

2118
2. Unpack the bundle to get the packages:

0 commit comments

Comments
 (0)