From mboxrd@z Thu Jan 1 00:00:00 1970 From: Divan Santana Subject: Using tramp with guixsd install image Date: Fri, 30 Jun 2017 22:15:00 +0200 Message-ID: <87zicpp70b.fsf@santanas.co.za> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56037) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dR2dN-0000Qn-P6 for help-guix@gnu.org; Fri, 30 Jun 2017 16:35:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dR2dI-0004ux-Rs for help-guix@gnu.org; Fri, 30 Jun 2017 16:35:21 -0400 Received: from outmail148098.authsmtp.com ([62.13.148.98]:13372) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dR2dI-0004sJ-Fg for help-guix@gnu.org; Fri, 30 Jun 2017 16:35:16 -0400 Received: from mail-c245.authsmtp.com (mail-c245.authsmtp.com [62.13.128.245]) by punt21.authsmtp.com (8.14.2/8.14.2/) with ESMTP id v5UKF6mF035032 for ; Fri, 30 Jun 2017 21:15:06 +0100 (BST) Received: from mail.santanas.co.za ([196.192.177.215]) (authenticated bits=0) by mail.authsmtp.com (8.14.2/8.14.2/) with ESMTP id v5UKF3si018233 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 30 Jun 2017 21:15:05 +0100 (BST) Received: from authenticated-user (mail.santanas.co.za [196.192.182.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.santanas.co.za (Postfix) with ESMTPSA id EB4041FFB5 for ; Fri, 30 Jun 2017 22:15:01 +0200 (SAST) 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 Hi, Trying to use my emacs (on arch linux) with the guixsd system from the 0.13 image and ssh-daemon. By image, this is a fresh VM booted guixsd-usb-install-0.13.0.x86_64-linux and about to install guixsd . This Used to work with 0.12 image. Now I have this set ;; ;; TRAMP and guix settings (setq tramp-default-method "scp") ;; https://lists.gnu.org/archive/html/help-guix/2016-10/msg00049.html (setq tramp-remote-path (append tramp-remote-path '("~/.guix-profile/bin" "~/.guix-profile/sbin" "/run/current-system/profile/bin" "/run/current-system/profile/sbin"))) And I try open path: =/ssh:root@192.168.122.236:/mnt/etc/config.scm= However this results in "pid died" message. (Sometimes my emacs even crashes.) Anyway, after a bit of debugging there is a tramp buffer that pops up briefly and reports env /bin/sh no such file If in the VM, I do a hack like ln -s /run/current-system/profile/bin/sh /bin/sh Then tramp works without issue. How can one configure tramp to work without the above hack? (sorry this is more of an emacs then guix question) Divan