欧美成人午夜免费全部完,亚洲午夜福利精品久久,а√最新版在线天堂,另类亚洲综合区图片小说区,亚洲欧美日韩精品色xxx

千鋒扣丁學(xué)堂Linux培訓(xùn)之安裝軟件gcc操作方法

2019-07-18 16:11:11 3826瀏覽

今天千鋒扣丁學(xué)堂Linux培訓(xùn)老師給大家分享一篇關(guān)于Linux在線安裝軟件gcc在線安裝的操作方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。



Linux在線安裝相關(guān)命令:

yuminstall:全部安裝

yuminstall<程序包>:安裝指定的程序包

yumgroupinsall<程序組>:安裝程序組

yum-yupdate:升級(jí)所有包,改變軟件設(shè)置和系統(tǒng)設(shè)置,系統(tǒng)版本、內(nèi)核都升級(jí)

yum-yupgrade:升級(jí)所有包,不改變軟件設(shè)置和系統(tǒng)設(shè)置,系統(tǒng)版本升級(jí),內(nèi)核不升級(jí)

yumupdate<程序包>:更新指定的程序包

yumcheck-update:檢查可更新的程序

yumupgrade<程序包>:升級(jí)指定的程序包

yuminfo<程序包>:顯示程序包的信息

yumlist:顯示所有已經(jīng)安裝和可以安裝的程序包

yumlist<程序包>:顯示指定程序包安裝情況

yumgroupinfo<程序組>:顯示程序組的信息

yumsearch<關(guān)鍵字>:根據(jù)關(guān)鍵字查找程序包

yumremove/erase<程序包>:刪除程序包

yumgroupremove<程序組>:刪除程序組

yumdeplist<程序包>:查看程序包依賴情況

yumclean<程序包>:清除緩存目錄中的程序包

yumcleanheaders:清除緩存目錄下的rpm頭文件

-------------------測(cè)試網(wǎng)絡(luò)

[root@bogon bin]# ping www.baidu.com
PING www.a.shifen.com (163.177.151.110) 56(84) bytes of data.
64 bytes from 163.177.151.110: icmp_seq=1 ttl=128 time=8.34 ms
64 bytes from 163.177.151.110: icmp_seq=2 ttl=128 time=9.35 ms
64 bytes from 163.177.151.110: icmp_seq=3 ttl=128 time=9.18 ms
64 bytes from 163.177.151.110: icmp_seq=4 ttl=128 time=8.55 ms
64 bytes from 163.177.151.110: icmp_seq=5 ttl=128 time=8.74 ms
64 bytes from 163.177.151.110: icmp_seq=6 ttl=128 time=10.0 ms
64 bytes from 163.177.151.110: icmp_seq=7 ttl=128 time=9.00 ms
64 bytes from 163.177.151.110: icmp_seq=8 ttl=128 time=10.7 ms
64 bytes from 163.177.151.110: icmp_seq=9 ttl=128 time=12.3 ms
64 bytes from 163.177.151.110: icmp_seq=10 ttl=128 time=9.10 ms
64 bytes from 163.177.151.110: icmp_seq=11 ttl=128 time=59.8 ms
64 bytes from 163.177.151.110: icmp_seq=12 ttl=128 time=10.7 ms
64 bytes from 163.177.151.110: icmp_seq=13 ttl=128 time=10.7 ms

-------------------收搜gcc

[root@bogon ~]# yum search gcc
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: centos.ustc.edu.cn
 * extras: centos.ustc.edu.cn
 * updates: centos.ustc.edu.cn

=====================================N/SMatched:gcc======================================

gcc-c++.x86_64 : C++ support for GCC
gcc-gnat.x86_64 : Ada 95 support for GCC
gcc-java.x86_64 : Java support for GCC
gcc-objc.x86_64 : Objective-C support for GCC
gcc-objc++.x86_64 : Objective-C++ support for GCC
libgcc.x86_64 : GCC version 4.4 shared support library
libgcc.i686 : GCC version 4.4 shared support library
compat-gcc-34.x86_64 : Compatibility GNU Compiler Collection
compat-gcc-34-c++.x86_64 : C++ support for compatibility compiler
compat-gcc-34-g77.x86_64 : Fortran 77 support for compatibility compiler
gcc.x86_64 : Various compilers (C, C++, Objective-C, Java, ...)
gcc-gfortran.x86_64 : Fortran support
libgcj.i686 : Java runtime library for gcc
libgcj.x86_64 : Java runtime library for gcc
libgcj-devel.i686 : Libraries for Java development using GCC
libgcj-devel.x86_64 : Libraries for Java development using GCC
libgcj-src.x86_64 : Java library sources from GCC4 preview
libgomp.x86_64 : GCC OpenMP v3.0 shared support library
libgomp.i686 : GCC OpenMP v3.0 shared support library
libmudflap.i686 : GCC mudflap shared support library
libmudflap.x86_64 : GCC mudflap shared support library
libmudflap-devel.i686 : GCC mudflap support
libmudflap-devel.x86_64 : GCC mudflap support
libquadmath.x86_64 : GCC __float128 shared support library
Name and summary matches only, use "search all" for everything.
[root@bogon ~]# 

-------------------------gcc安裝

[root@bogon ~]# yum -y install gcc
...
Complete!

------------------------查看gcc安裝情況

[root@bogon ~]# yum list gcc
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: centos.ustc.edu.cn
 * extras: centos.ustc.edu.cn
 * updates: centos.ustc.edu.cn
Installed Packages
gcc.x86_64                  4.4.7-18.el6                @base
[root@bogon ~]# 

以上就是關(guān)于千鋒扣丁學(xué)堂Linux培訓(xùn)之安裝軟件gcc操作方法的全部?jī)?nèi)容了,想要學(xué)好Linux開發(fā)小編給大家推薦口碑良好的扣丁學(xué)堂,扣丁學(xué)堂有專業(yè)老師制定的Linux學(xué)習(xí)路線圖輔助學(xué)員學(xué)習(xí),此外還有與時(shí)俱進(jìn)的Linux課程體系和Linux視頻教程供大家學(xué)習(xí),想要學(xué)好Linux開發(fā)技術(shù)的小伙伴快快行動(dòng)吧??鄱W(xué)堂Linux技術(shù)交流群:422345477。


                        JavaEE/微服務(wù)/源碼解析/分布式/企業(yè)級(jí)架構(gòu)【VIP體驗(yàn)課】


     【關(guān)注微信公眾號(hào)獲取更多學(xué)習(xí)資料】       【掃碼進(jìn)入JavaEE/微服務(wù)VIP免費(fèi)公開課】  




查看更多關(guān)于“Linux培訓(xùn)資訊”的相關(guān)文章>>

標(biāo)簽: Linux培訓(xùn) Linux視頻教程 紅帽Linux視頻 Linux學(xué)習(xí)視頻 Linux入門視頻 紅帽RHCE/RHCSA考試

熱門專區(qū)

暫無熱門資訊

課程推薦

微信
微博
15311698296

全國(guó)免費(fèi)咨詢熱線

郵箱:codingke@1000phone.com

官方群:148715490

北京千鋒互聯(lián)科技有限公司版權(quán)所有   北京市海淀區(qū)寶盛北里西區(qū)28號(hào)中關(guān)村智誠(chéng)科創(chuàng)大廈4層
京ICP備2021002079號(hào)-2   Copyright ? 2017 - 2022
返回頂部 返回頂部