Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1382301

[PATCH 3/5] perf script: fix postgresql ubuntu install instructions

From Chris Phlipot <cphlipot0@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 3/5] perf script: fix postgresql ubuntu install instructions
Date 2016-04-19 11:00 +0200
Message-ID <rpzFN-3WK-25@gated-at.bofh.it> (permalink)
References <rpzFM-3WK-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


The current instructions for setting up an Ubuntu system for using
the export-to-postgresql.py script are incorrect.

The instructions in the script have been updated to work on newer
versions of ubuntu.

-Add missing dependencies to apt-get command:
    python-pyside.qtsql, libqt4-sql-psql
-Add '-s' option to createuser command to force the user to be a
    superuser since the command doesn't prompt as indicated in the
    current instructions.

Tested on: Ubuntu 14.04, Ubuntu 16.04(beta)

Signed-off-by: Chris Phlipot <cphlipot0@gmail.com>
---
 tools/perf/scripts/python/export-to-postgresql.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/tools/perf/scripts/python/export-to-postgresql.py b/tools/perf/scripts/python/export-to-postgresql.py
index 1b02cdc..6f0ca68 100644
--- a/tools/perf/scripts/python/export-to-postgresql.py
+++ b/tools/perf/scripts/python/export-to-postgresql.py
@@ -34,10 +34,9 @@ import datetime
 #
 # ubuntu:
 #
-#	$ sudo apt-get install postgresql
+#	$ sudo apt-get install postgresql python-pyside.qtsql libqt4-sql-psql
 #	$ sudo su - postgres
-#	$ createuser <your user id here>
-#	Shall the new role be a superuser? (y/n) y
+#	$ createuser -s <your user id here>
 #
 # An example of using this script with Intel PT:
 #
-- 
2.7.4

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH 3/5] perf script: fix postgresql ubuntu install instructions Chris Phlipot <cphlipot0@gmail.com> - 2016-04-19 11:00 +0200
  Re: [PATCH 3/5] perf script: fix postgresql ubuntu install  instructions Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-04-19 15:50 +0200
  [tip:perf/core] perf script: Fix postgresql ubuntu install  instructions tip-bot for Chris Phlipot <tipbot@zytor.com> - 2016-04-23 15:10 +0200

csiph-web