Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)PA
Posts
2
Comments
17
Joined
3 yr. ago

Linux @lemmy.ml

From the Kernel to the Moon: A Journey into Lunatik Bindings

Programming @beehaw.org

Making a game like it's 1993

  • I've seen many references to TCP/IP as meaning IP + everything-on-top, usually when talking about other networking technologies like UUnet, OSI, etc. Also as the TCP/IP stack, usually meaning the (Free)BSD networking code used in other systems.

  • I believe OP has made some mistakes when pasting the text


     
        
    [Diagram]
    Oracle VM: Linux
    External IP: 192.0.2.1
    Internal IP: 172.16.0.2
     |
     | GRE Tunnel
     v
    Home Server: Linux
    Internal IP: 172.16.0.2
     |
     |
     v
    Firewall: FreeBSD
    Internal IP: 172.16.0.1
    External IP: 192.0.2.2
    
    [Text]
    Home Linux Server GRE config:
    $ sudo ip tunnel add gre0 mode gre remote 172.16.0.2 local 192.0.2.1 ttl 255
    $ sudo ip link set gre0 up
    $ sudo ip addr add 10.100.10.1/24 dev gre0
    
    
    Home Linux Server GRE config:
    $ sudo ip tunnel add gre0 mode gre remote 192.0.2.2 local 192.0.2.1 ttl 255
    $ sudo ip link set gre0 up
    $ sudo ip addr add 10.100.10.1/24 dev gre0
    
    Firewall:
    nat on igb1 inet from ! (igb1) to any -> (igb1:0)
    nat on igb0 inet proto gre from 172.16.0.2 to any -> (igb1:0)
    rdr pass on igb1 inet proto gre from 141.148.84.178 to (igb1) -> 172.16.0.2
    
      
  • Not that I know of, but here are some between Lemmy and Mastodon:

    • Upvotes in Lemmy don't translate to favorites in Mastodon
    • From the Mastodon side communities are normal accounts that boost published posts.
    • From Mastodon Lemmy's posts are top-level messages (i.e. not a response), and comments are responses to the original message.
    • You can post to a Lemmy community from Mastodon by publishing a post and tagging the community (@community_name@server.tld)
  • What do you mean by «support»? In my Debian install I created an encrypted partition + LVM and I can hibernate without issue. I believe Ubuntu has an install option for encryption, so I think it should also work.

  • You can still subscribe to everything from Lemmy.world and your instance will remain up even when Lemmy.world is down.

    I had no idea, just tried and you are right. Do you know if everything works the same, like moderation?