2008年12月24日星期三

测试java可以支持多少内存

测试java可以支持多少内存

可用于TOMCAT启动

$ java -Xmx2560m -version
java version "1.6.0_03"
Java(TM) SE Runtime Environment (build 1.6.0_03-b05)
Java HotSpot(TM) Server VM (build 1.6.0_03-b05, mixed mode)
$ java -Xmx2680m -version
java version "1.6.0_03"
Java(TM) SE Runtime Environment (build 1.6.0_03-b05)
Java HotSpot(TM) Server VM (build 1.6.0_03-b05, mixed mode)
$ java -Xmx2816m -version
Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.

2008年12月16日星期二

Linux:Archlinux 如何备份系统

Linux:Archlinux 如何备份系统

目的:把Archlinux移动到另外一个硬盘

1.使用 df 命令看 root 在哪个盘符

文件系统 1K-块 已用 可用 已用% 挂载点
/dev/sda11 15236724 4942120 9526700 35% /
none 1033680 0 1033680 0% /dev/shm
/dev/sda3 15236756 10887052 3581800 76% /media/vmware
/dev/sda5 20482184 2560444 17921740 13% /home
/dev/sda7 2048188 32884 2015304 2% /tmp


root 在 /dev/sda11

2.使用livecd启动电脑

3.使用df 看sda11 是否mount 上如

/dev/sda11 15236724 4942120 9526700 35% /mnt/sda11

4.去到放置备份文件的目录执行以下命令

sudo tar -cvpzf ./archlinux_root_`date +%y%m%d`.tgz /mnt/sda11

5.要恢复系统,最好新系统的ROOT盘也在 sda11上,否则要修改的东西很多
进入新的硬盘分区
用 sudo tar -xvzf archlinux_root_xxxx.tgz 解压系统文件

修改 /etc/fstab
修改 /boot/grub/menu.lst

6.用livecd

grub

grub> find /boot/grub/stage1

(hd1,0)

grub> root (hd1,0)

grub> setup (hd1)

grub> quit

7.用硬盘启动

2008年11月28日星期五

Archlinux:Phone 用wammu通过蓝牙保存通信录及短信

Archlinux:Phone 用wammu通过蓝牙保存通信录及短信


1.安装wammu
sudo pacman -S wammu pybluez
2.安装蓝牙管理工具
sudo pacman -S bluez-utils
启动蓝牙服务
sudo /etc/rc.d/bluetooth restart

3.扫描蓝牙设备
hcitool scan

4.配置PIN码
cd /etc/bluetooth/
sudo vi hcid.conf

security auto;
passkey "0000";

sudo vi pin
录入 0000

5.重启生效
sudo /etc/rc.d/bluetooth restart

6.启动wammu

7.开启手机蓝牙,搜索PC蓝牙,连接,PIN码输入 0000 [这步很重要],连接成功

8.wammu->搜索手机->next->在程序指导下配置->蓝牙->我不知道->居于AT命令集
的-> 蓝牙上的AT命令集->选择蓝牙地址->连接测试->命名
蓝牙地址可以用 hcitool scan 查找

2008年11月26日星期三

VirtualBox 如何添加共享文件夹

共享文件夹: 允许主机和虚拟机共同访问同一个文件夹.

1.关闭虚拟机,开启要共享虚拟机的属性页,选数据空间
选[添加],在路径输入主机上德文件夹,如 /tmp .共享名填写 SharedFolder

留意添加后显示的帮助,写了如何在虚拟机里挂共享文件夹

2.开启虚拟机[以winxp为里]
运行-输入 cmd
输入 net use x: \\vboxsvr\SharedFolder

3.打开我的电脑,发现多了个 X 盘符,访问即可.

2008年11月23日星期日

Linux:Archlinux Howto Install RSIBreak (防沉迷工作软件)

I wanna use Workrave to help RSI,But I am using KDE4 ,It need download many lib files to install workrave . So I choose RSIbreak ,a tools fo KDE .

Below is information for installing RSIBreak in Archlinux .

1. download files
http://www.rsibreak.org
download latest
http://www.rsibreak.org/files/rsibreak-0.9.0.tar.bz2

2.install compile tools
sudo pacman -S cmake
sudo pacman -S automoc4

3.make

