delorie.com/archives/browse.cgi | search |
X-Recipient: | archive-cygwin AT delorie DOT com |
DomainKey-Signature: | a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id |
:list-unsubscribe:list-subscribe:list-archive:list-post | |
:list-help:sender:message-id:date:from:mime-version:to:subject | |
:references:in-reply-to:content-type:content-transfer-encoding; | |
q=dns; s=default; b=SgQaqBxUmcWbPIwPvejfFu/kJbxYeapVtd+PgEKpNcD | |
B/ab1reBrFpd7H1AnnVnL/ebGkTzsH5Ud2RJIr5HbXDCRrgjXys/Km/DCIWY4FMj | |
OAbx6O6RUCJ4sh1SEV1egl3+tto9S2ULnTfQOMHE+N+fFHPl5SLQ017JzZhxRJiI | |
= | |
DKIM-Signature: | v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id |
:list-unsubscribe:list-subscribe:list-archive:list-post | |
:list-help:sender:message-id:date:from:mime-version:to:subject | |
:references:in-reply-to:content-type:content-transfer-encoding; | |
s=default; bh=Bwy5kVWlIWOyNsnr34QF3BJgtV4=; b=vgByQpiu3cXWFqZ2T | |
P9NoEcYYMzXTKsx80rhkG+5SSf5wF3hNuqRIh+dEEdXZy42C3U1t6rlAK4x/uIRW | |
3GgZbfo4w/NY5Ee4SkiH69QtghmWQaz2nzyNs3rnLKhju3pq7sdvf5L8cGJcJSiy | |
QBDCXuuVig8MCwS66Fx6MsrZT0= | |
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
List-Id: | <cygwin.cygwin.com> |
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
List-Archive: | <http://sourceware.org/ml/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
Sender: | cygwin-owner AT cygwin DOT com |
Mail-Followup-To: | cygwin AT cygwin DOT com |
Delivered-To: | mailing list cygwin AT cygwin DOT com |
Authentication-Results: | sourceware.org; auth=none |
X-Virus-Found: | No |
X-Spam-SWARE-Status: | No, score=-0.4 required=5.0 tests=AWL,BAYES_50,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=H*F:U*cygwin, 1.4, Pictures, Hx-languages-length:3304 |
X-HELO: | Ishtar.sc.tlinx.org |
Message-ID: | <56BF1E4D.5000901@tlinx.org> |
Date: | Sat, 13 Feb 2016 04:15:09 -0800 |
From: | Linda Walsh <cygwin AT tlinx DOT org> |
User-Agent: | Thunderbird |
MIME-Version: | 1.0 |
To: | cygwin AT cygwin DOT com |
Subject: | Re: locate and updatedb |
References: | <56BC940F DOT 6070109 AT zoho DOT com> <56BCD05C DOT 2040409 AT gmail DOT com> <56BCD414 DOT 2010304 AT zoho DOT com> <56BD0D87 DOT 6030008 AT gmail DOT com> |
In-Reply-To: | <56BD0D87.6030008@gmail.com> |
X-IsSubscribed: | yes |
Marco Atzeri wrote: > On 11/02/2016 19:33, Byron Boulton wrote: >> On 2/11/2016 1:18 PM, cyg Simple wrote: >>> On 2/11/2016 9:00 AM, Byron Boulton wrote: >>>> Does anyone here have success using `updatedb` and `locate` in >>>> cygwin? I >>>> use `locate` heavily on my Linux machines, but everytime I've tried to >>>> run `updatedb` on cygwin I've given up and killed the process >>>> because it >>>> is taking too long. --- There's a reason why on linux it is usually set to run when you are asleep. ;-) >>>> Is there something wrong with cygwin's >>>> implementation of `updatedb` making it not work at all or making it >>>> slower that on my Linux machines? Or are there others who have success >>>> using it on cygwin? But it might have to do with disk speed and memory. Laptop drives are usually among the slowest. I ran it just now (this is with MS's Home Essentials real-time protection turned on). law.Bliss/bin> time index_files.sh 670592 (process ID) old priority 0, new priority 19 44.21sec 15.06usr 28.30sys (98.09% cpu) > locate / >/tmp/all > wc /tmp/all 1479146 4014375 133322318 /tmp/all > df . Filesystem Size Used Avail Use% Mounted on C: 949G 585G 365G 62% / ---- So ~1.4 million files... Using the following exclusions: ---(index_files.sh)---- renice +19 $$ Local="/" if [[ -d /windows/sysnative/. ]]; then Local+=" /windows/sysnative/." fi Prunepaths='/.usr /proc /C /B /H /I /M /D /P /System[[:space:]]Volume[[:space:]]Information /Windows/CSC /pagefile.sys /Music /Pictures /Share /Media /home /Doc /$RECYCLE.BIN /cygdrive' /bin/updatedb --findoptions=-noleaf --localpaths="$Local" --prunepaths="$Prunepaths" --netpaths="$Net" ---- Most of those pruned files are pruned either due to redundancy or being on a local network server... That's fairly fast vs. the MS-Home Essentials, full malware scan I run once a week that takes ~ 8-16 hours (It scans a few of my network directories,as well). >>> >>> Processing every file on the drive will be slow just because it's >>> Windows. Initializing the database with updatedb will require a large >>> amount of time. There are processes such as AntiVirus intrusion >>> protection that might make it even slower. >>> >> Hmmm, the reason the slowness is particuarly strange to me is that in >> place of using `locate` from my cygwin terminal, I have to use a program >> called "Everything Search Engine" available at www.voidtools.com. The >> first time I install it, it takes maybe a few minutes to index the hard >> drive, then every once in a while when I open the program it takes a few >> seconds to update the index, but in general the performance for indexing >> and searching the index if comparable to `updatedb` and `locate` on a >> Linux machine, so it's possible to do on Windows. >> >> Byron >> > > the time taken from updatedb is mainly due to > the execution time of "find" on the disks. > > It takes ~ 70 minutes for my 500 GB of data, > and likely the AV is impacting the execution. > > I suspect voidtools is using MS disk indexing > to speed up the things for it. > > > Regards > Marco > > > > > -- > Problem reports: http://cygwin.com/problems.html > FAQ: http://cygwin.com/faq/ > Documentation: http://cygwin.com/docs.html > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |