From owner-freebsd-questions@FreeBSD.ORG Sun May 25 09:21:39 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 626D41065679 for ; Sun, 25 May 2008 09:21:39 +0000 (UTC) (envelope-from chrizach@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.238]) by mx1.freebsd.org (Postfix) with ESMTP id 383898FC0C for ; Sun, 25 May 2008 09:21:39 +0000 (UTC) (envelope-from chrizach@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so1727197rvf.43 for ; Sun, 25 May 2008 02:21:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=Yc22EMfZauOY7n8KT2/yCn4S5hCzmt4K9dN9SYYuD/k=; b=IW+t9Y5hKcWC1Vz46zdPyaLmryVYZV8ipo+XH/4yHVd0fl6GSeWKCXkaj9BiltvsZs9rN/dSm5+72YNSUGYJqstpGyTBbfeH+DPxk6lWGm6A4k2a2RBnGrANmBjYMbh1z2E76vBaxydqi3lD4snfn2hVpk2w8/zLq9OUEP+2fjU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=I4X5AqMbuzieroi5CKZV1jOLH9bwIuBWxICVddT35CMeRdu8HCvoDF9etg8GQJOijXTrZM1F4Hg2lfvjIOUrB41iGPiWDJGdhlhvKkcR7c4txZnHxxVqVdTMRpu73YNMt1lIFgMaxWPB3n18zbvz795/PIH43r1Skxwyxwzldks= Received: by 10.140.125.1 with SMTP id x1mr1572136rvc.217.1211707298736; Sun, 25 May 2008 02:21:38 -0700 (PDT) Received: by 10.140.142.18 with HTTP; Sun, 25 May 2008 02:21:38 -0700 (PDT) Message-ID: <4a89d1190805250221m65344017r9ff2ba4af2dd704d@mail.gmail.com> Date: Sun, 25 May 2008 11:21:38 +0200 From: "Christian Zachariasen" To: ronggui , "FreeBSD Mailing Lists" In-Reply-To: <38b9f0350805250111p50369e5ax2e5604500fd20f78@mail.gmail.com> MIME-Version: 1.0 References: <38b9f0350805250111p50369e5ax2e5604500fd20f78@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: core dumped with java X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2008 09:21:39 -0000 On Sun, May 25, 2008 at 10:11 AM, ronggui wrote: > Dear List, > > I upgraded to freebsd 7.0 yesterday. > > I have install /usr/ports/java/diablo-jre15/ using ports. Then, I run > the following command, resulting errors. > > [wincent@PC-BSD]java -jar /usr/local/share/java/jabref/jabref.jar > Segmentation fault: 11 (core dumped) > > Anyone know how to solve this problem? Thanks. > > -- > HUANG Ronggui, Wincent http://ronggui.huang.googlepages.com/ > Bachelor of Social Work, Fudan University, China > Master of sociology, Fudan University, China > Ph.D. Candidate, CityU of HK. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > Does it segfault if you just run a class as you normally would? e.g what happens if you do the following: vi HelloWorld.java class HelloWorld { public static void main(String[] args) { System.out.println("Hello world!"); } } javac HelloWorld.java java HelloWorld Christian Zachariasen