GNU bug report logs -
#57044
29.0.50; tramp-error: Reading directory: Permission denied, /scp:motorolausb:/storage/emulated/0/
Previous Next
Reported by: Jean Louis <bugs <at> gnu.support>
Date: Sun, 7 Aug 2022 19:27:01 UTC
Severity: normal
Tags: moreinfo
Found in version 29.0.50
Fixed in version 29.1
Done: Michael Albinus <michael.albinus <at> gmx.de>
Bug is archived. No further changes may be made.
Full log
Message #34 received at 57044 <at> debbugs.gnu.org (full text, mbox):
Michael Albinus <michael.albinus <at> gmx.de> writes:
Hi Jean,
Finally, I've been successful to install termux properly. That gives me
the understanding what happens.
> - Apply the needed settings, like
>
> (setq tramp-verbose 10
> tramp-connection-properties '(("ssh:motorola" "tmpdir" "/storage/emulated/0/tmp"))
> tramp-remote-path '(...)
> tramp-remote-process-environment '(...))
>
>> 07:10:57.056208 tramp-send-command (6) # while read d; do if test -x $d/ls && test -f $d/ls; then echo tramp_executable $d/ls; break; fi; done <<'b43631a7d2938506927af066a6b54cbc'
>> /sbin
>> b43631a7d2938506927af066a6b54cbc
>> 07:10:57.060465 tramp-wait-for-regexp (6) #
>> ///fc5b092ac8d0a3784e7c5443fffe4f12#$
>
> It searches only (!) in /sbin, and I don't know why.
This the problem, indeed. tramp-remote-path uses directories like
"/usr/bin". But in Termux, there is a prefix, and the directory is
"/data/data/com.termux/files/usr/bin". So we must add this prefix to all
file names in tramp-remote-path. I've fixed this by declaring
tramp-remote-path as connection-local variable. After calling "emacs -Q
-l tramp", all what I needed was
--8<---------------cut here---------------start------------->8---
(setq tramp-connection-properties
'(("/ssh:Samsung-SM-G920F-Michael-Albinus:" "tmpdir" "~/tmp"))
(connection-local-set-profile-variables
'tramp-connection-local-termux-profile
`((tramp-remote-path
. ,(mapcar
(lambda (x)
(if (stringp x) (concat "/data/data/com.termux/files" x) x))
(copy-tree tramp-remote-path)))))
(connection-local-set-profiles
'(:application tramp :machine "Samsung-SM-G920F-Michael-Albinus")
'tramp-connection-local-termux-profile)
--8<---------------cut here---------------end--------------->8---
"Samsung-SM-G920F-Michael-Albinus" is the name of my Android device, and
"~/tmp" the temporary directory I have created.
Would you like to try it?
>> Jean
Best regards, Michael.
This bug report was last modified 2 years and 247 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.