mkdir build && cd build && cmake ..
make
sudo make install
sudo ln -s /usr/local/bin/rsibreak /usr/bin

4.auto load
vi ~/.bash_profile

#add
rsibreak &

2008年11月21日星期五

Linux:Archlinux Howto install NetworkManager in KDE4.1

1.install NetworkManager

sudo pacman -S networkmanager

2.install KNetworkManager

goto http://aur.archlinux.org/packages.php?ID=19622

download TarBall file
http://aur.archlinux.org/packages/knetworkmanager3/knetworkmanager3.tar.gz

tar -xvzf knetworkmanager3.tar.gz

cd knetworkmanager3

makepkg

sudo pacman -U knetworkmanager3-0.2.2-1-i686.pkg.tar.gz


3. run

knetworkmanager

2008年10月9日星期四

Archlinux 上安装 Oracle 10g

Archlinux 上安装 Oracle 10g

环境:
Archlinux 2.6.26-ARCH
Oracle Database 10.2.01

Section I 准备工作

##### 创建oracle用户和组
sudo groupadd oinstall
sudo groupadd dba
sudo useradd -m -g oinstall -G dba oracle

id oracle
uid=1004(oracle) gid=1004(oinstall) groups=1004(oinstall),1005(dba)

#host_id
确认你的 /etc/hosts 里面有 hostname 的解析。

# 设置 oracle 帐户的口令:
passwd oracle

##### 创建目录
sudo mkdir /u01/oracle/base
sudo mkdir /u01/oracle/home
sudo chown oracle:dba /u01/oracle -fR
sudo chmod 775 /u01/oracle -fR

##### 配置环境变量

# /home/oracle/.bash_profile
export ORACLE_BASE=/u01/oracle/base
export ORACLE_HOME=/u01/oracle/home
export ORACLE_SID=TEST
export ORACLE_TERM=xterm
export TNS_ADMIN=$ORACLE_HOME/network/admin
export PATH=$PATH:/usr/sbin:$ORACLE_HOME/bin

export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
export CLASSPATH=$CLASSPATH:$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib:$ORACLE_HOME/network/jlib
export THREADS_FLAG=native


##### 准备所需的库

到一下地址下载libaio-0.3.106.tar.gz
#http://packages.gentoo.org/packages/?category=dev-libs;name=libaio
#http://download.chinaunix.net/download/0006000/5732.shtml

tar -xvzf libaio-0.3.106.tar.gz
cd libaio-0.3.106
make prefix=`pwd`/usr install

sudo ln -s /usr/lib/libstdc++.so.6.0.3 /usr/lib/libstdc++.so.5
sudo ln -s /usr/lib/libgcc_s.so.1 /lib/libgcc_s.so.1
cd /usr/bin
sudo ln -s ../../bin/awk awk
sudo ln -s ../../bin/tr tr


##### 配置 Linux 内核参数

# /etc/sysctl.conf
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default=262144
net.core.rmem_max=262144
net.core.wmem_default=262144
net.core.wmem_max=262144
## execute /sbin/sysctl -p

#/etc/security/limits.conf
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536

#/etc/pam.d/login
session required /lib/security/pam_limits.so




##### 修改 Archlinux 的版本以“ 欺骗” Oracle安装程序,使之能正常安装。
sudo echo Red Hat Enterprise Linux AS rlease 3 (Taroon) > /etc/redhat-release




Section II 安装

###### 下载Oracle Database 10g
http://www.oracle.com/technology/software/products/database/index.html

Oracle Database 10g Release 2
Standard Edition, Standard Edition One, and Enterprise Edition
Oracle Database 10g Release 2 (10.2.0.1.0) for Linux x86

http://download.oracle.com/otn/linux/oracle10g/10201/10201_database_linux32.zip

10201_database_linux32.zip

很奇怪这是个zip文件,不过可以把ark把它打开,解压到/tmp下, 注意,/tmp 重启后会被清理,安装过程中不要重启计算机。

##### 切换到oracle用户
su - oracle

#####
export LANG=C
/tmp/database/runInstaller

用英文界面安装,如果想要配置中文,请google 一下java 1.4的中文问题.


##### oracle 安装到29%时,
vi $ORACLE_HOME/bin/gennttab


