How to install Linux after the installation package in the ZIP decompression

  • Miss

    Because it is so for the new school LInux extract the installation is very familiar with, in particular, ZIP archive, unzip know how, but I do not know how to install, but also to the students here also requires a little explanation, but also their hard to find, not necessarily It is the best, but I was so installed.

Let me unpack:

(Illustrated below)

1, Abcde.zip to extract the files to / home / Abcde /

[root @ kaili] #unzip -o -d / home / Abcde Abcde.zip
overwrite files without prompting;: # -o
# -d: -d / home / Abcde the specified files to / home / Abcde Under contents;

2, extract the directory into the Abcde

[root @ Kaili] #cd / Home / Abcde
3, build links preparatory work, specify the installation directory

[@ Kaili the root] #. / Configure --prefix = / opt / Abcde
. 4, the compiler invokes the appropriate current source

[the root @ Kaili] #make
. 5, the executable program is installed in the correct position

[root@kaili]#make install

The above is one of the following additional such

  • zip compression package, not install package, you can first extract the zip file inside look at what are some .deb .rpm file if there is such, it can double-click to install, but most of the software package archive , mostly source package, you need to compile and install (for example, you see that some of the files ending in .c or .h after decompression) source package software installation method, you extract the folder which should have a readme file, or there is a install file , which introduced its software installation methods, you can look at.
    Download a few bloggers are installed at the end of sh, in fact, specifically in the readme file or install file can be found inside.
Released three original articles · won praise 0 · Views 52

Guess you like

Origin blog.csdn.net/alone443525711/article/details/105397768