From owner-freebsd-questions@FreeBSD.ORG Thu Jan 22 07:10:22 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D49FB16A4CE for ; Thu, 22 Jan 2004 07:10:22 -0800 (PST) Received: from mail.rtl.org (rtl-3.i2k.com [63.94.12.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id F023943D48 for ; Thu, 22 Jan 2004 07:10:18 -0800 (PST) (envelope-from jstewart@rtl.org) Received: from mis3c.rtl.lan (rtl-2.i2k.com [63.94.12.206]) by mail.rtl.org (Postfix) with ESMTP id A923730ABF; Thu, 22 Jan 2004 10:09:22 -0500 (EST) Received: by mis3c.rtl.lan (Postfix, from userid 500) id 2B9F24FD5; Thu, 22 Jan 2004 10:08:46 -0500 (EST) Date: Thu, 22 Jan 2004 10:08:46 -0500 From: Jason Stewart To: Jonathon McKitrick Message-ID: <20040122150846.GC1731@rtl.org> Mail-Followup-To: Jonathon McKitrick , freebsd-questions@freebsd.org References: <20040122145353.GB54084@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040122145353.GB54084@dogma.freebsd-uk.eu.org> User-Agent: Mutt/1.4.1i cc: freebsd-questions@freebsd.org Subject: Re: remote X display X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2004 15:10:22 -0000 On 22/01/04 14:53 +0000, Jonathon McKitrick wrote: > > Hi all, > > I have been looking all over for a concise howto for remote X on FreeBSD. I > see some that involve changing config files in the xdm directory, others use > xhost, and another uses xfig, which doesn't exist under FreeBSD AFAICT. > > All I want to do is use a laptop in a local network to be an X client > connected to a more powerful desktop machine. I'm not worried about > security. > > Is xhosts and the DISPLAY variable all I need? Or do I need to go through > all of the xdm configuration hoops? > One idea is to use SSH. If you have sshd on the remote desktop you can use ssh -X to enable X11 forwarding. Just ssh into the remote box and run the X application and you're set to go, provided that X11 forwarding is enabled in the remote sshd_config. Good Luck, Jason