- 36 Posts
- 34 Comments
Rick_C137@programming.devOPto Linux@lemmy.ml•GeoIP Database to use with FreeNginx !? [ solved ]1·5 days agoThank you @tasankovasara@sopuli.xyz
Let me re phrase your answer:
… should be available in your distro repository…indeed I’ve downloaded a couples of thing but nothing had what I was needed, but with the information within those packages I’ve found https://mailfud.org/geoip-legacy and it works like a charms
In contrast to Flatpak and Snap, the AppImage package itself is the final executable program.
This means there’s no installation needed… and it simpler…
Rick_C137@programming.devOPto Raspberry Pi@programming.dev•Secure use of remote control ?English1·2 months agoThanks hendrik
But you’d have to build the remote yourself
maybe in the future, but I don’t have the time for it now…
\have a look at Bluetooth or ESP-NOW. Wifi and Bluetooth and other protocols have encryption handled for you.
So it their Bluetooth or WiFi remote pilot existing for that ?
Rick_C137@programming.devOPto Raspberry Pi@programming.dev•Secure use of remote control ?English1·2 months agoI don’t think this work’s if you have multiple remote pilot tough…
Rick_C137@programming.devOPto Raspberry Pi@programming.dev•Secure use of remote control ?English1·2 months agoI’m open to all solutions :) But it there some ready Bluetooth remote pilot existing ?
Rick_C137@programming.devto Programming@programming.dev•The US government wants devs to stop using C and C++English1·9 months agoI don’t see python on your image :)
Rick_C137@programming.devOPto Python@programming.dev•How encrypt email with a GnuPG public key ? [ solved ]English21·10 months agoI finally manage to encrypt the body trough ptyhon-gnupg ( warning their documentation is still in alpha stage. )
now, remain to encrypt the subject (ThunderBird compatible) if you have any clues I’m all ears
When time permit I will publish my code in a pastbin.
Wubba Lubba dub-dub**
Rick_C137@programming.devOPto Python@programming.dev•How encrypt email with a GnuPG public key ? [ solved ]English1·10 months agoindeed, but a lot of Linux distribution come with it :)
otherwise it’s installable.
Rick_C137@programming.devOPto Python@programming.dev•How encrypt email with a GnuPG public key ? [ solved ]English2·10 months agoinstead of using a library I can directly use subprocess with gnupg but in both case it seem gnupg require to import the public key to the keyring !? I don’t want that.
Rick_C137@programming.devOPto Android@lemmy.world•`chown` on a sdcard directory impossible...English1·10 months agoThanks all for your input !
So yes
/sdcard
was/storage/emulated/0
and it’s a real sd-card.That was indeed formatted as
FAT
, I reformatted intoEXT4
(from a desktop Linux) put the SD-card back into the phone and started the phone.Ive tried (in the phone)
su chmod 777 /storage/emulated/0 #yes it's still mounted as emulated ! stat /storage/emulated/0 #... #Access: (0771) #....
So I’m still blocked… any ideas ?
Thanks.
I’ve found the most simple way (for my case)
adb shell 'a command'
example
adb shell ls /
Thank you all for your input… but it seem my question is still not fully answered…
let me rephrase, I’m not looking to have a GUI to transfer files, but I would like to execute terminal command remotely (from my computer) to my android phone. Like
SSH
.So I’ve read that I can install a
SSH
server on my android phone… (If you know some’s (FLOSS), I’m all ears) Or if you know a better way thanSSH
I’m all ears too.Thanks.
setfacl -m m:r aFile #re set the mask
solve the problem, but the question is: why the F**** this is happening !?
Update, this is only happening when I copy files from a ~SMB share… :'(
Otherwise it’s correct…
Proxmox seem powerfull
It’s a Type1, not Type2
https://en.wikipedia.org/wiki/Hypervisor#Classification
Rick_C137@programming.devOPto Linux@lemmy.ml•Recursive execute(x) required to enable nginx to read a directory !?? [ SOLVED ]English1·1 year agoThank you all !
Indeed setting
execute
perm on example, sub1, sub2, staticThe program/user have now access to the directory.
In order words all the parents directory need at least
execute
in order to have access in the targeted directory…Now I gave 751 for static. Meaning than others (here nginx) cannot list the files within. But never the less it works
the static files are appearing when requested (HTTP) but forbidding nginx to list the directory is changing something ? (performance/security)Thanks
Rick_C137@programming.devOPto Web Development@programming.dev•nginx, Default server do not works ! [solved]English1·1 year agoI wanted to have a
default server
that catch ~wrong DNS query to the serverSolution
I don’t know how to link to my previous lemmy post, so here it is again
server { listen 443 ssl; server_name _; ssl_certificate /etc/nginx/ssl/catchall.crt; ssl_certificate_key /etc/nginx/ssl/catchall.key; error_page 404 /404_CatchAll.html; # Everything is a 404 location / { return 404; } location /404_CatchAll.html {root /var/www/html/;} }
Thanks @Malix@sopuli.xyz,
Actually, no HTTP/2 do not require SSL/TLS!
it’s Mozilla etc… that force it !
WebPages hosted on the TOR Network (for example) do not need SSL/TLS certificates ! so what we can’t have the benefit of HTTP/2 WTF
To the developers of LibreWolf, can you solve this limitation ?