Skip Navigation

Posts
200
Comments
593
Joined
1 yr. ago

  • Jellyfin isn’t the most secure piece of software out there, I would avoid giving it permissions it doesn’t need.


    Step 1) Check /dev/dri for the GPU

     
        
    user@debian:~/compose$ ls /dev/dri
    total 0
    drwxr-xr-x  3 root root        120 Jan 25 11:50 .
    drwxr-xr-x 18 root root       3360 Feb 11 03:03 ..
    drwxr-xr-x  2 root root        100 Jan 25 11:50 by-path
    crw-rw----  1 root video  226,   0 Jan 25 11:50 card0
    crw-rw----  1 root video  226,   1 Jan 25 16:39 card1
    crw-rw----  1 root render 226, 128 Jan 25 11:50 renderD128
    
      

    Documentation indicates renderDXXX typically refers to Intel GPU’s

    Make sure at least one renderD* device exists in /dev/dri. Otherwise upgrade your kernel or enable the iGPU in the BIOS.

    1. Edit your docker-compose.yaml and add this In your Jellyfin block

     
        
    devices:
     - /dev/dri/renderD128:/dev/dri/renderD128
    
      

    1. Start your container and enter it to verify the device is recognized.

    sudo docker compose up -d; sudo docker exec -it jellyfin bash

    Once inside ls /dev/dri to confirm the GPU is recognized inside the container, once you confirm it then you can exit the container.

     
        
    user@debian:~/compose$ sudo docker exec -it jellyfin bash
    I have no name!@jellyfin:/$ ls /dev/dri
    renderD128
    I have no name!@jellyfin:/$ exit
    exit
    user@debian:~/compose$
    
      

    1. On the Jellyfin dashboard go to the hardware acceleration page and follow the notes left by Jellyfin devs.

  • For a while my GoAccess instance wasn’t working properly so I couldn’t visualize my access logs from Traefik, got lazy trying to fix it and left it as is, well in the meantime I wasn’t lazy enough to setup Synapse and begin federating on my home network.

    Finally fixed my GoAccess today to be surprised to see Synapse hits labelled as crawlers, well over a million hits.

  • It’s a good reason to get others to do anything, this is why we have the jackass movies.

  • I can't recall the length but anything before a limit of automatically considered a handgun by the RCMP.

    That is incorrect. Non-restricted, semi-auto, centre fire rifle and shotgun barrels must be greater than 18.5” and the overall length cannot be less than 26” otherwise the firearm will be classified as restricted which you have to register it under your possession and acquisition license.

    Non-restricted - What's included in this class

    This class includes any firearm that is neither restricted nor prohibited. Most common rifles and shotguns are non-restricted, but there are exceptions.

    Restricted - What's included in this class

    • Handguns that are not prohibited firearms

    • Firearms that:

    1. are not prohibited firearms

    1. have a barrel less than 470 mm in length

    1. are capable of discharging centre-fire ammunition in a semi-automatic manner

    • Firearms designed or adapted to be fired when reduced to a length of less than 660 mm by folding, telescoping or otherwise

    • Firearms of any other kind prescribed to be restricted firearms in the Regulations

    Prohibited - What's included in this class

    • Handguns with barrels equal to or less than 105 mm in length

    • Handguns designed or adapted to discharge a 25 or 32 calibre cartridge

    1. This does not include handguns for use in international sporting competitions governed by the rules of the International Shooting Union and where the handgun is prescribed to be restricted

    • Firearms adapted from a rifle or shotgun, whether by sawing, cutting or any other alteration, and that, as so adapted are:

    1. less than 660 mm in length

    1. 660 mm or greater in length and has a barrel less than 457 mm in length

    • Automatic firearms, whether or not altered to discharge only one projectile with one pressure of the trigger

    • A firearm that is not a handgun and that

    1. discharges centre-fire ammunition in a semi-automatic manner;

    1. was originally designed with a detachable cartridge magazine with a capacity of six cartridges or more; and

    1. is designed and manufactured on or after December 15, 2023

    • Firearms prescribed to be prohibited firearms in the Regulations (including firearms prescribed by make and model; any firearm with a bore diameter of 20 mm or greater; and any firearm capable of discharging a projectile with a muzzle energy greater than 10,000 joules).

    It’s also worth mentioning while the Firearms Reference Table is not technically bound by law, the RCMP and Public Safety essentially treat it like it is, so no matter how much you (illegally) modify a rifle to look like a pistol it’s still was initially designed, manufactured and registered as a rifle.


    I'm still suspicious of the PAL plus removed weapons. Is it possible they bought a gun under the table after their weapons were confiscated?

    It’s important to note that non-restricted firearms are not registered to PAL licenses like how restricted firearms are (except in Quebec), the only thing noted is the transfer request between seller and buyer, currently the RCMP is claiming that neither the shooter nor mother had these firearms registered to them which can indicate these are non-restricted guns.

  • I'm considering doing Jellyfin, but I'm not a huge movie/shows consumer,

    Well, if you’re paying for [Insert Streaming Service Here] than I’d say it’s worth it. Save yourself the extra 10, 15, 20 dollars a month and use it on a company (or open sourced project!) that actually cares about its consumers, this can be said for Music streaming and “cloud” storage as well.

  • The problem i see with Linux is that we all seem to have to rely on interpreting documentation on some level, whereas on Windows or Mac people search a problem, some article vaguely describes the issues they have, said article recommends [Insert Software Installer Here] to resolve aforementioned issue, people are pleased their issue is resolved without actually knowing what really changed on their system.

  • What do i say to my friends to get them to leave? Ive already tried and they won't.

    I just abruptly switched to Matrix and encouraged anyone who wanted to get a hold of me to do the same, held my ground and did not look back, now a good handful of my friends have a Matrix account.

  • Misconfiguration with SMTP is likely or their SMTP server is under maintenance and you just tried at a poor time.

    Granted for a production environment there should be some notice to users.

  • Setting up Element Call on my instance was difficult on its own, I understand why Synapse doesn’t come with it out of the box, essentially you spin up Matrix’s JWT service for authenticating clients and it if approved forwards the connection to the Livekit ports which must be opened on your firewall (ie port forwarded), otherwise people will not be able to connect to calls.

    Big PITA and in my experience, on my home network, can conflict with games with VOIP chats so don’t follow the default 50000:55000 port range Livekit recommends or you’ll run into issues like I did, each person consumes 2 ports so adjust the range to your need.


    Edit: I don’t suggest running Element Call standalone, it has issues of its own, once you get Livekit and JWT running and follow This guide you should have your element call support in Synapse now, pro-tip for those running synapse behind docker and get confused on the whole ./well-known part of the documentation you can edit your ./well-known in your homeserver.yaml file like such:

     
        
    serve_server_wellknown: true
    
    extra_well_known_client_content:
      optional: client
      "org.matrix.msc4143.rtc_foci": [
          {
              "type": "livekit",
              "livekit_service_url": "https://livekit-jwt.your.domain/"
          }
      ]
    
      
  • Votes are the people

    I find it hard to believe when Quebec and Ontario hold well over half of the electoral districts, and a Minister on the Liberal side having already admitted to certain policies being implemented solely for Quebec voters.

    This voting system doesn’t seem fair for the rest of the provinces and territories, but I’m just an average joe so what do I know eh.

  • I understand the need for votes but they shouldn’t be able to twist or downplay statistics for political gain.

  • API change killed Apollo, used Narwhal on and off for a year but ultimately did not want to pay a subscription for a social media platform, downloaded Voyager and here we are.

    I backed up my Reddit subscriptions and multi-reddits and have them as shortcuts on my Redlib instance.

    Been working on /c/ca_firearms_rights@sh.itjust.works hoping to build up a community similar to /r/CanadaGuns!

  • This government doesn’t care about statistics, they only care about their precious votes, not the people.

  • That you only used a noisemaker. This isn't complicated.

    It’s not complicated to grasp the idea of self defence either.

    I'll refer you to the time when you claimed that without your gun you would have been in trouble, when in fact you admitted you only used it as a noisemaker.

    What difference does it make? We used them as noise makers opposed to firing directly at bears?

    I never said them being noisemakers were effective either, I said we had left the area quickly afterwards avoiding the conflict all-together, ultimately the bears were approaching our campsite and if we had been asleep and they were outside our tents with no firearms we’d be cooked.

  • Glad I wasn’t the only one who also thought that.

  • You used them as a noisemaker,

    Yes.

    so you didn't need a weapon

    What makes you say that?

    It makes you feel good to have it, even if you don't actually need it.

    I’ll refer you to the many times I mentioned predator defence, also doesn’t mean I don’t target shoot or clay shoot as a hobby.

    Maybe you cuddle with it, I don't know.

    If I wanted too I legally could, but I don’t, firearms stay in the safe.

  • Canadian Firearms Rights @sh.itjust.works

    Federal government to help fund firearm buyback efforts in Quebec

    www.cbc.ca /news/canada/montreal/federal-gun-buyback-program-quebec-9.7037364
  • Canada @lemmy.ca

    Federal government confirms 25 guns collected in 'buyback' pilot, as Quebec pledges support

    nationalpost.com /news/politics/federal-government-confirms-25-guns-collected-in-buyback-pilot-as-quebec-pledges-support
  • Canadian Firearms Rights @sh.itjust.works

    Federal government confirms 25 guns collected in 'buyback' pilot, as Quebec pledges support

    nationalpost.com /news/politics/federal-government-confirms-25-guns-collected-in-buyback-pilot-as-quebec-pledges-support
  • Canadian Firearms Rights @sh.itjust.works

    “It’s two worlds. Children run in the morning here, and at night, criminals do,” says resident Yong Yang, after a brazen gangland-style shooting was caught on her neighbours security camera.

  • Canadian Firearms Rights @sh.itjust.works

    globalnews.ca /news/11601947/bizarre-surrey-shooting-video/
  • Canadian Firearms Rights @sh.itjust.works

    Man charged with 1st-degree murder in fatal shooting of U of T student on Scarborough campus: police

    www.cbc.ca /news/canada/toronto/man-charged-with-murder-utsc-shooting-9.7036358
  • Canadian Firearms Rights @sh.itjust.works

    Traffic stop leads to drug and firearm charges; Toronto parking officer assaulted

    torontosun.com /news/local-news/gta-men-face-28-firearm-drug-charges-tpa-supports-peo-officer
  • Canadian Firearms Rights @sh.itjust.works

    "Canada's National Firearms Association 2025 Recap"

  • Canadian Firearms Rights @sh.itjust.works

    "Saskatchewan Firearms Commissioner, Robert Freberg, speaks with Rod Giltaca about the provinces new rules," "forcing the gun grabbing Liberals into a very difficult position,"

  • Canadian Firearms Rights @sh.itjust.works

    "The unfolding story of the licensed Canadian gun owner, as told by an Australian." via ozzie reviews

  • Canadian Firearms Rights @sh.itjust.works

    "Reflecting on the Bondi Beach terrorist attack, Martin and Millicent Sedra tell Patrick Bet-David, like Canada, Australians face serious charges for defending themselves, or others."

  • Canadian Firearms Rights @sh.itjust.works

    "Gun buyback program in Winnipeg faces fierce opposition" - Wildlife Federation urges Winnipeg to abandon federal gun buyback as pressure mounts across Canada

    www.winnipegsun.com /news/wildlife-federation-calls-for-winnipeg-to-reject-gun-buyback/article_c27daa68-f6d4-4d6a-8c2e-ab01cc10d11c.html
  • Canadian Firearms Rights @sh.itjust.works

    Scott Taylor, Publisher of Esprit de Corps Canadian Military Magazine, says the federal government shouldn't disarm Canadians, but instead work with the 1.26M gun owners.

  • Canadian Firearms Rights @sh.itjust.works

    After the OPP and CBSA shutdown a major auto theft ring, seizing 306 stolen cars and arresting 20 people, Dir. General Dominic Mallette shows other items seized at the border.

  • Canadian Firearms Rights @sh.itjust.works

    "The Australian government says it will double down on its existing failed gun control, implementing another 'national gun buyback scheme..."

  • Canadian Firearms Rights @sh.itjust.works

    Joel Workshop shows off his newly banned M1 Carbine rifle and shares his thoughts on Mark Carney's attack on lawful gun owners.

  • Canadian Firearms Rights @sh.itjust.works

    Ben Mulroney on the Bondi Beach terror attack, and the Australian government's attempt to use the incident to push more failed gun control.

  • Canadian Firearms Rights @sh.itjust.works

    Independent MP for Kennedy, Bob Katter, says the Bondi Beach terrorist attack proves Australia's gun laws are a “total failure.”

  • Canadian Firearms Rights @sh.itjust.works

    He Tried the Pilot Program and Got Robbed!! - Canadian Coalition for Firearm Rights

    firearmrights.ca /he-tried-the-pilot-program-and-got-robbed/
  • Canadian Firearms Rights @sh.itjust.works

    Another Conservative crosses the floor, bringing Liberals 1 MP shy of majority

    www.cbc.ca /news/politics/mp-crosses-floor-to-liberals-9.7012767