i do not no bay VNC Desktop inurl:5800 java? in linux how tar? unzip? install? I now you must read more. ./configure > su [enter] <password> make > make install. go agien klik and <password>

Your question is worded, to put it politely, extremely poorly. If I understand what you are asking, you want to know how to untar or unzip a file containing source code, and then compile it. To untar a file, use the command tar xvf nameoffile.tar. There's no need to separately "gunzip" it if it has a name like nameoffile.tar.gz; those are handled transparently.
You can gunzip a file by entering the command gunzip nameoffile.gz.
You can unzip a regular .zip file with the command unzip nameoffile.zip.
Assuming you already have the necessary libraries and development packages installed to compile your program, you can compile a program that uses a configure script to generate a makefile using the following commands:
1. ./configure
2. make
3. sudo make install or su root and then make install
