X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D3C7D3858C83 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1677858842; bh=zfk/qHF3Oz/AwnK0pFfw2ZhqPR23B2eJaE9xf4auyDs=; h=Date:Subject:To:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=RQdW9fLReqIrMNDAa4BAdj9QB56wKya5gL3GwCX2xABxwHzN2GG0DQ5KP2rp5KHE8 Ib25vWBhts1thp0yrHydo3vF8A81pJFx3Z54Fk2B0fTH2SNnKBz2VtW8QA/2wHJN+w 7yX9tMgekswo+DeXUukVRxvI1JYLLAlXXF4eXahI= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C60073858D37 Message-ID: <6a80105e-c0c2-1bad-16a3-b4f1dd38f3b3@cs.umass.edu> Date: Fri, 3 Mar 2023 10:53:42 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Subject: Re: Nano fails to open file "~/.bashrc". To: Kirill Frolov , cygwin AT cygwin DOT com References: <0de2dd08-f532-0c21-3685-5fc7e86ef8ee AT gmail DOT com> <165153627 DOT 20230303154721 AT yandex DOT ru> <9abd4f0c-3c51-1626-59d7-f6b65891c99d AT gmail DOT com> <1901530338 DOT 20230303183108 AT yandex DOT ru> Content-Language: en-US In-Reply-To: X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, NICE_REPLY_A, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Eliot Moss via Cygwin Reply-To: moss AT cs DOT umass DOT edu Content-Type: text/plain; charset="utf-8"; Format="flowed" Errors-To: cygwin-bounces+archive-cygwin=delorie DOT com AT cygwin DOT com Sender: "Cygwin" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 323FsQda024369 On 3/3/2023 10:37 AM, Kirill Frolov via Cygwin wrote: > > On 03.03.2023 18:31, Andrey Repin wrote: >> Greetings, Kirill Frolov! >> >> Please avoid top-posting in this list. >> >>> On 03.03.2023 15:47, Andrey Repin wrote: >>>> Greetings, Kirill Frolov! >>>> >>>>> When i run nano ~/.bashrc nano opens with   [ Directory '/home/frolo' does not exist ] error. >>>> Do you run it from bash prompt or from CMD prompt? >>>> >>>>> The file opens with cat ~/.bashrc >>>> Can you please show us the output of >>>> >>>> getent passwd "$USER"; mount; cat /etc/nsswitch.conf >>>> >>> I run it with F:\cygwin64\bin\mintty.exe -i /Cygwin-Terminal.ico - >> Thanks. TBH, I'm baffled. Your setup looks like standard unaltered one. >> Diagnostics seems clear, but the last bit remains. >> What the `which nano` says? >> >>> $ getent passwd "$USER"; mount; cat /etc/nsswitch.conf >>> frolo:*:197609:197121:U-DESKTOP-P57624Q\frolo,S-1-5-21-3636099827-1216969241-2011884586-1001:/home/frolo:/bin/bash >>> F:/cygwin64/bin on /usr/bin type ntfs (binary,auto) >>> F:/cygwin64/lib on /usr/lib type ntfs (binary,auto) >>> F:/cygwin64 on / type ntfs (binary,auto) >>> C: on /cygdrive/c type ntfs (binary,posix=0,user,noumount,auto) >>> D: on /cygdrive/d type ntfs (binary,posix=0,user,noumount,auto) >>> E: on /cygdrive/e type ntfs (binary,posix=0,user,noumount,auto) >>> F: on /cygdrive/f type ntfs (binary,posix=0,user,noumount,auto) >>> # /etc/nsswitch.conf >>> # >>> #    This file is read once by the first process in a Cygwin process tree. >>> #    To pick up changes, restart all Cygwin processes.  For a description >>> #    see https://cygwin.com/cygwin-ug-net/ntsec.html#ntsec-mapping-nsswitch >>> # >>> # Defaults: >>> # passwd:   files db >>> # group:    files db >>> # db_enum:  cache builtin >>> # db_home:  /home/%U >>> # db_shell: /bin/bash >>> # db_gecos: >> $ which nano >> /cygdrive/c/Program Files/Git/usr/bin/nano I'll jump in: That does not appear to be Cygwin nano, but some other, Windows-based nano, which would expect Windows type paths, not Cygwin type paths. You have (at least) two options: - Drop that nano and install the Cygwin one; - Invoke that nano with a Windows path, perhaps like this: nano $(cygpath -wa ~/.bashrc) Personally, I'd go with the first option, since CYgwin nano is more likely to play nicely with Cygwin files ... Best wishes - Eliot Moss -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple