From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id 675713858D1E for ; Tue, 29 Nov 2022 10:19:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 675713858D1E Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from reform (deer0x0e.wildebeest.org [172.31.17.144]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 21E9D300B351; Tue, 29 Nov 2022 11:19:42 +0100 (CET) Received: by reform (Postfix, from userid 1000) id 33AE72E8056B; Tue, 29 Nov 2022 11:19:42 +0100 (CET) Date: Tue, 29 Nov 2022 11:19:42 +0100 From: Mark Wielaard To: Overseers mailing list Cc: Vineet Gupta Subject: Re: Fwd: Fwd: Welcome to sourceware.org Message-ID: References: <05e065ac-eb5c-2c08-1947-0f1c75940031@linux.dev> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <05e065ac-eb5c-2c08-1947-0f1c75940031@linux.dev> X-Spam-Status: No, score=-3032.7 required=5.0 tests=BAYES_00,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi Vineet, On Mon, Nov 28, 2022 at 05:09:47PM -0800, Vineet Gupta via Overseers wrote: > Sorry for bothering again with this. I had to reinstall my laptop so my ssh > key changed. Note that we now have the private admin-requests@sourceware.org list for these kind of issues. > I did backup my old ssh keys and trying to use it to add the new key as > follows seems to be failing. > > ssh -l vgupta  -i ~/old-keys/id_rsa.pub  sourceware.org appendkey < > ~/.ssh/id_rsa.pub > Load key "~/old-keys/id_rsa.pub": error in libcrypto > vgupta@sourceware.org: Permission denied (publickey). You need to use your private key with -i: -i identity_file Selects a file from which the identity (private key) for public key authentication is read. The default is ~/.ssh/id_dsa, ~/.ssh/id_ecdsa, ~/.ssh/id_ecdsa_sk, ~/.ssh/id_ed25519, ~/.ssh/id_ed25519_sk and ~/.ssh/id_rsa. You are trying to use you public (.pub) key part. Cheers, Mark