Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 929 Bytes

fileshare.md

File metadata and controls

44 lines (32 loc) · 929 Bytes

File Sharing via Samba

Micboard's configuration directory can be shared via Samba. This makes it easy to remotely add backgrounds, edit micboard configurations, and view logs.

MacOS

mac fileshare On MacOS, open up the Sharing pane within System Preferences

Enable File Sharing

Add the micboard config folder. ~/Library/Application Support/micboard/

Debian Servers (Ubuntu & Raspberian)

Install Samba

$ sudo apt-get update
$ sudo apt-get install samba

Add a share for micboard in /etc/samba/smb.conf

[micboard]
    comment = Micboard
    path = /home/micboard/.local/share/micboard
    read only = no
    browsable = yes

Add a user for the share

$ sudo smbpasswd -a micboard

restart samba

$ sudo service smbd restart