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

help-circle





  • I gave up on Nvidia is they never keep their drivers up to date with the latest kernel.

    I honestly have no idea what you mean. I’ve been using NVIDIA cards on Linux for well over a decade. Recently the last 5 years on bleeding edge everything to get the latest benefits to gaming and the desktop. I’ve rarely run into issues with the driver. Lack of features, sure. Installing the driver, no. One of my systems has been updating year after year without a problem. Did you not use dkms? If you use dkms, it just rebuilds the driver everytime a new kernel is installed. You don’t have to do anything.


  • When the initial rush of new Linux users arrived, experienced users had been trying to explain the same point for years: there are options like NixOS or CachyOS that offer unique experiences, optimizations, custom software or unique workflows, while other distros simply rebrand. But ultimately, most of them rely on the same underlying software, regardless of the distro. Having to explain this over and over in post after post became maddening. “What is the fastest distro” Posts on daily. With enough elbow grease my ancient Debian system can be willed into the latest NVIDIA drivers or other various bleeding edge packages. With a bit of suffering, I can compile a bunch of stuff months if not years before it shows up in the standard Debian repo. Point being, it’s all Linux.

    As for updates being “boring”—there’s nothing wrong with a simple update. What massive advancements do people expect these “mostly” volunteers to deliver with every update?






  • zelifcam@lemmy.worldtoLinux@lemmy.mlMy move to Linux
    link
    fedilink
    English
    arrow-up
    6
    ·
    14 days 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.



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




  • How do you know the server is worker fine? How are you accessing it to know that?

    E:

    Do you have a firewall running on your mint installation? If so have you allowed the ports (8096/8097)

    Can you access the web client on the Mint installation http://<ip of mint>:8096

    Can you use that same address on your phone / another computer to access it?

    FYI If you’re using 127.0.0.1 that will not work on your phone or any client that’s not running the Jellyfin server.

    When you use the Jellyfin app which server address are you putting in?