博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
RPM/AlienHowto
阅读量:6112 次
发布时间:2019-06-21

本文共 1125 字,大约阅读时间需要 3 分钟。

Alien converts an RPM package file into a Debian package file or Alien can install an RPM file directly. This is not the recommended way to install software packages in Ubuntu. If at all possible, install packages from Ubuntu’s repositories using Add/Remove, apt-get, or the Synaptic Package Manager. Package dependency conflicts may occur when attempting to install RPM packages. The Synaptic Package Manager may be able to fix or remove any broken packages.

 

Install Alien

Add the Universe repository to the sources list from the System menu System > Administration > Software Sources.

Open a Terminal from the Applications menu Applications > Accessories > Terminal.

In a terminal, enter:

sudo apt-get install alien

 

Installing an RPM file directly

In a terminal, enter:

 

sudo alien -i package_file.rpm

 

Converting the RPM file to a Debian package

In a terminal, enter:

 

sudo alien package_file.rpm

 

Installing the converted Debian package

Either use , or in a terminal, enter:

 

sudo dpkg -i package_file.deb

 

Additional Help

In a terminal, enter:

 

alien -h

转载于:https://www.cnblogs.com/JavaTechLover/archive/2012/06/24/2560531.html

你可能感兴趣的文章
查询个人站点的文章、分类和标签查询
查看>>
基础知识:数字、字符串、列表 的类型及内置方法
查看>>
JSP的隐式对象
查看>>
P127、面试题20:顺时针打印矩阵
查看>>
JS图片跟着鼠标跑效果
查看>>
[SCOI2005][BZOJ 1084]最大子矩阵
查看>>
学习笔记之Data Visualization
查看>>
Leetcode 3. Longest Substring Without Repeating Characters
查看>>
【FJOI2015】金币换位问题
查看>>
数学之美系列二十 -- 自然语言处理的教父 马库斯
查看>>
Android实现自定义位置无标题Dialog
查看>>
面试总结
查看>>
Chrome浏览器播放HTML5音频没声音的解决方案
查看>>
easyui datagrid 行编辑功能
查看>>
类,对象与实例变量
查看>>
HDU 2818 (矢量并查集)
查看>>
【转】php字符串加密解密
查看>>
22. linux 常用命令
查看>>
ASP.Net 使用GridView模板删除一行的用法
查看>>
(十六)字段表集合
查看>>