From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Michael Albinus Newsgroups: gmane.emacs.help Subject: Re: emacs causing automount error Date: Tue, 11 Feb 2014 15:56:41 +0100 Message-ID: <87bnydd7fa.fsf@gmx.de> References: <38b946ba-8d2d-49ee-9d04-6f5e72d44a9c@googlegroups.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1392130627 8643 80.91.229.3 (11 Feb 2014 14:57:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 11 Feb 2014 14:57:07 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Patrick Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Feb 11 15:57:13 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WDElt-0004nL-5A for geh-help-gnu-emacs@m.gmane.org; Tue, 11 Feb 2014 15:57:13 +0100 Original-Received: from localhost ([::1]:34077 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WDEls-0007Tw-Nv for geh-help-gnu-emacs@m.gmane.org; Tue, 11 Feb 2014 09:57:12 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39264) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WDEla-0007SY-ID for help-gnu-emacs@gnu.org; Tue, 11 Feb 2014 09:57:02 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WDElT-0000Bk-7l for help-gnu-emacs@gnu.org; Tue, 11 Feb 2014 09:56:54 -0500 Original-Received: from mout.gmx.net ([212.227.17.21]:63514) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WDElS-0000BJ-Uo for help-gnu-emacs@gnu.org; Tue, 11 Feb 2014 09:56:47 -0500 Original-Received: from detlef.gmx.de ([93.209.68.41]) by mail.gmx.com (mrgmx101) with ESMTPS (Nemesis) id 0MLB89-1WDVsb0GeH-000JSM for ; Tue, 11 Feb 2014 15:56:44 +0100 In-Reply-To: <38b946ba-8d2d-49ee-9d04-6f5e72d44a9c@googlegroups.com> (Patrick's message of "Tue, 11 Feb 2014 01:50:28 -0800 (PST)") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) X-Provags-ID: V03:K0:zxB3xTZL+oUnch8b61qL23ULeitWKhwZIycO5QLZFXUnccT/CEf SikoGHEdROY4qjFUiagtDlUA95s0HYNamjBconD/zXZuU6QWgTGTlpQz+fWBwWX05UbT2sw b/BrRAS0JhX+Tt71CTSiwnhuHlqtashRAI8WrtlByZ15vtC/R8AzLJzBA5XNdN79hMBZg5f F3PWO0AI/Qktiqni/+mwA== X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] X-Received-From: 212.227.17.21 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:96026 Archived-At: Patrick writes: > Hello, Hi Patrick, > I am using emacs on several machines, and now my system administrator > told me that on one machine his log files are filled up with this > > Feb 10 14:38:46 xx automount[3394]: key ".bzr" not found in map source(s). > Feb 10 14:38:46 xx automount[3394]: key ".git" not found in map source(s). > Feb 10 14:38:46 xx automount[3394]: key ".hg" not found in map source(s). > Feb 10 14:38:46 xx automount[3394]: key "_MTN" not found in map source(s). > Feb 10 14:38:46 xx automount[3394]: key "{arch}" not found in map source(s). > > Comparing the timestamps, this happens everytime I start emacs. Is > anyone familiar with this problem or can point me to where I can stop > emacs from trying to access all these inexisting keys on startup? This seems to be caused by vc. If I open ~/.emacs, for example, vc checks the existence of the following files: /home/albinus/RCS/.emacs,v /home/albinus/.emacs,v /home/albinus/RCS/.emacs /home/albinus/CVS/Entries /home/albinus/.emacs/.svn /home/albinus/.svn /home/.svn /.svn /home/albinus/SCCS/s..emacs /home/albinus/s..emacs /home/albinus/.emacs/.bzr/checkout/format /home/albinus/.bzr/checkout/format /home/.bzr/checkout/format /.bzr/checkout/format /home/albinus/.emacs/.git /home/albinus/.git /home/.git /.git /home/albinus/.emacs/.hg /home/albinus/.hg /home/.hg /.hg /home/albinus/.emacs/_MTN/format /home/albinus/_MTN/format /home/_MTN/format /_MTN/format /home/albinus/.emacs/{arch}/=tagging-method /home/albinus/{arch}/=tagging-method /home/{arch}/=tagging-method /{arch}/=tagging-method If you don't need vc, disable it. It might also improve performance. > Thanks, > Patrick Best regards, Michael.