Gary F Mitchell
These notes describe how to move the entire content of your VAX account directory to the Sun Sparcstations (unix). Please follow the steps exactly as described. In the example below the username is smith.
If after looking at these notes you do not understand or if you get confused then you may request that someone from the Computing Facilities Group does it on your behalf. This service will be offered just once per user and after files have been transferred your VAX account will be removed.
To request this service send mail to helpdesk@ing.iac.es or contact Virginia Borraz.
$ mail MAIL> set maildir [.maildir] MAIL> quit
All the files associated with mail messages will now be in a VMS sub-directory [.maildir] - but of course you can still read them in VMS mail just as before. It is just more tidy.
Example: % cd ~ % mkdir vax
Example: % cd /scratch/lpss1a % mkdir smith % cd smith
Example: % cd /vax/user1/smith % ls
You should obtain a directory listing and recognise your files. If there is an error message then seek assistance from the Computing Facilities Group (PVDV or GFM) - it may be a problem on the VAX. Of course if your account is on disk$user3 the command is subtly different:
Example: % cd /vax/user3/smith % ls
Example % pwd /vax/user1/smith % tar cvf /scratch/lpss1a/smith/junk.tar .
Example % cd /scratch/lpss1a/smith % tar tf junk.tar
You should see a listing which has your VAX files.
Example % cd ~ % cd vax % tar xvf /scratch/lpss1a/smith/junk.tar
It is possible that at this stage you will run out of quota on your unix account. If this happens error messages will appear. If you have any error messages then contact the Computing Facilities Group (eg send mail to helpdesk@ing.iac.es).
Example 1 - use them remove command "rm" % cd ~/vax % pwd /home/lpss1/smith/vax % rm *.obj* % rm *.exe*
You will need to repeat for each subdirectory of vax
Example 2
- more fancy alternative, use find to remove .obj and .exe in current working directory and all subdirectories.
Note:
If using this fancy method be sure to type slash "/" and backslash "\" exactly as shown.
% cd ~/vax
% pwd
/home/lpss1/smith/vax
% find . -name \*.obj\* -print -exec /bin/rm {} \;
% find . -name \*.exe\* -print -exec /bin/rm {} \;
Alternatively use any means you like - such as selecting icons in file_manager and dragging them to the wastebasket icon. To use file_manager you need to log onto a sparc directly and not through a telnet session from a PC or whatever.
This text is available as a Web Page in migrate.html