If under Ubuntu server LTSP 10.04 64bit (xlib_shm-0.6.5) someone will have error such like:
Code: Select all
Can't open linked memory map file /dev/shm/zm.mmap.1: No such file or directory
the patch should be applied (its just dot difference):
Code: Select all
--- xlib_shm.c.orig 2010-10-15 04:49:44.000000000 +0200
+++ xlib_shm.c 2011-03-09 15:35:40.000000000 +0100
@@ -641,7 +641,7 @@
int id = monitor[cam]->mon_id;
if (use_mmap) {
char mem_file[255];
- snprintf( mem_file, sizeof(mem_file), "%s/zm.mmap.%d", "/dev/shm", id );
+ snprintf( mem_file, sizeof(mem_file), "%s/.zm.mmap.%d", "/dev/shm", id );
// Copied from zm_monitor.cpp
int mem_size = sizeof(SharedData) + sizeof(TriggerData);
Thanks maciekc & pada for this useful code !
cheers
