码迷,mamicode.com
首页 >  
搜索关键字:find grep    ( 34568个结果
linux源码编译安装php出现 cannot find -lltdl
原因:在编辑php时添加的“–with-mcrypt”选项造成。解决方法:1、如果不需要mcrypt,那么编辑php时去掉该选项,然后再make、make install。2、如果需要mcrypt,那么需要安装libltdllibltdl在libmcrypt软件包中就有,具体过程:#cd /soft...
分类:Web程序   时间:2014-06-18 23:29:26    阅读次数:252
centos 安装五笔
没有五笔怎么打字!ctrl + alt + [F2 - F6]进入控制台模式f2 - f6是五个控制台,想进哪个进哪个!进入之后用alt + [F2 - F6]来切换不同的控制台输入root / 密码# yum list|grep wubi 使用这个命令来看看有哪些可以安装的五笔包,出来一个:ib....
分类:其他好文   时间:2014-06-15 11:28:43    阅读次数:218
Leetcode:Triangle
Decription:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, gi...
分类:其他好文   时间:2014-06-14 19:46:12    阅读次数:251
shell命令(4)——sed, paste
sed命令 sed --helpsed是非交互式的编辑器,它不会修改文件,默认把结果都打印到屏幕上。sed的用法有很多,这里只介绍一下常用的1、删除一个文件的某些行,或取出文件中得某些行删除c中得第2~4行:取出第1~3行:删除包含'1'的行到包含'9'的行:sed不像grep,不管是否找到指定的模...
分类:其他好文   时间:2014-06-14 19:40:08    阅读次数:280
<Linux下FTP服务的搭建>
默认安装好ftp软件包匿名用户是可以下载的。匿名以后可以上传:anon_upload_enable=YES# getsebool -a | grep ftpallow_ftpd_anon_write --> onchcon -t public_content_rw_t pubchmod 775 pu...
分类:系统相关   时间:2014-06-14 19:21:33    阅读次数:344
【linux】linux下能ping通ip 但是不能ping通域名
经过一翻查找后解决了,原因和方法如下:[root@~]# grep host /etc/nsswitch.conf#hosts: db files nisplus nis dnshosts: files主机只找文件不走dns,将其该成hosts: files dns 即可!
分类:系统相关   时间:2014-06-14 17:54:21    阅读次数:283
LeetCode OJ平台上Maximum Subarray题目O(n)复杂度解决方案
原始题目如下,意为寻找数组和最大的子串,返回这个最大和即可。 Find the contiguous subarray within an array (containing at least one number) which has the largest sum. For example, given the array [?2,1,?3,4,?1,2,1,?5,4], the...
分类:其他好文   时间:2014-06-14 15:08:00    阅读次数:224
find
一、find 命令格式1、find命令的一般形式为;find pathname -options [-print -exec -ok ...]2、find命令的参数;pathname: find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。-print: find命令将匹配的....
分类:其他好文   时间:2014-06-14 13:49:54    阅读次数:251
[LeetCode]3Sum,解题报告
题目 Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: Elements in a triplet (a,b,c) ...
分类:其他好文   时间:2014-06-14 12:45:13    阅读次数:209
hive学习系列1——Mysql安装
安装mysql (1)执行命令rpm -qa |grep mysql 查看mysql是否安装 删除linux上已经安装的mysql相关库信息。rpm -e xxxxxxx(查看的库名,可使用右键复制) --nodeps 执行命令rpm -qa |grep mysql 检查是否删除干净 (2)执行命令...
分类:数据库   时间:2014-06-14 12:13:32    阅读次数:284
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!