Linux/Ubuntu: Connect windows to shared folder as guest

PHOTO EMBED

Mon Aug 29 2022 14:45:25 GMT+0000 (Coordinated Universal Time)

Saved by @marcopinero #bash

$> sudo apt-get install cifs-utils

$> sudo mkdir /mnt/shared

$> sudo mount -t cifs -o username=guest,password=,rw,iocharset=utf8,file_mode=0777,dir_mode=0777,noperm //<windows address>/the_folder /mnt/shared/
content_copyCOPY

Use this to open windows shared folder that accept guest user and read/write permissions.