A) "This might be better if written like.."? -- the web page describes the role of the file, but doesn't show the filename, which is needed later. I was hoping to avoid just the sort of problem you encountered.
B) Extracting a "
seadas_X.tar.gz" file. The reason the
mv failed is that you have confused the URL (internet location) with a filename (there is also a typo:
linus with an "s" where you need and "x".
In the long run the time it will take to work thru one of the on-line linux command-line tutorials will help you avoid such problems. I don't think you have done any damage, but it is quite easy to get into serious trouble if you make a mistake in a command line. There are many linux "gurus" who are more than happy to help a new user get started. Linux is a community effort and most users realize that the only way for the community to remain healthy is to bring new people into the community by helping them get started.
The individual tasks that may be required are:
D) download the required "
seadas_X.tar.gz" files, using
wget or a web browser with the URL
C) change to the top-level SeaDAS directory (sometimes called a "folder"), using the
cd command
M) move a file to a different location within linux, using the
mv command with the filename.
X) extract files from a (compressed) tar archive, using the
tar command with the filename.
Here is one series of commands shown one-by-one (The "
$ " is the command prompt and indicates the bash shell is waiting for you to enter a command):
1) Put the "
seadas_X.tar.gz" files into the top-level SeaDAS directory:
The "
mv" command moves files around within linux, but does not work with ftp. You have to download each of the "
seadas_X.tar.gz" files you need, e.g.,
$ cd $SEADAS
$ wget ftp://samoa.gsfc.nasa.gov/seadas/seadas/seadas_processing_linux.tar.gz
will download the file directly to the top-level SeaDAS directory.
If you download the files to a different location, e.g., using a web browser to put the files in the
Downloads directory:
$ cd ~/Downloads
$ mv seadas_processing_linux.tar.gz $SEADAS
You can also do the same task with one command:
$ mv ~/Downloads/seadas_processing_linux.tar.gz $SEADAS
2) extract the files from the "
seadas_X.tar.gz" in the the top-level directory of SeaDAS
$ cd $SEADAS
$ tar xvfz seadas_processing_linux.tar.gz