安装PostgreSQL数据库管理系统在Ubuntu中的步骤如下:
sudo apt-get update
sudo apt-get install postgresql postgresql-contrib
sudo service postgresql start
sudo service postgresql status
sudo -i -u postgres
psql
\password postgres
现在您已经成功在Ubuntu上安装了PostgreSQL数据库管理系统。您可以使用psql命令行工具连接到数据库并进行操作。