# Change this...
LIB=`$ECHO ${TtoLIB} | $SED 's/ /\\
/g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`
INI=`$ECHO ${TtoINI} | $SED 's/ /\\
/g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`
BAS=`$ECHO ${TtoBAS} | $SED 's/ /\\
/g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`


# To this...
LIB=`$ECHO ${TtoLIB} | $SED 's/ /\n/g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`
INI=`$ECHO ${TtoINI} | $SED 's/ /\n/g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`
BAS=`$ECHO ${TtoBAS} | $SED 's/ /\n/g' | $GREP "^${T}:" | $AWK -F: '{print $2}'`

主要把回车删除,把一个/换成n

###### 安装选项
按照自己的需求吧,可以参考这篇文章
http://www.souzz.net/html/database/ORACLE/12246.html


###### 错误处理
http://hi.baidu.com/edeed/blog/item/18cf87d6294cc72c07088b1f.html


Section III 调试

##### 配置文件
sudo vi /etc/hosts
xxx.xxx.xxx.xxx(本机IP) oracle-server

#listener.ora @ $ORACLE_HOME/network/admin

SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /u01/oracle/home)
(PROGRAM = extproc)
)
)

LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC2))
(ADDRESS = (PROTOCOL = TCP)(HOST = ORACLE-SERVER)(PORT = 1521))
)
)

#tnsnames.ora @ $ORACLE_HOME/network/admin

LISTENER_TEST =
(ADDRESS = (PROTOCOL = TCP)(HOST = ORACLE-SERVER)(PORT = 1521))


TEST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = ORACLE-SERVER)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = TEST)
)
)

EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC2))
)
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
)
)


#


##### startup
$ sqlplus

SQL*Plus: Release 10.2.0.1.0 - Production on Fri Oct 10 11:08:33 2008

Copyright (c) 1982, 2005, Oracle. All rights reserved.

Enter user-name: / as sysdba
Connected to an idle instance.

SQL> startup
ORACLE instance started.

Total System Global Area 285212672 bytes
Fixed Size 1218968 bytes
Variable Size 83887720 bytes
Database Buffers 192937984 bytes
Redo Buffers 7168000 bytes
Database mounted.
Database opened.

SQL>shutdown
Database closed.
Database dismounted.


ORACLE instance shut down.
SQL>


##### 用脚本启动

#dbstart @ $ORACLE_HOME/bin
#change
ORACLE_HOME_LISTNER=/ade/vikrkuma_new/oracle
#to
ORACLE_HOME_LISTNER=$ORACLE_HOME

#允许用dbstart 启动
#oratab @ /etc
#change
TEST:/media/udata/oracle/home:N
#to
TEST:/media/udata/oracle/home:Y

#启动
$ORACLE_HOME/bin/dbstart
Processing Database instance "TEST": log file /media/udata/oracle/home/startup.log

#检验
sudo netstat -a |grep 1521
密码:
tcp 0 0 ORACLE-SERVER:1521 *:* LISTEN
tcp 104 0 ORACLE-SERVER:1521 ORACLE-SERVER:20328 ESTABLISHED
tcp 0 0 ORACLE-SERVER:20328 ORACLE-SERVER:1521 ESTABLISHED


#关闭
$ORACLE_HOME/bin/dbshut
lsnrctl stop #关闭侦听器


参考文档:
http://hi.baidu.com/sneeze/blog/item/4e0db0777f29c51bb051b9d8.html
http://www.blogger.com/post-create.g?blogID=3560048731273076746

2008年10月6日星期一

Archlinux : xorg.conf for HP Compaq nx7400

# /.../
# SaX generated X11 config file
# Created on: 2008-08-19T16:21:40+0800.
#
# Version: 8.1
# Contact: Marcus Schaefer , 2005
# Contact: SaX-User list
#
# Automatically generated by [ISaX] (8.1)
# PLEASE DO NOT EDIT THIS FILE!
#

