- 浏览: 8669 次
- 性别:
- 来自: 成都
最新评论
文章列表
from http://blog.csdn.net/chengfei112233/article/details/8244839
1. 在干净系统中安装yum-downloadonly
yum install yum-downloadonly -y
2. 下载离线包
UUID+设备号序列号 唯一识别码(不可变)
private String getMyUUID(){
final TelephonyManager tm = (TelephonyManager) getBaseContext().getSystemService(Context.TELEPHONY_SERVICE);
final String tmDevice, tmSerial, tmPhone, androidId;
tmDevice = "" + tm.getDeviceId();
tmSerial = &qu ...
from http://hi.baidu.com/wang01ning/blog/item/6076e2ee2f3be4e3cf1b3e16.html
PHP的安装虽然有时候很简单,可是如果应用一多,我们安装起来就很头痛了!常见的就是PHP插件的安装问题最多了! 其实不管是你是Apache类的应用还是Nginx类的.PHP的安装都不是很简单,虽然网上很多configure,但是那不一定是适合你的,因为很多都直接关系着你的系统及系统版本和内核.那下面就进入正题 首先来一个最常见的就是configure: error: libjpeg.(a|so) not found ...
1. centos 5.4 安装,最简安装
2. 激活网卡 ifup eth0
引用ip地址。
在超级终端中输入:“ifconfig”将显示eth0等信息
bootproto=dhcp或者是static
#ipaddr=1.1.1.1,netmask=255.255.255.0 gateway=1.1.1.2
修改的时候直接编辑该文件即可,然后重启服务,service network restart
或者是暂时的ifconfig eth0 192.168.1.1 netmask 255.255.255.0
网关:
#route add default gw 192.168.1.1
修改、etc/ ...
一. cent os 5.4
引用1 yum install rpm-build
2 cd /usr/src/redhat/SOURCES
3 cp {sources源程序} ./ -dprv
4 tar -zcvf sources.tar.gz sources
5 cd /usr/src/redhat/SPECS
6 根据需要修改sources.spec
7 rpmbuild -bb sources.spec
8 cd /usr/src/redhat/RPMS/i386 #32位的系统
cd /usr/src/redhat/RPMS/x86_64 #64位的系统
9 scp s ...