- Linux downloads (Debian)
- PostgreSQL Apt Repository
- Included in distribution
- Linux downloads (Ubuntu)
- PostgreSQL Apt Repository
- Included in distribution
- Подскажите дистрибутив линукса для PostgreSQL (установка на Virtual Box)
- Downloads
- Packages and Installers
- Source code
- Beta/RC Releases and development snapshots (unstable)
- 3rd party distributions
- Ready to run stacks
- Additional Software
- Software Catalogue
- File Browser
Linux downloads (Debian)
PostgreSQL is available in all Debian versions by default. However, the stable versions of Debians «snapshot» a specific version of PostgreSQL that is then supported throughout the lifetime of that Debian version. The PostgreSQL project also maintains an apt repository with all supported of PostgreSQL available.
PostgreSQL Apt Repository
If the version included in your version of Debian is not the one you want, you can use the PostgreSQL Apt Repository. This repository will integrate with your normal systems and patch management, and provide automatic updates for all supported versions of PostgreSQL throughout the support lifetime of PostgreSQL.
The PostgreSQL apt repository supports the currently supported stable versions of Debian:
on the following architectures:
To use the apt repository, follow these steps:
# Create the file repository configuration: sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' # Import the repository signing key: wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - # Update the package lists: sudo apt-get update # Install the latest version of PostgreSQL. # If you want a specific version, use 'postgresql-12' or similar instead of 'postgresql': sudo apt-get -y install postgresql
For more information about the apt repository, including answers to frequent questions, please see the apt page on the wiki.
Included in distribution
Debian includes PostgreSQL by default. To install PostgreSQL on Debian, use the apt-get (or other apt-driving) command:
apt-get install postgresql-12
The repository contains many different packages including third party addons. The most common and important packages are (substitute the version number as required):
postgresql-client-12 | client libraries and client binaries |
---|---|
postgresql-12 | core database server |
libpq-dev | libraries and headers for C language frontend development |
postgresql-server-dev-12 | libraries and headers for C language backend development |
Copyright © 1996-2023 The PostgreSQL Global Development Group
Linux downloads (Ubuntu)
PostgreSQL is available in all Ubuntu versions by default. However, Ubuntu «snapshots» a specific version of PostgreSQL that is then supported throughout the lifetime of that Ubuntu version. Other versions of PostgreSQL are available through the PostgreSQL apt repository.
PostgreSQL Apt Repository
If the version included in your version of Ubuntu is not the one you want, you can use the PostgreSQL Apt Repository. This repository will integrate with your normal systems and patch management, and provide automatic updates for all supported versions of PostgreSQL throughout the support lifetime of PostgreSQL.
The PostgreSQL Apt Repository supports the current versions of Ubuntu:
on the following architectures:
- amd64
- arm64 (18.04 and newer; LTS releases only)
- i386 (18.04 and older)
- ppc64el (LTS releases only)
To use the apt repository, follow these steps:
# Create the file repository configuration: sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' # Import the repository signing key: wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - # Update the package lists: sudo apt-get update # Install the latest version of PostgreSQL. # If you want a specific version, use 'postgresql-12' or similar instead of 'postgresql': sudo apt-get -y install postgresql
For more information about the apt repository, including answers to frequent questions, please see the PostgreSQL Apt Repository page on the wiki.
Included in distribution
Ubuntu includes PostgreSQL by default. To install PostgreSQL on Ubuntu, use the apt-get (or other apt-driving) command:
apt-get install postgresql-12
The repository contains many different packages including third party addons. The most common and important packages are (substitute the version number as required):
postgresql-client-12 | client libraries and client binaries |
---|---|
postgresql-12 | core database server |
libpq-dev | libraries and headers for C language frontend development |
postgresql-server-dev-12 | libraries and headers for C language backend development |
Copyright © 1996-2023 The PostgreSQL Global Development Group
Подскажите дистрибутив линукса для PostgreSQL (установка на Virtual Box)
Очень срочно нужен дистрибутив линукса установленный на Virtual Box. Именно так — потому что нужно связать обе операционки в сеть на одном компьютере.
Дистрибутив нужен чтобы развернуть на нем базу данных PostgreSQL и работать с ней как бы через сеть из другой операционки.
Бьюсь уже четвертый день с этим гребанным линуксом.
Убунту я уже как-то ставил — нифига тогда не работало. Ну то есть нифига не мог ниоткуда установить. Да и тормозит оно на виртуале
Tiny Core Linux — удалось. но PostgreSQL не работает (пишу initdb -D /user/data а оно не в ответ пишет на какую-то ошибку про неизвестную локаль (при том что все на английских версиях делается)
Поставил CentOS — а оно мне консоль только выводит (это что — 600 мб дистрибутива нужно чтобы чернобелую консоль выводить? или я че не понял?
Сейчас пытался ставить Debian. Млять — 10500 раз уже начинаю установку. ломается прямо на ровном месте. в одной установке работает, в другой в этом же месте ломается. Короче, проблемы начинаются с момента где программное обеспечение ставится (ну там еще рабочий стол выбирается через что).
Один раз удалось почти закончить — но какая-то хреновая утилита из стандартного пакета заорала что не умеет русский язык и этим сломала установку. Пробовал ангийскую ставить — но даже дойти до того момента не могу — постоянно где-то рандомно ломается.
Дебиан 8 — стабильный. Думаю, сейчас попробовать старую версию (седьмую там) — но уверен что как с убунту — не смогу ниоткуда ничего потом поставить (конкретно PostgreSQL). Из исходников я не хочу собирать (да и не смогу наверное)
Что еще попробовать? где стабильно можно развернуть PostgreSQL. Плюс надо учитывать что оно не должно быть требовательно к системе — на ноутбуке всего 3 гб памяти и i3 процессор.
Ставь тазик slitaz, не прогадаешь.
Downloads
PostgreSQL is available for download as ready-to-use packages or installers for various platforms, as well as a source code archive if you want to build it yourself.
Packages and Installers
Select your operating system family:
Select your Linux distribution:
Select your BSD operating system:
Source code
The source code can be found in the main file browser or you can access the source control repository directly at git.postgresql.org. Instructions for building from source can be found in the documentation.
Beta/RC Releases and development snapshots (unstable)
There are source code and binary packages of beta and release candidates, and of the current development code available for testing and evaluation of new features. Note that these builds should be used for testing purposes only, and not for production systems.
3rd party distributions
Ready to run stacks
‘LAPP’, ‘MAPP’ and ‘WAPP’ (Linux/Mac/Windows + Apache + PHP + PostgreSQL) stacks are available from BitNami.
Additional Software
Software Catalogue
There is much software available that is not bundled with PostgreSQL. The Software Catalogue offers a listing of many commercial and Open Source applications, interfaces and extensions to PostgreSQL that you may find useful.
If you wish to have your product listed in the catalogue, please fill out this form.
File Browser
You can download most of the software we publish from a mirror site using our File Browser.
Copyright © 1996-2023 The PostgreSQL Global Development Group