]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/usage/running.itely
Merge branch 'translation' into staging
[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{paper-size}
545 @tab @code{\"a4\"}
546 @tab Set default paper size.  Note the string must be enclosed in
547 escaped double quotes.
548
549 @item @code{pixmap-format}
550 @tab @code{png16m}
551 @tab Set GhostScript's output format for pixel images.
552
553 @item @code{point-and-click}
554 @tab @code{#f}
555 @tab Add @q{point & click} links to @code{PDF} output. See
556 @ref{Point and click}.
557
558 @item @code{preview}
559 @tab @code{#f}
560 @tab Create preview images in addition to normal output.
561 @end multitable
562
563 @noindent
564 This option is supported by all backends; @code{pdf}, @code{png},
565 @code{ps}, @code{eps} and @code{svg}, but not @code{scm}.  It generates
566 an output file, in the form @code{myFile.preview.extension}, containing
567 the titles and the first system of music.  If @code{\book} or
568 @code{\bookpart} blocks are used, the titles of @code{\book},
569 @code{\bookpart} or @code{\score} will appear in the output, including
570 the first system of every @code{\score} block if the @code{\paper}
571 variable @code{print-all-headers} is set to @code{#t}.
572
573 To suppress the usual output, use the @option{-dprint-pages} or
574 @option{-dno-print-pages} options according to your requirements.
575
576 @multitable @columnfractions .33 .16 .51
577 @item @code{print-pages}
578 @tab @code{#t}
579 @tab Generate full pages, the default.  @option{-dno-print-pages} is
580 useful in combination with @option{-dpreview}.
581
582 @item @code{profile-property-accesses}
583 @tab @code{#f}
584 @tab Keep statistics of @code{get_property()} function calls.
585
586 @item @code{protected-scheme-parsing}
587 @tab @code{#t}
588 @tab Continue when errors in inline scheme are caught in the parser. If
589 set to @code{#f}, halt on errors and print a stack trace.
590
591 @item @code{read-file-list}
592 @tab @code{#f [file]}
593 @tab Specify name of a file which contains a list of input files to be
594 processed.
595
596 @item @code{relative-includes}
597 @tab @code{#f}
598 @tab When processing an @code{\include} command, look for the included
599 file relative to the current file (instead of the root file).
600
601 @item @code{resolution}
602 @tab @code{101}
603 @tab Set resolution for generating @code{PNG} pixmaps to given value (in
604 dpi).
605
606 @item @code{safe}
607 @tab @code{#f}
608 @tab Do not trust the @code{.ly} input.
609 @end multitable
610
611 @noindent
612 When LilyPond formatting is available through a web server, either the
613 @option{--safe} or the @option{--jail} option @b{MUST} be passed.  The
614 @option{--safe} option will prevent inline Scheme code from wreaking
615 havoc, e.g,
616
617 @quotation
618 @verbatim
619 #(system "rm -rf /")
620 {
621   c4^$(ly:gulp-file "/etc/passwd")
622 }
623 @end verbatim
624 @end quotation
625
626 The @option{-dsafe} option works by evaluating in-line Scheme
627 expressions in a special safe module.  This is derived from GUILE
628 @file{safe-r5rs} module, but also adds a number of functions of the
629 LilyPond API which are listed in @file{scm/safe-lily.scm}.
630
631 In addition, safe mode disallows @code{\include} directives and
632 disables the use of backslashes in @TeX{} strings.  It is also not
633 possible to import LilyPond variables into Scheme while in safe mode.
634
635 @option{-dsafe} does @emph{not} detect resource overuse, so it is still
636 possible to make the program hang indefinitely, for example by feeding
637 cyclic data structures into the backend.  Therefore, if using LilyPond
638 on a publicly accessible webserver, the process should be limited in
639 both CPU and memory usage.
640
641 Safe mode will prevent many useful LilyPond snippets from being
642 compiled.
643
644 The @option{--jail} is an even more secure alternative, but requires
645 more work to set up. See @ref{Basic command line options for LilyPond}.
646
647 @multitable @columnfractions .33 .16 .51
648 @item @code{separate-log-files}
649 @tab @code{#f}
650 @tab For input files @code{FILE1.ly}, @code{FILE2.ly}, etc. output log
651 data to files @code{FILE1.log}, @code{FILE2.log}@dots{}
652
653 @item @code{show-available-fonts}
654 @tab @code{#f}
655 @tab List available font names.
656
657 @item @code{strict-infinity-checking}
658 @tab @code{#f}
659 @tab Force a crash on encountering @code{Inf} and @code{NaN} floating
660 point exceptions.
661
662 @item @code{strip-output-dir}
663 @tab @code{#t}
664 @tab Don't use directories from input files while constructing output
665 file names.
666
667 @item @code{strokeadjust}
668 @tab @code{#f}
669 @tab Force PostScript stroke adjustment.  This option is mostly
670 relevant when @code{PDF} is generated from PostScript output
671 (stroke adjustment is usually enabled automatically for
672 low-resolution bitmap devices).  Without this option,
673 @code{PDF}@tie{}previewers tend to produce widely inconsistent
674 stem widths at resolutions typical for screen display.  The option
675 does not noticeably affect print quality and causes large file
676 size increases in @code{PDF} files.
677
678 @item @code{svg-woff}
679 @tab @code{#f}
680 @tab Use woff font files in SVG backend.
681
682 @item @code{trace-memory-frequency}
683 @tab @code{#f}
684 @tab Record Scheme cell usage this many times per second.  Dump the
685 results to @code{FILE.stacks} and @code{FILE.graph}.
686
687 @item @code{trace-scheme-coverage}
688 @tab @code{#f}
689 @tab Record coverage of Scheme files in @code{FILE.cov}.
690
691 @item @code{verbose}
692 @tab @code{#f}
693 @tab Verbose output, i.e. loglevel at DEBUG (read-only).
694
695 @item @code{warning-as-error}
696 @tab @code{#f}
697 @tab Change all warning and @q{programming error} messages into errors.
698 @end multitable
699
700
701 @node Environment variables
702 @unnumberedsubsec Environment variables
703
704 @cindex LANG
705 @cindex LILYPOND_DATADIR
706
707 @command{lilypond} recognizes the following environment variables:
708 @table @code
709 @item LILYPOND_DATADIR
710 This specifies a directory where locale messages and
711 data files will be looked up by default.  The directory should contain
712 subdirectories called @file{ly/}, @file{ps/}, @file{tex/}, etc.
713
714 @item LANG
715 This selects the language for the warning messages.
716
717 @item LILYPOND_LOGLEVEL
718 The default loglevel. If LilyPond is called without an explicit loglevel
719 (i.e. no @option{--loglevel} command line option), this value is used.
720
721 @item LILYPOND_GC_YIELD
722 A variable, as a percentage, that tunes memory management
723 behavior.  A higher values means the program uses more memory, a
724 smaller value means more CPU time is used.  The default value is
725 @code{70}.
726
727 @end table
728
729
730 @node LilyPond in chroot jail
731 @unnumberedsubsec LilyPond in chroot jail
732
733 Setting up the server to run LilyPond in a chroot jail is a complicated
734 task.  The steps are listed below.  Examples in the steps are from
735 Ubuntu GNU/Linux, and may require the use of @code{sudo} as appropriate.
736
737 @itemize
738
739 @item Install the necessary packages: LilyPond, GhostScript, and ImageMagick.
740
741 @item Create a new user by the name of @code{lily}:
742
743 @example
744 adduser lily
745 @end example
746
747 @noindent
748 This will create a new group for the @code{lily} user as well, and a
749 home folder, @code{/home/lily}
750
751 @item In the home folder of the @code{lily} user create a file to use as a
752 separate filesystem:
753
754 @example
755 dd if=/dev/zero of=/home/lily/loopfile bs=1k count= 200000
756 @end example
757
758 @noindent
759 This example creates a 200MB file for use as the jail filesystem.
760
761 @item Create a loop device, make a file system and mount it, then create
762 a folder that can be written by the @code{lily} user:
763
764 @example
765 mkdir /mnt/lilyloop
766 losetup /dev/loop0 /home/lily/loopfile
767 mkfs -t ext3 /dev/loop0 200000
768 mount -t ext3 /dev/loop0 /mnt/lilyloop
769 mkdir /mnt/lilyloop/lilyhome
770 chown lily /mnt/lilyloop/lilyhome
771 @end example
772
773 @item In the configuration of the servers, the JAIL will be @code{/mnt/lilyloop}
774 and the DIR will be @code{/lilyhome}.
775
776 @item Create a big directory tree in the jail by copying the necessary files, as
777 shown in the sample script below.
778
779 You can use @code{sed} to create the necessary copy commands for a given
780 executable:
781
782 @example
783 for i in "/usr/local/lilypond/usr/bin/lilypond" "/bin/sh" "/usr/bin/;  \
784   do ldd $i | sed 's/.*=> \/\(.*\/\)\([^(]*\).*/mkdir -p \1 \&\&  \
785     cp -L \/\1\2 \1\2/' | sed 's/\t\/\(.*\/\)\(.*\) (.*)$/mkdir -p  \
786       \1 \&\& cp -L \/\1\2 \1\2/' | sed '/.*=>.*/d'; done
787 @end example
788
789 @end itemize
790
791 @subheading Example script for 32-bit Ubuntu 8.04
792
793 @example
794 #!/bin/sh
795 ## defaults set here
796
797 username=lily
798 home=/home
799 loopdevice=/dev/loop0
800 jaildir=/mnt/lilyloop
801 # the prefix (without the leading slash!)
802 lilyprefix=usr/local
803 # the directory where lilypond is installed on the system
804 lilydir=/$lilyprefix/lilypond/
805
806 userhome=$home/$username
807 loopfile=$userhome/loopfile
808 adduser $username
809 dd if=/dev/zero of=$loopfile bs=1k count=200000
810 mkdir $jaildir
811 losetup $loopdevice $loopfile
812 mkfs -t ext3 $loopdevice 200000
813 mount -t ext3 $loopdevice $jaildir
814 mkdir $jaildir/lilyhome
815 chown $username $jaildir/lilyhome
816 cd $jaildir
817
818 mkdir -p bin usr/bin usr/share usr/lib usr/share/fonts $lilyprefix tmp
819 chmod a+w tmp
820
821 cp -r -L $lilydir $lilyprefix
822 cp -L /bin/sh /bin/rm bin
823 cp -L /usr/bin/convert /usr/bin/gs usr/bin
824 cp -L /usr/share/fonts/truetype usr/share/fonts
825
826 # Now the library copying magic
827 for i in "$lilydir/usr/bin/lilypond" "$lilydir/usr/bin/guile" "/bin/sh"  \
828   "/bin/rm" "/usr/bin/gs" "/usr/bin/convert"; do ldd $i | sed 's/.*=>  \
829     \/\(.*\/\)\([^(]*\).*/mkdir -p \1 \&\& cp -L \/\1\2 \1\2/' | sed  \
830       's/\t\/\(.*\/\)\(.*\) (.*)$/mkdir -p \1 \&\& cp -L \/\1\2 \1\2/'  \
831         | sed '/.*=>.*/d'; done | sh -s
832
833 # The shared files for ghostscript...
834       cp -L -r /usr/share/ghostscript usr/share
835 # The shared files for ImageMagick
836       cp -L -r /usr/lib/ImageMagick* usr/lib
837
838 ### Now, assuming that you have test.ly in /mnt/lilyloop/lilyhome,
839 ### you should be able to run:
840 ### Note that /$lilyprefix/bin/lilypond is a script, which sets the
841 ### LD_LIBRARY_PATH - this is crucial
842       /$lilyprefix/bin/lilypond -jlily,lily,/mnt/lilyloop,/lilyhome test.ly
843 @end example
844
845 @c " keep quote signs balanced for context-sensitive editors
846
847 @node Error messages
848 @section Error messages
849
850 @cindex error messages
851 Different error messages can appear while compiling a file:
852
853 @table @emph
854
855 @item Warning
856 @cindex warning
857 Something looks suspect.  If you are requesting something out of the
858 ordinary then you will understand the message, and can ignore it.
859 However, warnings usually indicate that something is wrong with the
860 input file.
861
862 @item Error
863 @cindex error
864 Something is definitely wrong.  The current processing step (parsing,
865 interpreting, or formatting) will be finished, but the next step will
866 be skipped.
867
868 @item Fatal error
869 @cindex fatal error
870 Something is definitely wrong, and LilyPond cannot continue.  This
871 happens rarely.  The most usual cause is misinstalled fonts.
872
873 @item Scheme error
874 @cindex trace, Scheme
875 @cindex call trace
876 @cindex Scheme error
877 Errors that occur while executing Scheme code are caught by the Scheme
878 interpreter.  If running with the verbose option (@option{-V} or
879 @option{--verbose}) then a call trace of the offending
880 function call is printed.
881
882 @item Programming error
883 @cindex Programming error
884 There was some internal inconsistency.  These error messages are
885 intended to help the programmers and debuggers.  Usually, they can be
886 ignored.  Sometimes, they come in such big quantities that they obscure
887 other output.
888
889 @item Aborted (core dumped)
890 @cindex Aborted (core dumped)
891 This signals a serious programming error that caused the program to
892 crash.  Such errors are considered critical.  If you stumble on one,
893 send a bug-report.
894 @end table
895
896 @cindex errors, message format
897 If warnings and errors can be linked to some part of the input file,
898 then error messages have the following form
899
900 @example
901 @var{filename}:@var{lineno}:@var{columnno}: @var{message}
902 @var{offending input line}
903 @end example
904
905 A line-break is inserted in the offending line to indicate the column
906 where the error was found.  For example,
907
908 @example
909 test.ly:2:19: error: not a duration: 5
910   @{ c'4 e'
911            5 g' @}
912 @end example
913
914 These locations are LilyPond's best guess about where the warning or
915 error occurred, but (by their very nature) warnings and errors occur
916 when something unexpected happens.  If you can't see an error in the
917 indicated line of your input file, try checking one or two lines
918 above the indicated position.
919
920 More information about errors is given in @ref{Common errors}.
921
922
923 @node Common errors
924 @section Common errors
925
926 The error conditions described below occur often, yet the cause
927 is not obvious or easily found.  Once seen and understood, they
928 are easily handled.
929
930
931 @menu
932 * Music runs off the page::
933 * An extra staff appears::
934 * Error message Unbound variable %::
935 * Error message FT_Get_Glyph_Name::
936 * Warning staff affinities should only decrease::
937 * Error message unexpected new::
938 @end menu
939
940 @node Music runs off the page
941 @unnumberedsubsec Music runs off the page
942
943 Music running off the page over the right margin or appearing
944 unduly compressed is almost always due to entering an incorrect
945 duration on a note, causing the final note in a measure to extend
946 over the bar line.  It is not invalid if the final note in a
947 measure does not end on the automatically entered bar line, as the
948 note is simply assumed to carry over into the next measure.  But
949 if a long sequence of such carry-over measures occurs the music
950 can appear compressed or may flow off the page because automatic
951 line breaks can be inserted only at the end of complete measures,
952 i.e., where all notes end before or at the end of the measure.
953
954 @warning{An incorrect duration can cause line breaks to be
955 inhibited, leading to a line of highly compressed music or
956 music which flows off the page.}
957
958 The incorrect duration can be found easily if bar checks are used,
959 see @ruser{Bar and bar number checks}.
960
961 If you actually intend to have a series of such carry-over measures
962 you will need to insert an invisible bar line where you want the
963 line to break.  For details, see @ruser{Bar lines}.
964
965
966 @node An extra staff appears
967 @unnumberedsubsec An extra staff appears
968
969 If contexts are not created explicitly with @code{\new} or
970 @code{\context}, they will be silently created as soon as a
971 command is encountered which cannot be applied to an existing
972 context.  In simple scores the automatic creation of contexts is
973 useful, and most of the examples in the LilyPond manuals take
974 advantage of this simplification.  But occasionally the silent
975 creation of contexts can give rise to unexpected new staves or
976 scores.  For example, it might be expected that the following code
977 would cause all note heads within the following staff to be
978 colored red, but in fact it results in two staves with the note
979 heads remaining the default black in the lower staff.
980
981 @lilypond[quote,verbatim,relative=2]
982 \override Staff.NoteHead.color = #red
983 \new Staff { a }
984 @end lilypond
985
986 This is because a @code{Staff} context does not exist when the
987 override is processed, so one is implicitly created and the override
988 is applied to it, but then the @code{\new Staff} command creates
989 another, separate, staff into which the notes are placed.  The
990 correct code to color all note heads red is
991
992 @lilypond[quote,verbatim,relative=2]
993 \new Staff {
994   \override Staff.NoteHead.color = #red
995   a
996 }
997 @end lilypond
998
999 As a second example, if a @code{\relative} command is placed inside
1000 a @code{\repeat} command, two staves result, the second offset from
1001 the first, because the @code{\repeat} command generates two
1002 @code{\relative} blocks, which each implicitly create @code{Staff}
1003 and @code{Voice} blocks.
1004
1005 @lilypond[quote,verbatim]
1006 \repeat unfold 2 {
1007   \relative c' { c4 d e f }
1008 }
1009 @end lilypond
1010
1011 Explicitly instantiating the @code{Voice} context fixes the
1012 problem:
1013
1014 @lilypond[quote,verbatim]
1015 \new Voice {
1016   \repeat unfold 2 {
1017     \relative c' { c4 d e f }
1018   }
1019 }
1020 @end lilypond
1021
1022
1023 @node Error message Unbound variable %
1024 @unnumberedsubsec Error message Unbound variable %
1025
1026 This error message will appear at the bottom of the console
1027 output or log file together with a @qq{GUILE signalled an error @dots{}}
1028 message every time a Scheme routine is called which (invalidly)
1029 contains a @emph{LilyPond} rather than a @emph{Scheme} comment.
1030
1031 LilyPond comments begin with a percent sign, (@code{%}), and must
1032 not be used within Scheme routines.  Scheme comments begin with a
1033 semi-colon, (@code{;}).
1034
1035 @node Error message FT_Get_Glyph_Name
1036 @unnumberedsubsec Error message FT_Get_Glyph_Name
1037
1038 This error messages appears in the console output or log file if
1039 an input file contains a non-ASCII character and was not saved in
1040 UTF-8 encoding.  For details, see @ruser{Text encoding}.
1041
1042
1043 @node Warning staff affinities should only decrease
1044 @unnumberedsubsec Warning staff affinities should only decrease
1045 This warning can appear if there are no staves in the printed
1046 output, for example if there are just a @code{ChordName} context
1047 and a @code{Lyrics} context as in a lead sheet.  The warning
1048 messages can be avoided by making one of the contexts behave as a
1049 staff by inserting
1050
1051 @example
1052 \override VerticalAxisGroup.staff-affinity = ##f
1053 @end example
1054
1055 @noindent
1056 at its start.  For details, see @qq{Spacing of non-staff lines} in
1057 @ruser{Flexible vertical spacing within systems}.
1058
1059
1060 @node Error message unexpected new
1061 @unnumberedsubsec Error message unexpected @code{@bs{}new}
1062
1063 A @code{\score} block must contain a @emph{single} music expression.
1064 If instead it contains several @code{\new Staff},
1065 @code{\new StaffGroup} or similar contexts introduced with @code{\new}
1066 without them being enclosed in either curly brackets,
1067 @code{@{ @dots{} @}}, or double angle brackets, @code{<< @dots{} >>},
1068 like this:
1069
1070 @example
1071 \score @{
1072   % Invalid! Generates error: syntax error, unexpected \new
1073   \new Staff @{ @dots{} @}
1074   \new Staff @{ @dots{} @}
1075 @}
1076 @end example
1077
1078 @noindent
1079 the error message will be produced.
1080
1081 To avoid the error, enclose all the @code{\new} statements in
1082 curly or double angle brackets.
1083
1084 Using curly brackets will introduce the @code{\new} statements
1085 sequentially:
1086
1087 @lilypond[quote,verbatim]
1088 \score {
1089   {
1090     \new Staff { a' a' a' a' }
1091     \new Staff { g' g' g' g' }
1092   }
1093 }
1094 @end lilypond
1095
1096 @noindent
1097 but more likely you should be using double angle brackets so the new
1098 staves are introduced in parallel, i.e. simultaneously:
1099
1100 @lilypond[quote,verbatim]
1101 \score {
1102   <<
1103     \new Staff { a' a' a' a' }
1104     \new Staff { g' g' g' g' }
1105   >>
1106 }
1107 @end lilypond