DMARC-Filter: OpenDMARC Filter v1.4.2 delorie.com 53N3aLmF1938551 Authentication-Results: delorie.com; dmarc=pass (p=none dis=none) header.from=cygwin.com Authentication-Results: delorie.com; spf=pass smtp.mailfrom=cygwin.com DKIM-Filter: OpenDKIM Filter v2.11.0 delorie.com 53N3aLmF1938551 Authentication-Results: delorie.com; dkim=pass (1024-bit key, unprotected) header.d=cygwin.com header.i=@cygwin.com header.a=rsa-sha256 header.s=default header.b=k8FN7FFu X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 28BFC3857B94 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1745379379; bh=rLO9RjaiHqDD8mQt5N7qTIoCDCWoDw8BNINZYp188GM=; 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=k8FN7FFuTdoP+zC4ZezIQ6Fd96FqP5+nWW9SuzEi5DhCtV0NgeFciNRXPQpmZmUPJ 5toOir0k3CArbMopPP9cqwziXrL4DPT2MxzYCYeHUTyQcFE4IMPXFae/sN0kr7S88e wisVaG151FvWrPtWjjITjXlsEsm/oNCWi8QVZLBI= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 398813858D38 ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 398813858D38 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1745379312; cv=none; b=QwPSywp1IZ5xjNZxi+0lUgUUehDH/jupsQ0JbY51rZ5XaEIuHKwRKKXhjC5U94B3G1b+NYSa6aEOV28YbEMqd8mHrEeeqt4txq1p/Zx8dTTqFVTPkGikre0I86TNytQy1BUoZULJf+uwzdSSTVzKqhtroI+pJ8F9A+qpR5ukVfg= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1745379312; c=relaxed/simple; bh=2Q84AgllVT8wfmn7zFNQloyU6WH3XDQ9ELGvis5BZpc=; h=Message-ID:Date:MIME-Version:Subject:To:From; b=qLY4W5CUh19+eJDJgVdeA5oFl/8GuyUduIGF3IHN3470l+bsKehpJTZ1zMbeQrLUfyDisMXCsiVxlfRDHR9a4QsDMhDw87fWQcBP+GeX7Gwepdr4nkR4Hwh0onfZgoRGMA8SQcTv9yzKWQF/3/ooSOwCQAXY14fjHeZQS08XNPA= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 398813858D38 Message-ID: Date: Tue, 22 Apr 2025 20:35:16 -0700 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: Windows 10 Home and sshfs To: cygwin AT cygwin DOT com References: <018962a4-0870-4fd1-93fe-6cfbe4d86857 AT holgerdanske DOT com> Content-Language: en-US In-Reply-To: <018962a4-0870-4fd1-93fe-6cfbe4d86857@holgerdanske.com> X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.30 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Mark Geisert via Cygwin Reply-To: Mark Geisert 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 53N3aLmF1938551 On 4/22/2025 8:18 PM, David Christensen via Cygwin wrote: > On 4/22/25 19:31, Mark Geisert via Cygwin wrote: >> A peculiarity of Cygwin sshfs on Windows is that the directory being >> mounted on ('/samba' in your case) must not exist before starting sshfs. >> >> If that doesn't help, please do >>      echo $? >>      cat /var/run/fuse.mounts >> right after trying to start sshfs and post the results here. >> >> ..mark >> > > Thank you for the reply.  I vaguely remembered that the mount point must > not exist prior to calling sshfs(1), and tried that permutation earlier, > but it did not work.  It still does not work: > > 2025-04-22 20:07:20 admin AT dq67sw ~ > $ sshfs dpchrist AT samba:/var/local/samba/dpchrist /samba/dpchrist > > 2025-04-22 20:07:38 admin AT dq67sw ~ > $ echo $? > 127 The 127 exit code indicates sshfs itself is missing a run-time library; it's not even running far enough to process the options you're trying. What does 'ldd /usr/bin/sshfs.exe' output? On my system it looks like ntdll.dll => /c/Windows/SYSTEM32/ntdll.dll (0x7fffb89d0000) KERNEL32.DLL => /c/Windows/System32/KERNEL32.DLL (0x7fffb8460000) KERNELBASE.dll => /c/Windows/System32/KERNELBASE.dll (0x7fffb6100000) cygwin1.dll => /usr/bin/cygwin1.dll (0x7fffa7f60000) cygglib-2.0-0.dll => /usr/bin/cygglib-2.0-0.dll (0x507860000) cygfuse-3.2.dll => /usr/bin/cygfuse-3.2.dll (0x3e5fb0000) cygiconv-2.dll => /usr/bin/cygiconv-2.dll (0x3cba60000) cygintl-8.dll => /usr/bin/cygintl-8.dll (0x5ee2d0000) cyggcc_s-seh-1.dll => /usr/bin/cyggcc_s-seh-1.dll (0x50caa0000) cygpcre2-8-0.dll => /usr/bin/cygpcre2-8-0.dll (0x453a70000) ..mark -- 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