Storage directory of Gcode files Kobra 2 Max / Pro

Anyone know location of gcode files where i can just scp them into the printer(that can just be automated to send all files in a specific folder to it) ?
Also how to inject gcode or mqtt commands would also be a nice way to communicate to with the printer is there aren’t a bunch of handshakes except for a specific listening ip…,

I would prefer to just do everything in the terminal, VPN and SSH into my network from anywhere like I do everything else.

Hello @yagoa !

Your request has nothing to do with a working config nor with this thread.

I’ll move it.

1 Like

/mnt/UDISK/
is the location of added .gcode files

/mnt/UDISK or /mnt/exUDISK

you would need opkg install openssh-client to use scp like this right?
scp ~/gcode/file.gcode root@192.168.0.109:/mnt/UDISK/
I use reverse scp atm

As long as ssh is installed it will work. I usually install dropbear.

apparently not, you need both dropbear and opkg install openssh-sftp-server
I created a .zshrc alias :
function sck()
{ scp $1 root@192.168.0.109:/mnt/UDISK/ }
and it works like a charm to drag files into the terminal with this
all we need now is some command to send hotbed and start commands :sunny:
I will report back with the ram usage

root@TinaLinux:~# free
total used free shared buffers cached
Mem: 111532 95608 15924 64 19124 37048
-/+ buffers/cache: 39436 72096
Swap: 0 0 0
this is the lowest I was able to get it

scp -p
if you block your printer from accessing the internet since the K2M uses a time-server to timestamp the files

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.