From owner-freebsd-newbies@FreeBSD.ORG Fri Jul 11 05:04:35 2003 Return-Path: Delivered-To: freebsd-newbies@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6A3837B401 for ; Fri, 11 Jul 2003 05:04:35 -0700 (PDT) Received: from mail1.uits.uconn.edu (mail1.uits.uconn.edu [137.99.25.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD50143FBF for ; Fri, 11 Jul 2003 05:04:34 -0700 (PDT) (envelope-from matt@forsetti.com) Received: from forsetti.com (d80h149.public.uconn.edu [137.99.80.149]) by mail1.uits.uconn.edu (8.11.6/8.11.6) with ESMTP id h6BC3fu09844; Fri, 11 Jul 2003 08:03:41 -0400 Message-ID: <3F0EA799.8030209@forsetti.com> Date: Fri, 11 Jul 2003 08:03:37 -0400 From: Matt User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030613 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jalle References: <5.2.1.1.0.20030711110523.02f0fdd0@archimedes.rsn.bth.se> In-Reply-To: <5.2.1.1.0.20030711110523.02f0fdd0@archimedes.rsn.bth.se> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-MailScanner: Found to be clean X-MailScanner-SpamCheck: cc: Cotton cc: freebsd-newbies@freebsd.org Subject: Re: FreeBSD/XFree questions X-BeenThere: freebsd-newbies@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Gathering place for new users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jul 2003 12:04:36 -0000 > >> I was hoping XFree would be useable, so I could run some apps >> remotely using Apple’s X11 on OS X. Which leads to question #2… how >> does one run an X application remotely like that, and have just the >> GUI on the local box? The machines would be on the same subnet >> 192.168.1.x, with the FreeBSD box on an Ethernet interface and the >> Powermac (1.25 ghz duallie) on 802.11g. > > > If you are not interested in running a full desktop from your server > (XDMCP I would guess), I'd suggest you try X over SSH (ssh -X) > Google around and you will find some useful stuff on this. I can't > tell you how well/bad it interacts with OS X though. Exporting X clients from FreeBSD to your Apple's X11 server works great, either natively (xhost, $DISPLAY) or over SSH (ssh -X hostname). The quartz_wm window manager Apple provides integrates your X clients beatifully, using the same window decorations and management as Apple's native interface. Very seamless integration. I suggest trying the ssh -X method first (less work) -- simply ssh from your OSX/X11 terminal to your FreeBSD box, using "ssh -x username@my.freebsd.com". Once your ssh session is started, simply run an X client, like "xterm" to see if the connection works. If it does, then any X client (Nautilus, Gnome, KDE, NetBeans, OpenOffice.org, etc) will work. You may have to change your sshd config on the FreeBSD side to all X11 Forwarding. Emjoy! -Matt