每次遇到这种错误就头痛,不知道要害死多少脑细胞了,就在这里做个总结吧 可能会遇到这几种错误: Undefined symbols for architecture armv7 Undefined symbols for architecture armv7s Undefined symbols for...
分类:
其他好文 时间:
2015-01-03 13:26:34
阅读次数:
447
cd:改变当前的工作目录。 pwd:显示当前的工作目录名,比如位于文件系统中的哪里。 basename:显示文件路径中末端部分。 dirname:显示文件路径中末端之外部分。 mkdir:创建目录。 rmdir:删除空目录。 rm-r:删...
分类:
系统相关 时间:
2015-01-03 13:26:34
阅读次数:
220
环境:Centos6.0-x86_64集群使用三台服务器组成Glusterfs集群,其中两台服务器提供NFS和Rsync服务用于备份每台服务器2块网卡eth0对应内网、eth1对应外网,Glusterfs简介:GlusterFS是Scale-Out存储解决方案Gluster的核心,它是一个开源的分布式文件系统,具有强大的横向扩展能..
分类:
其他好文 时间:
2015-01-03 13:27:20
阅读次数:
701
本文也同步到微博文章:http://www.weibo.com/p/1001603794633820899146现在能找到的学习资料很多,但是除了书籍以外,几乎没有什么系统的。如何找到一本适合自己的书,其实这里面坑很多。一、专业类技术书籍分成几种?1.101类国内作者绝大部分是这种书。入门级。难点在于深入..
分类:
其他好文 时间:
2015-01-03 13:25:58
阅读次数:
151
centos将本地光盘做为yum源,方便解决依赖包问题:1./etc/yum.repos.d目录下有两个文件:CentOS-Base.repo(联网yum安装)、CentOS-Media.repo(本地yum源)viCentOS-Media.repo[c5-media]name=CentOS-$releasever-Mediabaseurl=file:///media/此处为挂载目录(挂载点)gpgchec..
分类:
其他好文 时间:
2015-01-03 13:26:06
阅读次数:
154
养成好习惯,先备份一下/etc/yum.repos.d/下面的repo文件1.挂载光盘mount/dev/cdrom/media/2.新建本地yun源的配置文件vi/etc/yum.repos.d/local.repo加入以下信息:[Local]name=Localbaseurl=file:///media/enable=1gpgcheck=03.完成,进行使用先清缓存yumcleanall再更新缓存yu..
分类:
其他好文 时间:
2015-01-03 13:26:16
阅读次数:
185
经常见到客户利用vnc连接linux图形化桌面,自己也动手弄来玩玩1.linux上面安装vncserveryuminstallvnc*2./etc/init.d/vncserverstart失败vi/etc/sysconfig/vncservers最后两行3./etc/init.d/vncserverstart失败,提示couldnotopendefaultfont‘fixed‘错误主要是缺少相关字体,yu..
LeetCode8,手写atoi,一大堆判断。。。最好记录408ms,约为5%。经验4:如何经济的判断溢出经验5:让不合法的输入第一时间return0;经验6:对于javascript里那一堆isxxx的函数,对应在Java的Character类下2.LeetCode4求两个升序数组的中位数网上大部分解法都是错误的,和我犯了一..
分类:
其他好文 时间:
2015-01-03 13:26:05
阅读次数:
252
ansible推送ssh公钥1管理机器少的情况下可以直接推送过去使用ssh-keygen-trsa生成密钥对,!miyaoQQ截图20141225124030.png!id_rsa私钥,保留在主机,id_rsa.pub是公钥需要推送到管理机器上,并重命名为authorized_keys文件推送到远程机器ssh-copy-id-i~/.ssh/id_rsa.pubusernam..
分类:
其他好文 时间:
2015-01-03 13:23:55
阅读次数:
184
ansible推送ssh公钥1管理机器少的情况下可以直接推送过去使用ssh-keygen-trsa生成密钥对,!miyaoQQ截图20141225124030.png!id_rsa私钥,保留在主机,id_rsa.pub是公钥需要推送到管理机器上,并重命名为authorized_keys文件推送到远程机器ssh-copy-id-i~/.ssh/id_rsa.pubusernam..
分类:
其他好文 时间:
2015-01-03 13:24:19
阅读次数:
190
https://oj.leetcode.com/problems/sudoku-solver/http://blog.csdn.net/linhuanmars/article/details/20748761publicclassSolution{
publicvoidsolveSudoku(char[][]board){
resolve(board,0,0);
}
privatebooleanresolve(char[][]b,//currentboard
inti,//currentrow
intj)/..
分类:
其他好文 时间:
2015-01-03 13:24:47
阅读次数:
155
https://oj.leetcode.com/problems/first-missing-positive/http://blog.csdn.net/linhuanmars/article/details/20884585publicclassSolution{
publicintfirstMissingPositive(int[]A){
//如果可以排序,排序后从1开始检查
//如果一个数为3,把它置换到第三个空格
//i不动,..
分类:
其他好文 时间:
2015-01-03 13:25:09
阅读次数:
133
https://oj.leetcode.com/problems/multiply-strings/http://blog.csdn.net/linhuanmars/article/details/20967763importjava.math.BigInteger;
publicclassSolution{
publicStringmultiply(Stringnum1,Stringnum2)
{
//SolutionB:
//returnmultiply_Cheating(num1,num2);
//..
分类:
其他好文 时间:
2015-01-03 13:24:48
阅读次数:
158
https://oj.leetcode.com/problems/jump-game-ii/http://blog.csdn.net/linhuanmars/article/details/21356187publicclassSolution{
publicintjump(int[]A)
{
//[2,3,1,1,4]
//[2,1,2,1,0]
if(A==null||A.length<=1)
return0;
intlen=A.length;
intstart=0;
intend=0;
int..
分类:
其他好文 时间:
2015-01-03 13:23:05
阅读次数:
159
https://oj.leetcode.com/problems/permutations-ii/http://blog.csdn.net/linhuanmars/article/details/21570835publicclassSolution{
publicList<List<Integer>>permuteUnique(int[]num)
{
//SolutionA:
//returnpermuteUnique_Swap(num);
//SolutionB:
returnp..
分类:
其他好文 时间:
2015-01-03 13:21:53
阅读次数:
143
https://oj.leetcode.com/problems/rotate-p_w_picpath/http://blog.csdn.net/linhuanmars/article/details/21503683publicclassSolution{
//Assumeitisan*n.
publicvoidrotate(int[][]matrix)
{
//SolutionA:
//rotate_ExtraMatrix(matrix);
//SolutionB:
rotate_TwoRotate(..
分类:
其他好文 时间:
2015-01-03 13:23:23
阅读次数:
309
https://oj.leetcode.com/problems/anagrams/http://blog.csdn.net/linhuanmars/article/details/21664747publicclassSolution{
publicList<String>anagrams(String[]strs){
intlen=strs.length;
Map<Map<Integer,Integer>,List<String>>map=newHash..
分类:
其他好文 时间:
2015-01-03 13:22:23
阅读次数:
194