Section "Files"
FontPath "/usr/share/fonts/misc:unscaled"
FontPath "/usr/share/fonts/local"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/Type1"
FontPath "/usr/share/fonts/URW"
FontPath "/usr/share/fonts/Speedo"
FontPath "/usr/share/fonts/PEX"
FontPath "/usr/share/fonts/cyrillic"
FontPath "/usr/share/fonts/latin2/misc:unscaled"
FontPath "/usr/share/fonts/latin2/75dpi:unscaled"
FontPath "/usr/share/fonts/latin2/100dpi:unscaled"
FontPath "/usr/share/fonts/latin2/Type1"
FontPath "/usr/share/fonts/latin7/75dpi:unscaled"
FontPath "/usr/share/fonts/baekmuk:unscaled"
FontPath "/usr/share/fonts/japanese:unscaled"
FontPath "/usr/share/fonts/kwintv"
FontPath "/usr/share/fonts/truetype"
FontPath "/usr/share/fonts/uni:unscaled"
FontPath "/usr/share/fonts/CID"
FontPath "/usr/share/fonts/ucs/misc:unscaled"
FontPath "/usr/share/fonts/ucs/75dpi:unscaled"
FontPath "/usr/share/fonts/ucs/100dpi:unscaled"
FontPath "/usr/share/fonts/hellas/misc:unscaled"
FontPath "/usr/share/fonts/hellas/75dpi:unscaled"
FontPath "/usr/share/fonts/hellas/100dpi:unscaled"
FontPath "/usr/share/fonts/hellas/Type1"
FontPath "/usr/share/fonts/misc/sgi:unscaled"
FontPath "/usr/share/fonts/xtest"
FontPath "/opt/kde3/share/fonts"
InputDevices "/dev/gpmdata"
InputDevices "/dev/input/mice"
EndSection

Section "ServerFlags"
Option "AIGLX" "on"
Option "AllowMouseOpenFail" "on"
Option "ZapWarning" "on"
EndSection

Section "Module"
Load "glx"
Load "type1"
Load "extmod"
Load "dbe"
Load "freetype"
Load "dri"
EndSection

Section "InputDevice"
Driver "kbd"
Identifier "Keyboard[0]"
Option "Protocol" "Standard"
Option "XkbLayout" "us"
Option "XkbModel" "microsoftpro"
Option "XkbRules" "xfree86"
EndSection


Section "InputDevice"
Driver "mouse"
Identifier "Mouse[1]"
Option "Buttons" "5"
Option "Device" "/dev/input/mice"
Option "Name" "Pixart Imaging USB OPTICAL MOUSE"
Option "Protocol" "explorerps/2"
Option "Vendor" "Sysp"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
Driver "synaptics"
Identifier "Mouse[3]"
Option "Buttons" "5"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "on"
Option "HorizScrollDelta" "0"
Option "InputFashion" "Mouse"
Option "Name" "Synaptics;Touchpad"
Option "Protocol" "explorerps/2"
Option "SHMConfig" "on"
Option "Vendor" "Sysp"
Option "ZAxisMapping" "4 5"
EndSection


Section "Monitor"
DisplaySize 305 230
HorizSync 30-82
Identifier "Monitor[0]"
ModelName "1280X1024@60HZ"
Option "DPMS"
Option "PreferredMode" "1280x1024"
VendorName "--> LCD"
VertRefresh 50-60
UseModes "Modes[0]"
EndSection


Section "Modes"
Identifier "Modes[0]"
EndSection


Section "Screen"
DefaultDepth 24
SubSection "Display"
Depth 15
Modes "1280x1024" "1280x960" "1280x800" "1152x864" "1280x768" "1280x720" "1024x768" "1280x600" "1024x600" "800x600" "768x576" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1280x960" "1280x800" "1152x864" "1280x768" "1280x720" "1024x768" "1280x600" "1024x600" "800x600" "768x576" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1280x960" "1280x800" "1152x864" "1280x768" "1280x720" "1024x768" "1280x600" "1024x600" "800x600" "768x576" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1280x960" "1280x800" "1152x864" "1280x768" "1280x720" "1024x768" "1280x600" "1024x600" "800x600" "768x576" "640x480"
EndSubSection
Device "Device[0]"
Identifier "Screen[0]"
Monitor "Monitor[0]"
EndSection


Section "Device"
BoardName "945 GM"
BusID "0:2:0"
Driver "intel"
Identifier "Device[0]"
Option "monitor-LVDS" "Monitor[0]"
Screen 0
VendorName "Intel"
Option "AddARGBGLXVisuals" "True"
EndSection



Section "ServerLayout"
Identifier "Layout[all]"
InputDevice "Keyboard[0]" "CoreKeyboard"
InputDevice "Mouse[1]" "CorePointer"
InputDevice "Mouse[3]" "SendCoreEvents"
Option "Clone" "off"
Option "Xinerama" "off"
Screen "Screen[0]"
EndSection


