Hi.

First, sorry for my bad english. I will try to explain the problem best as i can:

  • Context

This is an image of network with SDD-adapter

And these another two of config in router ASUS with FreshTomato third-party firmware

  • Search of similar case

https://kde-bugs-dist.kde.narkive.com/hN4IUkQ3/kde-bug-342272-new-not-able-to-play-a-video-from-my-nas-in-kde-windows-android-xubuntu-clients-are

Maybe, is related?

  • Explanation

I have a SSD with SATA-USB adapter plug in USB 3.0 of router, for save some files and sharing in Torrent. The issue is kio-discovery-wsd, list perfectly all archives and directories but i cannot play mkv files with Celuloide or VLC. Thus, no show of thumbnail or preview in explorer.

  • Test

Linux Mint Cinnamon is working, playing with Celulloid is fine and Windows too. So, discard missfunction of SMB in router.

Any suggests? Thanks in advance.

Regards.

  • joluveba

    Solucionado en 5 pasos:

    1- Configurar exclusivamente SMBv1 en el router FreshTomato.

    2- Crear carpeta: sudo mkdir /mnt/torrent

    3- Darle permisos de lectura/escritura: sudo chmod -R o+w /mnt/torrent

    4- CIFS: sudo mount -t cifs //192.168.1.1/ssd /mnt/torrent -o guest,uid=1000,vers=1.0

    5- Añadir unidad de red al panel izquierdo como acceso directo en Dolphin: /mnt/torrent

    Eso es todo, ahora voy a reiniciar el equipo y revisar si se mantienen los cambios correctamente. Principalmente, por el fstab…

    Edito: Vale, al reiniciar pierdo el acceso a la carpeta pero… una de dos, lanzo el comando del CIFS al arranque o bien modifico el fstab…

    Edito2: He creado finalmente un archivo de servicio así:

    sudo nano /etc/systemd/system/montar-torrent.service

    [Unit]

    Description=Montar recurso compartido al inicio

    After=network-online.target

    [Service]

    Type=simple

    ExecStart=/home/hav4k-ryzen/Escritorio/torrent_smb.sh

    [Install]

    WantedBy=default.target

    sudo systemctl daemon-reload

    sudo systemctl enable montar-torrent.service

    Y otros 2 apuntes más:

    • El sh le he otorgado permisos con chmod u+x

    • y dentro contiene:

    #!/bin/bash

    sudo mount -t cifs //192.168.1.1/ssd /mnt/torrent -o guest,uid=1000,vers=1.0

I wonder if this is a Solus problem, or a KDE Plasma problem. Could you burn a USB with, I don't know, Solus Xfce, Budgie, and try opening the files?

    joluveba

    Solucionado en 5 pasos:

    1- Configurar exclusivamente SMBv1 en el router FreshTomato.

    2- Crear carpeta: sudo mkdir /mnt/torrent

    3- Darle permisos de lectura/escritura: sudo chmod -R o+w /mnt/torrent

    4- CIFS: sudo mount -t cifs //192.168.1.1/ssd /mnt/torrent -o guest,uid=1000,vers=1.0

    5- Añadir unidad de red al panel izquierdo como acceso directo en Dolphin: /mnt/torrent

    Eso es todo, ahora voy a reiniciar el equipo y revisar si se mantienen los cambios correctamente. Principalmente, por el fstab…

    Edito: Vale, al reiniciar pierdo el acceso a la carpeta pero… una de dos, lanzo el comando del CIFS al arranque o bien modifico el fstab…

    Edito2: He creado finalmente un archivo de servicio así:

    sudo nano /etc/systemd/system/montar-torrent.service

    [Unit]

    Description=Montar recurso compartido al inicio

    After=network-online.target

    [Service]

    Type=simple

    ExecStart=/home/hav4k-ryzen/Escritorio/torrent_smb.sh

    [Install]

    WantedBy=default.target

    sudo systemctl daemon-reload

    sudo systemctl enable montar-torrent.service

    Y otros 2 apuntes más:

    • El sh le he otorgado permisos con chmod u+x

    • y dentro contiene:

    #!/bin/bash

    sudo mount -t cifs //192.168.1.1/ssd /mnt/torrent -o guest,uid=1000,vers=1.0