• 0 Posts
  • 16 Comments
Joined 1 year ago
cake
Cake day: July 3rd, 2024

help-circle
  • rudyharrelson@lemmy.radiotoLinux@lemmy.mlAccessing Jellyfin Help
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    19 days ago

    I haven’t had to deal with this specific kind of use case before (accessing the local Jellyfin service while the laptop is connected to a VPN), but after some cursory research, one of these approaches may work for you:

    Easy Option (only available on some VPN software):

    There may be an option in your VPN client that lets you access local network addresses like your Jellyfin server. Check your settings and see if there are any options like “allow local network traffic” and then try opening up your Jellyfin server in a browser (e.g.: http://192.168.1.100:8096/)

    Less Easy Option:

    If your VPN client doesn’t have an option for allowing local traffic, you can open up the command prompt on your macbook and run a command like this:

    sudo route add -net 192.168.1.0/24 192.168.1.1

    Where 192.168.1.0/24 is the local network you want to connect to (where the Jellyfin server is located), and 192.168.1.1 is your local gateway (probably your wifi router’s address). Change both of these depending on how your network’s local IPs are formatted.

    This should update your routing table to handle local network addresses without the VPN and this should persist between reboots.

    Hope this helps.





  • I wanna say fwupd/lvfs manages firmware updates on Arch (and lots of other distros) these days.

    You may be able to roll back the latest firmware update with fwupdmgr. What’s the output of fwupdmgr get-devices in your terminal? Also, what is the make/model of the ethernet port that is now on the fritz? You can search for it on the website here: https://fwupd.org/ in the “search for firmware” bar at the top, then you may be able to install the old version with fwupdmgr.


  • I’m not familiar with EndeavourOS, but I’ll ask a few questions to get the troubleshooting process started:

    With the ethernet cable plugged in, can you access your local router config page (if you have one)? e.g.: 192.168.1.1. If not, what happens when you ping the router’s address in the terminal?

    If you’re able to successfully ping/access your router, can you ping a well-known IP address such as 8.8.8.8 (google DNS) or 1.1.1.1 (cloudflare DNS)?





  • and connect to it with an iPad that has a Jellyfin client installed?

    In my experience, you don’t even need the dedicated Jellyfin client. Just opening it up in a web browser works out of the box, so that’s potentially one less thing to download/install/manage for the clients.

    That said, I’ve never tried to access Jellyfin from an iPad/iPhone/Mac so it might not be as seamless as my experiences on Android/Linux based devices. But I imagine they’d be fine; just test it out before you hit the road.




  • I’m no legal expert; I assume support can be either offered or completely avoided depending on the shop owner’s preference. Most Linux distributions come with a “this software is free (as in freedom) and comes with no warranty or guaranteed functionality” disclaimer.

    If I wanted to engage more with my clients and build more trust, I might offer some degree of troubleshooting/support for the Linux machines I sold. But I don’t think I’d be under any legal obligation to offer that service just for selling the laptops.

    Whether or not the computer shop offers support might affect whether or not a customer wants to shop at my store. Maybe I can sell my laptops cheaper if I don’t offer support, or maybe my laptops cost a bit more because I do offer aftermarket support.


  • how can Linux be a moderated product to sell for desktop

    It kinda depends on each individuals’ use case; there’s lots of different Linux distributions that are better (or worse) for specific workloads.

    Any given laptop I’m staring at in a store will probably work perfectly fine as a general-use machine with Linux Mint installed. This is my go-to distro when repurposing a machine because it works great out of the box. If I were running a computer store and wanted to sell consumer laptops with Linux on them, I’d default to Mint.

    If someone is looking to turn their PC into something more specialized for gaming, they can look at something like Bazzite or Batocera. These will generally require some tinkering.

    If an individual or company is looking to build an office with many workstations and user accounts, they might consider Red Hat Enterprise Linux so they can benefit from official support channels if something needs troubleshooting. Many computer labs at NCSU used RHEL when I attended many years ago.

    Want a stable server environment? Debian is a standard pick.

    Want a barebones system with no bells and whistles (but great battery life)? Alpine oughta work.

    So Linux has many options for end users to pick from, which can be seen as a good thing (more options is generally good), but also a bad thing (many end users might consider the plethora of options to be overwhelming if they’ve never used Linux before).

    Linux (or is called unix?)

    Linux (Or GNU/Linux) operating systems are a modern implementation of an old research OS that was called “Unix”. Spiritual successors to Unix like Linux and BSD try to bring a lot of the design philosophies of Unix into modern OSes (I believe this is generally called the “POSIX” standard. e.g.: macOS is a POSIX compliant OS, iirc).

    If I’ve gotten any of this information incorrect, please don’t tell Richard Stallman.