General Considerations
This section is for people that have no idea what to write in
a Unix
prompt (so called shell), but use Vnmr(J) in SolarisTM or Redhat
.
VnmrJTM runs basically in SolarisTMand Redhat
.
This tutorial will emphasize the use in SolarisTM.
In SolarisTM you can do a lot using the desktop tools,
but working remotely or in other systems requires you Unix
Knowledge.
You wont learn much here, but a few survival commands.
Play further with tutorials (google: "unix tutorial").
For transfering files between your Solaris work machine and
your MS Windows
PC you can use any SSH/SCP utility for MS Windows
(WinSCP, SSH Secure File Transfere from SSH Communications Security ...).
Prefere these services to FTP, once the formers use encryptated conections.
In Unix
commands the argument .. means the parent directory.
The variable $HOME is your home directory (e.g. /user/vnmr1).
To any Unix
prompt command you can add the character & to run
it in background, i.e. to keep your prompt free while the command runs.
Try man command_X for every command you want to use.
The standard text editor for Unix
is vi. It is very fast and powerfull,
but if you prefer a simple one, try for example xedit in SolarisTM from a Shell prompt,
or the text editor from the Workspace Menu:
in the CDE environment right click the background to launch the
.
Then choose
.
As SolarisTM is attributing an application to each
file type, by browsing the
and clicking a file,
it should be opened by a proper application, possibly a text editor.
Below are a few commands for Unix
Take them as a reference for
a minimum you have to learn and try to know well at least how to
use these ones.
A few survival shell commands for Unix
| pwd | print working directory, i.e., where you are at the moment |
| ls | list directories/files. Options: |
| ls -l list directories/files with detailed information | |
| file <file_name> | gives detailed information about file/directory |
| cd <target> | changes present directory to target. Examples: |
| cd .. go to parent directory. | |
| cd $HOME/vnmrsys | |
| mv target1 target2 | changes the name of target1 (file or dir) to target2 |
| rm -r target | removes the file/dir called target |
| man command_X | shows the manual for the command called command_X |
| (play a lot with this :-). Options: | |
| man -k keyword searches for keyword in manual entries |