From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: Re: GuixSD and TRAMP Date: Wed, 19 Oct 2016 17:52:56 -0500 Message-ID: <87wph42bp3.fsf@dustycloud.org> References: <87y41k2d4o.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33891) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bwzjL-0001SA-Vv for help-guix@gnu.org; Wed, 19 Oct 2016 18:53:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bwzjI-0002sW-RG for help-guix@gnu.org; Wed, 19 Oct 2016 18:53:04 -0400 Received: from dustycloud.org ([50.116.34.160]:59314) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bwzjI-0002rz-MR for help-guix@gnu.org; Wed, 19 Oct 2016 18:53:00 -0400 Received: from oolong (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 3479026703 for ; Wed, 19 Oct 2016 18:52:57 -0400 (EDT) In-reply-to: <87y41k2d4o.fsf@dustycloud.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix Christopher Allan Webber writes: > Hello! > > I've been trying to access a remote GuixSD server I have running using > TRAMP in emacs. I figured out that in order for path resolution to > work I had to install perl in my remote user's path somehow. So, that'= s > done. > > I can open up directories in dired, but when I try to open an individua= l > file, I get: > > Tramp: Inserting =E2=80=98/ssh:kari:/home/cwebber/.emacs=E2=80=99...f= ailed > Wrong method specification for =E2=80=98ssh=E2=80=99 > > I see I'm not the only one! ecraven reports the same here: > https://gnunet.org/bot/log/guix/2016-06-10#T1053360 > > Does anyone know how to resolve this? > Thanks! > - Chris Ho-ho, it turns out the snippet Ludo pasted me on IRC was the answer after all: ;; Make sure we work on remote guixsd machines :) ;; probably only helps if you start on a guixsd machine..! (setq tramp-remote-path (append tramp-remote-path '(tramp-own-remote-path))) There ya go!