home.social

#commandlinefu — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #commandlinefu, aggregated by home.social.

  1. For those to whom this may be useful:

    Setting a SOCKS5 proxy in the terminal:

    ssh -D 8080 [email protected]
    export http_proxy="socks5://127.0.0.1:8080"
    export https_proxy="socks5://127.0.0.1:8080"
    or, alternatively
    export http_proxy="socks5://[proxy.server]:666"
    export https_proxy="socks5://[proxy.server]:666"
    #linux #cli #comandline #commandlinefu #proxy #socks5