Section "DRI"
Group "video"
Mode 0660
EndSection

Section "Extensions"
Option "Composite" "Enable"
EndSection

2008年5月27日星期二

沙朗斯通:史上最愚蠢的女人

    之所以说沙朗斯通没有脑子,是因为再愚蠢的女人,也不会对灾民幸灾乐祸,而且是如此的公然!

    如果天灾是报应(或因果循环),那么美国的飓风,或者新奥尔良水灾。。。。美国政府该找块豆腐撞死N遍了。

    而再想到911的人祸,沙朗斯通有没有“受到很大的教训”呢?

    请留意,一些媒体说沙朗斯通最后用会帮助灾区人民来打圆场,其实,自始至终她都没这个意识,她只是觉得西藏组织受了这么大的“压迫”,现在中国受到报应了,西藏组织还主动去援助“敌人”,这种胸怀,她很受教育!

    数万条鲜活的生命一瞬间夭折,数万个笑魇从此消失,在她的眼里,他们是罪有应得!

    能坦然说出这些话的人,要么就是没脑子,要么就是极度憎恨中国。

    而我以为,比起达赖,对于中国,她充其量只是讨厌,而不是憎恨。

Blogged with the Flock Browser

2008年5月13日星期二

Ubuntu 下的 E-R 数据模型图工具

比较了一堆的工具,找到了Power*Architect

开源,JAVA软件,支持流行的数据库

下载地址:
http://www.sqlpower.ca/page/architect

也有介绍DBDesigner 4 的,对MYSQL支持最好,但关联库和UBUNTU8有冲突,安装麻烦(主要是库找不到),也就没用。

Power*Architect缺点:慢,中文支持不好,有时窗口灰白一片,重新打开就好了(JAVA的通病)

支持文档:

http://meetrice.javaeye.com/blog/102920
http://www.ventanazul.com/webzine/articles/open-source-app-for-database-modelling

Blogged with the Flock Browser

2008年5月11日星期日

Ubuntu 下画脑图的工具

freemind

不错,免费,java开发,支持中文,树状发散,方便记录。

介绍看这里

安装:

sudo apt-get install freemind

添加菜单:

sudo gedit /usr/share/applications/freemind.desktop

[Desktop Entry]
Name=FreeMind
Comment=Mind Map draw tools
Exec=/usr/bin/freemind
Icon=freemind.png
Terminal=false
Type=Application
Categories=Development;
StartupNotify=true

运行:
应用程序-》编程 -》freemind

Blogged with the Flock Browser

2008年5月10日星期六

Ubuntu 下的开发辅助工具(绘图 UML VISIO)

先是使用了Dia,比较一般化,后来发现了以下几个软件,先试试再说。

1.Cmap Tools

    The IHMC CmapTools software empowers users to construct ,navigate ,share, and criticize knowledge models represented as Concept Maps.

     IHMC CmapTools


2. yEd

    够奇怪的名字,不过可是可以替代VISIO的好东东喔。  

    yEd is a very powerful graph editor that is written entirely in the Java programming language. It can be used to quickly and effectively generate drawings and to apply automatic layouts to a range of different diagrams and networks.


    yEd


先记着先。以后再补图。

Blogged with the Flock Browser

2008年5月9日星期五

用Flock 写 CSDN 博客

Flock 是一个功能浏览器,她满足您冲浪的一切需求,上传照片,写博客,保存喜欢的站点,收发EMAIL,看RSS文章,咦,这一般浏览器都做的到呀。不过一般浏览器都是登录了网站来做这些,而 Flock ,除了这些,她自己提供大量的功能,让你不必每个网站都打开,却也能做一样的事情?

不打开新浪,也可以看到新浪的新闻?
不打开CSDN,也可以写BLOG?
不打开PICASA,也能上传照片?
我喜欢的网站可以随时保留到互联网上?

对,Flock都可以。

这里介绍的是,如何用Flock写CSDN的博客,就像Zoundry一样,甚至更方便!

1. Edit -> Accounts and Services ->  Blogging -> Self-Hosted Blog

2.Blogging : Set up My Blog

    http://blog.csdn.net/<username>

