Chinaunix首页 | 论坛 | 博客
  • 博客访问: 140345
  • 博文数量: 26
  • 博客积分: 413
  • 博客等级: 一等列兵
  • 技术积分: 255
  • 用 户 组: 普通用户
  • 注册时间: 2012-11-18 01:29
文章分类

全部博文(26)

文章存档

2013年(15)

2012年(11)

我的朋友

分类: LINUX

2012-12-22 13:45:46

http://www.dedevip.org/2406-rpm-should-not-be-used-directly-install-rpm-packages-use-alien-instead-.html
Do not install rpm in Debian (I don't mean flash-plugin, I mean rpm package management). Debian's package management system (which makes sure everything is installed properly and with no conflicts.) is dpkg and it also includes apt-get, Synaptic and aptitude that use dpkg. RPM will bypass dpkg, so you may cause serious damage to your system. 
If you need to install an rpm package, you must do it using the tool "alien". It converts RPM packages to .deb and installs them properly through dpkg.
Code:
sudo apt-get install alien
To use alien:
Code:
sudo alien flash-plugin-10.0.15.3-release.i386.rpm
Then you can install it like this (watch the .deb at the end):
Code:
sudo dpkg -i flash-plugin-10.0.15.3-release.i386.deb
Or
Code:
sudo alien -i flash-plugin-10.0.15.3-release.i386.rpm
That will convert flash-plugin and install it.

A good reference guide for dpkg and apt-get  
阅读(21598) | 评论(0) | 转发(1) |
0

上一篇:安装gtkterm

下一篇:ARM 体系结构 系列 定义

给主人留下些什么吧!~~