首頁 > 軟體

Linux ./configure --prefix命令

2020-06-16 18:03:02

Linux下原始碼的安裝一般由3個步驟組成:設定(configure)、編譯(make)、安裝(make install),具體的安裝方法一般作者都會給出文件,這裡主要討論設定(configure)。Configure是一個可執行指令碼,它有很多選項,使用命令./configure –help輸出詳細的選項列表,如下:

-bash-3.00# ./configure --help
Usage: configure [options] [host]
Options: [defaults in brackets after descriptions]
Configuration:
--cache-file=FILE    cache test results in FILE
--help            print this message
--no-create        do not create output files
--quiet, --silent    do not print `checking...' messages
--version          print the version of autoconf that created configure
Directory and file names:
--prefix=PREFIX      install architecture-independent files in PREFIX
                [/usr/local]
--exec-prefix=EPREFIX  install architecture-dependent files in EPREFIX
                [same as prefix]
--bindir=DIR        user executables in DIR [EPREFIX/bin]
……….(省略若干)
很多的選項,個人認為,你可以忽略其他的一切,但請把—prefix加上。這裡以安裝supersparrow-0.0.0為例,我們打算把它安裝到目錄 /usr/local/supersparrow,於是在supersparrow-0.0.0目錄執行帶選項的指令碼./configure --prefix=/usr/local/supersparrow,執行成功後再編譯、安裝(make,make install);安裝完成將自動生成目錄supersparrow,而且該軟體所有的檔案都被複製到這個目錄。為什麼要指定這個安裝目錄?是為了以後的維護方便,如果沒有用這個選項,安裝過程結束後,該軟體所需的軟體被複製到不同的系統目錄下,很難弄清楚到底複製了那些檔案、都複製到哪裡去了—基本上是一塌糊塗。

用了—prefix選項的另一個好處是解除安裝軟體或移植軟體。當某個安裝的軟體不再需要時,只須簡單的刪除該安裝目錄,就可以把軟體解除安裝得乾乾淨淨;移植軟體只需拷貝整個目錄到另外一個機器即可(相同的作業系統)。

一個小選項有這麼方便的作用,建議在實際工作中多多使用

本文永久更新連結地址http://www.linuxidc.com/Linux/2015-04/115791.htm


IT145.com E-mail:sddin#qq.com