有谁用过ltib吗?自己建的package打不进去。。。 全部按照要求来的。。。 错误提示: Cannot find spec file that contains the package name ××× If necessary please give the whole spec file name (with the .spec extension). 不知道怎么回事。 这个spec文件应该是rpm的包的sepc吧 郁闷。。。
ltib 编译Qtopia后还能保留源代码,使用命令:[chenxibing@localhost ltib]$ ./ltib -p qtopia -m prep 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/51797/showart_2070494.html
我是个linux新手,现在用的是ubuntu在制作一个简单的rpm安转包,采用的是rpmbuild -ba 但是运行完spec文件后只有.src.rpm文件,没有.i386.rpm文件,请问是怎么回事。
ubuntu的软件包格式是deb,如果要安装rpm的包,则要先用alien把rpm转换成deb。 sudo apt-get install alien #alien默认没有安装,所以首先要安装它 sudo alien xxxx.rpm #将rpm转换位deb,完成后会生成一个同名的xxxx.deb sudo dpkg -i xxxx.deb #安装 注意,用alien转换的deb包并不能保证100%顺利安装,所以可以找到deb最好直接用deb 有时候,我们想要使用的软件并没有被包含到 ubuntu 的仓库中,而程序本身也没有提供让 Ub...
//how to install rpm package on ubuntu rpm is another popular way of packaging software. It cannot be installed on ubuntu directly. But there does exist a command for convering an rpm into a Deb,then install it. For example: sudo alien -i *.rpm 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/56374/showart_538197.html
开发商原来给的ltib是unbuntu9.04的系统的,现在我把ltib安装在ubuntu10.04.02版本上,现在把ltib的内核变成2.6.35,编译成功后,把内核灌进开发板,程序运行到一半就停了,不知道是为什么,而且我用交叉编译器直接编译产生的内核也不行,产生同样的错误,运行到最后一行就停止了,我采用的是NAND启动 Frac 0x92925552 start change cpu freq hbus 0x00000003 cpu 0x00010001 start test memory accress ddr2 0x40000000 finish s...
在安装ltib时,出现错误: password for ltib: This means you don't have sudo permission to execute rpm commands as root without a password. This is needed for this build script to operate correctly. To configure this, as root using the command "/usr/sbin/visudo", and add the following line in the User privilege section: ltib ALL = NOPASSWD: /bin/rpm, /opt/freescale/ltib/usr/bin/rpm 或者 xxx is no...
在安装ltib For freescale iMX35时,出现这样的问题: password for ltib: This means you don't have sudo permission to execute rpm commands as root without a password. This is needed for this build script to operate correctly. To configure this, as root using the command "/usr/sbin/visudo", and add the following line in the User privilege section: ltib ALL = NOPASSWD: /bin/rpm, /opt/freescale/l...
使用的包的gcc-linaro-arm-linux-gnueabihf-4.9tar.gz,然后编写spec,如下: Summary: x86-linux hosted GCC arm-linux-gnueabihf cross compiler Name: gcc-linaro-arm-linux-gnueabihf Version:4.9 Release: 1%{?dist} License:GPL Group:Applications Source0: %{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Url: %description Gcchf is an cross_compile tool %pr...