Scite Scite Frequently Asked Question

Total Page:16

File Type:pdf, Size:1020Kb

Scite Scite Frequently Asked Question SciTE SciTE Frequently Asked Question On Windows, how can asian fonts can be applied? On Windows, how can window flashing be avoided? How do I use a fixed width font for all text? What happened to use.monospaced? Why doesn't my line.numbers setting work? How do I change SciTE to use black as the background colour? How do I change the colours of the output pane? How do I make the horizontal scroll bar adjust to the width of text? How do I enable tabbed window mode in SciTE? How do I enable autocomplete? When I try to compile/build/run my [some language] source files, I get the following error: 'The system cannot find the file specified'. How can I add [some external application] to the Tools menu on SciTE? How can I add a keyboard command without adding it to the Tools menu? Is there a command to replace a string in multiple files together? How do I make SciTE run faster on GTK+? Is it possible to use the newline character (\n) in a regular expression? How do I get SciTE to understand the error messages from my compiler? Why do GCC error messages include ugly characters? How do I make Windows open a file associated with SciTE when its path contains spaces? Why does a //{ comment affect folding? On Windows, how can asian fonts can be applied? On Windows GDI, font names have been encoded in UTF-8 since Scintilla 3.5.3. This matches the Direct2D code path. Perviously they were encoded in the local code page. Giving the name in UTF-8 or Ascii may solve the problem. On Windows, how can window flashing be avoided? This is most likely a problem with DirectDraw on your graphics card. Different methods of drawing can be tried by modifying the technology setting. How do I use a fixed width font for all text? Use these properties: font.base=$(font.monospace) font.small=$(font.monospace) font.comment=$(font.monospace) font.text=$(font.monospace) font.text.comment=$(font.monospace) font.embedded.base=$(font.monospace) font.embedded.comment=$(font.monospace) font.vbs=$(font.monospace) What happened to use.monospaced? The use.monospaced property was removed as people were using it to ask for fixed width fonts and then requiring support to cope with its limitations. The correct way to set fixed width fonts is here. Why doesn't my line.numbers setting work? line.numbers has been replaced with two properties: line.margin.visible and line.margin.width which are explained earlier in the main SciTE document. How do I change SciTE to use black as the background colour? You need to change the style settings. The main change is in the user options file to the global default style and caret colour but you may have to change other style settings to make this work well: style.*.32=$(font.base),back:#000000,fore:#ffffff style.*.33=back:#C0C0C0,$(font.base) style.*.37=fore:#939393 caret.fore=#FFFFFF selection.alpha=75 selection.back=#FFFFFF colour.keyword=fore:#649bff colour.operator=fore:#727272 How do I change the colours of the output pane? The output pane often lists error and warning messages and is styled by the "errorlist" lexer. The default errorlist styles are found in others.properties. To change the output pane background to black and the default text to white set style.errorlist.32=$(font.small),back:#000000 style.errorlist.0=fore:#FFFFFF How do I make the horizontal scroll bar adjust to the width of text? To avoid slow performance the horizontal scroll bar does not automatically adjust. You can use the horizontal.scroll.width property to change the horizontal scroll range. How do I enable tabbed window mode in SciTE? Multiple buffers must be allocated by setting, for example, buffers=10 in your SciTEGlobal.properties. To have the tab bar visible upon starting SciTE, set tabbar.visible=1. You can also set tabbar.hide.one=0 to always show tabs, or 1 to hide when only one file is open. tabbar.multiline=1 splits tabs across various lines if necessary. How do I enable autocomplete? Goto Options | Open Global Options File and uncomment autocompleteword.automatic=1 When I try to compile/build/run my [some language] source files, I get the following error: 'The system cannot find the file specified'. Make sure that the path to your compiler is set correctly on your system. Try to execute from console the same command you get in SciTE and see if it works. You can also search in your [language].properties for the compile commands used. If you have a different compiler or use different arguments, edit the commands to suit your needs. The lines to look for: command.compile.filepattern= command.build.filepattern= command.go.filepattern= How can I add [some external application] to the Tools menu on SciTE? In your properties file, you'll need to add some lines: command.name.number.filepattern (e.g.: command.name.1.$(file.patterns.web)=HTML Tidy) This defines the Text that will appear on the Tools Menu. command.number.filepattern (e.g.: command.1.$(file.patterns.web)=tidy -i -wrap 0 -m $(FilePath) ) This is the actual command that SciTE executes. You should provide the appropriate paths, options and parameters as you would from a command line. See SciTEDoc.html for more information on parameters and how to make SciTE prompt a Parameters Dialog. command.is.filter.number.filepattern (e.g.: command.is.filter.1.$(file.patterns.web)=1) The external application may have modified your file, so setting this to true makes SciTE reload the file after execution of the command. command.subsystem.number.filepattern (e.g.: command.subsystem.1.$(file.patterns.web)=2) This is for Windows and defines the subsystem through which the program is called. See SciTEDoc.html for more information on this. You can set a command for all files using * as a file pattern. Up to 10 commands (0 - 9) can be defined in the Tools Menu at any time. Commands also get executed with Ctrl+number. How can I add a keyboard command without adding it to the Tools menu? This is similar to adding to the tools menu except that you set the name to be empty. Then the command is included in user.shortcuts by adding 1100 to produce its command ID. For example, command.name.21.*.properties= command.21.*.properties=cmd /c echo $(FileNameExt) user.shortcuts=\ Ctrl+Shift+V|1121| Is there a command to replace a string in multiple files together? It is possible to replace a string in all opened buffers with the Replace in Buffers button in the Replace dialog. However this button is hidden by default, it can be displayed with find.replace.advanced=1. How do I make SciTE run faster on GTK+? Line wrapping slows SciTE down and this can be turned off with wrap=0. Is it possible to use the newline character (\n) in a regular expression? No. The "Transform backslash expressions" option allows using \n and \r but that option does not work with regular expressions. How do I get SciTE to understand the error messages from my compiler? The set of error message formats is embedded in the Scintilla and SciTE code. To add support for another compiler, you will need to add a new style to scintilla/include/Scintilla.iface after the other SCE_ERR_* values, run HFacer.py, edit RecogniseErrorListLine in scintilla/src/LexOthers.cxx to recognise the error message, and edit DecodeMessage in scite/src/SciTEBuffers.cxx to extract the file name and line number. Why do GCC error messages include ugly characters? Linux distributions now often set the locale to UTF-8 by, for example, setting LANG=en_US.UTF-8. gcc takes this as an indication that it can use any Unicode character encoded as UTF-8 so quotes using ‘these’ rather than ASCII. To see these as intended, set output.code.page=65001 How do I make Windows open a file associated with SciTE when its path contains spaces? On some versions of Windows, associating a particular file type with SciTE does not allow paths containing spaces to work. To fix this, the path variable %1 needs to be surrounded by double quotes. This is done either directly in the registry or through the Explorer in Tools | Folder Options | File Types | (Select type) | Advanced | open | Edit. Change the "Application used to perform action" field to be similar to "C:\bin\SciTE\SciTE.exe" "%1" Why does a //{ comment affect folding? For C++ and similar languages, explicit folds can be added with //{ and //} . This feature can be turned off with fold.comment=0.
Recommended publications
  • Mysql Workbench Mysql Workbench
    MySQL Workbench MySQL Workbench Abstract This manual documents the MySQL Workbench SE version 5.2 and the MySQL Workbench OSS version 5.2. If you have not yet installed MySQL Workbench OSS please download your free copy from the download site. MySQL Workbench OSS is available for Windows, Mac OS X, and Linux. Document generated on: 2012-05-01 (revision: 30311) For legal information, see the Legal Notice. Table of Contents Preface and Legal Notice ................................................................................................................. vii 1. MySQL Workbench Introduction ..................................................................................................... 1 2. MySQL Workbench Editions ........................................................................................................... 3 3. Installing and Launching MySQL Workbench ................................................................................... 5 Hardware Requirements ............................................................................................................. 5 Software Requirements .............................................................................................................. 5 Starting MySQL Workbench ....................................................................................................... 6 Installing MySQL Workbench on Windows .......................................................................... 7 Launching MySQL Workbench on Windows .......................................................................
    [Show full text]
  • Instruction Manual Model 34988NI-SL
    Instruction Manual (Original Instructions) Model 34988NI-SL Recover, Recycle, Recharge Machine for R-134a A/C Systems ROBINAIR.COM 800.533.6127 (en-US) Description: Recover, recycle, and recharge machine for use with R-134a equipped air conditioning systems. PRODUCT INFORMATION Record the serial number and year of manufacture of this unit for future reference. Refer to the product identification label on the unit for information. Serial Number: _______________________________Year of Manufacture: ____________ DISCLAIMER: Information, illustrations, and specifications contained in this manual are based on the latest information available at the time of publication. The right is reserved to make changes at any time without obligation to notify any person or organization of such revisions or changes. Further, ROBINAIR shall not be liable for errors contained herein or for incidental or consequential damages (including lost profits) in connection with the furnishing, performance, or use of this material. If necessary, obtain additional health and safety information from the appropriate government agencies, and the vehicle, refrigerant, and lubricant manufacturers. Table of Contents Safety Precautions . 2 Maintenance . 26 Explanation of Safety Signal Words . 2 Maintenance Schedule. 26 Explanation of Safety Decals. 2 Load Language. 27 Protective Devices. 4 Adjust Background Fill Target. 28 Refrigerant Tank Test. 4 Tank Fill. 28 Filter Maintenance. 29 Introduction . 5 Check Remaining Filter Capacity. 29 Technical Specifications . 5 Replace the Filter. 30 Features . 6 Calibration Check . 31 Control Panel Functions . 8 Change Vacuum Pump Oil . 32 Icon Legend. 9 Leak Check. 33 Setup Menu Functions. 10 Edit Print Header. 34 Initial Setup . 11 Replace Printer Paper. 34 Unpack the Machine.
    [Show full text]
  • The Scite – TEX Integration
    Hans Hagen VOORJAAR 2004 21 The Scite – TEX integration Abstract Editors are a sensitive, often emotional subject. Some editors have exactly the properties a software designer or a writer desires and one gets attached to it. Still, most computer experts such as TEX users often are use three or more different editors each day. Scite is a modern programmers editor which is very flexible, very configurable, and easily extended. We integrated Scite with TEX, CONTEXT, LATEX, METAPOST and viewer and succeeded in that it is now possible to design and write your texts, manuscripts, reports, manuals and books with the Scite editor without having to leave the editor to compile and view your work. The article describes what is available and what you need with special emphasis on highlighting commands with lexers. About Scite Scite is a source code editor written by Neil Hodgson. After playing with several editors we found that this editor is quite configurable and extendible. At PRAGMA ADE we use TEXEDIT, an editor written long ago in Niklaus Wirth’s MODULA as well as a platform independent reimplementation of it called TEXWORK written in PERL/TK. Although our editors possess some functionality that is not (yet) present in Scite, we decided to use Scite because it frees us from the editor maintenance chore. Installing Scite Installing Scite is straightforward. We assume below that you use MS WINDOWS but for other operating systems installation is not much different. First you need to fetch the archive from: www.scintilla.org The MS WINDOWS binaries are in wscite.zip, and you can unzip this in any direc- tory as long as the binary executable ends up in your PATH or as shortcut icon on your desktop.
    [Show full text]
  • Editors Desk ...2
    The content of this magazine is released under the Creative Commons Attribution-Share Alike 3.0 Unported license. For more information visit user http://creativecommons.org/licenses/by-sa/3.0 TM Issue #1 - April 2009 EDITORS DESK ................................ 2 COMMUNITY NEWS ........................ 3 CHOOSING A DE/WM ...................... 4 HARDENING SSH IN 60 SECONDS .................................... 6 GAMERS CORNER .......................... 9 TIPS & TRICKS ............................... 10 PIMP MY ARCH .............................. 11 SOFTWARE REVIEW ......................12 Q&A ..................................................14 EEDDIITTOORRSS DDEESSKK Welcome to the first issue of Arch User Magazine! ARCH USER STAFF Daniel Griffiths (Ghost1227) ........... Editor ello, and thank you for picking up issue #1 of Arch User Magazine! While David Crouse (Crouse) .......... Contributor the vast majority of you probably know me (or have at least seen me H around the forums), I feel that I should take a moment to introduce myself. My name is Daniel Griffiths, and I am a 26-year-old independent contractor in Delaware, US. Throughout my life, I have wandered through various UNIX/Linux systems including (but not limited to) MINIX, RedHat, Mandrake, Slackware, Gentoo, Debian, and even two home made distributions based on Linux From Scratch. I finally found Arch in 2007 and instantly fell in love with its elegant simplicity. Some of our more attentive readers may note that Arch already has a monthly newsletter. With the existence of the aformentioned newsletter, what is the point of adding another news medium to the mix? Fear not, newsletter readers, I have no intention of letting Arch User Magazine take the place of the newsletter. In fact, Arch User Magazine and the newsletter are intended to fill two very different needs in the Arch community.
    [Show full text]
  • Pygtk GUI Programming Pygtk GUI Programming Table of Contents Pygtk GUI Programming
    PyGTK GUI programming PyGTK GUI programming Table of Contents PyGTK GUI programming...............................................................................................................................1 Chapter 1. Introduzione....................................................................................................................................2 1.1. Primo approccio...............................................................................................................................2 1.2. Il toolkit PyGTK..............................................................................................................................2 1.3. PyGTK e Glade................................................................................................................................2 1.4. IDE o editor......................................................................................................................................4 1.5. Installazione.....................................................................................................................................6 1.5.1. Installazione su piattaforma GNU/Linux...............................................................................6 1.5.2. Installazione su piattaforma Windows...................................................................................6 1.6. Supporto e help................................................................................................................................6 Chapter 2. I Widget, le classi ed un
    [Show full text]
  • Linux Mint - 2Nde Partie
    Linux Mint - 2nde partie - Mise à jour du 10.03.2017 1 Sommaire 1. Si vous avez raté l’épisode précédent… 2. Utiliser Linux Mint au quotidien a) Présentation de la suite logicielle par défaut b) Et si nous testions un peu ? c) Windows et Linux : d’une pratique logicielle à une autre d) L’installation de logiciels sous Linux 3. Vous n’êtes toujours pas convaincu(e)s par Linux ? a) Encore un argument : son prix ! b) L’installer sur une vieille ou une nouvelle machine, petite ou grande c) Par philosophie et/ou curiosité d) Pour apprendre l'informatique 4. À retenir Sources 2 1. Si vous avez raté l’épisode précédent… Linux, c’est quoi ? > Un système d’exploitation > Les principaux systèmes d'exploitation > Les distributions 3 1. Si vous avez raté l’épisode précédent… Premiers pas avec Linux Mint > Répertoire, dossier ou fichier ? > Le bureau > Gestion des fenêtres > Gestion des fichiers 4 1. Si vous avez raté l’épisode précédent… Installation > Méthode « je goûte ! » : le LiveUSB > Méthode « j’essaye ! » : le dual-boot > Méthode « je fonce ! » : l’installation complète 5 1. Si vous avez raté l’épisode précédent… Installation L'abréviation LTS signifie Long Term Support, ou support à long terme. 6 1. Si vous avez raté l’épisode précédent… http://www.linuxliveusb.com 7 1. Si vous avez raté l’épisode précédent… Installation 8 1. Si vous avez raté l’épisode précédent… Installation 9 1. Si vous avez raté l’épisode précédent… Installation 10 1. Si vous avez raté l’épisode précédent… Installation 11 2. Utiliser Linux Mint au quotidien a) Présentation de la suite logicielle par défaut Le fichier ISO Linux Mint est compressé et contient environ 1,6 GB de données.
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • Editores De Texto En Linux
    Editores de texto en Linux Escuela T´ecnicaSuperior de Ingenier´ıade Telecomunicaci´on (GSyC) gsyc-profes (arroba) gsyc.es Septiembre de 2021 GSyC - 2021 Editores de texto en Linux 1 ©2021 GSyC Algunos derechos reservados. Este trabajo se distribuye bajo la licencia Creative Commons Attribution Share-Alike 4.0 GSyC - 2021 Editores de texto en Linux 2 Introducci´on Introducci´on Los editores de texto crean y modifican ficheros de texto plano Se emplea en programaci´ony en configuraci´onde sistemas Los procesadores de texto crean y modifican ficheros de texto con formato de fuente (negritas, cursivas, tipos de letra,etc), de p´agina(interlineado, m´argenes,etc) e im´agenes En cualquier Linux hay disponibles muchos editores >Cu´ales mejor? Depende en buena parte de gustos personales Depende de d´ondevayamos a usarlos Este es un asunto t´ıpicopara guerras de religi´on GSyC - 2021 Editores de texto en Linux 3 Introducci´on GSyC - 2021 Editores de texto en Linux 4 Introducci´on Tipos de editor de texto 1 Editores en modo gr´afico Su curva de aprendizaje suele ser m´assuave Adecuados para trabajar como programador en un ordenador est´andar, local y con gr´aficos 2 Editores en modo texto (editores de consola) Curva de aprendizaje m´asdura (excepto algunos muy sencillos/simplones) Permiten trabajar en remoto con la misma facilidad que en local Podemos administrar sin problemas nuestra m´aquina Linux p.e. desde un Windows prestado y con mala conexi´on.O incluso una PDA y un tel´efonom´ovil Son los ´unicosdisponibles en sistemas empotrados, como routers Suelen ser los ´unicosdisponibles en ordenadores a medio instalar, averiados, herramientas de rescate, etc GSyC - 2021 Editores de texto en Linux 5 vi vi El editor est´andar en Unix.
    [Show full text]
  • Technical Notes All Changes in Fedora 13
    Fedora 13 Technical Notes All changes in Fedora 13 Edited by The Fedora Docs Team Copyright © 2010 Red Hat, Inc. and others. The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at http://creativecommons.org/licenses/by-sa/3.0/. The original authors of this document, and Red Hat, designate the Fedora Project as the "Attribution Party" for purposes of CC-BY-SA. In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, JBoss, MetaMatrix, Fedora, the Infinity Logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. For guidelines on the permitted uses of the Fedora trademarks, refer to https:// fedoraproject.org/wiki/Legal:Trademark_guidelines. Linux® is the registered trademark of Linus Torvalds in the United States and other countries. Java® is a registered trademark of Oracle and/or its affiliates. XFS® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. All other trademarks are the property of their respective owners. Abstract This document lists all changed packages between Fedora 12 and Fedora 13.
    [Show full text]
  • The Matplotlib User's Guide
    The Matplotlib User’s Guide John Hunter August 10, 2006 2 Contents 1 Introduction 5 1.1 Migrating from matlab .......................................... 6 1.2 Numerix .................................................. 8 1.2.1 Choosing Numeric, numarray, or NumPy ............................ 8 1.3 Backends ................................................. 9 1.4 Integrated development environments .................................. 9 1.5 Interactive ................................................. 10 1.6 Customization using matplotlibrc ................................... 11 1.6.1 RC file format .......................................... 11 1.6.2 Which rc file is used? ....................................... 12 1.7 Installing ................................................. 12 1.7.1 Compiling matplotlib ....................................... 12 1.7.2 Installing on windows ...................................... 13 1.7.3 Package managers: (rpms, apt, fink) ............................... 13 1.7.4 Getting feedback from matplotlib ................................ 14 2 The pylab interface 15 2.1 Simple plots ................................................ 15 2.2 More on plot ............................................... 16 2.2.1 Multiple lines ........................................... 16 2.2.2 Controlling line properties .................................... 17 2.3 Color arguments .............................................. 20 2.4 Loading and saving data ......................................... 21 2.4.1 Loading and saving ASCII data ................................
    [Show full text]
  • Earl Ysta Te Records Project
    The Library of Congress’ EARL YSTA TE RECORDS PROJECT converted from the original microfilm held by the Vincent C. Immel Law Library, Saint Louis University through the generous support of the following institutions University of Chicago, D’Angelo Law Library Columbia University, Arthur W. Diamond Law Library Cornell University, Law Library Law Library of Congress University of North Carolina at Chapel Hill, Kathrine R. Everett Law Library St. John’s University, Rittenberg Law Library University of South Carolina, Coleman Karesh Law Library Stanford University, Robert Crown Law Library State University of New York at Buffalo, Charles B. Sears Law Library Yale University, Lillian Goldman Law Library And a shared contribution by libraries at the following Florida institutions: University of Florida University of Miami University of South Florida Florida State University University of West Florida Florida A&M University Florida Gulf Coast University University of Central Florida University of North Florida Rollins College Northwest Florida State College Florida Polytechnic University EAST FLORI3A HERALD. V6l. I.] :-^lt€!:fJ8rINK> Jl’ME 21, 1823’ ( > o. 43 I fled8 ,0Ur fehc“y be Cunipleteiy sau*- 1 he Bdtst ]H orida Ilfia'd, Ithotisand ; e ne loui th of which have no lieve Upon my inquiring ot an intelli­ habitation, but pass their existence in gent fi lend some time resident in the Jjy E B. GOULD And you militaiy of all classes—-vet­ Pnblsher of the Lavs of the United States, and the t pen ’s reels. At present there is city, and who is writing the h*stoty of of this 'I'eiritoiy eran iroops and militia in youaiso I cua- » tevporaiy ufltx, piobab'y of one nde, that you follow the canerol hojoi; thecciuntry,what the present and intel­ TKiiUS, FIVE I)JELA>IS, FirtB E Iff ADVASCE thousa.d of the latter description of lectual and moral improveme.
    [Show full text]
  • The TEX Live Guide—2021
    The TEX Live Guide—2021 Karl Berry, editor https://tug.org/texlive/ March 2021 Contents 1 Introduction 2 1.1 TEX Live and the TEX Collection...............................2 1.2 Operating system support...................................3 1.3 Basic installation of TEX Live.................................3 1.4 Security considerations.....................................3 1.5 Getting help...........................................3 2 Overview of TEX Live4 2.1 The TEX Collection: TEX Live, proTEXt, MacTEX.....................4 2.2 Top level TEX Live directories.................................4 2.3 Overview of the predefined texmf trees............................5 2.4 Extensions to TEX.......................................6 2.5 Other notable programs in TEX Live.............................6 3 Installation 6 3.1 Starting the installer......................................6 3.1.1 Unix...........................................7 3.1.2 Mac OS X........................................7 3.1.3 Windows........................................8 3.1.4 Cygwin.........................................8 3.1.5 The text installer....................................9 3.1.6 The graphical installer.................................9 3.2 Running the installer......................................9 3.2.1 Binary systems menu (Unix only)..........................9 3.2.2 Selecting what is to be installed............................9 3.2.3 Directories....................................... 11 3.2.4 Options......................................... 12 3.3 Command-line
    [Show full text]