Changes between Version 20 and Version 21 of CORNET/HowToUseCORNET

Show
Ignore:
Timestamp:
11/21/13 15:43:04 (10 years ago)
Author:
maroje
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CORNET/HowToUseCORNET

    v20 v21  
    1010 
    1111The port list is as follows, where NodeX-Y refers to node Y on floor X: 
    12 ||'''Floor One'''||Port||Internal IP|| 
     12||'''Floor 1'''||Port||Internal IP|| 
    1313||'''Node1-1'''||7001||192.168.1.11|| 
    1414||'''Node1-2'''||7002||192.168.1.12|| 
     
    2424||'''Node1-12'''||7012||192.168.1.22||  
    2525  
    26 ||'''Floor Two'''||Port||Internal IP|| 
     26||'''Floor 2'''||Port||Internal IP|| 
    2727||'''Node2-1'''||7013||192.168.1.23|| 
    2828||'''Node2-2'''||7014||192.168.1.24|| 
     
    3838||'''Node2-12'''||7024||192.168.1.34|| 
    3939  
    40 ||'''Floor Three'''||Port||Internal IP|| 
     40||'''Floor 3'''||Port||Internal IP|| 
    4141||'''Node3-1'''||7025||192.168.1.35|| 
    4242||'''Node3-2'''||7026||192.168.1.36|| 
     
    5252||'''Node3-12'''||7036||192.168.1.46|| 
    5353  
    54 ||'''Floor Four'''||Port||Internal IP|| 
     54||'''Floor 4'''||Port||Internal IP|| 
    5555||'''Node4-1'''||7037||192.168.1.47|| 
    5656||'''Node4-2'''||7038||192.168.1.48|| 
     
    106106}}} 
    107107 
    108 To login to CORNET node1-3 with the login name "testuser" do the following: 
     108To login to CORNET node 1-3 with the login name "testuser" do the following: 
    109109 
    110110{{{ 
     
    132132 
    133133{{{ 
    134 # ssh [user]@cornet.wireless.vt.edu -p [port] 
     134# ssh <username>@trac.cornet.wireless.vt.edu -p <port_number> 
    135135}}} 
    136136 
     
    152152 
    153153=== Working from your User directory === 
    154 Each registered user receives a folder on a dedicated NFS drive which allows them to store and access code locally.  Each CORNET node mounts the NFS directories at boot time and you may access your directory on each node at /users/*my_login*. 
     154Each registered user receives a folder on a dedicated NFS drive which allows them to store and access code locally.  Each CORNET node mounts the NFS directories at boot time and you may access your directory on each node at /users/<username>. 
    155155 
    156156In the interest of open and collaborative development, each user has read access to the other user folders and read/write access to their own folder.  You may upload files into your NFS directory in the following way: 
     
    160160 
    161161{{{ 
    162 # cd /users/*my_login* 
     162# cd /users/<username> 
    163163}}} 
    164164 
     
    173173 
    174174{{{ 
    175 # scp -r -P [Port] mydir *my_login*@cornet.wireless.vt.edu:/users/*my_login* 
     175# scp -r -P [Port] mydir *my_login*@trac.cornet.wireless.vt.edu:/users/<username> 
    176176}}} 
    177177