Skip Navigation

Posts
28
Comments
21
Joined
2 yr. ago

  • not working, both variables do not exist and the echo "OK" do not trigger.

  • Thank you all for your input's !

    As I'm not familiar enough with BGP, AS etc..

    I think I'll go for the list generated by https://github.com/lord-alfred/ipranges https://github.com/sakib-m/IP-Prefix-List To start with.

    Then I'll see if it's possible to gather those IP ranges without relying on third party services.. but that seem unfeasible without be connect to a Internet Exchange Point (IXP) right ?

  • Linux @programming.dev

    IP range of GAFAM ?

  • Linux @lemmy.ml

    IP range of GAFAM ?

  • Thank you all for your input's ! \

    So I have created a table , that I'll put in my first post.

    Feel free to post update like

    |brand|model|Price €|GPIO pair|CP|Lan Ports|idle watt|Surface area cm²|Storage ports| WiFi / BT|url| |Raspberry Pi|Pi 5 B (4GB)|52|12|Quad-core Cortex-A72 (ARM v8) 64-bit SoC @ 1.5GHz.|1x 1GbE|3|47|SD|||

    or even without the row header

  • Hardware @lemmy.world

    Cheap SBC x86-64 ?

  • Linux @lemmy.ml

    Cheap SBC x86-64 ?

  • Thanks @Malix@sopuli.xyz,

    Actually, no HTTP/2 do not require SSL/TLS!

    Although the standard itself does not require usage of encryption,[46] all major client implementations (Firefox,[47] Chrome, Safari, Opera, IE, Edge) have stated that they will only support HTTP/2 over TLSsource:https://en.wikipedia.org/wiki/HTTP/2#Encryption

    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 ?

  • Thank 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

  • LibreWolf @lemmy.ml

    How force HTTP/2 ?

  • Web Development @programming.dev

    GeoIP Database to use with FreeNginx !?

  • Selfhosted @lemmy.world

    GeoIP Database to use with FreeNginx !?

  • Linux @lemmy.ml

    GeoIP Database to use with FreeNginx !?

  • 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..

  • CoMaps @sopuli.xyz

    A Linux version planned ?

  • Thanks 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 ?

  • I don't think this work's if you have multiple remote pilot tough...

  • I'm open to all solutions :) But it there some ready Bluetooth remote pilot existing ?

  • raspberrypi @lemmy.ml

    Secure use of remote control ?

  • Raspberry Pi @programming.dev

    Secure use of remote control ?

  • Self Hosted - Self-hosting your services. @lemmy.ml

    How store a file with a timestamp in a decentralized manner?

  • decentralized @lemmy.ml

    How store a file with a timestamp in a decentralized manner?

  • Thanks 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 into EXT4 (from a desktop Linux) put the SD-card back into the phone and started the phone.

    Ive tried (in the phone)

     bash
        
    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.

  • Android @lemmy.world

    chown on a sdcard directory impossible...

  • I've found the most simple way (for my case) adb shell 'a command'

    example

     bash
        
    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 than SSH I'm all ears too.

    Thanks.

  • Android @lemmy.world

    How terminal in, on Android

  • LibreWolf @lemmy.ml

    Mozilla - Devil Incarnate

  • LibreWolf @lemmy.ml

    Is there a list of all the tweaks, changes between Firefox and LibreWolf ?

  • Self-hosting @slrpnk.net

    Nginx how enable CORS for multi origins ?

  • Self Hosted - Self-hosting your services. @lemmy.ml

    Nginx how enable CORS for multi origins ?

  •  bash
        
    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...

  • Thank you all !

    Indeed setting execute perm on example, sub1, sub2, static

    The 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 worksthe static files are appearing when requested (HTTP) but forbidding nginx to list the directory is changing something ? (performance/security)

    Thanks