码迷,mamicode.com
首页 >  
搜索关键字:yum remove    ( 31616个结果
Ubuntu下安装fcitx搜狗、谷歌等输入法
话不多说,直接上代码:sudo apt-get remove ibussudo apt-get install fcitx fcitx-config-gtk im-switchsudo dpkg -i *.debsudo apt-get -f installsudo dpkg -i *.debsud...
分类:其他好文   时间:2014-05-06 01:11:53    阅读次数:269
Leetcode: Remove Duplicates from Sorted List
遇到的问题:input{1,1,1}, output{1,1}, expected{1}, 原因在于若temp.val==temp.next.val, 则需要temp.next=temp.next.next, 这时候就不要temp=temp.next了注意停止条件不光是temp!=null,还应该有...
分类:其他好文   时间:2014-05-05 22:47:08    阅读次数:454
LAMP架构之PHP-FPM 服务器
PHP简介安装PHP解决依赖关系# 请配置好yum源(系统安装源及epel源)后执行如下命令:yum -y groupinstall "Desktop Platform Development"yum -y install bzip2-devel libmcrypt-devel mhash-deve...
分类:Web程序   时间:2014-05-05 22:14:58    阅读次数:404
【LeetCode】Remove Element
题目: Given an array and a value, remove all instances of that value in place and return the new length. The order of elements can be changed. It doesn't matter what you leave beyond the new len...
分类:其他好文   时间:2014-05-05 12:58:57    阅读次数:294
Leetcode: Remove Elements
一次性通过的,比较顺利,从读题到编写到检查到通过,14分50秒,我在不断进步中,相信经过一段时间联系,这种题可以一眼就写出来,不超过5分钟。这道题应该说方法跟 Remove Duplicates from sorted Array挺类似的My Solution: 1 public class Sol...
分类:其他好文   时间:2014-05-02 12:56:10    阅读次数:260
异常configure: *** apu library not found.
安装modsecurity时,出现“configure: *** apu library not found.”。      解决方法: yum install apr-util-devel...
分类:其他好文   时间:2014-05-02 10:52:44    阅读次数:433
错误gcc -O2 -Wall -DLUA_COMPAT_ALL -DLUA_USE_LINUX -c -o lua.o lua.clua.c:67:31: error:
编译Lua时,出现这样的错误: gcc -O2 -Wall -DLUA_COMPAT_ALL -DLUA_USE_LINUX -c -o lua.o lua.clua.c:67:31: error:       查阅了一下,centOS上需要安装readline-devel ncurses-devel yum install readline-devel ncurses-devel  ...
分类:系统相关   时间:2014-05-02 07:03:00    阅读次数:455
yum提示another app is currently holding the yum lock;waiting for it to exit
强制关掉yum进程:#rm-f/var/run/yum.pid然后就可以使用yum了。
分类:移动开发   时间:2014-05-02 04:18:15    阅读次数:371
vector中的删除,earse和remove的小疑惑--【STL】
对于vector容器的使用,平时只是简单的进行遍历查找一下,未曾进行其它操作,这不,今天出了一点差错; earse方法的操作是将此时的节点删除,然后指向被删除节点的下一个: 如对数据1 6 6 4 7;...
分类:其他好文   时间:2014-05-01 18:47:34    阅读次数:501
使用ssh过程中对数据库进行update时报错
org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.NEVER) - turn your Session into FlushMode.AUTO or remove 'readOnly' marker from transaction definition...
分类:数据库   时间:2014-05-01 18:16:35    阅读次数:377
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!