Giter Club home page Giter Club logo

Comments (1)

andrewlow avatar andrewlow commented on July 17, 2024

I have a solution! The reason I am posting here is so that anyone looking for a solution can find it easier once this is closed.

NixOS when installed on a 'bare metal' machine doesn't expose the 'sg' devices at all. At first I thought this was a docker specific issue, but it turns out that the problem is NixOS itself - docker is innocent.

This forum post: https://discourse.nixos.org/t/makemkv-cant-find-my-usb-blu-ray-drive/23714 captures the problem and the solution. I will repeat here.

In the naive install / broken state - the lsscsi -g command shows the problem

$ lsscsi -g
[0:0:0:0]    cd/dvd  ASUS     DRW-1814BL       1.10  /dev/sr0   -        
[3:0:0:0]    cd/dvd  HL-DT-ST BDDVDRW CH12LS28 1.00  /dev/sr1   -     
[.. other drives cut...]   

Yeah - so the - is the issue here. We expect that there should be /dev/sgY devices listed.

We can manually fix this with this command on the NixOS host

$ sudo modprobe sg

This will cause /dev/sg0 and /dev/sg1 to appear (or did on my system)

Then the docker container will work.

If you want your NixOS install to be fixed properly - you need to add the following to your /etc/nixos/configuration.nix file

  # Add missing kernel mods to create /dev/sgY devices
  boot.kernelModules = [ "sg" ];

Now your installation will always have the /dev/sgY devices that MakeMKV requires.

from docker-makemkv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.