Displaying 3 results from an estimated 3 matches for "mix'n'match".
2003 Feb 26
2
inetd/xinetd/tcpserver support
I was just thinking how they could be easily supported. This would work,
right? :
imap stream tcp nowait root /usr/sbin/tcpd /usr/local/libexec/dovecot/imap-login
imaps stream tcp nowait root /usr/sbin/tcpd /usr/local/libexec/dovecot/imap-login --ssl
imap-login would try to connect to master process using some named
socket. If it couldn't, it would create the master process itself.
Master
2012 May 10
1
guestfs_mount_local* api undefined symbols
Recently i deployed latest 1.17.40 on rhel6.1.
When i ran a tiny program which was to test the function guestfs_mount_local() or those similar functions that mounts locally, Error prompted?undefined symbol guest_mount_local !
Why didn`t this undefined symbol error prompt when the program was first compiled,but occurred when it was run?
Then i gave guestfish mount local a try in the shell, and
2012 May 10
1
回复: guestfs_mount_local* api undefined symbols
...> http://pastebin.com/EExzKbNa
This installs libguestfs in /usr/local. The one from RHEL 6 will be
in /usr. You might want to set 'LD_LIBRARY_PATH' so that the
program uses the /usr/local copy, ie:
LD_LIBRARY_PATH=/usr/local/lib ./prog
By the way, it's not necessarily safe to mix'n'match libraries,
daemons and appliances like you're trying to do here. The protocol
used between the library and the daemon has changed since RHEL 6.2.
If you are using libguestfs 1.16.19 (from [1]) then it'll probably
work for the majority of features. Earlier versions, probabl...