-
Notifications
You must be signed in to change notification settings - Fork 18
/
gcode_folder_share.txt
54 lines (47 loc) · 1.41 KB
/
gcode_folder_share.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
GCODE File Network Share Setup
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
To set up a network file share, making your gcode files available to either windows or mac file
explorers, perform the following once ssh'd into your klipper rPi.
-Install file serving smb service:
$sudo apt-get install samba winbind -y
-Configure file share. Add the following to the end of the smb.conf file:
$sudo nano /etc/samba/smb.conf
[Print_Files]
comment = Voron_gCode_files
path = /home/pi/printer_data/gcodes
browseable = Yes
writeable = Yes
only guest = no
create mask = 0777
directory mask = 0777
public = yes
read only = no
force user = root
force group = root
[Klipper_Configs]
comment = Voron_Klipper
path = /home/pi/printer_data/config
browseable = Yes
writeable = Yes
only guest = no
create mask = 0777
directory mask = 0777
public = yes
read only = no
force user = root
force group = root
[Klipper_Storage]
comment = Voron_Storage
path = /home/pi/Storage
browseable = Yes
writeable = Yes
only guest = no
create mask = 0777
directory mask = 0777
public = yes
read only = no
force user = root
force group = root
-Reboot rPi:
$sudo reboot