Re: Aw: Re: openSuse, Datenaustausch PC - Handy, gelingt nicht immer
Am Mittwoch, 26. Oktober 2022, 21:56:07 CEST schrieb classen@info-halle.net: Hallo, Thomas, erstmal vielen Dank
Hallo. Ich mache es mit "syncthing" über WLAN (handi) und Kabel (Ubuntu - Rechner) und dazwischen ist eben eine fritzbox...
auf Deinen Ratschlag hin habe ich so eben syncthing installiert. Probier ich aus. Was mich verwundert: Da mussten diverse Python2-Komponenten mit zu geladen werden ... ? MfG Frank
adb ist Dein Freund. Hier mein schlampiges, aber zuverlässiges Script für Bilder ... kann man auch automatisieren über udev-rules. Wer sich traut, kann adb auch über WLAN nutzen - das mache ich um mein altes Webcam-Smartphone regelmäßig zu rebooten - fragt nicht, warum :-) #!/bin/bash DATE=`date +%Y-%m-%d-%H-%M` DIR=/home/mfeilner/Bilder/smartphone-$DATE cd $DIR adb pull /sdcard/DCIM/Camera if [ $? -eq 0 ] ; then while true; do read -p "Delete Files? [y/n]" yn case $yn in [Yy]*) echo "deleting files" sleep 5 adb shell rm /sdcard/DCIM/Camera/*; break; esac echo "Nothing deleted from Smartphone" break; done fi # I have no clue about the why and who of this file, but it keeps appearing and # I am not eager to find out why. Thus just deleting it. cd $DIR/Camera && mv * $DIR; rm .videorecorder.3gp.tmp if [ -z "$(ls -A $DIR/Camera)" ]; then cd $DIR && rmdir $DIR/Camera cd $DIR && /home/mfeilner/bin/imgprepare ./ else echo "Temporary camera directory is not empty." fi The imgprepare script called at the end does resizing/re-encoding, removes exif data and writes my data and sorts images, videos and raw files into separate directories. But that would be too embarrassing to publish :-) Did that help? I do similar for ringtones or other data I need in sync on the phones - things that own- or nextcloud can't do. KDEconnect (you guys rock!) does the rest. Am Mittwoch, 26. Oktober 2022, 22:04:38 CEST schrieb eilf:
Am Mittwoch, 26. Oktober 2022, 21:56:07 CEST schrieb classen@info-halle.net: Hallo, Thomas,
erstmal vielen Dank
Hallo. Ich mache es mit "syncthing" über WLAN (handi) und Kabel (Ubuntu - Rechner) und dazwischen ist eben eine fritzbox...
auf Deinen Ratschlag hin habe ich so eben syncthing installiert. Probier ich aus.
Was mich verwundert: Da mussten diverse Python2-Komponenten mit zu geladen werden ... ?
MfG
Frank
-- -- Best Regards - Mit freundlichen Grüßen, Markus Feilner, Feilner IT - 20 years of open services - https://nitter.net/mfeilner ------------------------- Digital sovereignty in three words: "Exit Strategy First!" Digitale Souveränität in Drei Worten. ------------------------- Digitale Souveränität, Nachhaltigkeit, Dokumentation Linux, Security, Strategy, Politics, Journalism, Networking. https://www.feilner-it.net, 93059 Regensburg Wöhrdstr. 10, +49 170 302 7092 (+Signal) PGP: 40A3C306F96133067C11CFD9A958A906268C9F0A http://www.feilner-it.net/files/MFpub.asc Xing: http://www.xing.com/profile/Markus_Feilner LinkedIn: https://www.linkedin.com/in/markusfeilner @mfeilner: Matrix, Jabber, Skype, Twitter, Diaspora, ...
participants (2)
-
eilf
-
Markus Feilner