From mboxrd@z Thu Jan 1 00:00:00 1970 From: George Subject: Re: remote execution in heterogeneous environment Date: Sat, 22 Dec 2012 08:32:08 -0500 Message-ID: <871uei2ox3.fsf@gmail.com> References: <6D36E0F9-01D1-4F95-9FAA-B2B2CA10E57E@gmail.com> <87623zaj4j.fsf@gmx.de> <87hang279z.fsf@gmx.de> <87d2y4oeys.fsf@bzg.ath.cx> <87ehij4xp1.fsf@gmx.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:56559) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TmPD2-0000W9-PY for emacs-orgmode@gnu.org; Sat, 22 Dec 2012 08:33:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TmPCt-0003pj-MA for emacs-orgmode@gnu.org; Sat, 22 Dec 2012 08:33:48 -0500 Received: from mail-vc0-f178.google.com ([209.85.220.178]:47519) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TmPCt-0003pb-Ht for emacs-orgmode@gnu.org; Sat, 22 Dec 2012 08:33:39 -0500 Received: by mail-vc0-f178.google.com with SMTP id x16so6083935vcq.23 for ; Sat, 22 Dec 2012 05:33:38 -0800 (PST) In-Reply-To: <87ehij4xp1.fsf@gmx.de> (Michael Albinus's message of "Fri, 21 Dec 2012 09:27:22 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Michael Albinus Cc: gmj@pobox.com, Bastien , emacs-orgmode@gnu.org Michael Albinus writes: >> Similar procedure on a mac still yeilds: >> >> Couldn't write region to >> `/scpc:gmj@example.com:/var/folders/j6/j6w17khs3vl9s2_yg4rb5zsm0000gn/T/input- >> 61683xyS', decode using `mimencode -u -b >%s' f\ >> ailed > > Could you, please, show the exact test case? And please apply the > workaround first (see my other email). > Everything works if I do, as you suggested: (setq temporary-file-directory "~/tmp/") -------------------------------cut here------------------------------- #+NAME: hobbits | bilbo | frodo | #+name: executeOnLocalVM #+BEGIN_SRC sh :var foo=hobbits :dir /george@localhost#2222: :results output echo executed on `hostname` at `date` echo two $foo #+END_SRC #+RESULTS: executeOnLocalVM : executed on garlic at Sat Dec 22 13:25:35 UTC 2012 : two bilbo frodo #+name: relevantVars #+BEGIN_SRC emacs-lisp (concat "temporary-file-directory " temporary-file-directory ) #+END_SRC #+RESULTS: relevantVars : temporary-file-directory /tmp/ #+name: versions #+BEGIN_SRC emacs-lisp (concat (emacs-version) " tramp version: " tramp-version " org version " org-version) #+END_SRC #+RESULTS: versions : GNU Emacs 24.2.1 (x86_64-apple-darwin11.4.2) : of 2012-11-19 on tenseven-slave.macports.org : tramp version: 2.2.6 : org version 7.9.2 -------------------------------cut here------------------------------- Thanks, ---George Jones