Changes between Version 4 and Version 5 of Install


Ignore:
Timestamp:
Mar 20, 2012, 1:20:39 PM (13 years ago)
Author:
daniel_h
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Install

    v4 v5  
    1 = Installing !RefactorErl = 
     1= Installing !RefactorErl 
    22 
    3 ... 
     3This page guides you in installing Erlang, Yaws and !RefactorErl. 
    44 
    5 == Dependencies == 
     5== Dependencies 
    66 
    77The following list enumerates required software. 
    88 
    9 === Base system === 
     9==== Base system 
    1010  
    1111 * Erlang R14B04 or higher (currently WebInterface does ''not'' work with any higher version) 
     
    1818 
    1919 
    20 === WebInterface === 
     20==== WebInterface 
    2121 
    2222 * Server side: Yaws 1.89 
    2323 * Client side: Mozilla Firefox 3.6 or higher / Google Chrome 
    2424 
    25 === EmacsInterface === 
     25==== EmacsInterface 
    2626 
    2727 * Emacs 23.3 or higher - with [http://www.erlang.org/doc/apps/tools/erlang_mode_chapter.html erlang-mode] and widgets 
    2828 
    29 === EclipseInterface === 
     29==== EclipseInterface 
    3030 
    3131 * Eclipse (TODO) 
    3232 
    33 === VimInterface === 
     33==== VimInterface 
    3434 
    3535 * Vim 7.2 or higher 
    3636 
    37 ... 
    38  
    39 == Local install instructions on Linux == 
     37== Local install instructions on Linux 
    4038 
    4139You can install !RefactorErl on a system where you do not own admin rights. Follow the instructions below. 
    4240 
    43 You need some packages installed by the admin, but they can be found in almost all Linux systems. These are: 
     41You need some packages installed by the admin, but they can be found on almost all Linux systems. These are: 
    4442 * gcc (>= 4.5) 
    4543 * make 
     
    5250 * wx (optional) 
    5351 
    54 We assume you would like to install the tool into a local "root" directory. You should modify the following path to your one: 
     52We assume you would like to install the tool into a local root (e.g. /home/user/local). Modify the following path to your one: 
    5553 
    5654{{{ 
     
    5856}}} 
    5957 
    60 The local "ghost" user will be 'referl' by default. Feel free to 
    61 modify it. 
     58The local "ghost" user will be 'referl' by default. Feel free to modify it. 
    6259 
    6360{{{ 
     
    6865 
    6966{{{ 
    70 mkdir -p $REFERL_ROOT/$REFERL_GHOST_USER 
     67mkdir -p $REFERL_ROOT/home/$REFERL_GHOST_USER 
    7168}}} 
    7269 
     
    7471 
    7572{{{ 
    76 cd $REFERL_ROOT/$REFERL_GHOST_USER 
     73cd $REFERL_ROOT/home/$REFERL_GHOST_USER 
    7774wget www.erlang.org/download/otp_src_R14B04.tar.gz 
    7875tar xvvf otp_src_R14B04.tar.gz 
     
    8885 
    8986{{{ 
    90 cd $REFERL_ROOT/$REFERL_GHOST_USER 
     87cd $REFERL_ROOT/home/$REFERL_GHOST_USER 
    9188wget http://plc.inf.elte.hu/erlang/dl/refactorerl-0.9.12.01.tar.gz 
    9289tar xvvf refactorerl-0.9.12.01.tar.gz 
     
    9794}}} 
    9895 
    99 Now you can start the tool: 
     96Now you should be able to use your !RefactorErl installation. If you would like to use the web based interface of the tool, you have to install the proper version (1.89) of Yaws. 
    10097 
    10198{{{ 
    102 cd $REFERL_ROOT/$REFERL_GHOST_USER/refactorerl-0.9.12.01 
    103 bin/referl -erl $REFERL_ROOT/bin/erl 
    104 }}} 
    105  
    106 If you want to use the web based interface of the tool, you have to install the proper version (1.89) of Yaws. 
    107  
    108 {{{ 
    109 cd $REFERL_ROOT/$REFERL_GHOST_USER 
     99cd $REFERL_ROOT/home/$REFERL_GHOST_USER 
    110100wget http://yaws.hyber.org/download/yaws-1.89.tar.gz 
    111101tar xvvf yaws-1.89.tar.gz 
     
    120110}}} 
    121111 
    122 To run the tool execute the following commands. Remember to substitute 
    123 your path to 'yaws_path' part. Do not forget to change the path to yours. 
     112To run the tool, execute the following commands: 
    124113 
    125114{{{ 
    126 cd $REFERL_ROOT/$REFERL_GHOST_USER/refactorerl-0.9.12.01 
     115cd $REFERL_ROOT/home/$REFERL_GHOST_USER/refactorerl-0.9.12.01 
    127116bin/referl -erl $REFERL_ROOT/bin/erl -db nif 
    128117}}} 
     118 
     119If you have successfully installed yaws, you can start the nitrogen-based web UI with the following function call (mind to change the 'yaws_path'): 
    129120 
    130121{{{