- 浏览: 614374 次
- 性别:
- 来自: 上海
最新评论
-
月光杯:
问题解决了吗?
Exceptions in HDFS -
iostreamin:
神,好厉害,这是我找到的唯一可以ac的Java代码,厉害。
[leetcode] word ladder II -
standalone:
One answer I agree with:引用Whene ...
How many string objects are created? -
DiaoCow:
不错!,一开始对这些确实容易犯迷糊
erlang中的冒号 分号 和 句号 -
standalone:
Exception in thread "main& ...
one java interview question
文章列表
1、使用shell变量$RANDOMecho $RANDOM
2、使用awk的随机函数awk 'BEGIN{srand();print rand()}'
3、使用系统设备文件/dev/random 和 /dev/urandomdd if=/dev/random | od -a |sed 's/[^ ]*//;s/ //g' | head -3或dd if=/dev/urandom | od -a |sed 's/[^ ]*//;s/ //g' | head -3例,产生9个0-33之间的随机数,如下dd if=/dev/urandom | od -a |sed 's/[^ ]*//;s/[^ ...
http://bash-hackers.org/wiki/doku.php/mirroring/bashfaq/026
http://www.linuxsir.org/bbs/thread98905.html
http://arstechnica.com/business/news/2009/10/latest-migrations-show-ssd-is-ready-for-some-datacenters.ars
1. save floor space.
2. cost saving in the long run: take power and cooling cost into count, a datacenter usually spend 40 of its budge in power and cooling. Using SSD can save 80% cooling ...
hadoop version 0.19.1
Modify two files:
1. bin/hadoop-daemon.sh: set HADOOP_ROOT_LOGGER.
2. src/mapred/org/apache/hadoop/mapred/TaskRunner.java: set -Dhadoop.root.logger.
“can’t create transaction lock on /var/lib/rpm/__db.000”错误解决
软件安装时注意用root权限。
- 2009-10-23 09:12
- 浏览 2312
- 评论(0)
一、下载java.sun.com
jdk-6u2-linux-i586-rpm.bin文件
二、运行
sh jdk-6u2-linux-i586-rpm.bin
按多次回车后出现
Do you agree to the above license terms? [yes or no]
输入yes
三、编辑环境变量
$vi ~/.bashrc
加入如下五行:
JAVA_HOME=/usr/java/jdk1.6.0_02
JAVA_BIN=/usr/java/jdk1.6.0_02/bin
...
- 2009-10-23 09:11
- 浏览 847
- 评论(0)
假设我mount A机器上的目录到 B机器上
共享目录的uid在B机器上显示的时候其uid是保持不变的,但owner会按照B机器上/etc/passwd里面和该uid相匹配的owner显示。
- 2009-10-22 19:59
- 浏览 1322
- 评论(0)
NFS does not work
- 博客分类:
- linux
Starting NFS services: [ OK ]Starting NFS quotas: [ OK ]Starting NFS daemon: [ OK ]Starting NFS mountd: [ OK ]Starting RPC idmapd: FATAL: Module sunrpc not found.FATAL: Error running install command for sunrpc
solution:
Add the following to /etc/fstabsunrpc /var/lib/nfs/rpc_pipefs rpc_pipefs aut ...
- 2009-10-21 09:19
- 浏览 1165
- 评论(0)
两个list
()类型相减
就是比如
a=[1,2,3,4,5]
b=[2,3,4]
a-b需要得到[1,5]
但是python
list
不支持减法
只能使用py的投机取巧了~ 呵呵
我们来用set()
如下
<code l=python
>
print list
(set(a)-set(b))
[1,5] #结果
- 2009-10-16 09:00
- 浏览 8226
- 评论(0)
Record SizeRecord Size 也就是通常所说的文件系统的block size。ZFS采用的是动态的Record Size,也就是说ZFS会根据文件大小选择*适合*的512字节的整数倍作为存储的块大小,最大的RecordSize为128KB。通常没有必要手工设置Record Size。如果手工把Record Size调小,将不会得到空间的节省,并且常常会影响性能。ZFS的Block是计算checksum的单位,一个文件用到的block越多,计算checksum以及维护metadata的开销就会越大。目前ZFS的版本下,只有一种情况需要手工调小Record Size:大文件上的小数据 ...
http://blogs.sun.com/bjoyes/entry/zfs
Zfs is a transaction-based filesystem, as ZFS makes copy-on-write operations when there are modifications of files from filesystems, by transactions. This means that we theorically should have on disks at a given moment a kind of versioning of data, so an i ...
Solaris10 x86虽然可以跑起来,但有很多方面都用这和以前不大一样,有点不习惯。本文主要讲的是Solaris中Shell的一些问题即解决方法。安装完毕系统后,Solaris的默认Shell是sh,即命令行提示符为(本文中所讲的都是root用户,其他权限的用户也是同样的方法):#而在用Linux命令行的提示符中既有用户名,还有主机名称以及当前路径的名称。这样可以给人一目了然的感觉。不过Linux下一般默认Shell是bash,而不是sh。如果只想在当前的使用中切换Shell的话,方法很简单,可以在命令行中输入:#bash //切换至bash或者#csh //切换至csh如果需要永久性的改变 ...
- 2009-10-13 15:27
- 浏览 2391
- 评论(0)
什么时候你应该使用 from module import?
如果你要经常访问模块的属性和方法,且不想一遍又一遍地敲入模块名,使用 from module import。
如果你想要有选择地导入某些属性和方法,而不想要其它的,使用 from module import。
如果模块包含的属性和方法与你的某个模块同名,你必须使用 import module 来避免名字冲突。
除了这些情况,剩下的只是风格问题了,你会看到用两种方式编写的 Python 代码。
尽量少用 from module import * ,因为判定一个特殊的函数或属性是从哪来的有些困 ...
- 2009-10-12 17:00
- 浏览 1104
- 评论(0)