默认字体不好分辨,修改:sudo dpkg-reconfigure console-setup选择:utf-8,Guess...,VGA,8X16。默认的ls的目录颜色也太深,看不清楚,修改成绿色,在~/.profile中添加:export LS_COLOR='rs=0:di=01;32:ln=01...
分类:
其他好文 时间:
2014-07-24 22:32:42
阅读次数:
308
1.登录火狐主页下载最新版本firefox-31.0.tar.bz2解压: tar -jxvf firefox-31.0.tar.bz22.然后把旧版本的firefox卸掉# yum erase firefox3.放到usr/local下mv firefox /usr/local/做好链接ln -s...
分类:
其他好文 时间:
2014-07-24 22:03:22
阅读次数:
373
先安装Xcode最新版本1、创建软链接sudo ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include /usr/incl...
分类:
Web程序 时间:
2014-07-23 15:43:19
阅读次数:
329
document.write()和document.writeln()有什么区别解决思路: 两者都是JavaScript向客户端输出的方法,对比可知写法上的差别是一个ln--line的简写,换言之,writeln 方法是以行输出的,相当于在 winte 输出后加上一个换行符。具体步骤:1.打开一个....
分类:
其他好文 时间:
2014-07-23 14:54:36
阅读次数:
505
1.在 /etc/apache2/mods-enabled 目录下创建 ln -s ../mods-available/rewrite.load rewrite.load rewrite.load -> ../mods-available/rewrite.load rewrite.load文件中内容 LoadModule rewrite_module /usr/lib...
分类:
数据库 时间:
2014-07-23 00:34:57
阅读次数:
196
Linux ln命令详解及使用
ln是linux中一个非常重要命令,它的功能是为某一个文件在另外一个位置建立一个不同的链接,这个命令最常用的参数是-s,具体用法是:ln –s 源文件 目标文件。
1. ln命令概述
当我们需要在不同的目录,用到相同的文件时,我们不需要在每一个需要的目录下都放一个必须相同的文件,我们只要在某个固定的目录,放上该文件,然后在其它的目录下用ln命令链接(link)它就可以,不必重复的占用磁盘空间。例如:ln–s /bin/less /usr/local/bin/...
分类:
系统相关 时间:
2014-07-22 22:39:53
阅读次数:
253
Ubuntu12.04默认的shell是dash。查看当前shell的指向 ls -ls /bin/shsudo unlink /bin/shls -ls /bin/sh 此步可以跳过sudo ln -s /bin/bash /bin/shls -ls /bin/sh此步可以跳过
分类:
其他好文 时间:
2014-07-22 00:30:34
阅读次数:
195
Reorder ListGiven 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 nodes' val...
分类:
其他好文 时间:
2014-07-22 00:16:36
阅读次数:
230
Frogs' Neighborhood
Time Limit: 5000MS
Memory Limit: 10000K
Total Submissions: 6898
Accepted: 3006
Special Judge
Description
未名湖附近共有N个大小湖泊L1, L2, ..., Ln(...
分类:
其他好文 时间:
2014-07-21 22:16:48
阅读次数:
319
最近想在centos下做Android项目构建,配置好jdk和Android sdk后,同时也在/etc/profile将java和Android的环境变量配置进去,但是却无法像windows 下一样,直接使用android update project命令。
出现情况如下:bash:
android: command not found
此时,我们可以使用ln命令将android 添加到...
分类:
其他好文 时间:
2014-07-21 22:14:17
阅读次数:
653