-```
-
-Where `package_name` can be any of the available packages from the [available package list](/epas/17/installing/linux_install_details/rpm_packages/).
-
-## Initial configuration
-
-This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password.
-
-To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string.
-
-```shell
-sudo su - enterprisedb
-
-psql edb
-```
-
-The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file.
-
-Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file).
-
-```sql
-ALTER ROLE enterprisedb IDENTIFIED BY password;
-```
-
-## Experiment
-
-Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table.
-
-First, use psql to create a database named `hr` to hold human resource information.
-
-```sql
-# running in psql
-CREATE DATABASE hr;
-__OUTPUT__
-CREATE DATABASE
-```
-
-Connect to the `hr` database inside psql:
-
-```
-\c hr
-__OUTPUT__
-psql (17.0.0, server 17.0.0)
-You are now connected to database "hr" as user "enterprisedb".
-```
-
-Create columns to hold department numbers, unique department names, and locations:
-
-```
-CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk
-PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc
-varchar(13));
-__OUTPUT__
-CREATE TABLE
-```
-
-Insert values into the `dept` table:
-
-```
-INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK');
-__OUTPUT__
-INSERT 0 1
-```
-
-```
-INSERT into dept VALUES (20,'RESEARCH','DALLAS');
-__OUTPUT__
-INSERT 0 1
-```
-
-View the table data by selecting the values from the table:
-
-```
-SELECT * FROM dept;
-__OUTPUT__
-deptno | dname | loc
---------+------------+----------
-10 | ACCOUNTING | NEW YORK
-20 | RESEARCH | DALLAS
-(2 rows)
-```
diff --git a/product_docs/docs/epas/17/installing/linux_x86_64/index.mdx b/product_docs/docs/epas/17/installing/linux_x86_64/index.mdx
index f0b99b5fe2b..d56b8114664 100644
--- a/product_docs/docs/epas/17/installing/linux_x86_64/index.mdx
+++ b/product_docs/docs/epas/17/installing/linux_x86_64/index.mdx
@@ -18,7 +18,6 @@ navigation:
- epas_other_linux_8
- epas_sles_15
- epas_ubuntu_22
- - epas_ubuntu_20
- epas_debian_12
- epas_debian_11
---
@@ -51,8 +50,6 @@ Operating system-specific install instructions are described in the correspondin
- [Ubuntu 22.04](epas_ubuntu_22)
-- [Ubuntu 20.04](epas_ubuntu_20)
-
- [Debian 12](epas_debian_12)
- [Debian 11](epas_debian_11)
diff --git a/product_docs/docs/pge/17/installing/index.mdx b/product_docs/docs/pge/17/installing/index.mdx
index 4883cc3bb07..61a8900ad8e 100644
--- a/product_docs/docs/pge/17/installing/index.mdx
+++ b/product_docs/docs/pge/17/installing/index.mdx
@@ -25,7 +25,7 @@ Select a link to access the applicable installation instructions:
### Debian and derivatives
-- [Ubuntu 22.04](linux_x86_64/pge_ubuntu_22), [Ubuntu 20.04](linux_x86_64/pge_ubuntu_20)
+- [Ubuntu 22.04](linux_x86_64/pge_ubuntu_22)
- [Debian 12](linux_x86_64/pge_debian_12), [Debian 11](linux_x86_64/pge_debian_11)
diff --git a/product_docs/docs/pge/17/installing/linux_x86_64/index.mdx b/product_docs/docs/pge/17/installing/linux_x86_64/index.mdx
index 0ec9f379e21..6e773b54920 100644
--- a/product_docs/docs/pge/17/installing/linux_x86_64/index.mdx
+++ b/product_docs/docs/pge/17/installing/linux_x86_64/index.mdx
@@ -8,7 +8,6 @@ navigation:
- pge_other_linux_9
- pge_other_linux_8
- pge_ubuntu_22
- - pge_ubuntu_20
- pge_debian_12
- pge_debian_11
---
@@ -37,8 +36,6 @@ Operating system-specific install instructions are described in the correspondin
- [Ubuntu 22.04](pge_ubuntu_22)
-- [Ubuntu 20.04](pge_ubuntu_20)
-
- [Debian 12](pge_debian_12)
- [Debian 11](pge_debian_11)
diff --git a/product_docs/docs/pge/17/installing/linux_x86_64/pge_ubuntu_20.mdx b/product_docs/docs/pge/17/installing/linux_x86_64/pge_ubuntu_20.mdx
deleted file mode 100644
index e396a6b58b7..00000000000
--- a/product_docs/docs/pge/17/installing/linux_x86_64/pge_ubuntu_20.mdx
+++ /dev/null
@@ -1,124 +0,0 @@
----
-navTitle: Ubuntu 20.04
-title: Installing EDB Postgres Extended Server on Ubuntu 20.04 x86_64
-# This topic is generated from templates. If you have feedback on it, instead of
-# editing the page and creating a pull request, please enter a GitHub issue and
-# the documentation team will update the templates accordingly.
-
-redirects:
----
-
-## Prerequisites
-
-Before you begin the installation process:
-
-- Set up the EDB repository.
-
- Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step.
-
- To determine if your repository exists, enter this command:
-
- `apt-cache search enterprisedb`
-
- If no output is generated, the repository isn't installed.
-
- To set up the EDB repository:
-
- 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).
-
- 1. Select the button that provides access to the EDB repository.
-
- 1. Select the platform and software that you want to download.
-
- 1. Follow the instructions for setting up the EDB repository.
-
-## Install the package
-
-```shell
-sudo apt-get -y install edb-postgresextended-17
-```
-
-## Initial configuration
-
-This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password.
-
-First, you need to initialize and start the database cluster. The `edb-pge-17-setup` script creates a cluster.
-
-```shell
-sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/lib/edb-pge/17/bin/edb-pge-17-setup initdb
-
-sudo systemctl start edb-pge-17
-```
-
-To work in your cluster, log in as the postgres user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string.
-
-```shell
-sudo -iu postgres
-
-psql postgres
-```
-
-The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file.
-
-Before changing the authentication method, assign a password to the database superuser, postgres. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../administration/01_setting_configuration_parameters/#modifying-the-pg_hbaconf-file).
-
-```sql
-ALTER ROLE postgres with PASSWORD 'password';
-```
-
-## Experiment
-
-Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table.
-
-First, use psql to create a database named `hr` to hold human resource information.
-
-```sql
-# running in psql
-CREATE DATABASE hr;
-__OUTPUT__
-CREATE DATABASE
-```
-
-Connect to the `hr` database inside psql:
-
-```
-\c hr
-__OUTPUT__
-You are now connected to database "hr" as user "postgres".
-```
-
-Create columns to hold department numbers, unique department names, and locations:
-
-```
-CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk
-PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc
-varchar(13));
-__OUTPUT__
-CREATE TABLE
-```
-
-Insert values into the `dept` table:
-
-```
-INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK');
-__OUTPUT__
-INSERT 0 1
-```
-
-```
-INSERT into dept VALUES (20,'RESEARCH','DALLAS');
-__OUTPUT__
-INSERT 0 1
-```
-
-View the table data by selecting the values from the table:
-
-```
-SELECT * FROM dept;
-__OUTPUT__
-deptno | dname | loc
---------+------------+----------
-10 | ACCOUNTING | NEW YORK
-20 | RESEARCH | DALLAS
-(2 rows)
-```
diff --git a/src/templates/learn-doc.js b/src/templates/learn-doc.js
index c5bcdcd0f0f..91132384f08 100644
--- a/src/templates/learn-doc.js
+++ b/src/templates/learn-doc.js
@@ -215,6 +215,12 @@ const LearnDocTemplate = ({ data, pageContext }) => {
{editOrFeedbackButton}
+ {frontmatter.displayBanner ? (
+
+ {frontmatter.displayBanner}
+
+ ) : null}
+