Chinaunix首页 | 论坛 | 博客
  • 博客访问: 10506864
  • 博文数量: 2905
  • 博客积分: 20098
  • 博客等级: 上将
  • 技术积分: 36298
  • 用 户 组: 普通用户
  • 注册时间: 2009-03-23 05:00
文章存档

2012年(1)

2011年(3)

2009年(2901)

分类: LINUX

2009-03-23 11:20:28

3apt 在线更新软件包,也能管理本地已经安装的软件包工具;
apt+synaptic 小巧轻快,反应速度快,是最佳的搭档;
apt是轻量级的在线安装升级的软件包管理系统,synaptic 是图形化的apt软件包管理工具。能够管理Fedora core 4.0 系统及升级源的所有的软件包;是一个极为方便的软件包管理工具;两者配合,效果最佳;
一、apt的安装和简单用法;
1apt的安装;
#rpm -ivh
2、导入GPG签名;
#rpm --import
#rpm --import
3、加Fedora core 4.0的源
/etc/apt/目录中找到 sources.list,在里面加如下的两行;
rpm fedora/linux/4/i386 core extras updates freshrpms
rpm fedora/4/i386 lvn
4.apt 简单的应用;
1]安装和配置好apt的第一步是执行 apt-get update ,目的是来从apt源中取回软件包的列表;也就是我们上面说的那个sources.list提到的源;
[root@localhost]# 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 fedora/linux/4/i386 release [1834B]
Fetched 1834B in 8s (222B/s)
Get:1 fedora/linux/4/i386/core pkglist [518kB]
Get:2 fedora/linux/4/i386/core release [151B]
Get:3 fedora/linux/4/i386/extras pkglist [1262kB]
Get:4 fedora/linux/4/i386/extras release [155B]
Get:5 fedora/linux/4/i386/updates pkglist [1107kB]
Get:6 fedora/linux/4/i386/updates release [157B]
Get:7 fedora/linux/4/i386/freshrpms pkglist [65.3kB]
Get:8 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]# apt-get install 软件包名称
注:不要加版本号,软件名就好;
比如我们想安装或者升级firefox ,就可以直接用 apt-get install firefox ;
[root@localhost]# 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 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]# apt-get remove 软件包名
举例:
[root@localhost]# apt-get remove firefox
c)对系统全面升级;
[root@localhost]# apt-get upgrade
[root@localhost]# apt-get dist-upgrade
这两个功能差不多;
d)
常用的参数选项;
[root@localhost]# apt-get install -y 软件包名
比如:
[root@localhost]# apt-get install -y gaim
注:如果意外中断的包下载和安装,可以用-y参数来继续下载安装,如上面gaim我下载到10%,可以用上面的命令接着来下载安装或者升级;
[root@localhost]# apt-get install -d 软件包名
比如:
[root@localhost]# apt-get install -d
注:只是下载软件包,不解包,也不安装,下载到本地机的目录为 /var/cache/apt/archives
3]清理apt-get 后下载下来的包和未完成的包;
[root@localhost]# 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全是点鼠标可视化操作;
1]
安装:
[root@localhost]# 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 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]用法
想安装点什么就安装什么;
阅读(564) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~