From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: "Nick W.Rias" To: community@altlinux.ru Subject: [Comm] FreeCiv client trouble Date: Wed, 18 Jun 2003 09:43:15 +0400 User-Agent: KMail/1.5 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit Content-Disposition: inline Message-Id: <200306180943.15021.nwr0@mtts.elcom.ru> X-BeenThere: community@altlinux.ru X-Mailman-Version: 2.1.1 Precedence: list Reply-To: community@altlinux.ru, nwr0@_NO_SPAM_mtts.elcom.ru List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2003 05:43:16 -0000 Archived-At: List-Archive: List-Post: Перестал запускаться клиент FreeCiv. На 12 консоле пишет: modprobe: Can't locate module sound-slot-1 modprobe: Can't locate module sound-service-1-3 modprobe: Can't locate module char-major-10-134 Понятно, что не может найти модули, но непонятно куда они делись, если раньше всё работало, и как бы все их вернуть назад? Николай. >>From pasha@pasha.alkorn.ru Wed Jun 18 09:46:36 2003 Return-Path: Delivered-To: community@lrn.ru Received: from master.altlinux.ru (master.altlinux.ru [62.118.250.235]) by lrn.ru (Postfix) with ESMTP id 3D647499F5 for ; Wed, 18 Jun 2003 09:46:36 +0400 (MSD) Received: from marakvint-shipilovskaya.rmt.ru (marakvint-shipilovskaya.rmt.ru [213.252.80.30]) by master.altlinux.ru (Postfix) with ESMTP id B7FD6E31CF for ; Wed, 18 Jun 2003 09:46:32 +0400 (MSD) Received: from pasha.alkorn.net ([10.10.10.155] helo=pasha.alkorn.ru) by marakvint-shipilovskaya.rmt.ru with esmtp (Exim 3.36 #1) id 19SVje-000Cog-00 for community@altlinux.ru; Wed, 18 Jun 2003 09:43:54 +0400 Received: by pasha.alkorn.ru (Postfix, from userid 500) id 54E481BA04; Wed, 18 Jun 2003 09:47:50 +0400 (MSD) Date: Wed, 18 Jun 2003 09:47:50 +0400 From: Pavel Tsybulin To: community@altlinux.ru Subject: Re: [Comm] Java + Postgresql Message-ID: <20030618054750.GA1506@pasha.alkorn.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.4i X-BeenThere: community@altlinux.ru X-Mailman-Version: 2.1.1 Precedence: list Reply-To: community@altlinux.ru List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2003 05:46:36 -0000 On Wed, Jun 18, 2003 at 08:56:57AM +0400, Михаил Дворников wrote: import java.sql.*; public class Msql { public Msql() { } public void runMe() { try { Class.forName("org.postgresql.Driver"); Connection db = DriverManager.getConnection("jdbc:postgresql:test", "postgres", ""); db.close(); } catch (Exception e) { System.out.println(e.getMessage()) ; } } public static void main(String[] args) { new Msql().runMe() ; } } > Выдает ошибки: > $javac Msql.java > > Msql.java:5: unreported exception java.lang.ClassNotFoundException; must be caught or declared to be thrown > Class.forName("org.postgresql.Driver"); > ^ типа того Pavel