Changes between Version 17 and Version 18 of Download


Ignore:
Timestamp:
2012-10-12T16:53:56+02:00 (14 years ago)
Author:
skyper
Comment:

syntax highlighting

Legend:

Unmodified
Added
Removed
Modified
  • Download

    v17 v18  
    3636
    3737 * Get the source:
    38    * From the official Subversion repository (recommended): {{{svn co http://josm.openstreetmap.de/svn/trunk}}}
    39    * From the unofficial [http://github.com/openstreetmap/josm GitHub mirror]: {{{git clone git://github.com/openstreetmap/josm.git}}}
    40    * From the official OSM Subversion repository (including plugins): {{{svn co http://svn.openstreetmap.org/applications/editors/josm josm}}}
     38   * From the official Subversion repository (recommended):
     39{{{
     40#!sh
     41svn co http://josm.openstreetmap.de/svn/trunk
     42}}}
     43   * From the unofficial [http://github.com/openstreetmap/josm GitHub mirror]:
     44{{{
     45#!sh
     46git clone git://github.com/openstreetmap/josm.git
     47}}}
     48   * From the official OSM Subversion repository (including plugins):
     49{{{
     50#!sh
     51svn co http://svn.openstreetmap.org/applications/editors/josm josm
     52}}}
    4153
    4254== Ubuntu repository ==#Ubuntu
     
    5567deb http://josm.openstreetmap.de/apt precise universe
    5668}}}
    57  **Note**: You can just run "{{{lsb_release -c}}}" in a terminal to get the proper codename.
     69 **Note**: You can just run {{{lsb_release -c}}} in a terminal to get the proper codename.
    5870Download and register the public key:
    5971{{{
     72#!sh
    6073wget -q http://josm.openstreetmap.de/josm-apt.key -O- | sudo apt-key add -
    6174}}}
     
    6376Now refresh your sources
    6477{{{
     78#!sh
    6579sudo apt-get update
    6680}}}
     
    6882 {{{josm}}}:: (You can skip the first line if you haven't installed these packages before.)
    6983{{{
     84#!sh
    7085sudo apt-get remove josm josm-plugins
    7186sudo apt-get install josm
     
    7489 {{{josm-latest}}}::
    7590{{{
     91#!sh
    7692sudo apt-get install josm-latest
    7793}}}
     
    99115Example of an edited commandline for the shortcut created on the windows desktop after running JOSM just once from the JNMP and exiting:
    100116{{{
     117#!sh
    101118C:\Windows\System32\javaws.exe -J-d64 -Xmx=2048m -localfile -J-Djnlp.application.href=http://josm.openstreetmap.de/download/josm.jnlp "C:\Users\<snipped user name>\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\21\7311<snipped-hex-number>7f8"
    102119}}}
    103 You don't need to change the end of the command line with the snipped parts here. Just check the path for {{{javaws.exe}}} and add options "{{{-J-d64}}}" for the 64-bit mode needed to work with large OSM datasets, and "{{{-Xmx=2048m}}}" to increase the VM size (to 2GB here).
     120You don't need to change the end of the command line with the snipped parts here. Just check the path for {{{javaws.exe}}} and add options {{{-J-d64}}} for the 64-bit mode needed to work with large OSM datasets, and {{{-Xmx=2048m}}} to increase the VM size (to 2GB here).