From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 28 19:44:38 2008 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C91A41065671 for ; Fri, 28 Mar 2008 19:44:38 +0000 (UTC) (envelope-from redchin@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.184]) by mx1.freebsd.org (Postfix) with ESMTP id 346508FC1D for ; Fri, 28 Mar 2008 19:44:37 +0000 (UTC) (envelope-from redchin@gmail.com) Received: by fk-out-0910.google.com with SMTP id b27so546090fka.11 for ; Fri, 28 Mar 2008 12:44:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=LW61fcD/ZPORgo+1K73vY3w5wp/7Irt9rX7SszqVZDc=; b=dJwMFBJQYfZ7zsBZHDNEFUslGHd/EKNTbH2oEUreT3bTKF1Ud/HI+cKNCM/Fjepm9FVunL64XIYkSJO7eZOVj+JXHvX8zpI+hNgocEV1srxn7DgZltWUjqDGRd5f+AoydW6TzUKzTCx2CSpoWXV85JlG0VwV3onEomHAnWfkN/8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=OtUwBwtCm7LWC0b9R19FnG77FpKJdbOaPPigihqWc7His3ION684OMuQugftirhFbhNqAJQhJzEVAz5IIYbe+epzKZU42UAv59ggRuR4SloVTOVCsI0La7lhlCAwFEceanMNquSInI2FVunaWhhTIKmOK0XN8c5s8JP3Bn30Qhg= Received: by 10.82.188.15 with SMTP id l15mr6499980buf.34.1206733097755; Fri, 28 Mar 2008 12:38:17 -0700 (PDT) Received: by 10.82.160.9 with HTTP; Fri, 28 Mar 2008 12:38:17 -0700 (PDT) Message-ID: <1d3ed48c0803281238q4b60eb43i37600aa2a7c40543@mail.gmail.com> Date: Fri, 28 Mar 2008 12:38:17 -0700 From: "Kevin Downey" To: "Joe Marcus Clarke" In-Reply-To: <1206732644.2392.79.camel@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200803281749.m2SHnuDh030298@multi.usr.ch> <1206727968.2392.39.camel@shumai.marcuscom.com> <1d3ed48c0803281229h3bee1c4emae5188107f67de7d@mail.gmail.com> <1206732644.2392.79.camel@shumai.marcuscom.com> Cc: freebsd-gnome@freebsd.org Subject: Re: consolekit/polkit problem X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2008 19:44:39 -0000 On Fri, Mar 28, 2008 at 12:30 PM, Joe Marcus Clarke wrote: > On Fri, 2008-03-28 at 12:29 -0700, Kevin Downey wrote: > > On Fri, Mar 28, 2008 at 11:12 AM, Joe Marcus Clarke > > wrote: > > > On Fri, 2008-03-28 at 18:49 +0100, Stefan Hauser wrote: > > > > > XDG_SESSION_COOKIE should be set by gdm. You can do a ps -auwwex and > > > > > grep for gnome-session to see that it's being set in the environment. > > > > > > > > tadaaa.. i did the ps and saw nothing.. there was no procfs mouted. > > > > now with /proc, everything runs as expected... > > > > > > Yeah, procfs IS REQUIRED for GNOME. Sucks, I know, but until we have a > > > replacement for /proc/PID/file on all supported versions of FreeBSD, > > > we're stuck with it. > > > > > > Joe > > > > > > > so procfs is required for GNOME, > > That means you have to choose between java and gnome? > > I use both on my workstation with /proc mounted and I don't have a > problem. Where does it state that the /proc and Java don't mix? > > > > Joe > > -- > PGP Key : http://www.marcuscom.com/pgp.asc > I forgot where I read it, but I was having trouble getting java to work and I googled and found a site that said they don't mix. When I unmounted /proc java started working. kpd@eskarina ~/clojure_20080213% java -version java version "1.5.0_14-p8" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_14-p8-root_28_feb_2008_23_34) Java HotSpot(TM) Server VM (build 1.5.0_14-p8-root_28_feb_2008_23_34, mixed mode) kpd@eskarina ~/clojure_20080213% java -cp /usr/local/share/java/classes/jline.jar:clojure.jar jline.ConsoleRunner clojure.lang.Repl Clojure user=> (+ 1 3) 4 user=> kpd@eskarina ~/clojure_20080213% sudo mount -t procfs null /proc kpd@eskarina ~/clojure_20080213% java -cp /usr/local/share/java/classes/jline.jar:clojure.jar jline.ConsoleRunner clojure.lang.Repl Error: could not find libjava.so Error: could not find Java 2 Runtime Environment. zsh: exit 2 java -cp /usr/local/share/java/classes/jline.jar:clojure.jar kpd@eskarina ~/clojure_20080213% -- The Mafia way is that we pursue larger goals under the guise of personal relationships. Fisheye