1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
# This -*- sh -*- script is a configuration file for Marionnet.
# Copyright (C) 2008 Luca Saiu
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# This file can be installed into /etc/marionnet to make a "global"
# site configuration, and each user can override some or all values
# in his/her private ~/.marionnet file.
#
# Each user can also override these settings by defining the same
# variables in the shell environment, before launching Marionnet.
# The name of the Unix socket used to communicate with the Marionnet
# daemon:
MARIONNET_SOCKET_NAME=/tmp/my-marionnet-daemon-socket
# The name of the bridge used for Marionnet (To do: this should change)
MARIONNET_BRIDGE=br0
# The keyboard layout for virtual machines starting in Xnest mode:
MARIONNET_KEYBOARD_LAYOUT=us
# You should leave this set as "false" if you are not developing Marionnet:
MARIONNET_DEBUG=false
# Helper programs used for opening documents in the Énoncé tab:
MARIONNET_PDF_READER=evince
MARIONNET_POSTSCRIPT_READER=evince
MARIONNET_DVI_READER=evince
MARIONNET_HTML_READER=galeon
MARIONNET_TEXT_EDITOR=emacs
# Optional prefix for vde executables (the prefix may be a path with a trailing
# slash, part of the a file name, or both (with a slash between the path and
# the file name part)):
MARIONNET_VDE_PREFIX=
# It is possible to choose the Terminal used by Marionnet to launch virtual
# host, it is necessary to specify option used to choose title and option
# used to execute a command in the Terminal, separated by comma (by default
# "xterm,-T,-e" is used), you can see examples below or use the "--help"
# switch to know options of your Terminal
#MARIONNET_TERMINAL="xterm,-T,-e"
#MARIONNET_TERMINAL="rxvt,-title,-e"
#MARIONNET_TERMINAL="gnome-terminal,-t,-x"
#MARIONNET_TERMINAL="konsole,-T,-e"
# It is possible to override the installation path, or the directory containing
# UML kernels and UML filesystems defined at compile-time;
# this is particularly useful for packagers or non-root
# users who want to setup Marionnet without writing to system paths.
# Leave this alone if you're not sure whether you need this.
#
# No trailing slashes.
#MARIONNET_PREFIX=/usr/local/share/marionnet
#MARIONNET_FILESYSTEMS_PATH=${MARIONNET_PREFIX}/filesystems
#MARIONNET_KERNELS_PATH=${MARIONNET_PREFIX}/kernels
#MARIONNET_LOCALEPREFIX=/usr/local/share/locale
# Variants could be saved in this local directory
MARIONNET_USER_VARIANTS_PATH=.marionnet/filesystems
# The router filesystem must have a filename starting with the prefix "router-" and
# ending with the value of this variable; if the variable is not specified its default
# value is assumed to be "default":
#MARIONNET_ROUTER_FILESYSTEM=
# Default for the factory-set configuration address for routers
MARIONNET_ROUTER_PORT0_DEFAULT_IPV4_CONFIG=192.168.1.254/24
# Force the Marionnet's temporary working directory.
# Note that this directory must reside on a filesystem supporting sparse files
# (reiserfs, reiser4, ext4, ext4dev, ext3, ext2, udf, ntfs, jfs, ufs, tmpfs,
# vxfs and xiafs are accepted)
# Note also that Marionnet will choose the first suitable directory in the list:
# $MARIONNET_TMPDIR, $TMPDIR, /tmp, /var/tmp, $PWD, ~/tmp, ~/
#MARIONNET_TMPDIR=/my-non-standard-tmp-directory-supporting-sparse-files
# Disable warnings:
#MARIONNET_DISABLE_WARNING_TEMPORARY_WORKING_DIRECTORY_AUTOMATICALLY_SET=true
# When this flag is "true", all intermediate snapshots are also saved in the
# .mar project, not only the most recent ones. In order to save disk space and
# time leave this flag to "false":
MARIONNET_KEEP_ALL_SNAPSHOTS_WHEN_SAVING=false
# Force the timezone for virtual machines:
#MARIONNET_TIMEZONE=Europe/Paris
|