How to copy a file between devices? (2022)
21–30 of 354 posts
Re: How to copy a file between devices? (2022)
#22I understand why AirDrop doesn't get full ticks here, but I have to say it has saved me hundreds of hours over the last few years transferring literally anything from phone(s) laptop(s) laptop(s) phones(s) at the drop of a hat. I would not be happy if I had to give it up.
Re: How to copy a file between devices? (2022)
#23Isn’t https://wormhole.app/ the solution here? Note I haven’t used it, it’s just often brought up here as a good solution for this class of problem. Is it surprising that the author mentions a ton of solutions but not this one? I would think a deep dive of file sending applications would include this, it’s old enough and well known enough in circles that its exclusion in a comparison of file sending approaches does f…
Here is a list of open source options. This isn't the first time I have shared this on here either. Perhaps this is another sign that web search is failing us. SnapDrop - Site: https://snapdrop.net/ - Source: https://github.com/RobinLinus/snapdrop ShareDrop - Site: https://www.sharedrop.io/ - Source: https://github.com/szimek/sharedrop FilePizza - Site: https://file.pizza/ - Source: https://github.com/kern/filepizza…
Re: How to copy a file between devices? (2022)
#24[flagged]
The OP talks about transferring from a PC to a phone (and vice versa). I have no idea how to use scp on my phone or how to move a file from my PC to my phone with scp. Honestly, if you can teach me how to do that in less than a minute, I would (no sarcasm) really appreciate it.
SSHelper will tell give you a GUI where you configure optional password and get the IP and port. Then scp is -P @:
scp -P22222 myfile anyuser@192.168.1.10:/data/user/0/com.arachnoid.sshelper/SDCard/.
where the only trick part is how Android managed storage, but it's just more letters (/data/user/0/com.arachnoid.sshelper/SDCard/).Once I found Termux I embraced it since it's a nifty linux thing straight on my phone with it's own configurable sshd and it's exactly the same as above except with a different path and lots more options.
Re: How to copy a file between devices? (2022)
#25KDE Connect?
But when it works it's great. P2P over lan.
Re: How to copy a file between devices? (2022)
#26Signal has a “Note To Self” feature which in a rush can be used to push files across devices. I’ve sent PDFs between my Linux desktop and iPhone, but never anything bigger than a few Mb.
Re: How to copy a file between devices? (2022)
#27Most people should run a static HTTP/1.1 webserver (after port forwarding 80) on their home PC so they can dump files into a directory to share them by sending the http://your.ip.address.here/directory/ link via email or whatever. When you use directories and files your OS itself is the natural interface and everything just works.
python3 -m http.server 8080
to launch a web server in the current directory on port 8080.
Re: How to copy a file between devices? (2022)
#28[flagged]
Re: How to copy a file between devices? (2022)
#29KDE Connect?
Re: How to copy a file between devices? (2022)
#30Most people should run a static HTTP/1.1 webserver (after port forwarding 80) on their home PC so they can dump files into a directory to share them by sending the http://your.ip.address.here/directory/ link via email or whatever. When you use directories and files your OS itself is the natural interface and everything just works.