歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Unix知識 >> Unix教程 >> apt+synaptic在線安裝Fedora 4.0軟件包

apt+synaptic在線安裝Fedora 4.0軟件包

日期:2017/2/27 17:44:58   编辑:Unix教程
Fedora apt是輕量級的在線安裝升級的軟件包管理系統,synaptic 是圖形化的apt軟件包管理工具。能夠管理Fedora core 4.0 系統及升級源的所有的軟件包;是一個極為方便的軟件包管理工具;兩者配合,效果最佳,最適合我等一無所知的菜鳥弟兄;

可能有的弟兄介紹過這個軟件,我也把自己的使用經驗和大家分享一下;主要是想為新手弟兄寫一個一步到位的文檔,最好對Linux一無所知的弟兄,也能一路OK 。

一、apt的安裝和簡單用法;

1、apt的安裝;

#rpm -ivh http://ftp.freshrpms.net/pub/fedora/linux/extras/4/i386/apt-0.5.15cnc7-6.fc4.i386.rpm
2、導入GPG簽名;

#rpm --import http://svn.rpmforge.net/svn/branches/rpms/matthias/apt/RPM-GPG-KEY.freshrpms
rpm --import http://rpm.livna.org/RPM-LIVNA-GPG-KEY

3、加Fedora core 4.0的源;

在/etc/apt/目錄中找到 sources.list,在裡面加如下的兩行;
rpm http://ayo.freshrpms.net fedora/linux/4/i386 core extras updates freshrpms
rpm http://rpm.livna.org/ fedora/4/i386 lvn

4.apt 簡單的應用;

1]安裝和配置好apt的第一步是執行 apt-get update ,目的是來從apt源中取回軟件包的列表;也就是我們上面說的那個sources.list提到的源;

[root@localhost beinan]# apt-get update
You don't seem to have one or more of the needed GPG keys in your RPM database.
Importing them now...
Get:1 http://ayo.freshrpms.net fedora/linux/4/i386 release [1834B]
Fetched 1834B in 8s (222B/s)
Get:1 http://ayo.freshrpms.net fedora/linux/4/i386/core pkglist [518kB]
Get:2 http://ayo.freshrpms.net fedora/linux/4/i386/core release [151B]
Get:3 http://ayo.freshrpms.net fedora/linux/4/i386/extras pkglist [1262kB]
Get:4 http://ayo.freshrpms.net fedora/linux/4/i386/extras release [155B]
Get:5 http://ayo.freshrpms.net fedora/linux/4/i386/updates pkglist [1107kB]
Get:6 http://ayo.freshrpms.net fedora/linux/4/i386/updates release [157B]
Get:7 http://ayo.freshrpms.net fedora/linux/4/i386/freshrpms pkglist [65.3kB]
Get:8 http://ayo.freshrpms.net fedora/linux/4/i386/freshrpms release [161B]
Fetched 2952kB in 59s (49.9kB/s)
Reading Package Lists... Done
Building Dependency Tree... Done

2]安裝、升級、移除軟件包的用法;

a)軟件包的安裝;

[root@localhost beinan]# apt-get install 軟件包名稱

注:不要加版本號,軟件名就好;

比如我們想安裝或者升級firefox ,就可以直接用 apt-get install firefox ;

[root@localhost beinan]# apt-get install firefox
Reading Package Lists... Done
Building Dependency Tree... Done
The following packages will be upgraded
firefox (1.0.4-4 => 1.0.6-1.1.fc4)
1 upgraded, 0 newly installed, 0 removed and 234 not upgraded.
Need to get 19.2MB of archives.
After unpacking 17.0kB of additional disk space will be used.
Get:1 http://ayo.freshrpms.net fedora/linux/4/i386/updates firefox 0:1.0.6-1.1.fc4 [19.2MB]
Fetched 19.2MB in 6m25s (49.8kB/s)
Checking GPG signatures... ########################################### [100%]
Committing changes...
Preparing... ########################################### [100%]
1:firefox ########################################### [100%]
Done.

b)移除軟件包;

[root@localhost beinan]# apt-get remove 軟件包名
舉例:
[root@localhost beinan]# apt-get remove firefox

c)對系統全面升級;

[root@localhost beinan]# apt-get upgrade
[root@localhost beinan]# apt-get dist-upgrade

這兩個功能差不多;

d)常用的參數選項;

[root@localhost beinan]# apt-get install -y 軟件包名

比如:

[root@localhost beinan]# apt-get install -y gaim
注:如果意外中斷的包下載和安裝,可以用-y參數來繼續下載安裝,如上面gaim我下載到10%,可以用上面的命令接著來下載安裝或者升級;


[root@localhost beinan]# apt-get install -d 軟件包名

比如:


[root@localhost beinan]# apt-get install -d

注:只是下載軟件包,不解包,也不安裝,下載到本地機的目錄為 /var/cache/apt/archives

3]清理apt-get 後下載下來的包和未完成的包;

[root@localhost beinan]# apt-get clean

通過apt-get下載下來的包存放在 /var/cache/apt/archives目錄中;有時我們中斷一些正在apt-get 的包,這樣的包沒有完全下載下來;我們也可以清理掉;也可以用繼續接著下載安裝,也可以清理掉;

這樣apt-get clean 就會刪除 已經下載完成的位於/var/cache/apt/archives目錄的所有包;也會清理掉下載未完成的包位於/var/cache/apt/archives/partial/

這個功能還是比較有用的,因為apt-get 下載和安裝量極大,要定期清理;

二、synaptic的安裝和用法;

相對 apt-get的命令行操作來說,synaptic的操作還是極為簡單的;synaptic全是點鼠標可視化操作;我等菜鳥不必知道什麼原理不原理的,原理是早早晚晚都會知道,這有個時間的過程;但我們得把自己想要安裝的東西得安裝上,好在LinuxSir.Org 灌水啊,哈哈;

1]安裝:

[root@localhost beinan]# apt-get install synaptic
Reading Package Lists... Done
Building Dependency Tree... Done
The following NEW packages will be installed:
synaptic (0.57.2-1.fc4)
0 upgraded, 1 newly installed, 0 removed and 234 not upgraded.
Need to get 1682kB of archives.
After unpacking 4311kB of additional disk space will be used.
Get:1 http://ayo.freshrpms.net fedora/linux/4/i386/extras synaptic 0.57.2-1.fc4 [1682kB]
Fetched 1682kB in 46s (36.2kB/s)
Checking GPG signatures... ########################################### [100%]
Committing changes...
Preparing... ########################################### [100%]
1:synaptic ########################################### [100%]
Done.


2]用法;簡單吧;

想安裝點什麼就安裝點什麼吧;

建議:新手不要大規模的升級系統,要先安裝和升級幾個你想用的包;比如 xmms等;等手熟了,我們再大規模的升級和安裝,但最好還是不要這樣做,畢竟圖形化的工具,有時會出現崩潰。所以還是小批量的比較好;

Copyright © Linux教程網 All Rights Reserved