Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lqySN-0007rl-Vy for pgsql-novice@arkaria.postgresql.org; Wed, 09 Jun 2021 13:41:19 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1lqySM-0005Ft-TP for pgsql-novice@arkaria.postgresql.org; Wed, 09 Jun 2021 13:41:18 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lqySM-0005Fl-Mk for pgsql-novice@lists.postgresql.org; Wed, 09 Jun 2021 13:41:18 +0000 Received: from sss.pgh.pa.us ([66.207.139.130]) by makus.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lqySG-0003ro-6f for pgsql-novice@lists.postgresql.org; Wed, 09 Jun 2021 13:41:17 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.15.2/8.15.2) with ESMTP id 159DfBa71292286; Wed, 9 Jun 2021 09:41:11 -0400 From: Tom Lane To: Simon Connah cc: "pgsql-novice@lists.postgresql.org" Subject: Re: Where does PostgreSQL store extensions on OpenSUSE? In-reply-to: References: Comments: In-reply-to Simon Connah message dated "Wed, 09 Jun 2021 11:07:41 -0000" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <1292284.1623246071.1@sss.pgh.pa.us> Content-Transfer-Encoding: quoted-printable Date: Wed, 09 Jun 2021 09:41:11 -0400 Message-ID: <1292285.1623246071@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Simon Connah writes: > My old computer broke and I've completely forgotten where OpenSUSE store= s its PostgreSQL extensions. I've been searching with DuckDuckGo but no lu= ck. Is there a quick command to find out where to put them? If pg_config is installed, see "pg_config --sharedir" --- extension-related text files should be under the extension/ subdirectory of that. Meanwhile, any related .so files should be in "pg_config --libdir" (or maybe it's --pkglibdir? Not sure because they're the same by default) regards, tom lane