linux在沒網的情況下安裝libreoffice

2021-10-06 06:23:19 字數 674 閱讀 9586

前提:已安裝有jdk

第一步:

上傳兩個包至/opt目錄下(任意目錄都可)

第二步:

解壓libreoffice-rpm.tar.gz 

tar -xzvf  libreoffice-rpm.tar.gz 

第三步:

cd libreoffice-rpm

第四步:執行 yum localinstall *.rpm -y

第五步:

解壓libreoffice_6.3.4_linux_x86-64_rpm.tar

tar -xvf libreoffice_6.3.4_linux_x86-64_rpm.tar

第六步:cd libreoffice_6.3.4_linux_x86-64/rpms/

第七步:yum localinstall *.rpm

第八步:驗證,返回程序pid即安裝成功

執行以下命令:

/opt/libreoffice6.3/program/soffice --headless --accept="socket,host=127.0.0.1,port=8100;urp;" --nofirststartwizard &

參考: 

亂碼

參考:安裝包位址

rwjp

在已有MySQL情況下安裝sphinxSE

1 mysql原始碼包 2 sphinx 0.9.9.tar.gz 具體步驟略 wget 1 cd opt 2 tar zxvf mysql 5.1.66.tar.gz 3 tar zxvf sphinx 0.9.9.tar.gz 4 mysqladmin uroot ppwd version 5 ...

在無root許可權的情況下安裝python模組

root安裝 使用easy install安裝 easy install是乙個工具,不是系統自帶,需要安裝,它的作用類似於php中的pear,或者ruby中的gem,或者perl中的cpan。安裝命令如下 wget q python ez setup.py packagename 無root許可權 ...

在Linux情況下用gcc寫程式

測試下linux是否裝有gcc。輸入gcc 如果存在它會提示 no input files 不存在則提示gcc not found 沒安裝的,又不會安裝的,可以參考我的另一篇經驗 教你怎麼在linux上安裝gcc 首先touch helloworld.c 新建乙個helloworld.c檔案。vim...