From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vikas Rawal Subject: Using tramp to run R source code blocks on remote server Date: Thu, 21 Apr 2016 16:23:03 +0530 Message-ID: Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2070.6\)) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39192) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atCEW-00020H-4M for emacs-orgmode@gnu.org; Thu, 21 Apr 2016 06:53:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1atCER-0007an-6c for emacs-orgmode@gnu.org; Thu, 21 Apr 2016 06:53:16 -0400 Received: from mail-pa0-x229.google.com ([2607:f8b0:400e:c03::229]:35328) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atCEQ-0007af-Uw for emacs-orgmode@gnu.org; Thu, 21 Apr 2016 06:53:11 -0400 Received: by mail-pa0-x229.google.com with SMTP id fs9so28255311pac.2 for ; Thu, 21 Apr 2016 03:53:10 -0700 (PDT) Received: from [192.168.1.11] ([110.227.174.156]) by smtp.gmail.com with ESMTPSA id zu10sm1165728pab.31.2016.04.21.03.53.07 for (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 21 Apr 2016 03:53:09 -0700 (PDT) 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" To: org-mode mailing list I am trying to run R source code blocks on a remote server (defined in = my ~/.ssh/config as cesp). I am facing several problems. 1. The following sample block, when used with ":results value" does not = give any results. #+NAME: level1 #+begin_src R :results value :exports results :colnames yes :hline yes = :session cesp :dir /cesp:/home/vikas/ c(1:5) #+end_src I get the following message: tramp-flush-directory-property: Wrong type argument: arrayp, nil I get the expected output if I use ":results output=E2=80=9D, but I = don=E2=80=99t want that. 2. Is there a way to be able to use screen/byobu with remote processing? = I have tried various options of using shell, term, or ansi-term. Each of = them gives some problem or the other. Does anyone have experience with = using any of these? Would appreciate help Vikas=