• 1 Post
  • 26 Comments
Joined 1 year ago
cake
Cake day: June 19th, 2023

help-circle




  • I have to admit, I’m a bit confused.

    I have dns records already in my domain provider pointing to a tailscale ip

    I want to know what I have to do to get minecraft.example.com to resolve interenally.

    Since your domain resolves to an internal private Tailscale IP and your question is how to access using the domain, locally…. I feel like there’s an error in your architecture here. Wouldn’t any device that is on your Tailscale private network already have access using the domain name? If by “resolve internally” you mean hosts on your LAN, not connected to Tailscale scale? How would that be possible if it resolves to a Tailscale IP. If you have control of your DNS on your LAN, you could simply add an override and point it to the LAN address of the Minecraft server.




  • zelifcam@lemmy.worldtoAsklemmy@lemmy.mlThe Best Lemmy Client
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    26 days ago

    I find Sync more responsive.

    I like cranking the size of some text

    I’m on iOS and Voyager has many customizations and the ability to change text sizes. I’ve never noticed any issues with responsiveness.

    Is this another one of those “well I was on Android and used sync vs well I was iOS and used AlienBlue / Apollo ” comments? Perhaps androids Voyager not as good as the iOS version? I guess it depends on what OP is using for mobile.







  • Perhaps an error message, troubleshooting steps or really any kind of detail beyond “no internet connection” or “Ethernet doesn’t work” would at the very least provide some kind of troubleshooting starting point. Right now, there’s absolutely nothing to work from.

    So something like…

    • iwctl doesnt show any devices
    • The output of sudo systemctl status iwd
    • iwctl finds my WiFi device and I set it up to connect to my network, but I have no internet
    • my install can’t find my Ethernet/wifi hardware.
    • I installed network manager and used it to setup my Ethernet port, but it’s not working
    • the output of lspci
    • the output of ip addr

    Basically anything at all.


  • zelifcam@lemmy.worldtoLinux@lemmy.mlMy move to Linux
    link
    fedilink
    English
    arrow-up
    3
    ·
    2 months ago

    I couldn’t agree more. I had a foot in both the MacOS and Microsoft Windows worlds at the time and can appreciate what a game changer notepad++ became. Having used BBEdit on the Mac since around the mid 90s, it was kinda more like “it’s about time” a decade later when notepad++ was released. I’m not necessarily comparing them feature to feature, but it was a much needed piece of software for Windows. I still have memories of opening up text files and being like … damn someone f’d this txt file up on a windows machine… again.



  • I’d use clonezilla

    E: It’s not that it can’t be done other ways, it’s just clonezilla will work and has worked for nearly 2 decades. Also there’s no information provided above about the data. So clonezilla is nice if it’s a complicated scenario.

    Plus, it’s a nice tool to throw in the toolbox once you know how to use it.

    E. Why do you feel like you have to use something like dd for this particular task? Less than 16 GB of data? Ya probably could have copied it over manually by now.



  • zelifcam@lemmy.worldOPtoMildly Infuriating@lemmy.worldUseless Calendar Widget
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    edit-2
    2 months ago

    Wow. What a zinger? No really, great addition to the discussion. Thank you.

    No, probably not. Love em or hate them, they have a pretty good record on privacy going back decades.

    Google though. lol. I mean that’s THE largest advertisement company to ever exist. The same company who finally admitted they were selling their browser’s incognito data.

    That 3rd party app with the better widget calendar is for sure selling.


  • Ok. So you’re definitely not trying to use 127.0.0.1 remotely.

    So on your phone’s web browser ( using the same WiFi ) if you visit http://<ip of mint system>:8096 and nothing happens then it’s the firewall on the mint system. You would need to allow ports 8096/8097.


    I’ve never used Linux mint, but if it’s Debian based then it might be using UFW firewall.

    First, check that if firewall is running. Open a terminal and type:

    sudo ufw status
    

    Step 2: Open ports 8096 and 8097

    To allow traffic through ports 8096 and 8097, use the following commands:

    sudo ufw allow 8096/tcp
    sudo ufw allow 8097/tcp
    

    This opens both ports for TCP traffic. If you also want to open the ports for UDP traffic, you can use:

    sudo ufw allow 8096/udp
    sudo ufw allow 8097/udp
    

    Step 3: Verify the rules

    Once you’ve added the rules, you can check the firewall status to verify the changes:

    sudo ufw status
    

    You should see entries for ports 8096 and 8097 allowing TCP (and/or UDP) traffic.

    Step 4: Reload firewall (if necessary)

    If the changes do not take effect immediately, you may reload the firewall using:

    sudo ufw reload
    

    Now, the firewall should allow traffic through ports 8096 and 8097.