<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ubuntu,debian,redhat -linuxany.com &#187; deb</title>
	<atom:link href="http://www.linuxany.com/archives/tag/deb/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxany.com</link>
	<description></description>
	<lastBuildDate>Thu, 26 Jan 2012 08:59:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Debian 无缝升级Debian5至Debian6(不重装系统)</title>
		<link>http://www.linuxany.com/archives/1501.html</link>
		<comments>http://www.linuxany.com/archives/1501.html#comments</comments>
		<pubDate>Wed, 09 Feb 2011 03:41:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[aptitude]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[debian5]]></category>
		<category><![CDATA[debian6]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[squeeze]]></category>

		<guid isPermaLink="false">http://www.linuxany.com/?p=1501</guid>
		<description><![CDATA[第一步：修改更新源为debian 6.0 # vi /etc/apt/sources.listdeb http://ftp.us.debian.org/debian/ squeeze maindeb-src http://ftp.us.debian.org/debian/ squeeze maindeb http://security.debian.org/ squeeze/updates maindeb-src http://security.debian.org/ squeeze/updates maindeb http://volatile.debian.org/debian-volatile squeeze/volatile maindeb-src http://volatile.debian.org/debian-volatile squeeze/volatile main 第二步：更新源及软件包 # apt-get update# apt-get install apt dpkg aptitude# apt-get dist-upgrade 第三步：重启 # reboot 第四步：检查升级后系统运行情况 # lsb_release -a# netstat -tulpn# tail -f /var/log/messages# other log files for linuxany.com 您还可能感兴趣的内容在Debian系Linux上安装rpm档Debian:6.0安装及配置过程[原创]玩转Debian5——安装(LXDE桌面)制作deb包的三种方法在Debian上安装SVN]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/1501.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>制作deb包的三种方法</title>
		<link>http://www.linuxany.com/archives/432.html</link>
		<comments>http://www.linuxany.com/archives/432.html#comments</comments>
		<pubDate>Sat, 30 Aug 2008 14:24:44 +0000</pubDate>
		<dc:creator>x72</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[nano]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://www.linuxlaptop.cn/?p=467</guid>
		<description><![CDATA[制作deb包有三种方法，一种是将现有的文件打包，安装该包就像将打包的文件释放到某个目录；第二种是用deb源码打包; 第三种是用makefile源码打包,安装这种包就相当于用源码编译安装软件。 1. 第一种方法&#8212;&#8211;将现有的文件打包： 比如你要打包你当前debian系统的/usr/src/soft目录，然后在另一个debian系统上安装 改包时这些文件也释放到/usr/src/soft目录下： 在随便一个目录，比如是root下创建一个工作目录，比如是work #cd /root#mkdir work#cd work 因为安装包的时候默认是将文件释放到根目录下，所以我们设定好它的路径： #mkdir -p usr/src#cp -a /usr/src/soft usr/src#mkdir DEBIAN 用如下的方法在DEBIAN目录下创建一个control文件，并用加入内容： #cat >DEBIAN/control/etc/apt/sources.list 文件中加入 deb-src 条目. 然后, 运行命令 # apt-get update 或# aptitude update就可以用下面的命令下载源码包： # apt-get source packagename 或 # aptitude source packagename 通常会下载三个文件：.orig.tar.gz，.dsc 和 .diff.gz。对于 Debian 专用的软件包，最后一个文件不会下载，第一个文件的文件名中没有“orig”项。 dpkg-source 读取 .dsc 文件信息，将源码包解包到 packagename-version 目录，下载下来的源码包中有一个 debian/ 目录，里面是创建 [...]]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/432.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>从编译打包scim-python学习打包deb</title>
		<link>http://www.linuxany.com/archives/424.html</link>
		<comments>http://www.linuxany.com/archives/424.html#comments</comments>
		<pubDate>Sat, 30 Aug 2008 14:14:12 +0000</pubDate>
		<dc:creator>x72</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[debhelper]]></category>
		<category><![CDATA[dpkg-dev]]></category>
		<category><![CDATA[scim]]></category>

		<guid isPermaLink="false">http://www.linuxlaptop.cn/?p=459</guid>
		<description><![CDATA[首先需要安装必要的编译打包所需的包： $ sudo apt-get install dpkg-dev file gcc g++ libc6-dev make patch perl autoconf automake dh-make debhelper devscripts fakeroot gnupg g77 gpc xutils lintian pbuilder 然后当然是下载源码。比如现在我们下载获得的是：scim-python-0.1.13rc1.tar.gz。新建一个目录，命名为SCIM，将源码包放到目录中，解压源码包（如果源码包的命名不规范，需要先将源码包命名规范化，具体内容参看Debian新维护人员手册，以下简称手册）到当前目录。那么现在scim里面就会有scim-python-0.1.13rc1.tar.gz这个文件和scim-python-0.1.13rc1这个文件夹了 接下来打开需要查看相关文档，找出编译scim-python所依赖的包，并安装上。这里scim需要到的包有： $ sudo apt-get install g++ libgtk2.0-dev python-gtk2-dev scim-dev 打开终端，进入scim-python-0.1.13rc1这个文件夹 首次Debian化： $ dh_make -e your@your.cn -f ../scim-python-0.1.13rc1.tar.gz 划线部分为你的邮箱名，这个命令会在scim-python-0.1.13rc1这个文件夹下新建一个debian文件夹，并建立一些打包需要的文件。 按个人情况我们可以修改部分文件（具体参看手册），比如这里我们修改下control最后部分，添加上介绍。 Description: scim-python 0.1.13rc1scim-python input 当然，一般的打包基本不需要修改其他文件，如果你需要更多的打包控制，参看手册吧。 最后完成打包： $ dpkg-buildpackage -rfakeroot 这会在scim目录下生成一个你使用平台的deb包。 [...]]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/424.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在Debian系Linux上安装rpm档</title>
		<link>http://www.linuxany.com/archives/417.html</link>
		<comments>http://www.linuxany.com/archives/417.html#comments</comments>
		<pubDate>Sat, 30 Aug 2008 13:55:59 +0000</pubDate>
		<dc:creator>x72</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[alien]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[rpm]]></category>

		<guid isPermaLink="false">http://www.linuxlaptop.cn/?p=451</guid>
		<description><![CDATA[　　Debian系Linux不推荐使用rpm安装rpm档，需要将其转为deb档，通过dpkg安装。但是在Ubuntu Server中，将rpm转为deb的工具alien默认是不安装的，我们需要手工安装他，安装工具为apt。 　　首先将apt的“源”列表/etc/apt/sources.list复制一个副本备份，然后把原来的“源”列表清空。 　　挂载Ubuntu Server的CD1。 　　使用命令apt-cdrom -m -d /cdrom add，注意要有管理员权限。 　　使用命令apt-get update。 　　使用命令apt-get dist-upgrade。 　　使用命令apt-get install alien进行alien的安装。 　　使用alien &#8211;scripts xxx.rpm开始进行rpm转换deb过程。 　　使用dpkg -i xxx.deb进行deb安装。 另外的解决办法： 　　1.apt-get install alien 　　　　alien -i xxx.rpm 直接安装 　　　　alien -d xxx.rpm　生成Debian包 　　2.apt-get install rpm 　　　　mkdir /var/lib/rpm 　　　　rpm &#8211;initdb 　　　　rpm -ivh xxx.rpm 　　3.自运行：在RedHat里有chkconfig,ntsysv 工具，在Debian下，可以用rcconf 　　　　apt-get install rcconf 　　　　rcconf 　　配置启动选项。 您还可能感兴趣的内容Debian 无缝升级Debian5至Debian6(不重装系统)制作deb包的三种方法在Debian上安装SVN[原创]玩转Debian5——安装(LXDE桌面)Debian建立CVS服务器]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/417.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

