Linux 命令大全 1、文件管理 cat chattr chgrp chmod chown cksum cmp diff diffstat file find git gitview indent cut ln less locate lsattr mattrib mc mdel mdir mktemp more mmove mread mren mtools mtool...
分类:
系统相关 时间:
2014-08-17 17:13:03
阅读次数:
541
Linux 命令大全
Linux 命令大全
1、文件管理
cat
chattr
chgrp
chmod
chown
cksum
cmp
diff
diffstat
file
find
git
gitview
indent
cut
ln
...
分类:
系统相关 时间:
2014-08-16 18:34:21
阅读次数:
547
Problem Description:
Given a singly linked list L: L0→L1→…→Ln-1→Ln,
reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…
You must do this in-place without altering the nodes' values.
For example,
Given...
分类:
其他好文 时间:
2014-08-15 22:34:39
阅读次数:
330
之前在我的blog中写过一篇关于ln命令的文章,详见:http://blog.csdn.net/jievisionvanish/article/details/38372921
里面谈到如果删除了原文件,符号链接将指向不存在的文件路径,变成无效链接。今天在工作整好遇到这样的问题,整好可以配合之前谈到的现象来个有图有真相的总结,废话不说,直接上图:
可以看到我将之前的文件夹的名字由lig...
分类:
其他好文 时间:
2014-08-15 16:11:38
阅读次数:
173
Frogs' Neighborhood
Time Limit: 5000MS
Memory Limit: 10000K
Total Submissions: 7295
Accepted: 3150
Special Judge
Description
未名湖附近共有N个大小湖泊L1, L2, ..., Ln(其中包括未名...
分类:
其他好文 时间:
2014-08-14 16:44:48
阅读次数:
197
安装mariadb到/usr/local/下解压到该目录#tarxfmariadb-5.5.36-linux-x86_64.tar.gz-C/usr/local/为后期方便升级使用给mariadb-5.5.36-linux-x86_64创个链接#ln-svmariadb-5.5.36-linux-x86_64/mysql。mysql的数据库文件默认是在/usr/local/mysql/data/下的,随着数据的增加,..
分类:
数据库 时间:
2014-08-14 03:58:28
阅读次数:
440
我这方法是通过expect实现的。安装expectyuminstall-yexpect操作:[root@ln-slave~]#cattest.sh/usr/local/mysql/bin/mysql-e"selectversion();"[root@ln-slave~]#lltest.sh-rwxr-xr-x1rootroot5008-1316:44test.sh[root@ln-slave~]#shtest.sh+------------+|version()|+------..
分类:
数据库 时间:
2014-08-13 19:14:08
阅读次数:
424
最近安装libevent, 运行的时候报错:大意是找不到libevent-2.1.so.4
在安装的时候,安装的位置是/usr/local,也做了软链接
ln -s /usr/local/lib/libevent-2.1.so.4 /usr/lib/libevent-2.1.so.4
在运行时就是报错,网上查找了下,原来还有其它道道,新人伤不起。
以libevent安装为示例:
...
分类:
系统相关 时间:
2014-08-13 13:11:38
阅读次数:
233
转载自:http://www.cnblogs.com/itech/archive/2009/04/10/1433052.html1.Linux链接概念Linux链接分两种,一种被称为硬链接(Hard Link),另一种被称为符号链接(Symbolic Link)。默认情况下,ln命令产生硬链接。【硬...
分类:
系统相关 时间:
2014-08-12 13:15:44
阅读次数:
230
题目链接:uva 11346 - Probability
题目大意:给定x,y的范围,以及s,问说在该范围内选取一点,和x,y轴形成图形的面积大于s的概率。
解题思路:首先达到方程xy ≥ s,即y = s / x。
S2的面积用积分计算,y = s / x的原函数为lnx
所以S2=s?(ln(a)?ln(x))
#include
#include
#inc...
分类:
其他好文 时间:
2014-08-12 00:47:53
阅读次数:
240