SpaceLogic KNX Forum
Schneider Electric SpaceLogic KNX forum to get support and share knowledge including selection, installation and troubleshooting for spaceLYnk, Wiser for KNX, eConfigure KNX, SpaceLogic KNX Hybrid module and other topics.
Link copied. Please paste this link to share this article on your social media post.
Is it possible to allow ftp to use the free space in micro memory card?
Now is using another space and reaches full with more or less 35Mb.
Link copied. Please paste this link to share this article on your social media post.
There is new application note going to be released, which describes the procedure more in detail.
The release will be soon. So keep checking updates on this forum.
Here is a small hint from the upcomming application note:
-- create usb mount directory
-- find first matching usb storage device
dev = io.readproc('ls /dev/sd*1 2>/dev/null'😞match('/dev/sd%l1')
-- found it, mount
if dev then
os.execute('mount '.. dev ..' /mnt/usb')
os.execute('mkdir -p /home/ftp/usb')
os.execute('mount /mnt/usb /home/ftp/usb')
os.execute('chown ftp:ftp /home/ftp/usb')
alert('[usb-mount] mounted %s', dev)
-- nothing found, local flash will be used
else
alert('[usb-mount] no device found')
end
3. Reboot homeLYnk
Now can be read/write to USB flash drive via FTP client.
Regards
Tomas
Link copied. Please paste this link to share this article on your social media post.
It is possible to use USB flashdisk to extend your ftp accessible space.
Link copied. Please paste this link to share this article on your social media post.
How?
Link copied. Please paste this link to share this article on your social media post.
There is new application note going to be released, which describes the procedure more in detail.
The release will be soon. So keep checking updates on this forum.
Here is a small hint from the upcomming application note:
-- create usb mount directory
-- find first matching usb storage device
dev = io.readproc('ls /dev/sd*1 2>/dev/null'😞match('/dev/sd%l1')
-- found it, mount
if dev then
os.execute('mount '.. dev ..' /mnt/usb')
os.execute('mkdir -p /home/ftp/usb')
os.execute('mount /mnt/usb /home/ftp/usb')
os.execute('chown ftp:ftp /home/ftp/usb')
alert('[usb-mount] mounted %s', dev)
-- nothing found, local flash will be used
else
alert('[usb-mount] no device found')
end
3. Reboot homeLYnk
Now can be read/write to USB flash drive via FTP client.
Regards
Tomas
Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.