Close

Configurar lectura desde Windows

A project log for THE ULTIMATE MINI ARCADE

Classic arcade with all the latest technological advancements, ready for the classics. Enjoy!

srrubioSrRubio 09/04/2025 at 07:030 Comments
  1. Abre Regedit otra vez.
  2. Ve a:

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters
    
    
    
  3. Elimina la entrada que creaste: AllowInsecureGuestAuth.

  4. Haz clic derecho → Nuevo > Valor de DWORD (32 bits).

  5. Nómbralo exactamente:

    AllowInsecureGuestAuth
    
    
    
  6. Doble clic → valor 1 (hexadecimal).

Deberías verlo así:

  1. Reinicia Windows.

✅ Después

Prueba en el explorador:

\\192.168.1.138\arcade

RPI

Acceso Samba (lo más cómodo)

Pasos en la RPi:

sudo apt update
sudo apt install -y samba

# Copia de seguridad por si quieres volver atrás
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak

# Añade dos recursos: bootfs y arcade (paths reales)
sudo tee -a /etc/samba/smb.conf >/dev/null <<'EOF'

[bootfs]
   path = /boot/firmware
   writeable = yes
   create mask = 0664
   directory mask = 0775
   public = yes
   guest ok = yes
   force user = root

[arcade]
   path = /mnt/arcade
   writeable = yes
   create mask = 0664
   directory mask = 0775
   public = yes
   guest ok = yes
   force user = arcade
EOF

sudo systemctl restart smbd nmbd
  1. Comprobar montajes en la Pi
findmnt /boot/firmware
findmnt /mnt/arcade
ls -la /boot/firmware | head
ls -la /mnt/arcade

Comprobar que el recurso realmente existe

Lista los recursos compartidos que Samba ofrece:

smbclient -L localhost -N


Deberías ver algo como:

Sharename       Type      Comment
---------       ----      -------
bootfs          Disk
arcade          Disk

Discussions