[FZH] 安装了x86_64的Fedora,能用来制作x86的rpm包嘛?

Easior Lars easior.lars at yahoo.com
Mon Jan 21 05:37:41 UTC 2013


哦,我紧张了一下。

谢谢你的提醒。

有什么有意思的包需要人手的话,
记得提醒我。

On Jan 21, 2013, at 1:34 PM, Robin Lee <robinlee.sysu at gmail.com> wrote:

> 这个没什么问题
> 
> 
> 2013/1/21 Easior Lars <easior.lars at yahoo.com>
> 
>> 嗯,不懂啊!
>> ibus-rime-0.9.6的包应该比较新,
>> 有什么问题嘛?
>> 
>> On Jan 21, 2013, at 12:56 PM, Robin Lee <robinlee.sysu at gmail.com> wrote:
>> 
>>> 再提醒一次,不要打包违禁软件放到 fedorapeople
>>> 
>>> 
>>> 2013/1/21 Easior Lars <easior.lars at yahoo.com>
>>> 
>>>> 等我的源里的软件丰富一些,
>>>> 再找你帮忙吧。
>>>> 
>>>> On Jan 21, 2013, at 11:53 AM, Robin Lee <robinlee.sysu at gmail.com>
>> wrote:
>>>> 
>>>>> 那还是先找到一个自己感兴趣、想维护的包吧,已经在Fedora里的也可以
>>>>> 
>>>>> packager 加入流程还是挺有些步骤的,详见:
>>>>> https://fedoraproject.org/wiki/Join_the_package_collection_maintainers
>>>>> 
>>>>> 
>>>>> 2013/1/21 Easior Lars <easior.lars at yahoo.com>
>>>>> 
>>>>>> 
>>>>>> On Jan 21, 2013, at 11:33 AM, Robin Lee <robinlee.sysu at gmail.com>
>>>> wrote:
>>>>>> 
>>>>>>> yum-builddep from yum-utils
>>>>>>> yum-builddep --target i686 xxx.spec [or xxx.src.rpm]
>>>>>>> 
>>>>>>> 想做 packager?
>>>>>>> 
>>>>>> 
>>>>>> 想过,不过有两个困难需要解决:
>>>>>> 1、有哪些软件需要打包?我能接触到的不多。
>>>>>> 2、加入packager需要别人邀请。
>>>>>> 要不你邀请我一下?我的FAS name是eaisor.
>>>>>> 
>>>>>>> 
>>>>>>> 2013/1/21 Easior Lars <easior.lars at yahoo.com>
>>>>>>> 
>>>>>>>> 那就好了。
>>>>>>>> 
>>>>>>>> 安装32位的包,比较方便的办法是什么,
>>>>>>>> 根据需要一个一个装呢?
>>>>>>>> 还是有group,一次性就能装上?
>>>>>>>> 
>>>>>>>> On Jan 21, 2013, at 10:52 AM, Robin Lee <robinlee.sysu at gmail.com>
>>>>>> wrote:
>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 2013/1/21 Easior Lars <easior.lars at yahoo.com>
>>>>>>>>> 
>>>>>>>>>> 让我猜一下这句话的意思:
>>>>>>>>>> 要在x86_64中编译i386,只要把32位的库装全了,就能用--target选项编译出32位的程序。
>>>>>>>>>> 不知道这样说对不对?
>>>>>>>>>> On Jan 20, 2013, at 11:11 PM, Robin Lee <robinlee.sysu at gmail.com>
>>>>>>>> wrote:
>>>>>>>>>> 
>>>>>>>>>>> rpmbuild --target i686 ....
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 2013/1/20 Alick Zhao <alick9188 at gmail.com>
>>>>>>>>>>> 
>>>>>>>>>>>> On Sun, 20 Jan 2013 20:08:26 +0800, Easior Lars wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On Jan 20, 2013, at 3:30 PM, Alick Zhao <alick9188 at gmail.com>
>>>>>> wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On Sun, 20 Jan 2013 13:33:58 +0800, Easior Lars wrote:
>>>>>>>>>>>>>>> 不明就里啊?
>>>>>>>>>>>>>>> 搞不清楚状况,
>>>>>>>>>>>>>>> 32位、64位的装在一起,
>>>>>>>>>>>>>>> 普通的gcc编译,
>>>>>>>>>>>>>>> 例如编译个helloworld,
>>>>>>>>>>>>>>> 到底怎么区分是哪个arch编出来的?
>>>>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 对于这一个特定问题,参考 SO 上的回答,说的比较清楚了,还有例子:
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>> 
>>>>>> 
>>>> 
>> http://stackoverflow.com/questions/1272357/how-to-compile-a-32-bit-binary-on-a-64-bit-linux-machine-with-gcc-cmake
>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Linux 实现了这个机制,叫 multi-arch,不妨上网搜一搜。
>>>>>>>>>>>>>> 对普通用户/开发者来说,只要把相应的库/软件包安装齐全就好了。
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 兄台能否帮我搜个与此相关的文档?
>>>>>>>>>>>>> 我搜到的基本与Fedora无关,云里雾里。
>>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 嗯,我也觉得我没有理解它 :(
>>>>>>>>>>>> 
>>>>>>>>>>>> Fedora 中现在的实现简单讲就是把 32 位库放在 {/,/usr/,/usr/local/}lib
>>>>>>>>>>>> 下,64 位库放在 {/,/usr/,/usr/local/}lib64 下。这样两种库就可以同时安装
>>>>>>>>>>>> 在系统上了。这样,在 64 位系统上,32 位应用可以找到依赖的库,正常运行。
>>>>>>>>>>>> 这也是现在的 FHS 给的意见。
>>>>>>>>>>>> 
>>>>>>>>>>>> Debian 眼中的 multiarch 应该更强大一些,应该能支持各种架构的库同时安装。
>>>>>>>>>>>> (更长远的目标时,各种架构的二进制文件都可以同时安装并运行。)
>>>>>>>>>>>> Debian 把 Fedora 中采用的方法称作 biarch 之类,并没有采用。而是另外提出
>>>>>>>>>>>> 了实现方案。它的库文件存放在类似 /usr/lib/{x86_64-linux-gnu/,i376-linux-
>>>>>>>>>>>> gnu/} 的目录中。
>>>>>>>>>>>> 
>>>>>>>>>>>> 参考:
>>>>>>>>>>>> * http://lwn.net/Articles/482952/
>>>>>>>>>>>> * http://wiki.debian.org/Multiarch
>>>>>>>>>>>> 
>>>>>>>>>>>> 现在感觉我把话题带偏了……
>>>>>>>>>>>> 
>>>>>>>>>>>> --
>>>>>>>>>>>> alick
>>>>>>>>>>>> Fedora 16 (Verne) user
>>>>>>>>>>>> https://fedoraproject.org/wiki/User:Alick
>>>>>>>>>>>> --
>>>>>>>>>>>> Fedora中文郵件列表:
>>>>>> https://admin.fedoraproject.org/mailman/listinfo/chinese
>>>>>>>>>>>> 
>>>>>>>>>>> --
>>>>>>>>>>> Fedora中文郵件列表:
>>>>>> https://admin.fedoraproject.org/mailman/listinfo/chinese
>>>>>>>>>> 
>>>>>>>>>> Cheers,
>>>>>>>>>> 
>>>>>>>>>> Easior Lars
>>>>>>>>>> 
>>>>>>>>>> easior.lars at yahoo.com
>>>>>>>>>> www.shlug.org
>>>>>>>>>> 
>>>>>>>>>> --
>>>>>>>>>> Fedora中文郵件列表:
>>>> https://admin.fedoraproject.org/mailman/listinfo/chinese
>>>>>>>>>> 
>>>>>>>>> --
>>>>>>>>> Fedora中文郵件列表:
>>>> https://admin.fedoraproject.org/mailman/listinfo/chinese
>>>>>>>> 
>>>>>>>> Cheers,
>>>>>>>> 
>>>>>>>> Easior Lars
>>>>>>>> 
>>>>>>>> easior.lars at yahoo.com
>>>>>>>> www.shlug.org
>>>>>>>> 
>>>>>>>> --
>>>>>>>> Fedora中文郵件列表:
>> https://admin.fedoraproject.org/mailman/listinfo/chinese
>>>>>>>> 
>>>>>>> --
>>>>>>> Fedora中文郵件列表:
>> https://admin.fedoraproject.org/mailman/listinfo/chinese
>>>>>> 
>>>>>> Cheers,
>>>>>> 
>>>>>> Easior Lars
>>>>>> 
>>>>>> easior.lars at yahoo.com
>>>>>> www.shlug.org
>>>>>> 
>>>>>> --
>>>>>> Fedora中文郵件列表:https://admin.fedoraproject.org/mailman/listinfo/chinese
>>>>>> 
>>>>> --
>>>>> Fedora中文郵件列表:https://admin.fedoraproject.org/mailman/listinfo/chinese
>>>> 
>>>> Cheers,
>>>> 
>>>> Easior Lars
>>>> 
>>>> easior.lars at yahoo.com
>>>> www.shlug.org
>>>> 
>>>> --
>>>> Fedora中文郵件列表:https://admin.fedoraproject.org/mailman/listinfo/chinese
>>>> 
>>> --
>>> Fedora中文郵件列表:https://admin.fedoraproject.org/mailman/listinfo/chinese
>> 
>> Cheers,
>> 
>> Easior Lars
>> 
>> easior.lars at yahoo.com
>> www.shlug.org
>> 
>> --
>> Fedora中文郵件列表:https://admin.fedoraproject.org/mailman/listinfo/chinese
>> 
> --
> Fedora中文郵件列表:https://admin.fedoraproject.org/mailman/listinfo/chinese

Cheers,

Easior Lars

easior.lars at yahoo.com
www.shlug.org



More information about the Chinese mailing list