码迷,mamicode.com
首页 >  
搜索关键字:yum remove    ( 31616个结果
[leetcode]_Remove Nth Node From End of List
题目:移除linked-list从尾到头的第N个元素自我思路:因为题目给出的N是从链表尾开始计算的,单链表不存在从子指向父亲的反向指针,因此我先计算链表的整个长度len,然后用len - N来表示正向被删除元素所在的位置。代码:public ListNode removeNthFromEnd(Lis...
分类:其他好文   时间:2014-05-19 20:54:33    阅读次数:378
Leetcode | Remove Nth Node From End of List
Given a linked list, remove the nth node from the end of list and return its head.For example,Given linked list: 1->2->3->4->5, and n = 2.After removi...
分类:其他好文   时间:2014-05-19 09:16:49    阅读次数:247
linux SVN 服务搭建
SVN 客户端下载地址:http://tortoisesvn.net/downloads.htmlTips: 如果使用的是CenteOS 或 RedHat 请使用yum命令,其它如Debian、Ubuntu 就请使用apt-get命令。这里使用yum。使用RPM软件包管理,检查SVN是否已存在。St...
分类:系统相关   时间:2014-05-19 08:29:28    阅读次数:474
centos6.5解决方案-1
因为之前的版本python连带yum玩坏啦修不好,就重新安装了个cento6.5,顺便开始记下关于centos管理的种种。安装windows用ultro,linux用cat/dd 把dvd-iso1写到U盘上就可以(不需要删除pakcages和粘贴ios1,2),然后用U盘启动安装即可。iso1,2...
分类:其他好文   时间:2014-05-19 07:39:59    阅读次数:325
Install RHadoop with Hadoop 2.2 – Red Hat Linux
PrerequisiteHadoop 2.2 has been installed (and the below installation steps should be applied on each of Hadoop node)Step 1. Install R (by yum)[hadoop...
分类:系统相关   时间:2014-05-17 21:51:24    阅读次数:671
libvirt基于安装
64位,才可以安装KVM虚拟机。32位系统的内核默认没有把KVM模块编译进去,而且源中也没有与虚拟化相关的软件包,如Qemu等报device-mapper-devel/libdevmapper错误解决方法在Centos下 yum -y install device-mapper-devel;在Ub....
分类:其他好文   时间:2014-05-17 20:55:55    阅读次数:243
linux 遗留问题
1. yum命令,yum源配置与使用
分类:系统相关   时间:2014-05-17 20:23:19    阅读次数:233
解决Centos 6.3 中 gedit中文乱码问题
1、安装gconf-editor yum list | grep conf-editoryum install gconf-editor2、运行gconf-editor设置: apps ---> gedit-2 ---> preferences ----> encodingauto-detected...
分类:其他好文   时间:2014-05-17 18:18:56    阅读次数:215
LCOV 如何过滤iostream等系统函数的覆盖率信息
最近在做cppunit test相关工作,用gcov和lcov工具来查看每行代码的覆盖率,个人感觉lcov真棒,看起来很舒服,点起来也很爽!~~闲聊至此,如题:我使用的是lcov的 --remove命令Remove / filter out remaining unwanted stuff from...
分类:移动开发   时间:2014-05-17 18:11:48    阅读次数:505
centOS 6下安装java、tomcat
centOS6下安装javacentOS默认有java的运行环境(gcj),安装sun的jdk前先卸载gcj。卸载gcj:#java-version<-查看当前gcjjava的版本号(我这里得到的是1.4.2)#yum-yremovejava-1.4.2-gcj-compat<-卸载gcj(y参数表示在y/n提问时均回答y)#chmoda+xjdk-6u14-linux-i586-rm..
分类:编程语言   时间:2014-05-16 02:17:23    阅读次数:489
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!