From owner-freebsd-questions Tue Jul 15 03:22:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA19471 for questions-outgoing; Tue, 15 Jul 1997 03:22:02 -0700 (PDT) Received: from glacier.wise.edt.ericsson.se (glacier-ext.wise.edt.ericsson.se [193.180.251.38]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA19466 for ; Tue, 15 Jul 1997 03:21:58 -0700 (PDT) Received: from erlang (erlang.ericsson.se [147.214.36.16]) by glacier.wise.edt.ericsson.se (8.7.5/8.7.3/glacier-0.9) with SMTP id MAA29688; Tue, 15 Jul 1997 12:20:18 +0200 (MET DST) Received: from townsend.ericsson.se by erlang (SMI-8.6/LME-2.2.4) id MAA09558; Tue, 15 Jul 1997 12:20:15 +0200 Received: from townsend by townsend.ericsson.se (SMI-8.6/client-1.5) id MAA05760; Tue, 15 Jul 1997 12:20:21 +0200 Message-Id: <199707151020.MAA05760@townsend.ericsson.se> To: osa@unibest.ru Cc: freebsd-questions@FreeBSD.ORG Cc: kent@erlang.ericsson.se Subject: Re: How I may run X in remote machine? Reply-To: kent@erlang.ericsson.se In-Reply-To: Your message of "Tue, 15 Jul 1997 12:28:13 +0400 (MSD)" References: X-Mailer: Mew version 1.70 on Emacs 19.34.1 X-URL: http://www.ericsson.se/erlang Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Tue, 15 Jul 1997 12:20:20 +0200 From: Kent Boortz Sender: owner-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > My machine is a FreeBSD-current. My XFree86 working perfectly. > How I may run X in remote machine ( AIX 4.2 )? This is not a FreeBSD question, it is a general Unix/X question. Anyway, on the machie you want to display the X graphics do % xhost +foo.my.net where "foo.my.net" is the name of the other machine. To run an X application on the other machine that you want to display on yours % setenv DISPLAY bar.my.net:0 % xv & or % DISPLAY=bar.my.net:0 % export DISPLAY % xv & Note that if you plan to start xterm windows or emacs over a modem line it is *much* faster to start local xterm windows and do a rlogin in that window. You then start thing like emacs in that window in text mode "emacs -nw". /kgb