`
yaojingguo
  • 浏览: 202447 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
The default python can be used. It is needed to install from source code. And --enable-shared must be specified when doing configure.
I have a requirement to use a special version of python other than the default on my machine. I am uisng ubuntu 9.10. By default, python 2.6.4 is installed. And a lot other packages depends on it. So it is impossible to remove it. And I need to install from source code since I need to use --enable-sh ...
gcc has a very large number of options. Here I am writing some of them to help remember some common usages. Generating Assembly Code Using gcc with -S option will generated assembly code and then stop. For example:     $ gcc -S helloworld.c Preprocessing                 Using gcc with -E wi ...
I have installed ubuntu 9.10 recently. At the beginning, NetworkManager can connect with eth0 automatically. After some days, it shows Wired Network - device not managed when I clicked NetworkManager. After some googling, I found the solution. Just change managed=false to managed=true in /etc/Ne ...
C Library GNU C Library   C++ Library GNU C++ Library The GNU C++ Library Documentation Manual API and Source Level Documentation
g++ and libstdc are coupled. A specific version of g++ uses a specific version of libstdc. It can not be changed.    Recently, I am building a program on ubuntu 9.10 which has g++4 installed. When I run make, the following text shows up.   if [ ! -d ./../linux ]; then (umask 002; set -x; mkdir ./ ...
 PASW 18 needs  libstdc++5 on Ubuntu. Sometimes the followong commad needs to run to install it.   sudo apt-get install libstdc++5   Sometimes, you can need to use /opt/SPSSInc/PASWStatistics18/bin/licensewizard to authorize SPSS manually.
QT GTK wxWidgets TK Java Swing Java SWT
Datanucleaus access platform is an excellent Java OR mapping framework. It supports a lot of backends. I have been playing with Datanucleaus access platform 1.6. Here are some tricks I want to share.   EnhancerTask and SchemaToolTask all require that jdo configuration file such as package.jdo and j ...
  I have been using R recently. R is statistics programming language. R has attracted more and more attention as analytics in cloud gets more and more hot.   Don't install R in default ubuntu source which only contains a older version. Update apt source according to http://ftp.ctex.org/mirrors/C ...
If a script needs to be executed, the shell needs to be executed with the script as an argument. On windows, this shell should be cmd.exe. On linux, this shell may be bash or other shell.   ProcessBuilder give more control over the executable than Runtime. For example, the former can redirect stder ...
Recently I have focused on an open source project JAQL .   In one word, it is a high-level language above hadoop. It is similar to PIG and HIVE.
As I  communicate with English-speaking people, I often need to use the English names of punctuation ma   ()     parentheses []     brackets, square (or brackets) <>   brackets, angle {}    braces (or curly brackets) @     at sign .       period ,       comma ;       semicolon :      ...
Since I have taken part in JAQL open source project, I need to use diff/patch to communicate with worldwide people.   I tried svn diff. There is one thing that confuses me. It is that the file adding and removing are not included in the result diff file. After playing more with it, I found the cua ...
$1 - $9 these variables are the positional parameters. $0 the name of the command currently being executed. $# the number of positional arguments given to this invocation of the shell. $? the exit status of the last command executed is ...
Global site tag (gtag.js) - Google Analytics