linux原始碼安裝git的方法:1.下載git原始碼上傳至Linux伺服器;2、登入目標機器,解壓縮並安裝;3、安裝「gcc gcc-c 」;4、執行一下git的安裝命令即可。
本文操作環境:linux5.9.8系統、git 2.9.5版、Dell G3電腦。
linux 原始碼怎麼安裝git?
Linux 安裝git/原始碼安裝:
Git 安裝
這裡就不記錄Windows/Mac OS系統的了,直接下載對應的安裝程序,按步驟安裝即可。
Linux 安裝
登陸https://git-scm.com/download/linux
原始碼安裝
1. 下載原始碼
可以在另一台電腦中下載好原始碼,然後上傳到Linux伺服器
https://mirrors.edge.kernel.org/pub/software/scm/git/
找到對應的版本。
2. 上傳至伺服器
以git-2.9.5.tar.gz為例,將下載好的檔案上傳至伺服器。
scp git-2.9.5.tar.gz root@192.168.0.102:/home/tools
scp git-2.9.5.tar.gz 目標機器的使用者 @目標機器ip:目標機器路徑
3. 解壓縮並安裝
登陸目標機器,解壓縮並安裝。 /home/Git是指的安裝目錄
tar -zxvf git-manpages-2.9.5.tar.gz cd git-2.9.5 [root@localhost git-2.9.5]# ./configure --prefix=/home/Git [root@localhost git-2.9.5]# make && make install 4. ./configure 报错 [root@localhost git-2.9.5]# ./configure --prefix=/home/Git configure: Setting lib to 'lib' (the default) configure: Will try -pthread then -lpthread to enable POSIX Threads. configure: CHECKS for site configuration checking for gcc... no checking for cc... no checking for cl.exe... no configure: error: in `/home/tools/git-2.9.5': configure: error: no acceptable C compiler found in $PATH See `config.log' for more details
我的linux伺服器執行報錯中看出,gcc,cc,cl.exe為no。 gcc是Linux的c語言編譯器,表示我的機器中沒有安裝這些編譯器。
分別安裝以下gcc,gcc-c ,安裝成功之後在執行一下git的安裝指令
[root@localhost git-2.9.5]# yum install gcc [root@localhost git-2.9.5]# yum install gcc-c++ [root@localhost git-2.9.5]# ./configure --prefix=/home/Git
5. make指令報錯
[root@localhost git-2.9.5]# make && make install * new build flags CC credential-store.o In file included from credential-store.c:1:0: cache.h:40:18: 致命错误:zlib.h:没有那个文件或目录 #include <zlib.h> ^
編譯中斷。
make: *** [credential-store.o] 錯誤 1
缺少 zlib的頭文件, 開發包沒裝。安裝zlib
[root@localhost git-2.9.5]# yum install zlib [root@localhost git-2.9.5]# yum install zlib-devel [root@localhost git-2.9.5]# yum install perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker [root@localhost git-2.9.5]# make && make install
若無報錯則安裝成功
6.檢查git安裝是否完成
#進入先前指定的安裝目錄,查看git版本,能成功則表示git安裝完成
[root@localhost bin]# cd /home/Git/bin [root@localhost bin]# ./git --version git version 2.9.5
7.配置環境變數
vi /etc/profile
編輯環境變數設定文件,在最後追加下面的字串,指定bin目錄的位址
export PATH=$PATH://home/Git/bin
修改完成之後,執行指令,生效設定檔
source /etc/profile
檢查是否設定成功,可切換路徑到其他目錄中,執行git --version。傳回git版本則表示環境變數配置完成。
推薦學習:《Git教學》
以上是linux 原始碼怎麼安裝git的詳細內容。更多資訊請關注PHP中文網其他相關文章!