Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

First you will need the iepm-bw source code. Typically this is obtained from SLAC by an email request to cottrell@slac.stanford.edu.  He will tar up the entire v3src directory, below are the commands he will probably use:

Code Block
>cd $bandsrc
45cottrell@pinger:/afs/slac/package/netmon/bandwidth-tests/v3src>tar>tar -cvf v3src .tar47cottrell@pinger:/afs/slac/package/netmon/bandwidth-tests/v3src>gziptar
>gzip -c v3src.tar /tmp/v3src.tar.gzls -l /tmp/v356cottrell@pinger:/afs/slac/package/netmon/bandwidth-tests/v3src>lsgz
>ls -l /tmp/v3src.tar.gz
-rw-r--r--    1 cottrell sf       125632972 May 17 12:34 /tmp/v3src.tar.gz57cottrell@pinger:/afs/slac/package/netmon/bandwidth-tests/v3src>rmgz
>rm v3src.tarcp /tmp/v358cottrell@pinger:/afs/slac/package/netmon/bandwidth-tests/v3src>mvv3
>mv /tmp/v3src.tar.gz ./59cottrell@pinger:/afs/slac/package/netmon/bandwidth-tests/v3src>ls
>ls -l v3src.tar.gz
-rw-r--r--    1 cottrell sf       125632972 May 17 12:34 v3src.tar.gz60cottrell@pinger:/afs/slac/package/netmon/bandwidth-tests/v3src>cdgz
>cd /afs/slac/public/users/cottrell70cottrell@pinger:/afs/slac/public/users/cottrell>cpcottrell
>cp $bandsrc/v3src.tar.gz ./  

This will require requires a lot of disk space (e.g. v3src.tar is ~ 180MBytes). It creates a file $bandsrc/v3src.tar.gz which is probably too big to email so it is made vailable available by anonymous ftp. To access it use: Wiki Markup73cottrell@pinger:/afs/slac/public/users/cottrell>ftp

Code Block

>ftp ftp.slac.stanford.edu
Connected to ftp.slac.stanford.edu (134.79.18.30).
220-====================================================================
220-By using this system you expressly consent to the terms and

...


...

.

...

.

...

.

...

220 FTP server ready.
Name (ftp.slac.stanford.edu:cottrell): 

...

anonymous331 Anonymous login ok, send your complete email address as your password.
Password:
230-====================================================================
230

...

-
230-Stanford Linear Accelerator Center Anonymous FTP Server
230

...

-
230-====================================================================

...

...
ftp> binary
200 Type set to I
ftp>cd users/cottrell
ftp> ls
227 Entering Passive Mode (134,79,18,30,188,42).
150 Opening ASCII mode data connection for file list
dr-xr-xr-x   2 ftp      ftp          4096 May 17 19:45 .
dr-xr-xr-x   2 ftp      ftp          4096 May 14 18:21 ..
-r--r--r--   1 ftp      ftp           335 Oct  5  2001 identity.pub
-r--r--r--   1 ftp      ftp           304 Feb  9  1996 pgp.publickey
-r--r--r--   1 ftp      ftp      125632972 May 17 19:45 v3src.tar.gz
226 Transfer complete.ftp> get v3src.tar.gz
local: v3src.tar.gz remote: v3src.tar.gz
227 Entering Passive Mode (134,79,18,30,

...

188,

...

44).
150 Opening 

...

BINARY mode data connection for 

...

v3src.tar.gz (125632972 bytes)
226 Transfer complete.
125632972 bytes received in 28.4 secs (4.3e+03 Kbytes/sec)
ftp>quit
>

You will need to unzip and detar the file using: tar -xzvf v3src.tar.gz 

...