Changes between Initial Version and Version 1 of Download


Ignore:
Timestamp:
2011-12-12T18:27:48+01:00 (14 years ago)
Author:
bastiK
Comment:

ubuntu repository doc; front page has too much text - move some stuff to subpages [work in progress]

Legend:

Unmodified
Added
Removed
Modified
  • Download

    v1 v1  
     1= Download =
     2
     3 * '''Note that there are fairly regular updates, so always try running a recent version (and also recent plugins).'''
     4 * Access [/download/josm.jnlp JOSM-WebStart] without installation
     5 * Download the '''[/josm-tested.jar tested JOSM ]''' version [[Version(tested)]]
     6 * Download the [/download/windows/josm-setup.exe Windows JOSM installer] version [[Version(windows)]]
     7 * Download the [/download/macosx/josm-macosx.zip Mac OS X JOSM package] version [[Version(macos)]]
     8 * Prepare a [wiki:USB_Stick USB flash drive] to use JOSM on any foreign Windows machine.
     9 * For download scripts use version check for [/latest latest] and [/tested tested] (or [/version both]) to reduce download bandwith
     10 * If download size is an issue for you, you may append `?lang=..` to the download link for both releases to strip all unused translations (e.g. `?lang=de` would download JOSM in German language only).
     11
     12== Development Version ==
     13
     14 * Download the '''[/josm-latest.jar latest JOSM]''' version [[Version(latest)]] (may have more errors than "tested", be careful with this one).
     15
     16== Applet ==
     17
     18 * Try '''[/applet JOSM applet]''' after reading the [wiki:Applet applet description].
     19
     20== Source ==
     21
     22 * Get the source:
     23   * From the official Subversion repository (recommended): {{{svn co http://josm.openstreetmap.de/svn/trunk}}}
     24   * From the unofficial [http://github.com/openstreetmap/josm GitHub mirror]: {{{git clone git://github.com/openstreetmap/josm.git}}}
     25   * From the official OSM Subversion repository (including plugins): {{{svn co http://svn.openstreetmap.org/applications/editors/josm josm}}}
     26
     27== Ubuntu repository ==
     28
     29The repository for Ubuntu contains two packages:
     30 {{{josm}}}:: ''The tested version''[[br]]
     31  Replaces the package from the official Ubuntu repository.
     32 {{{josm-latest}}}:: ''The development version (nightly build)''[[br]]
     33 Can be installed parallel to the {{{josm}}} package. The default preference folder is {{{~/.josm-latest}}}.
     34=== Installation ===
     35Depending on your Ubuntu-Version, add one of the following lines to your {{{/etc/apt/sources.list}}}:
     36{{{
     37deb http://josm.openstreetmap.de/apt lucid universe
     38deb http://josm.openstreetmap.de/apt natty universe
     39deb http://josm.openstreetmap.de/apt oneiric universe
     40}}}
     41
     42Download and register the public key:
     43{{{
     44wget -q http://josm.openstreetmap.de/josm-apt.key -O- | sudo apt-key add -
     45}}}
     46
     47Now refresh your sources
     48{{{
     49sudo apt-get update
     50}}}
     51and install:
     52 {{{josm}}}:: (You can skip the first line if you haven't installed these packages before.)
     53{{{
     54sudo apt-get remove josm josm-plugins
     55sudo apt-get install josm
     56}}}
     57
     58 {{{josm-latest}}}::
     59{{{
     60sudo apt-get install josm-latest
     61}}}