Extract gnutls library files of tar.xz and tar.lz for ubuntu 10.04 LTS

后端 未结 6 792
盖世英雄少女心
盖世英雄少女心 2021-02-12 18:35

I am very new to linux platform and I want to extract gnutls for ubuntu. If I do,

$ls

then, it will show these files below.

gnu         


        
6条回答
  •  感动是毒
    2021-02-12 19:14

    You can resolve with:

    # The lzip page is: http://lzip.nongnu.org/lzip.html
    # Download the lzip:
    wget http://download.savannah.gnu.org/releases/lzip/lzip-1.15.tar.gz
    # decompress:
    tar xvf lzip-1.15.tar.gz
    cd lzip-1.15
    # configure / build
    ./configure --prefix=/usr
    make
    # install
    sudo make install
    
    # now you can unzip with 
    tar xvf gmp-5.1.3.tar.lz
    

提交回复
热议问题