cross-posted from: https://lemmy.world/post/15050323

Cannot connect to my NAS after installing KUbuntu 24.04 LTS

I was first on KUbuntu 22.04 LTS and was able to connect to my router’s attached USB storage drive by adding client min protocol = NT1 to the smb.conf file within user/share/samba. My router doesn’t support the newer SMB protocol.

I just recently wiped my computer and installed KUbuntu 24.04 LTS and I tried adding that same line of code to the smb.conf file, but when I try to go to the IP address of my router it tells me that “Connection to host 192.168.1.1 is broken”.

I’ve been trying to find a solution online, but not having luck.

Anyone have any suggestions?

  • Avid Amoeba
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    2 months ago

    Or do something funky like using a privileged Docker container built from 22.04 (or anything else with old enough samba) to mount the samba share onto a volume that sits on the host OS. 😂

    Something like:

    • Create a mount point, say /media/myshare
    • docker run --privileged -it --rm -v /media/myshare:/mnt ubuntu:22.04 bash
    • mount -t cifs //<host>/<path> /mnt -o user=<user>,password=<user>
    • Check the contents of /media/myshare on the host.

    If it works, you could bake this into a startup script for the Docker image. Run it with the appropriate --cap-add instead of --privileged. Start it on boot via systemd.

    • Max-P@lemmy.max-p.me
      link
      fedilink
      arrow-up
      3
      ·
      2 months ago

      Docker would still go through the kernel for the mount, that’s one of the few things Docker can’t do because it’s the same kernel as the host.

      That said I doubt it’s been removed from the kernel, only the Samba server. OP is a client.

      • Avid Amoeba
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        2 months ago

        Yeah but some of the samba mounting mechanism is outside of the kernel. The protocol deprecation might just be in a separate package. 🥹 I haven’t checked.

    • Galaxy_m105@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      2 months ago

      Lol, I will need to become more familiar with how to use docker. I know how to use virtual box so I may try to run vm with 22.04. I’m still pretty new and starting my Linux Journey. 🙂