• 0 Posts
  • 220 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle

  • I disagree sort of. I find it hard to believe a new distro is easier to set up than mint or Ubuntu

    Mint is easier to setup than Ubuntu, and not only it’s newer, it’s based on Ubuntu. Ubuntu also is easier to setup than Debian even though it’s newer and based on it. Being a new distro has nothing to do with being easy to setup.

    Bazzite is special because it’s an immutable distro, so it’s highly unlikely you’ll break stuff by poking around.




  • Ok, so, there are multiple things you should be aware.

    First of all you’ve set that DNS to be 10.0.0.41, that range of IPs is reserved for lan, similar to 192.168.0.41 would be. Only people in the same local network as you might be able to access it.

    Also, usually your home router doesn’t use the 10.x.x.x range, but some ISPs might do it in their internal network, which means your router doesn’t get an internet IP, instead your ISP router does and it shares the same external IP with different houses, so you would need to use something like https://www.whatsmyip.org/ to know what your external IP is.

    But there’s more, since you don’t control that router putting that external IP in the DNS won’t work either.

    You need to do something more complicated, I recommend you read on cloud flare tunnels for example.

    And one final piece of advice, don’t share your urls with randoms on the internet, security by obscurity is not security and all, but publicly advertising your url is asking for trouble, even without doing that you will see several attempts of logging into your servers constantly.



  • Nibodhika@lemmy.worldtoLinux@lemmy.mlPrinters for Linux
    link
    fedilink
    arrow-up
    3
    arrow-down
    1
    ·
    23 days ago

    Honestly, I’ve had HP for most of my life, and they have always worked until I couldn’t find cartridges for them or broke them while moving, or something similar. Latest time I needed one I decided that I print stuff so sporadically that a laser printer would be a better investment (previously, almost every time I tried to print stuff the ink was dried, because I hadn’t used it in months). I’ve had this HP for about a year and haven’t had any issues at all. But like I said I don’t print that much, but whenever I needed it it’s been there. And to me reliability is the best quality on a piece of equipment that doesn’t get much use but when it does sometimes is critical.


  • Plex is an enterprise solution, if you need your tech illiterate grandma to access the media it’s easier to pay them. If it’s just a local network or you’re okay with going down a rabbit hole of setup, then Jellyfin does everything and does it better IMO (Plex requires you to be online to login before it shows you your local data, plus you’re sharing information on what media files you have to Plex).

    I personally have been using Jellyfin for years, and my only complain is that the LG app is slow and I get some videos that stuck for a few seconds in it (probably some codec thing, that I could fix by transcoding the media but I haven’t been bothered enough to figure it out)




  • How is it political to talk about yourself in vague terms when introducing yourself to a group!? Would it be political if he said his hair is brown? How about if he mentions the color of his skin, is that political?

    You make the statement political when you try to ban certain people from talking about who they are, if only white people talk about the color of their skin it’s not political to say you’re black, it’s political to try to block people from saying it. Saying you’re queer is on the same level of mentioning you have a wife/husband, in fact it’s even more vague, it’s in the same level of saying “since I was a boy/girl”, because queer does not necessarily mean non-heterosexual it can also mean non-cisgender so it’s an umbrella term to mean member of the LGBTQ+ community, if being queer is political then being heterosexual or cisgender also has to be, and I doubt people would be okay with having to step on eggshells not to mention anything that could make someone deduce their sexuality or gender. Hell, the same people who claim Queer is political are the ones who have the most problem with gender neutral language.


  • First of all, this is not a professional setting, he’s not an employee there, and that forum is open for everyone.

    Secondly, and way more important, people do that daily and no one cares especially when introducing oneself it’s common to mention stuff like your wife/husband and your preferred pronouns, hell, my corporate slack profile has my pronouns and those of everyone else. I’ve worked with trans people who introduced themselves as trans on the first day, and no one cared. So no, it’s perfectly okay for people to talk about themselves during an introduction even in professional settings.

    Last but not least, people being uncomfortable is not a good reason to ban something, members of the KKK might be uncomfortable about working next to a black person, so what? Should the black person hide that he’s black to not make the others uncomfortable? That’s bullshit. If a person is uncomfortable by another one saying they’re queer, then that first person needs to deal with it, being queer is part of who the other person is and he shouldn’t have to hide who he is because someone might be uncomfortable about it. You mentioned religion, which I don’t think falls into the same category because religion is a set of beliefs that many people change through their lives, but still, people wear crosses daily in professional settings and no one cares.


  • Regardless of how impartial the source might be, there are facts there:

    • Fact 1: Someone made an introductory post in which, among other things, they mentioned “I am queer”.
    • Fact 2: A moderator working for Canonical deleted that part, and only that part, of that post.
    • Fact 3: Another moderator re-added that and claimed the first one acted erroneously.

    While Fact 3 is a bit of a relief, they still haven’t communicated what they intend to do to prevent this from happening again.



  • Ok, lots of answers focusing on the game, so I think you have plenty of suggestions on what to try there. That being said I have never heard of bottles, I’ve used raw wine and PlayOnLinux before Steam integrated Proton so now I just use that.

    For docker it can be daunting, and home assistant is not an easy thing to setup. The thing with docker is that it can be very complex, but you don’t have to worry about the majority of it. I assume you have docker installed, enabled and your user is in the correct groups. Unfortunately Mint/Ubuntu don’t have docker in their normal repos so you probably had to add the docker PPA and install from there. Let’s run a couple of commands to ensure all went well:

    sudo systemctl status docker

    This should show you the status of the docker daemon, and it should say that it is Active. If you get a no such service type error then docker is not installed, if it’s not shown as active then the daemon is not started and can be done so by running sudo systemctl start docker (and you can replace start with enable for it to happen at boot). If it’s Active then awesome, let’s check that your used can run docker commands, try running this: docker run hello-world if that fails but sudo docker run hello-world works then your user doesn’t have access, you want to add your user to the docker group sudo usermod -aG docker $USER and reboot.

    Ok, docker hello world is working, what now? Now, I assume you have some idea of what docker is, but in a (wrong but simple) way you can think of it as virtual machines. Let’s try to run some cool stuff in it, there are two main ways, running a long complicated command, or writing those parameters on a file and running a simple command. This file is called a compose file, and should be named compose.yaml or docker-compose.yaml. let’s try that, create a folder called silverbullet (just because that’s the service we will try, it is a note taking app that I really like) and in there create a file compose.yaml and write the following content there (everything starting with # is a comment I added explaining what that does, and can be removed if you don’t want it):

    # This defines all of the services we want to run
    services:
      # This is the name of the service, it can be whatever you want
      silverbullet:
        # The image is the actual thing you want to run
        image: ghcr.io/silverbulletmd/silverbullet
        # This tells docker to restart the service if it closed for whatever reason, unless you specifically tell it to stop
        restart: unless-stopped
        # This will set environment variables inside the docker.
        # different services might require different environment variables set
        environment:
          # silver bullet uses SB_USER environment variable to set user/password for the main account. We're setting user to admin and password to 123 here
          - SB_USER=admin:123
        # This maps outside folders to inside folders so that your docker container can access them
        volumes:
          # Here we're telling it that the ./data folder should be accessible in the /space folder inside the docker
          # silver bullet stores stuff in the /space folder, so by mapping it to the ./data folder we can keep that data between runs
          - ./data:/space
        # This tells docker to map ports from the inside to your host machine, this allows you to access the docker container as if it were running on your machine
        ports:
          # This tells it to map the internal port 3000 to the external port 5000, so accessing http://localhost:5000/ from your machine will in fact access the same as http://localhost:3000/ inside docker
          # Silver bullet runs on port 3000, so we need to expose that port
          - 5000:3000
    

    Uff, that was a lot, but we’re done, now just run docker compose up -d (up to start -d to run as a daemon, i.e. in the background) and you should be able to access http://localhost:5000/ and get to Silver bullet logging in with admin 123, then if you write about something you will see files appearing in the silverbullet/data folder.

    I know that this was a lot in one go, but I chose Silver bullet because it touches all of the most common stuff you’ll need and it’s easy to get going.

    Good luck with your self hosting journey, and don’t hesitate to ask if you have any questions.



  • No it hasn’t, Nvidia usability in Linux now is the same as it was 10-15 years ago, and that’s sort of the problem. What do you think has improved since then? I remember ~18 years ago getting Nvidia to work with the proprietary drivers on my Mint was just a couple of clicks away and I could play oblivion and many other games that ran on Wine (and the very few natives we had) just fine. The majority of the Nvidia issues are self-inflicted, always have been, the problem is that because you have to use the proprietary drivers it’s very easy to shoot yourself in the foot, and inexperienced people tend to do it very often, so my guess is that 10-15 years ago is when you started using Linux, and broke stuff with the Nvidia driver, nowadays you don’t break that stuff and you think the driver has changed, when what has changed is you.


  • Yes, I have a near flawless experience with Linux, but it was years in the making. One thing people don’t realize when they switch over is the amount of time you’ve spent in dealing with similar issues on Windows, but you did it so long ago and so often they’re second nature to you, so you don’t perceive them as problems. But when you start from scratch on Linux they’re daunting problems because they force you to learn new stuff.

    The same will happen to Linux over time, some stuff you’ll fix once and forever, others you’ll learn to work around and be okay with it. For me nowadays whenever I have to use Windows for something more than simple stuff it’s death by a thousand cuts, because I haven’t used windows in so long that my muscle memory for those caveats and weirdness (that I didn’t even noticed before switching) is completely gone.

    As for the specific things, you’re using an Nvidia card, which is known for not playing nice with Linux, you haven’t mentioned drivers but you have two options here, open source and very poorly performative Nouveau driver or the proprietary and doesn’t play nice with other stuff Nvidia one. Both are bad, but probably you want the Nvidia one.

    Also I don’t know how Ubuntu studio is, but I would recommend you try other distros, maybe Mint or I’ve heard wonderful stuff for Bazzite. Any way you can have your /home be in a different partition so you don’t lose your data when switching over and trying stuff, eventually you might find something that clicks for you, and it’s smooth sailing from then on. Good luck.



  • At my current job they asked what OS I wanted for my laptop and Linux was an option. I do have a Windows desktop at the office that I remote to that needs to be Windows for technical reasons, but my main device is Linux.

    At my job before this I worked for one year on my own Linux laptop, until one day I asked for a laptop lent temporarily because I was going to travel and my wife needed mine, and it had to be Windows. I never minded much because it was temporary, but when I came back I was told that I was supposed to always have been using a Windows machine and that I shouldn’t use a Linux machine anymore (even though our product was a website deployed to Linux servers). That was one of the reasons I eventually took another job, not the main one, but an important one nevertheless.

    Before that the company also offered Linux.

    And before that it was a very small company when all of the owners were software engineer guys using Linux themselves. I remember one day we were discussing OS and someone said “can we take a moment to recognize we’ve been talking about this for 15 minutes and no one even considered Windows as an option”.