码迷,mamicode.com
首页 >  
搜索关键字:yum another copy is running    ( 41280个结果
第十二周项目3-摩托车继承自行车和电动车
#include #include #include using namespace std; enum vehicleStaus {rest, running}; //车辆状态:泊车、行进 class vehicle //车辆类,虚基类 { protected: int maxSpeed; //最大车速 int currentSpeed;...
分类:其他好文   时间:2014-05-15 15:05:01    阅读次数:262
yum的使用
YUMde使用YUM的使用yum是一个强大的软件管理工具 可以自动解决软件依赖的问题YUM配置文件分析enable 该选项控制该配置文件是否使用 gpgkey 校验文件选项baseurl yum源的地址YUM常用命令安装软件: yum install -y -y参数表示不使用交互式安装卸载文件...
分类:其他好文   时间:2014-05-15 10:26:17    阅读次数:236
IOS 函数内 autorelease release
在一个有reurn 返回值的函数里 如果申请了一段内存的话(alloc 或者copy) 这个时候不能够release  只能够使用autorelease 在返回到那个被接受到的指针里,由它去进行释放!! 如果是self.obj(或者某些类对应的   SomeClass.obj)这种类型的,就需要把self.去掉(因为这样子的申请出来的内存引用计数会被retain+1了) ...
分类:移动开发   时间:2014-05-15 04:40:44    阅读次数:369
Git 服务器搭建与客户端安装
大纲:一、前言二、搭建Git服务器yum安装Git服务器创建一个git用户,用来运行git服务创建客户端登录证书初始化Git仓库禁用shell登录克隆远程仓库三、安装客户端Windows客户端Linux客户端四、总结注,测试机CentOS5.5x86_64,Git服务器版本:gitversion1.8.2.1,客户端版本:git..
分类:其他好文   时间:2014-05-15 03:11:55    阅读次数:428
12周 项目3 摩托车继承机动车和自行车
#include #include #include using namespace std; enum vehicleStaus {rest, running}; //车辆状态:泊车、行进 class vehicle //车辆类 { protected: int maxSpeed; //最大车速 int currentSpeed; //当前速度 int weigh...
分类:其他好文   时间:2014-05-15 01:26:09    阅读次数:403
添加ssh无密码认证
#(1)ssh-keygen#一直回车#(2)ssh-copy-id-i/root/.ssh/id_rsa.pub"-p2223192.168.0.100"#直接回车输入密码#(3)ssh-p2223192.168.0.100#不需要任何提示即可登录192.168.0.100,此步骤可做测试使用
分类:其他好文   时间:2014-05-15 01:04:19    阅读次数:277
LAMP系列之PHP编译过程中常见错误信息的解决方法
LAMP系列之PHP编译过程中常见错误信息的解决方法在CentOS编译PHP5的时候有时会遇到以下的一些错误信息,基本上都可以通过yum安装相应的库来解决。以下是具体的一些解决办法:*******************************************************************************checkingforBZip2..
分类:Web程序   时间:2014-05-15 00:51:58    阅读次数:445
hadoop-mapreduce中reducetask运行分析
ReduceTask的运行 Reduce处理程序中需要执行三个类型的处理, 1.copy,从各map中copy数据过来 2.sort,对数据进行排序操作。 3.reduce,执行业务逻辑的处理。 ReduceTask的运行也是通过run方法开始, 通过mapreduce.job.reduce.shuffle.consumer.plugin.class配置shuffle的plugin, ...
分类:其他好文   时间:2014-05-14 20:23:57    阅读次数:519
对interface文件操作
old:autoloifaceloinetloopbackautoeth1ifaceeth1inetstaticaddress10.0.13.13netmask255.255.255.0autobr0ifacebr0inetstaticaddress1.1.1.1netmask255.255.255.0gateway1.1.1.1bridge_portseth0bridge_stpoffbridge_fd0bridge_maxwait0dns-nameservers202.106.0.20202.106.1..
分类:其他好文   时间:2014-05-14 17:54:12    阅读次数:216
string wstring
//只扩展为wstring,不考虑编码 std::wstringString2WString(conststd::string&str) { std::wstringwstr(str.length(),L‘‘); std::copy(str.begin(),str.end(),wstr.begin()); returnwstr; } //只拷贝低字节至string中 std::stringWString2String(conststd::wstring&ws..
分类:其他好文   时间:2014-05-14 15:58:11    阅读次数:262
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!