这里填写您的博客地址

3.提示无法确定您博客的类型,按next 即可

4.Blog Connection Configuration

    XML-RPC API  : MetaWeblog

    Access Point : http://blog.csdn.net/<username>/services/metablogapi.aspx

5. Username and password


如何写?

在Flock的工具栏里,有个蓝色的羽毛图标,点击她,写一些测试的东西,选  Publish 就可以了。

Blogged with the Flock Browser

2008年5月6日星期二

HOWTO Install Opera in Ubuntu 8

Can't suffer from Firefox3 In ubuntu , it keep me disk busy and ofen show me the gray face. Firefox work bad in Ubuntu than Window.

So I install Opera.

sudo apt-get install Opera
 sudo apt-get install scim-bridge-client-qt
im-switch -s scim-bridge

And then reboot .

2008年5月4日星期日

HOWTO Active Broadcom wlan in Ubuntu

sudo apt-get install b43-fwcutter
sudo apt-get install bcm43xx

then reboot.
it works in my HP Compaq nx7400 with Ubuntu 7.10 /8.0.4

Blogged with the Flock Browser

HOWTO install RealPlayer 11 in Ubuntu

1.get RealPlayer 11

    http://www.real.com/linux

2.Install

    chmod u+r RealPlayer11GOLD.bin
    ./RealPlayer11GOLD.bin

3.Run

    Applications ->Videos >Real Player 11

Blogged with the Flock Browser

HOWTO Install Picasa in Ubuntu

1.get Picasa
    # Google Picasa for Linux repository

    sudo vi /etc/apt/source.list
    # add resource
    deb http://dl.google.com/linux/deb/ stable non-free

    wget -q -O - http://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

   
    sudo apt-get update
    sudo apt-get install picasa



Blogged with the Flock Browser

HOWTO : window 非管理员使用 OPENVPN 客户端软件的方法

按默认安装完VPN客户端软件。

一、取消自动运行openvpn-gui.exe (适合windows 2000、xp 系统)
管理员用户登陆
方法一:开始--运行--msconfig-启动-- 将openvpn-gui取消打钩--重启电脑。
方法二:开始--运行--regedit--HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN下
将openvpn-gui 删除--注销。

二、指定特定程序openvpn-gui可用管理员权限使用
1、 打开C:\Program Files\OPENVPN\bin,openvpn-gui.exe创建快捷方式到桌面。
2、点选快捷方式图标,右键--属性--将 “目标”栏的内容更改为下面内容,确定。

windows xp系统:runas.exe /savercred /user:administrator "C:\Program Files\OPENVPN\bin\openvpn-gui.exe"
在第一使双击快捷方式使用VPN时,需要输入管理员密码,之后就不用再输入密码。

如果有域,用以下格式: /user:domainname\administrator

windows2000系统:runas.exe /user:administrator "C:\Program Files\OPENVPN\bin\openvpn-gui.exe
可惜的是每次登陆都需要输入管理员的密码。
Blogged with the Flock Browser

2008年5月3日星期六

Ubuntu 8 可以做些什么 ?

使用Ubuntu 8 已经一个月了,也该写些什么来感谢一下Ubuntu了 。

说到感谢,这是必须的,Ubuntu 可以满足我在WIN下80%的功能,而没有收一分钱,我甚至开始为BILL 开始担心了。

先说说我工作机的配置:
HP Compaq nx7400 ,Duocore CPU ,1G memory,60G HARD DISK

1.浏览器  能力  80%
这是很重要的,现如今,您的知识90%都来自互联网,而浏览器是主要的工具。
WIN:Internet Explore 6 , Firefox 2 ,Flock 1
UBUNTU: Firefox 3 ,Flock 1 ,Internet Explore 6(ie4linux)

在Ubuntu8里,中文字体的表现已和win一模一样,这也是u8 的一个进步。
目前国内的主流网站也开始支持firefox,所以用firefox作主浏览器也没问题了。
网上银行:广发可以直接用firefox,赞一个。建行和中行可以用IE4LINUX OK,建行有U-KEY。
招商目前不支持,可以安装VMWARE+u-key解决,不过没那个心情,反正招行已极少用。

缺点:处理FLASH能力很糟糕,打开3个SINA的财经主页,必死,SINA已经是测试FLASH性能最好的网站!

