]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/usage/running.itely
Issue3058: Remove "Apparent error in ../ly/init.ly" from Common Errors in usage
[lilypond.git] / Documentation / usage / running.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2
3 @ignore
4     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  For details, see the Contributors'
8     Guide, node Updating translation committishes..
9 @end ignore
10
11 @c \version "2.17.6"
12
13
14 @node Running lilypond
15 @chapter Running @command{lilypond}
16
17 This chapter details the technicalities of running LilyPond.
18
19 @menu
20 * Normal usage::
21 * Command-line usage::
22 * Error messages::
23 * Common errors::
24 @end menu
25
26
27 @node Normal usage
28 @section Normal usage
29
30 Most users run LilyPond through a GUI; if you have not done so
31 already, please read the @rlearning{Tutorial}.  If you use an alternate
32 editor to write lilypond files, see the documentation for that
33 program.
34
35
36 @node Command-line usage
37 @section Command-line usage
38
39 This section contains extra information about using LilyPond on the
40 command-line.  This may be desirable to pass extra options to the
41 program.  In addition, there are certain extra @q{helper} programs (such
42 as @code{midi2ly}) which are only available on the command-line.
43
44 By @q{command-line}, we mean the command line in the operating system.
45 Windows users might be more familiar with the terms @q{DOS shell} or
46 @q{command shell}.  MacOS@tie{}X users might be more familiar with the terms
47 @q{terminal} or @q{console}.  Some additional setup is required
48 for MacOS@tie{}X users; please see @rweb{MacOS X}.
49
50 Describing how to use this part of an operating system is outside the
51 scope of this manual; please consult other documentation on this topic
52 if you are unfamiliar with the command-line.
53
54 @menu
55 * Invoking lilypond::
56 * Basic command line options for LilyPond::
57 * Advanced command line options for LilyPond::
58 * Environment variables::
59 * LilyPond in chroot jail::
60 @end menu
61
62 @node Invoking lilypond
63 @unnumberedsubsec Invoking @command{lilypond}
64
65 The @command{lilypond} executable may be called as follows from
66 the command line.
67
68 @example
69 lilypond [@var{option}]@dots{} @var{file}@dots{}
70 @end example
71
72
73 When invoked with a filename that has no extension, the @file{.ly}
74 extension is tried first.  To read input from stdin, use a
75 dash (@code{-}) for @var{file}.
76
77 When @file{filename.ly} is processed it will produce @file{filename.ps}
78 and @file{filename.pdf} as output.  Several files can be specified;
79 they will each be processed independently.  @footnote{The status of
80 GUILE is not reset after processing a @code{.ly} file, so be careful
81 not to change any system defaults from within Scheme.}
82
83 If @file{filename.ly} contains more than one @code{\book}
84 block, then the rest of the scores will be output in numbered files,
85 starting with @file{filename-1.pdf}.  In addition, the value of
86 @code{output-suffix} will be inserted between the basename and the
87 number.  An input file containing
88
89 @example
90 #(define output-suffix "violin")
91 \score @{ @dots{} @}
92 #(define output-suffix "cello")
93 \score @{ @dots{} @}
94 @end example
95
96 @noindent
97 will output @var{base}@file{-violin.pdf} and
98 @var{base}@file{-cello-1.pdf}.
99
100
101 @unnumberedsubsubsec Standard shell commands
102
103 If your shell (i.e. command window) supports normal redirects,
104 then you might find it useful to use the following commands to
105 redirect console output to a file:
106
107 @itemize
108
109 @item
110 @code{lilypond file.ly 1>stdout.log} to redirect normal output
111
112 @item
113 @code{lilypond file.ly 2>stderr.log} to redirect error messages
114
115 @item
116 @code{lilypond file.ly &>all.log} to redirect all output
117
118 @end itemize
119
120 Consult the documentation for your shell to see if it supports these
121 options, or if the syntax is different.  Note that these are shell
122 commands and have nothing to do with lilypond.
123
124
125 @node Basic command line options for LilyPond
126 @unnumberedsubsec Basic command line options for LilyPond
127
128 @cindex Invoking @command{lilypond}
129 @cindex command line options for @command{lilypond}
130 @cindex options, command line
131 @cindex switches
132
133 The following options are supported:
134
135 @table @code
136
137 @item -d,--define-default=@var{var}=@var{val}
138 See @ref{Advanced command line options for LilyPond}.
139
140 @cindex Scheme, expression evaluation
141 @cindex expression evaluation, Scheme
142
143 @item -e,--evaluate=@var{expr}
144 Evaluate the Scheme @var{expr} before parsing any @file{.ly} files.
145 Multiple @option{-e} options may be given, they will be evaluated
146 sequentially.
147
148 The expression will be evaluated in the @code{guile-user} module, so
149 if you want to use definitions in @var{expr}, use
150
151 @example
152 lilypond -e '(define-public a 42)'
153 @end example
154
155 @noindent
156 on the command-line, and include
157
158 @example
159 #(use-modules (guile-user))
160 @end example
161
162 @noindent
163 at the top of the @code{.ly} file.
164
165 @warning{Windows users must use double quotes instead of single quotes.}
166
167 @cindex output, format
168 @cindex format, output
169
170 @item -f,--format=@var{format}
171 which formats should be written.  Choices for @code{format} are
172 @code{ps}, @code{pdf}, and @code{png}.
173
174 Example: @code{lilypond -fpng @var{filename}.ly}
175
176 @item -h,--help
177 Show a summary of usage.
178
179 @item -H,--header=@var{FIELD}
180 Dump a header field to file @file{BASENAME.@var{FIELD}}.
181
182 @item -i,--init=@var{file}
183 Set init file to @var{file} (default: @file{init.ly}).
184
185 @cindex file searching
186 @cindex search path
187
188 @item -I, --include=@var{directory}
189 Add @var{directory} to the search path for input files.
190
191 Multiple -I options may be given.  The search will start in the first
192 defined directory, and if the file to be included is not found the
193 search will continue in subsequent directories.
194
195 @cindex chroot jail, running inside
196
197 @item -j,--jail=@var{user},@var{group},@var{jail},@var{dir}
198 Run @command{lilypond} in a chroot jail.
199
200 The @option{--jail} option provides a more flexible alternative to
201 @option{-dsafe}, when LilyPond formatting is being provided via a web
202 server, or whenever LilyPond executes commands sent by external sources
203 (see @ref{Advanced command line options for LilyPond}).
204
205 It works by changing the root of @command{lilypond} to @var{jail} just
206 before starting the actual compilation process.  The user and group are
207 then changed to match those provided, and the current directory is
208 changed to @var{dir}.  This setup guarantees that it is not possible (at
209 least in theory) to escape from the jail.  Note that for @option{--jail}
210 to work, @command{lilypond} must be run as root, which is usually
211 accomplished in a safe way using @command{sudo}.
212
213 Setting up a jail can be a relatively complex matter, as we must be sure
214 that LilyPond is able to find whatever it needs to compile the source
215 @emph{inside} the jail itself.  A typical chroot jail will comprise the
216 following steps:
217
218 @table @asis
219
220 @item Setting up a separate filesystem
221 A separate filesystem should be created for LilyPond, so that it can be
222 mounted with safe options such as @code{noexec}, @code{nodev}, and
223 @code{nosuid}.  In this way, it is impossible to run executables or to
224 write directly to a device from LilyPond.  If you do not want to create a
225 separate partition, just create a file of reasonable size and use it to
226 mount a loop device.  A separate filesystem also guarantees that LilyPond
227 cannot write more space than it is allowed.
228
229 @item Setting up a separate user
230 A separate user and group (say, @code{lily}/@code{lily}) with low
231 privileges should be used to run LilyPond inside the jail.  There should
232 be a single directory writable by this user, which should be passed in
233 @var{dir}.
234
235 @item Preparing the jail
236 LilyPond needs to read a number of files while running.  All these files
237 are to be copied into the jail, under the same path they appear in the
238 real root filesystem.  The entire content of the LilyPond installation
239 (e.g., @file{/usr/share/lilypond}) should be copied.
240
241 If problems arise, the simplest way to trace them down is to run
242 LilyPond using @command{strace}, which will allow you to determine which
243 files are missing.
244
245 @item Running LilyPond
246 In a jail mounted with @code{noexec} it is impossible to execute any
247 external program.  Therefore LilyPond must be run with a backend that
248 does not require any such program.  As we have already mentioned, it
249 must be run with superuser privileges (which, of course, it will lose
250 immediately), possibly using @command{sudo}.  It is also good practice
251 to limit the number of seconds of CPU time LilyPond can use (e.g., using
252 @command{ulimit@tie{}-t}), and, if your operating system supports it,
253 the amount of memory that can be allocated.  Also see
254 @ref{LilyPond in chroot jail}.
255 @end table
256
257 @cindex loglevel
258 @cindex output, verbosity
259
260 @item -l,--loglevel=@var{LEVEL}
261 Set the verbosity of the console output to @var{LEVEL}. Possible values
262 are:
263
264 @table @code
265
266 @item NONE
267 No output at all, not even error messages.
268
269 @item ERROR
270 Only error messages, no warnings or progress messages.
271
272 @item WARN
273 Warnings and error messages, no progress.
274
275 @item BASIC_PROGRESS
276 Basic progress messages (success), warnings and errors.
277
278 @item PROGRESS
279 All progress messages, warnings and errors.
280
281 @item INFO (default)
282 Progress messages, warnings, errors and further execution information.
283
284 @item DEBUG
285 All possible messages, including verbose debug output.
286
287 @end table
288
289 @cindex directory, redirect output
290 @cindex output, setting filename
291 @cindex output, directory
292
293 @item -o,--output=@var{FILE} or @var{FOLDER}
294 Set the default output file to @var{FILE} or, if a folder with that name
295 exists, direct the output to @var{FOLDER}, taking the file name from the
296 input file.  The appropriate suffix will be added (e.g. @code{.pdf} for
297 pdf) in both cases.
298
299 @cindex PS (Postscript), output
300 @cindex Postscript (PS), output
301 @cindex output, PS (Postscript)
302
303 @item --ps
304 Generate PostScript.
305
306 @cindex PNG (Portable Network Graphics), output
307 @cindex output, PNG (Portable Network Graphics)
308
309 @item --png
310 Generate pictures of each page, in PNG format.  This implies
311 @option{--ps}.  The resolution in DPI of the image may be set with
312 @example
313 -dresolution=110
314 @end example
315
316 @cindex PDF (Portable Document Format), output
317 @cindex output, PDF (Portable Document Format)
318
319 @item --pdf
320 Generate PDF.  This implies @option{--ps}.
321
322 @item -v,--version
323 Show version information.
324
325 @item -V,--verbose
326 Be verbose: show full paths of all files read, and give timing
327 information.
328
329 @item -w,--warranty
330 Show the warranty with which GNU LilyPond comes.  (It comes with
331 @strong{NO WARRANTY}!)
332
333 @end table
334
335
336 @node Advanced command line options for LilyPond
337 @unnumberedsubsec Advanced command line options for LilyPond
338
339 @table @code
340
341 @item -d@var{[option-name]}=@var{[value]},--define-default=@var{[option-name]}=@var{[value]}
342 This sets the equivalent internal Scheme function to @var{value}.
343
344 @example
345 -dbackend=svg
346 @end example
347
348 If a @var{value} is not supplied, then the default value is used.  The
349 prefix @code{no-} may be added to @var{option-name} to switch @q{off} an
350 option, e.g.
351
352 @cindex point and click, command line
353
354 @example
355 -dpoint-and-click=#f
356 @end example
357
358 @noindent
359 is the same as
360 @example
361 -dno-point-and-click
362 @end example
363 @end table
364
365 @noindent The following are supported along with their respective
366 default values:
367
368 @multitable @columnfractions .33 .16 .51
369 @item @strong{Symbol}
370 @tab @strong{Value}
371 @tab @strong{Explanation/Options}
372
373 @item @code{anti-alias-factor}
374 @tab @code{1}
375 @tab Render at higher resolution (using given factor) and scale down
376 result to prevent @q{jaggies} in @code{PNG} images.
377
378 @item @code{aux-files}
379 @tab @code{#t}
380 @tab Create @code{.tex}, @code{.texi}, @code{.count} files in the
381 @code{EPS} backend.
382
383 @item @code{backend}
384 @tab @code{ps}
385 @tab Select backend.  Postscript files (default) include @code{TTF},
386 @code{Type1} and @code{OTF} fonts.  No subsetting of these fonts is
387 done.  Using @q{oriental} character sets can lead to very large files.
388
389 @item
390 @tab @code{eps}
391 @tab Encapsulated PostScript.  This dumps every page (system) as a
392 separate @file{EPS} file, without fonts, and as one collated @file{EPS}
393 file with all pages (systems) including fonts.  Used as default by
394 @command{lilypond-book}.
395
396 @item
397 @tab @code{null}
398 @tab Do not output a printed score; has the same effect as
399 @code{-dno-print-pages}.
400
401 @item
402 @tab @code{svg}
403 @tab Scalable Vector Graphics.  This creates a single @code{SVG} file,
404 without embedded fonts, for every page of output.  It is recommended to
405 install the Century Schoolbook fonts, included with your LilyPond
406 installation, for optimal rendering.  Under UNIX, simply copy these
407 fonts from the LilyPond directory (typically
408 @file{/usr/share/lilypond/VERSION/fonts/otf/}) to @file{~/.fonts/}.  The
409 @code{SVG} output should be compatible with any SVG editor or user
410 agent. There is also an option @code{svg-woff} (below) for use of woff
411 font files in the SVG backend.
412
413 @item
414 @tab @code{scm}
415 @tab Dump of the raw, internal Scheme-based drawing commands.
416
417 @item @code{check-internal-types}
418 @tab @code{#f}
419 @tab Check every property assignment for types.
420
421 @item @code{clip-systems}
422 @tab @code{#f}
423 @tab Generate cut-out snippets of a score.
424
425 @item @code{datadir}
426 @tab
427 @tab Prefix for data files (read-only).
428
429 @item @code{debug-gc}
430 @tab @code{#f}
431 @tab Dump memory debugging statistics.
432
433 @item @code{debug-gc-assert-parsed-dead}
434 @tab @code{#f}
435 @tab For memory debugging: Ensure that all references to parsed objects
436 are dead. This is an internal option, and is switched on automatically
437 for @code{`-ddebug-gc'}.
438
439 @item @code{debug-lexer}
440 @tab @code{#f}
441 @tab Debug the flex lexer.
442
443 @item @code{debug-page-breaking-scoring}
444 @tab @code{#f}
445 @tab Dump scores for many different page breaking configurations.
446
447 @item @code{debug-parser}
448 @tab @code{#f}
449 @tab Debug the bison parser.
450
451 @item @code{debug-property-callbacks}
452 @tab @code{#f}
453 @tab Debug cyclic callback chains.
454
455 @item @code{debug-skylines}
456 @tab @code{#f}
457 @tab Debug skylines.
458
459 @item @code{delete-intermediate-files}
460 @tab @code{#t}
461 @tab Delete the unusable, intermediate @code{.ps} files created during
462 compilation.
463
464 @item @code{dump-cpu-profile}
465 @tab @code{#f}
466 @tab Dump timing information (system-dependent).
467
468 @item @code{dump-profile}
469 @tab @code{#f}
470 @tab Dump memory and time information for each file.
471
472 @item @code{dump-signatures}
473 @tab @code{#f}
474 @tab Dump output signatures of each system. Used for regression testing.
475
476 @item @code{eps-box-padding}
477 @tab @code{#f}
478 @tab Pad left edge of the output EPS bounding box by the given amount
479 (in mm).
480
481 @item @code{gs-load-fonts}
482 @tab @code{#f}
483 @tab Load fonts via Ghostscript.
484
485 @item @code{gs-load-lily-fonts}
486 @tab @code{#f}
487 @tab Load only the LilyPond fonts via Ghostscript.
488
489 @item @code{gui}
490 @tab @code{#f}
491 @tab Runs silently and redirect all output to a log file.
492 @end multitable
493
494 @noindent
495 @strong{Note to Windows users:} By default @code{lilypond.exe} outputs
496 all progress information to the command window,
497 @code{lilypond-windows.exe} does not and returns a prompt, with no
498 progress information, immediately at the command line.  The
499 @option{-dgui} option can be used in this case to redirect output to a
500 log file.
501
502 @multitable @columnfractions .33 .16 .51
503 @item @code{help}
504 @tab @code{#f}
505 @tab Show this help.
506
507 @item @code{include-book-title-preview}
508 @tab @code{#t}
509 @tab Include book titles in preview images.
510
511 @item @code{include-eps-fonts}
512 @tab @code{#t}
513 @tab Include fonts in separate-system EPS files.
514
515 @item @code{include-settings}
516 @tab @code{#f}
517 @tab Include file for global settings, this is included before the score
518 is processed.
519
520 @item @code{job-count}
521 @tab @code{#f}
522 @tab Process in parallel, using the given number of jobs.
523
524 @item @code{log-file}
525 @tab @code{#f [file]}
526 @tab If string @code{FOO} is given as a second argument,
527 redirect output to the log file @code{FOO.log}.
528
529 @item @code{max-markup-depth}
530 @tab @code{1024}
531 @tab Maximum depth for the markup tree. If a markup has more levels,
532 assume it will not terminate on its own, print a warning and return a
533 null markup instead.
534
535 @item @code{midi-extension}
536 @tab @code{"midi"}
537 @tab Set the default file extension for MIDI output file to given
538 string.
539
540 @item @code{music-strings-to-paths}
541 @tab @code{#f}
542 @tab Convert text strings to paths when glyphs belong to a music font.
543
544 @item @code{old-relative}
545 @tab @code{#f}
546 @tab Make @code{\relative} mode for simultaneous music work similar to
547 chord syntax.
548
549 @item @code{paper-size}
550 @tab @code{\"a4\"}
551 @tab Set default paper size.  Note the string must be enclosed in
552 escaped double quotes.
553
554 @item @code{pixmap-format}
555 @tab @code{png16m}
556 @tab Set GhostScript's output format for pixel images.
557
558 @item @code{point-and-click}
559 @tab @code{#f}
560 @tab Add @q{point & click} links to @code{PDF} output. See
561 @ref{Point and click}.
562
563 @item @code{preview}
564 @tab @code{#f}
565 @tab Create preview images in addition to normal output.
566 @end multitable
567
568 @noindent
569 This option is supported by all backends; @code{pdf}, @code{png},
570 @code{ps}, @code{eps} and @code{svg}, but not @code{scm}.  It generates
571 an output file, in the form @code{myFile.preview.extension}, containing
572 the titles and the first system of music.  If @code{\book} or
573 @code{\bookpart} blocks are used, the titles of @code{\book},
574 @code{\bookpart} or @code{\score} will appear in the output, including
575 the first system of every @code{\score} block if the @code{\paper}
576 variable @code{print-all-headers} is set to @code{#t}.
577
578 To suppress the usual output, use the @option{-dprint-pages} or
579 @option{-dno-print-pages} options according to your requirements.
580
581 @multitable @columnfractions .33 .16 .51
582 @item @code{print-pages}
583 @tab @code{#t}
584 @tab Generate full pages, the default.  @option{-dno-print-pages} is
585 useful in combination with @option{-dpreview}.
586
587 @item @code{profile-property-accesses}
588 @tab @code{#f}
589 @tab Keep statistics of @code{get_property()} function calls.
590
591 @item @code{protected-scheme-parsing}
592 @tab @code{#t}
593 @tab Continue when errors in inline scheme are caught in the parser. If
594 set to @code{#f}, halt on errors and print a stack trace.
595
596 @item @code{read-file-list}
597 @tab @code{#f [file]}
598 @tab Specify name of a file which contains a list of input files to be
599 processed.
600
601 @item @code{relative-includes}
602 @tab @code{#f}
603 @tab When processing an @code{\include} command, look for the included
604 file relative to the current file (instead of the root file).
605
606 @item @code{resolution}
607 @tab @code{101}
608 @tab Set resolution for generating @code{PNG} pixmaps to given value (in
609 dpi).
610
611 @item @code{safe}
612 @tab @code{#f}
613 @tab Do not trust the @code{.ly} input.
614 @end multitable
615
616 @noindent
617 When LilyPond formatting is available through a web server, either the
618 @option{--safe} or the @option{--jail} option @b{MUST} be passed.  The
619 @option{--safe} option will prevent inline Scheme code from wreaking
620 havoc, e.g,
621
622 @quotation
623 @verbatim
624 #(system "rm -rf /")
625 {
626   c4^$(ly:gulp-file "/etc/passwd")
627 }
628 @end verbatim
629 @end quotation
630
631 The @option{-dsafe} option works by evaluating in-line Scheme
632 expressions in a special safe module.  This is derived from GUILE
633 @file{safe-r5rs} module, but also adds a number of functions of the
634 LilyPond API which are listed in @file{scm/safe-lily.scm}.
635
636 In addition, safe mode disallows @code{\include} directives and
637 disables the use of backslashes in @TeX{} strings.  It is also not
638 possible to import LilyPond variables into Scheme while in safe mode.
639
640 @option{-dsafe} does @emph{not} detect resource overuse, so it is still
641 possible to make the program hang indefinitely, for example by feeding
642 cyclic data structures into the backend.  Therefore, if using LilyPond
643 on a publicly accessible webserver, the process should be limited in
644 both CPU and memory usage.
645
646 Safe mode will prevent many useful LilyPond snippets from being
647 compiled.
648
649 The @option{--jail} is an even more secure alternative, but requires
650 more work to set up. See @ref{Basic command line options for LilyPond}.
651
652 @multitable @columnfractions .33 .16 .51
653 @item @code{separate-log-files}
654 @tab @code{#f}
655 @tab For input files @code{FILE1.ly}, @code{FILE2.ly}, etc. output log
656 data to files @code{FILE1.log}, @code{FILE2.log}, ...
657
658 @item @code{show-available-fonts}
659 @tab @code{#f}
660 @tab List available font names.
661
662 @item @code{strict-infinity-checking}
663 @tab @code{#f}
664 @tab Force a crash on encountering @code{Inf} and @code{NaN} floating
665 point exceptions.
666
667 @item @code{strip-output-dir}
668 @tab @code{#t}
669 @tab Don't use directories from input files while constructing output
670 file names.
671
672 @item @code{svg-woff}
673 @tab @code{#f}
674 @tab Use woff font files in SVG backend.
675
676 @item @code{trace-memory-frequency}
677 @tab @code{#f}
678 @tab Record Scheme cell usage this many times per second.  Dump the
679 results to @code{FILE.stacks} and @code{FILE.graph}.
680
681 @item @code{trace-scheme-coverage}
682 @tab @code{#f}
683 @tab Record coverage of Scheme files in @code{FILE.cov}.
684
685 @item @code{verbose}
686 @tab @code{#f}
687 @tab Verbose output, i.e. loglevel at DEBUG (read-only).
688
689 @item @code{warning-as-error}
690 @tab @code{#f}
691 @tab Change all warning and @q{programming error} messages into errors.
692 @end multitable
693
694
695 @node Environment variables
696 @unnumberedsubsec Environment variables
697
698 @cindex LANG
699 @cindex LILYPOND_DATADIR
700
701 @command{lilypond} recognizes the following environment variables:
702 @table @code
703 @item LILYPOND_DATADIR
704 This specifies a directory where locale messages and
705 data files will be looked up by default.  The directory should contain
706 subdirectories called @file{ly/}, @file{ps/}, @file{tex/}, etc.
707
708 @item LANG
709 This selects the language for the warning messages.
710
711 @item LILYPOND_LOGLEVEL
712 The default loglevel. If LilyPond is called without an explicit loglevel
713 (i.e. no @option{--loglevel} command line option), this value is used.
714
715 @item LILYPOND_GC_YIELD
716 A variable, as a percentage, that tunes memory management
717 behavior.  A higher values means the program uses more memory, a
718 smaller value means more CPU time is used.  The default value is
719 @code{70}.
720
721 @end table
722
723
724 @node LilyPond in chroot jail
725 @unnumberedsubsec LilyPond in chroot jail
726
727 Setting up the server to run LilyPond in a chroot jail is a complicated
728 task.  The steps are listed below.  Examples in the steps are from
729 Ubuntu GNU/Linux, and may require the use of @code{sudo} as appropriate.
730
731 @itemize
732
733 @item Install the necessary packages: LilyPond, GhostScript, and ImageMagick.
734
735 @item Create a new user by the name of @code{lily}:
736
737 @example
738 adduser lily
739 @end example
740
741 @noindent
742 This will create a new group for the @code{lily} user as well, and a
743 home folder, @code{/home/lily}
744
745 @item In the home folder of the @code{lily} user create a file to use as a
746 separate filesystem:
747
748 @example
749 dd if=/dev/zero of=/home/lily/loopfile bs=1k count= 200000
750 @end example
751
752 @noindent
753 This example creates a 200MB file for use as the jail filesystem.
754
755 @item Create a loop device, make a file system and mount it, then create
756 a folder that can be written by the @code{lily} user:
757
758 @example
759 mkdir /mnt/lilyloop
760 losetup /dev/loop0 /home/lily/loopfile
761 mkfs -t ext3 /dev/loop0 200000
762 mount -t ext3 /dev/loop0 /mnt/lilyloop
763 mkdir /mnt/lilyloop/lilyhome
764 chown lily /mnt/lilyloop/lilyhome
765 @end example
766
767 @item In the configuration of the servers, the JAIL will be @code{/mnt/lilyloop}
768 and the DIR will be @code{/lilyhome}.
769
770 @item Create a big directory tree in the jail by copying the necessary files, as
771 shown in the sample script below.
772
773 You can use @code{sed} to create the necessary copy commands for a given
774 executable:
775
776 @example
777 for i in "/usr/local/lilypond/usr/bin/lilypond" "/bin/sh" "/usr/bin/;  \
778   do ldd $i | sed 's/.*=> \/\(.*\/\)\([^(]*\).*/mkdir -p \1 \&\&  \
779     cp -L \/\1\2 \1\2/' | sed 's/\t\/\(.*\/\)\(.*\) (.*)$/mkdir -p  \
780       \1 \&\& cp -L \/\1\2 \1\2/' | sed '/.*=>.*/d'; done
781 @end example
782
783 @end itemize
784
785 @subheading Example script for 32-bit Ubuntu 8.04
786
787 @example
788 #!/bin/sh
789 ## defaults set here
790
791 username=lily
792 home=/home
793 loopdevice=/dev/loop0
794 jaildir=/mnt/lilyloop
795 # the prefix (without the leading slash!)
796 lilyprefix=usr/local
797 # the directory where lilypond is installed on the system
798 lilydir=/$lilyprefix/lilypond/
799
800 userhome=$home/$username
801 loopfile=$userhome/loopfile
802 adduser $username
803 dd if=/dev/zero of=$loopfile bs=1k count=200000
804 mkdir $jaildir
805 losetup $loopdevice $loopfile
806 mkfs -t ext3 $loopdevice 200000
807 mount -t ext3 $loopdevice $jaildir
808 mkdir $jaildir/lilyhome
809 chown $username $jaildir/lilyhome
810 cd $jaildir
811
812 mkdir -p bin usr/bin usr/share usr/lib usr/share/fonts $lilyprefix tmp
813 chmod a+w tmp
814
815 cp -r -L $lilydir $lilyprefix
816 cp -L /bin/sh /bin/rm bin
817 cp -L /usr/bin/convert /usr/bin/gs usr/bin
818 cp -L /usr/share/fonts/truetype usr/share/fonts
819
820 # Now the library copying magic
821 for i in "$lilydir/usr/bin/lilypond" "$lilydir/usr/bin/guile" "/bin/sh"  \
822   "/bin/rm" "/usr/bin/gs" "/usr/bin/convert"; do ldd $i | sed 's/.*=>  \
823     \/\(.*\/\)\([^(]*\).*/mkdir -p \1 \&\& cp -L \/\1\2 \1\2/' | sed  \
824       's/\t\/\(.*\/\)\(.*\) (.*)$/mkdir -p \1 \&\& cp -L \/\1\2 \1\2/'  \
825         | sed '/.*=>.*/d'; done | sh -s
826
827 # The shared files for ghostscript...
828       cp -L -r /usr/share/ghostscript usr/share
829 # The shared files for ImageMagick
830       cp -L -r /usr/lib/ImageMagick* usr/lib
831
832 ### Now, assuming that you have test.ly in /mnt/lilyloop/lilyhome,
833 ### you should be able to run:
834 ### Note that /$lilyprefix/bin/lilypond is a script, which sets the
835 ### LD_LIBRARY_PATH - this is crucial
836       /$lilyprefix/bin/lilypond -jlily,lily,/mnt/lilyloop,/lilyhome test.ly
837 @end example
838
839 @c " keep quote signs balanced for context-sensitive editors
840
841 @node Error messages
842 @section Error messages
843
844 @cindex error messages
845 Different error messages can appear while compiling a file:
846
847 @table @emph
848
849 @item Warning
850 @cindex warning
851 Something looks suspect.  If you are requesting something out of the
852 ordinary then you will understand the message, and can ignore it.
853 However, warnings usually indicate that something is wrong with the
854 input file.
855
856 @item Error
857 @cindex error
858 Something is definitely wrong.  The current processing step (parsing,
859 interpreting, or formatting) will be finished, but the next step will
860 be skipped.
861
862 @item Fatal error
863 @cindex fatal error
864 Something is definitely wrong, and LilyPond cannot continue.  This
865 happens rarely.  The most usual cause is misinstalled fonts.
866
867 @item Scheme error
868 @cindex trace, Scheme
869 @cindex call trace
870 @cindex Scheme error
871 Errors that occur while executing Scheme code are caught by the Scheme
872 interpreter.  If running with the verbose option (@option{-V} or
873 @option{--verbose}) then a call trace of the offending
874 function call is printed.
875
876 @item Programming error
877 @cindex Programming error
878 There was some internal inconsistency.  These error messages are
879 intended to help the programmers and debuggers.  Usually, they can be
880 ignored.  Sometimes, they come in such big quantities that they obscure
881 other output.
882
883 @item Aborted (core dumped)
884 @cindex Aborted (core dumped)
885 This signals a serious programming error that caused the program to
886 crash.  Such errors are considered critical.  If you stumble on one,
887 send a bug-report.
888 @end table
889
890 @cindex errors, message format
891 If warnings and errors can be linked to some part of the input file,
892 then error messages have the following form
893
894 @example
895 @var{filename}:@var{lineno}:@var{columnno}: @var{message}
896 @var{offending input line}
897 @end example
898
899 A line-break is inserted in the offending line to indicate the column
900 where the error was found.  For example,
901
902 @example
903 test.ly:2:19: error: not a duration: 5
904   @{ c'4 e'
905            5 g' @}
906 @end example
907
908 These locations are LilyPond's best guess about where the warning or
909 error occurred, but (by their very nature) warnings and errors occur
910 when something unexpected happens.  If you can't see an error in the
911 indicated line of your input file, try checking one or two lines
912 above the indicated position.
913
914 More information about errors is given in @ref{Common errors}.
915
916
917 @node Common errors
918 @section Common errors
919
920 The error conditions described below occur often, yet the cause
921 is not obvious or easily found.  Once seen and understood, they
922 are easily handled.
923
924
925 @menu
926 * Music runs off the page::
927 * An extra staff appears::
928 * Error message Unbound variable %::
929 * Error message FT_Get_Glyph_Name::
930 * Warning staff affinities should only decrease::
931 @end menu
932
933 @node Music runs off the page
934 @unnumberedsubsec Music runs off the page
935
936 Music running off the page over the right margin or appearing
937 unduly compressed is almost always due to entering an incorrect
938 duration on a note, causing the final note in a measure to extend
939 over the bar line.  It is not invalid if the final note in a
940 measure does not end on the automatically entered bar line, as the
941 note is simply assumed to carry over into the next measure.  But
942 if a long sequence of such carry-over measures occurs the music
943 can appear compressed or may flow off the page because automatic
944 line breaks can be inserted only at the end of complete measures,
945 i.e., where all notes end before or at the end of the measure.
946
947 @warning{An incorrect duration can cause line breaks to be
948 inhibited, leading to a line of highly compressed music or
949 music which flows off the page.}
950
951 The incorrect duration can be found easily if bar checks are used,
952 see @ruser{Bar and bar number checks}.
953
954 If you actually intend to have a series of such carry-over measures
955 you will need to insert an invisible bar line where you want the
956 line to break.  For details, see @ruser{Bar lines}.
957
958
959 @node An extra staff appears
960 @unnumberedsubsec An extra staff appears
961
962 If contexts are not created explicitly with @code{\new} or
963 @code{\context}, they will be silently created as soon as a
964 command is encountered which cannot be applied to an existing
965 context.  In simple scores the automatic creation of contexts is
966 useful, and most of the examples in the LilyPond manuals take
967 advantage of this simplification.  But occasionally the silent
968 creation of contexts can give rise to unexpected new staves or
969 scores.  For example, it might be expected that the following code
970 would cause all note heads within the following staff to be
971 colored red, but in fact it results in two staves with the note
972 heads remaining the default black in the lower staff.
973
974 @lilypond[quote,verbatim,relative=2]
975 \override Staff.NoteHead.color = #red
976 \new Staff { a }
977 @end lilypond
978
979 This is because a @code{Staff} context does not exist when the
980 override is processed, so one is implicitly created and the override
981 is applied to it, but then the @code{\new Staff} command creates
982 another, separate, staff into which the notes are placed.  The
983 correct code to color all note heads red is
984
985 @lilypond[quote,verbatim,relative=2]
986 \new Staff {
987   \override Staff.NoteHead.color = #red
988   a
989 }
990 @end lilypond
991
992 As a second example, if a @code{\relative} command is placed inside
993 a @code{\repeat} command, two staves result, the second offset from
994 the first, because the @code{\repeat} command generates two
995 @code{\relative} blocks, which each implicitly create @code{Staff}
996 and @code{Voice} blocks.
997
998 @lilypond[quote,verbatim]
999 \repeat unfold 2 {
1000   \relative c' { c4 d e f }
1001 }
1002 @end lilypond
1003
1004 Explicitly instantiating the @code{Voice} context fixes the
1005 problem:
1006
1007 @lilypond[quote,verbatim]
1008 \new Voice {
1009   \repeat unfold 2 {
1010     \relative c' { c4 d e f }
1011   }
1012 }
1013 @end lilypond
1014
1015
1016 @node Error message Unbound variable %
1017 @unnumberedsubsec Error message Unbound variable %
1018
1019 This error message will appear at the bottom of the console
1020 output or log file together with a @qq{GUILE signalled an error @dots{}}
1021 message every time a Scheme routine is called which (invalidly)
1022 contains a @emph{LilyPond} rather than a @emph{Scheme} comment.
1023
1024 LilyPond comments begin with a percent sign, (@code{%}), and must
1025 not be used within Scheme routines.  Scheme comments begin with a
1026 semi-colon, (@code{;}).
1027
1028 @node Error message FT_Get_Glyph_Name
1029 @unnumberedsubsec Error message FT_Get_Glyph_Name
1030
1031 This error messages appears in the console output or log file if
1032 an input file contains a non-ASCII character and was not saved in
1033 UTF-8 encoding.  For details, see @ruser{Text encoding}.
1034
1035
1036 @node Warning staff affinities should only decrease
1037 @unnumberedsubsec Warning staff affinities should only decrease
1038 This warning can appear if there are no staves in the printed
1039 output, for example if there are just a @code{ChordName} context
1040 and a @code{Lyrics} context as in a lead sheet.  The warning
1041 messages can be avoided by making one of the contexts behave as a
1042 staff by inserting
1043
1044 @example
1045 \override VerticalAxisGroup.staff-affinity = ##f
1046 @end example
1047
1048 @noindent
1049 at its start.  For details, see @qq{Spacing of non-staff lines} in
1050 @ruser{Flexible vertical spacing within systems}.