码迷,mamicode.com
首页 >  
搜索关键字:ln -s    ( 1954个结果
mac 下面 vagrant 遇到的问题
最近在聚美用vagrant来装环境,遇到了在配置文件里修改ip地址后,在虚拟机下的ip并没有改变,后来发现是因为网卡设置的问题。 用一下命令解决。 ln -sf /dev/null /lib/udev/rules.d/75-persistent-net-generator.rules ...
分类:其他好文   时间:2014-07-16 23:23:55    阅读次数:218
把qemu-system-x86_64链接qemu-kvm
安装完kvm后生成一个qemu-system-x86_64文件目录,使用的KVM命令为qemu-system-x86_64,为了方便使用,把qemu-system-x86_64链接qemu-kvm[root@node2qemu-kvm.git]#whichqemu-system-x86_64/usr/local/bin/qemu-system-x86_64[root@node2qemu-kvm.git]#ln/usr/local/bin/qemu-s..
分类:其他好文   时间:2014-07-14 12:02:38    阅读次数:712
LeetCode——Reorder List
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 {1,2,3,4}, reorder it t...
分类:其他好文   时间:2014-07-10 20:43:37    阅读次数:210
Yii隐藏入口文件index.php
1、开启apache的mod_rewrite模块#去掉LoadModulerewrite_modulemodules/mod_rewrite.so前的“#”符号 #如果是ubuntu系统,系统默认是开启rewrite的 cd/etc/apache2/mods-enabled #查看是否有rewrite.load链接文件,如果没有则建立链接文件 cd/etc/apache2/mods-enabled ln-s../..
分类:Web程序   时间:2014-07-10 19:17:11    阅读次数:286
codeblocks设置post-build steps
我原先设置:cdbin/Debugln-slibcrafter.so.0.0.2libcrafter.so结果不正常。改为:cdbin/Debug&&ln-slibcrafter.so.0.0.2libcrafter.so就正常了。不知掉Debug/Release如何统一设置。类似于cdbin/$target&&ln-slibcrafter.so.0.0.2libcrafter.so
分类:其他好文   时间:2014-07-08 08:20:04    阅读次数:563
Problem Reorder List
Problem Description:Given a singly linked listL: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 no...
分类:其他好文   时间:2014-07-07 16:41:56    阅读次数:141
linux软连接和硬连接
1.Linux链接概念 Linux链接分两种,一种被称为硬链接(Hard Link),另一种被称为符号链接(Symbolic Link)。默认情况下,ln命令产生硬链接。 【硬连接】 硬连接指通过索引节点来进行连接。在Linux的文件系统中,保存在磁盘分区中的文件不管是什么类型都给它分配一个编号,称为索引节点号(Inode Index)。在Linux中,多个文件名指向同一索引节点是存在的...
分类:系统相关   时间:2014-07-03 15:56:55    阅读次数:318
Reorder List
题目 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 {1,2,3,4}, re...
分类:其他好文   时间:2014-07-01 08:39:24    阅读次数:181
LeetCode: Reorder List [143]
【题目】 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 {1,2,3,4}, reorder it to {1,4,2,3}. 【题意】 给定一个链表L: L0→L1→…→Ln-1→Ln,对他重新排序成L...
分类:其他好文   时间:2014-06-30 10:11:14    阅读次数:158
[再寄小读者之数学篇](2014-06-26 Logarithmical Sobolev inequality using BMO space)
$$\bex q>3\ra \sen{\n f}_{L^\infty} \leq C(q)\sez{ 1+\sen{\n f}_{BMO} \ln^\frac{1}{2}\sex{e+\sen{\n f}_{W^{1,q}}+\sen{f}_{L^\infty}} }. \eex$$ $$\bex ...
分类:其他好文   时间:2014-06-27 11:12:18    阅读次数:132
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!