This is more of a PSA rather than a question, so I added to the title PSA and SOLVED.
I really did try to create a samba share using dolphin but I never got it to work. Basically I did end up creating the samba user, and set up the shared folder, I had to enable and start the smb.service manually but in the end the samba share was simply never created.
Then I finally created a simple shared folder using these totally-trusty-copy-pastable commands:
- smb service needs to be running
systemctl enable –now smb.service - Edit
/etc/samba/smb.confto add at the end a share:-
[sharedfolder] path = /home/<your-user>/sharedfolder read only = no
-
- Execute this little command to set SELinux context:
sudo chcon -t samba_share_t /home/<your-user-name>/sharedfolder - (Probably you’ll want this): Add firewall rule to enable samba
sudo firewall-cmd --add-service samba - One can test this with
smbclient \\\\localhost\\sharedfolder -U <your-samba-user>
So, did anyone successfully created a shared folder using Dolphin without copy pasting stuff and configuring config files?