2.OFFICE  60%
由于使用OFFICE不多,但基本的使用还是没问题的,EXCEL还好,WORD就难看点。

3.Email 100%
由于本人一直使用Thunderbird,所以这是没问题的,甚至现在本人无论进WIN还是UBUNTU,开Thunderbird是无区别的,因为ubuntu的那个邮件存放地指向win的thunderbird的邮件存放地。

4.翻译软件 120%
星际译王,你甚至可以把整段英文让他翻译,有点搞笑,但不影响阅读。

5. 多媒体软件  70%
有点麻烦,没win那么方便,不过本人现在看的VIDEO都OK,AVI,RMVB,RM,MKV,色调不大对,可以自己调,不过也没调好。支持中文字幕。本人使用
totem电影播放机/mplayer/realplay11 来处理以上媒体,对不起,这里没有暴风影音。

6. 其他
股票:行情与交易  100%  用WINE
EMULE下载: 使用mldonkey  100% 对系统影响性能最小,并可自行连接多个服务器

7.绘图 100%
有著名的GIMP

8.QQ 100%
有著名的PIDGIN,只需打开他,您可以同时和QQ/msn/icq/googletalk/yahoo等IM的朋友一起聊天。

目前不支持的功能:
Oracle Application 客户端(很讽刺而无奈的一个现实)

Blogged with the Flock Browser

2008年4月30日星期三

Ubuntu:使用openvpn客户端连接VPN 服务器

如何用openvpn 作为client连接openvpn服务器

1.安装

sudo apt-get openvpn

2.使用

1.将win openvpn里设置好的配置文件拷贝到/etc/openvpn下面,我有以下文件:

ca.crt
openvpn.ovpn
ta.key

[我的VPN服务器是使用密码验证,而不是证书方式]

注意,用ubuntu的GUI复制这些文件,ca.crt会变成一堆程序代码,原因未明。最好打开ca.crt,复制里面的内容,再用vi ca.crt来建立就不会错,否则提示获取ca.crt 出错。

Cannot load CA certificate file /etc/openvpn/keys/ca_net.crt (SSL_CTX_load_verify_locations) (OpenSSL)

启动:
openvpn --config /etc/openvpn/openvpn.ovpn



 

Blogged with the Flock Browser

2008年4月29日星期二

How to blog my Spacess with Flock

The Flock is the best browser I have used ,in fact ,it is a very good tool for internet surfer.
in Spaces.live.com
Login
->Options
Distribute by email
Active the options
input [your security word]
saved!
In Flock:
Click Accouts and Services button
-> click Blogging
-> click Self-Hosted Blog
input http://yourname.spaces.live.com
XML-RPC: MetaWeblog
API-URI: https://storage.msn.com/storageservice/MetaWeblog.rpc
Username: yourname Password: [your security word]

Blogged with the Flock Browser

How to Install Flash Player 9 In Flock

Flah Player 9 has been installed in Firefox 2, but in Flock it doesn't work ,just leave a black screeen.
    locate your firefox 's plugins path like
    C:\Program Files\Mozilla Firefox\plugins\
    copy NPSWF32.dll to Flock 's plugins path like
    C:\Program Files\Flock\flock\plugins\
    And try again.

Blogged with the Flock Browser

试用Apple Safari中文版

25 Mar 2008
Safari 号称最快的浏览器,升级ITUNE时,提示可安装Safari,便安装了一下看看。立刻发现缺点,体积 64M,字体模糊,换了喜欢的字体,问题又来了,读文章很辛苦,无论中英文都是,唉,只有卸载了它。 界面是APPLE一贯的风格 ,COOL,但不实用。

Blogged with the Flock Browser

狂喜中。。。。

突然发现BLOGGER可以访问了,呵呵,加上FLOCK,真是得心应手呀。。。。

Blogged with the Flock Browser

Thunderbird: 邮箱显示为空,但可以看到【总计】

早上打开Thunderbird写了个mail,想查的时候发现发件箱空空如也,郁闷之极时发现总计数还是有的,应该是索引有问题,便把LOCAL文件夹 下的  sent.msf 文件删除了,重开Thunderbird它自行重建了索引,呵呵,里面的EMAIL又出来啦!!!
就是比 M$ Outlook Express 爽!

Blogged with the Flock Browser