UserPreferences

HowTo


Make sure you also check out this wiki's FrontPage to see what other Intermezzo informations are gathered here.


The InterSync & InterMezzo HOWTO

Ongoing wiki effort started by the project members v1.9.1, March 2002

Configuration and Operation of the InterSync Daemon on Linux

Installing and Running InterSync

Running InterMezzo

Note that there are currently two InterMezzo filesystem types: intermezzo is used for device-based filesystems, vintermezzo is used for running over systems like tmpfs.

Configuring InterSync

Debugging

To help us find bugs we need logging information. The logs come in two places, from the kernel in /var/log/messages, and from InterSync to /var/log/intersync/.

The kernel debugging log slows things down enormously and is activated with:

echo 8192 > /proc/sys/intermezzo/debug
echo 1 > /proc/sys/intermezzo/trace

The debug mask is one of (or a sum of) the values in this table:

D_SUPER 1
D_INODE 2
D_FILE 4
D_CACHE(cache debugging) 8
D_MALLOC(print malloc, de-alloc information ) 16
D_JOURNAL 32
D_UPCALL(up and downcall debugging) 64
D_PSDEV 128
D_PIOCTL 256
D_SPECIAL 512
D_TIMING 1024
D_DOWNCALL 2048
D_KML 4096
D_FSDATA 8192

These can be checked in the fs2x/linux/fsfilter.h or intermezzo_fs.h.

InterSync debugging messages also slow things down enormously, and are activated by passing a --debug X parameter on the command line. X is one of (or a sum of) the values in this table:

D_INFO 1
D_KML 2
D_UPCALL 4
D_HTTP 8
D_REINT 16
D_CHAT 1024

Contact Information

More information about InterMezzo can be found at http://www.inter-mezzo.org/.

General questions about InterMezzo can be sent to mailto:intermezzo-discuss@lists.sourceforge.net.

All InterMezzo related mail lists are archived (follow directions on the InterMezzo web site), so it may be worth checking here to see if your question has already been answered.

Bug reports should be filed on sourceforge. Please include the version of InterMezzo you are using and a description of your system configuration and the problem observed.

Also, please include all relevant logs:

/var/log/messages and /var/log/intersync/ for server and clients.


Back to FrontPage