ubuntu wine 安装 rtx

有的不用安装,这是我机器上.cache上所有的东西,下载过程有的软件找不到,google之。 {{{ sudo apt-get install wine winetricks baekmuk flash11 ie8 msxml6 unifont vcrun2008 win2ksp4 corefonts gdiplus msls31 takao vb6run vcrun6 dotnet40 ie6 msxml3 track_usage vcrun2005 wenquanyi }}}

安装 rtx regedit 下面的注册表,解决聊天记录乱码 {{{ REGEDIT4 [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\FontSubstitutes] "Arial"="simsun" "Arial CE,238"="simsun" "Arial CYR ...

more ...

locale错误

重新设置。 {{{ rm /var/lib/locales/supported.d/en rm /var/lib/locales/supported.d/zh cp /usr/share/i18n/SUPPORTED /var/lib/locales/supported.d/local vi /var/lib/locales/supported.d/local #保留en zh开头的行

locale-gen --purge }}}

more ...

nginx php 上传文件大小限制

在php.ini里面查看如下行: {{{ upload_max_filesize = 8M post_max_size = 10M memory_limit = 20M }}}

nginx主配置文件nginx.conf,找到http{}段,添加 {{{ client_max_body_size 20m; }}}

more ...

How can I change 'shmmax'

How can I change 'shmmax'

I have installed Oracle 9i on RedHat 9.

Current value of 'shmmax' is 33554432.

Some people recommend value of appr. 50% of the RAM.

I tried to change the value of 'shmmax' in two ways: {{{ 1. cat 268435456 > /proc/sys/kernel/shmmax 2. sysctl -w ...

more ...

vmware的linux内核补丁

http://pavlinux.ru/vmware/ 下载相应的内核的补丁,安装。 {{{

cd /usr/lib/vmware/modules;

wget http://pavlinux.ru/vmware/8.0.4/source.tar.lzma;

md5sum source.tar.lzma;

e37e41a818a47ec868bdb493197aaf63 source.tar.lzma

tar -xf source.tar.lzma;

vmware-modconfig --console --install-all;

}}} vmware版本,差不多就可以,主要是linux内核版本。

比如vmware 8.0.2, kernel 3.5.0 用 ...

more ...

r1.0.4 single node setup

= Single Node Setup = * [[http://hadoop.apache.org/docs/r1.0.4/single_node_setup.html#Purpose|Purpose]] * [[http://hadoop.apache.org/docs/r1.0.4/single_node_setup.html#PreReqs|Prerequisites]] * [[http://hadoop.apache.org/docs/r1.0.4/single_node_setup.html#Supported+Platforms|Supported Platforms]] * [[http://hadoop.apache.org/docs/r1.0.4/single_node_setup ...

more ...

bash记忆指令(向上下翻相关指令)

在 FreeBSD 裡面,要做到這樣非常方便,當我們在終端機輸入 vi 之後按下 Up 鍵,終端機會顯示之前下過的 vi 指令,這在常常使用 command 的使用者來講相當方便,也非常重要

在 FreeBSD 底下,只要在 .cshrc 裡面加上 {{{ bindkey “^W” backward-delete-word bindkey -k up history-search-backward bindkey -k down history-search-forward }}} 可是在 linux 底下要如何達到這樣呢,那就是 man bash『history-search-backward』,『history-search-forward』這兩個功能,對我來說非常重要,然而你 要達到這功能,就是利用 showkey 跟 bind 這兩個指令 ...

more ...

ubuntu安装java

到sun下载jdk-7u7-linux-x64.tar.gz

{{{ tar zxf jdk-7u7-linux-x64.tar.gz mv jdk1.7.0_07 /usr/lib/jvm update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/jdk1.7.0_07/bin/java" 1 update-alternatives --config java }}}

=== 参考 ===

首先将*.tar.gz解压

具体方法为:tar -xzvf *.tar.gz

假设得到的文件夹为java

将其移动到/usr/中

命令为:sudo mv java ...

more ...

安装python-ldap出错:

{{{ gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DHAVE_SASL -DHAVE_TLS -DHAVE_LIBLDAP_R -DHAVE_LIBLDAP_R -DLDAPMODULE_VERSION=2.4.10 -IModules -I/opt/openldap-RE24/include -I/usr/include/sasl -I/usr/include -I/usr/include/python2.7 -c Modules/LDAPObject.c -o build/temp.linux-x86_64-2.7/Modules/LDAPObject.o

Modules/LDAPObject.c ...

more ...

linux用apt-get安装软件总出错

{{{ apt-get install oracle-java7-installer ..... /usr/bin/dpkg returned an error code (1) }}} 由于jdk安装时下载地址不对,所以出错。 {{{ apt-get -f install dpkg --configure -a }}} 都无效 {{{ cd /var/lib/dpkg/info rm oracle* apt-get autoremove }}} 问题解决

more ...