
爱一个人:
要了解,也要开解;
要道歉,也要 道谢;
要认错,也要改错;
要体贴,也要体谅;
是接受,而不是忍受;
是宽容,而不是纵容;
是支持,而不是支配;
是慰问,而不是质问;
是倾诉,而不是控诉;
是难忘,而不是遗忘;
是彼此交流,而不是凡事交代;
是为对方默默祈求,而不是向对方诸多要求;
可以浪漫,但不要浪费;
可以随时牵手,但不要随便分手。
1. open a windows terminal window
C:\> ppm install http://theoryx5.uwinnipeg.ca/ppms/Geo-IP.ppd
====================
Install 'Geo-IP' version 1.27 in ActivePerl 5.8.7.815.
====================
Installing C:\Perl\site\lib\auto\Geo\IP\IP.dll
Installing C:\Perl\site\lib\auto\Geo\IP\IP.lib
Installing C:\Perl\site\lib\auto\Geo\IP\IP.exp
Installing C:\Perl\site\lib\auto\Geo\IP\IP.bs
Installing C:\Perl\html\site\lib\Geo\IP.html
Installing C:\Perl\html\site\lib\Geo\Mirror.html
Installing C:\Perl\html\site\lib\Geo\IP\Record.html
2. Download the current Country, City and Organization (AS Numbers) databases
http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
http://geolite.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz
LoadPlugin="geoip"
I had two options. Stick with latin1 or move to utf8. I chose to move to utf8 as the front end of my website is all in utf8 so making the whole thing utf8 from front to back would make sense. Here is how I did it:
Dumped the original db with the following command:
mysqldump -u root -p --opt --default-character-set=latin1 --skip-set-charset DBNAME > DBNAME<!--
Then using sed I changed all occurrences of the word latin1 to utf8:
sed -e 's/latin1/utf8/g' -i ./DBNAME.sql
From here I then created the new database and then imported the dumpfile.
mysql -p -e "create database DBNAME"
mysql -p --default-character-set=utf8 DBNAME < DBNAME.sql<!--
And that's it.
<'virtualhost *:80'>
ServerAdmin admin@yourdomain.com.my
ServerName yourdomain.com
ServerAlias www.yourdomain.com
<'directory'>
Options FollowSymLinks
AllowOverride All
Order deny,allow
allow from all
<'/directory'>
DocumentRoot "/home/yourdomain.com/www"
ErrorLog "/home/yourdomain.com/logs/yourdomain.com-error_log"
CustomLog "/home/yourdomain.com/logs/yourdomain.com-access_log" common
<'/virtualhost'>
uncomment this line
extension=php_zip.dll
restart service.
Check the .htaccess file.
CODE:
# BEGIN SUGARCRM RESTRICTIONS
php_value upload_max_filesize "20M"
RedirectMatch /sugarcrm.log.* http://yourdomain.com/log_file_restricted.html
RedirectMatch /install.log http://yourdomain.com/log_file_restricted.html
RedirectMatch /upgradeWizard.log http://yourdomain.com/log_file_restricted.html
RedirectMatch /emailman.log http://yourdomain.com/log_file_restricted.html
RedirectMatch /not_imported_(.*).txt http://yourdomain.com/log_file_restricted.html
RedirectMatch /XTemplate/(.*)/(.*).php http://yourdomain.com/index.php
RedirectMatch /data/(.*).php http://yourdomain.com/index.php
RedirectMatch /examples/(.*).php http://yourdomain.com/index.php
RedirectMatch /include/(.*).php http://yourdomain.com/index.php
RedirectMatch /include/(.*)/(.*).php http://yourdomain.com/index.php
RedirectMatch /log4php/(.*).php http://yourdomain.com/index.php
RedirectMatch /log4php/(.*)/(.*).php http://yourdomain.com/index.php
RedirectMatch /metadata/(.*)/(.*).php http://yourdomain.com/index.php
RedirectMatch /modules/(.*)/(.*).php http://yourdomain.com/index.php
RedirectMatch /soap/(.*).php http://yourdomain.com/index.php
RedirectMatch /emailmandelivery.php http://yourdomain.com/index.php
# END SUGARCRM RESTRICTIONS
sudo apt-get install sun-java6-jdk sun-java6-plugin
For JRE:sudo apt-get install sun-java6-jre sun-java6-plugin
Once either one is done, run the sudo update-java-alternatives -s java-6-sun
command and finally add the line “/usr/lib/jvm/java-6-sun” to the top of the /etc/jvm file (gksudo gedit /etc/jvm
). Save and exit. To test your Java(TM) setup in the terminal type:-java -version
If you get an output like below, then you are done!java version “1.6.0″ Java(TM) SE Runtime Environment (build 1.6.0-b105) Java HotSpot(TM) Client VM (build 1.6.0-b105, mixed mode, sharing)
Assuming that you want to monitor your networking equipment with MRTG, you need to set up the snmp community on the piece of equipment. Usually its just a matter of enabling snmp, and the default community will be public. If you change the default community to another name, make sure you remember the name for later.
Now lets set up MRTG to read the data.
With Ubuntu server, MRTG will automatically set up /var/www/mrtg. In other distrobutions, it will set it up in a different area, so you will need to change the 'WorkDir:' variable in the following scenario to the directory where MRTG is installed.
I'm going to create an /etc/mrtg directory rather then move the mrtg.cfg file within /etc/ This will make it less confusing in the future.
mkdir /etc/mrtg
mv /etc/mrtg.cfg /etc/mrtg/
Now we run the cfgmaker command to get things up and running:
cfgmaker --global 'WorkDir:/var/www/mrtg' --global 'Options[_]: bits,growright' --output /etc/mrtg/mrtg.cfg public@192.168.1.85
We need to make sure the following lines are correct in /etc/mrtg/mrtg.cfg If they are not there, add them.
EnableIPv6: no
RunAsDaemon: Yes
Interval: 5
Logdir: /var/log/mrtg
Now run:
indexmaker --output=/var/www/mrtg/index.html /etc/mrtg/mrtg.cfg
Which will build the index so you can view the output.
Then I run this command to set an environmental variable
env LANG=C /usr/bin/mrtg /etc/mrtg/mrtg.cfg
and open http://localhost/mrtg/index.html
This how to will show you how to install a Skype client in Ubuntu & Debian base operating system.
deb http://download.skype.com/linux/repos/debian/ stable non-free
Click Add Sources.
$ sudo aptitude install skype
那么,局域网怎么分配IP地址呢?公有地址(Public address)由Inter NIC(Internet Network Information Center 因特网信息中心)负责。这些IP地址分配给注册并向Inter NIC提出申请的组织机构。通过它直接访问因特网。 私有地址(Private address)属于非注册地址,专门为组织机构内部使用。
附表:局域网使用的ip地址范围
由于分配不合理以及IPv4协议本身存在的局限,现在互联网的IP地址资源越来越紧张,为了解决这一问题,IANA将A、B、C类IP地址的一部分保留下来,留作局域网使用的IP地址空间,保留IP的范围如附表所示。
保留的IP地址段不会在互联网上使用,因此与广域网相连的路由器在处理保留IP地址时,只是将该数据包丢弃处理,而不会路由到广域网上去,从而将保留IP地址产生的数据隔离在局域网内部。
在局域网内计算机数量少于254台的情况下,一般在C类IP地址段里选择IP地址范围就可以了,如从“192.168.1.1”到“192.168.1. 254”。
一位教授在無意間發現了最驚駭人的末日預言,這會真的是宇宙間最後一個預言嗎?儘管沒人人相信他所發現的這個可怕預言,但他仍企圖力挽狂瀾,阻止它發生!尽管没人人相信他所发现的这个可怕预言,但他仍企图力挽狂澜,阻止它发生!
1959年,在波士頓一所新開辦的小學,老師要求一群學生畫出他們想像中的未來,然後把所有的畫都放進時空膠囊中上鎖,預計保存50年後才開啟,但是其中有個神秘的女孩,在她的紙上寫滿了密密麻麻的數字,她說是有個看不見的人輕聲告訴她的。 1959年,在波士顿一所新开办的小学,老师要求一群学生画出他们想像中的未来,然后把所有的画都放进时空胶囊中上锁,预计保存50年后才开启,但是其中有个神秘的女孩,在她的纸上写满了密密麻麻的数字,她说是有个看不见的人轻声告诉她的。
過了半個世紀後,另一代的小學生打開時空膠囊看內容,卡雷柯斯勒(錢德勒坎特布瑞飾演)拿到了當年小女孩寫滿數字的紙條,結果是卡雷的天體物理學家父親約翰柯斯勒(尼可拉斯凱吉飾演)得到了驚人的發現:這些數字準確地預言了過去50年的每一場重大災難。过了半个世纪后,另一代的小学生打开时空胶囊看内容,卡雷柯斯勒(钱德勒坎特布瑞饰演)拿到了当年小女孩写满数字的纸条,结果是卡雷的天体物理学家父亲约翰柯斯勒(尼可拉斯凯吉饰演)得到了惊人的发现:这些数字准确地预言了过去50年的每一场重大灾难。 約翰繼續抽絲剝繭,發現這些數字還預言了另外三場災難,其中的最後一場就是最令人毛骨悚然的世界末日。约翰继续抽丝剥茧,发现这些数字还预言了另外三场灾难,其中的最后一场就是最令人毛骨悚然的世界末日。
約翰試圖警告相關當局即將有災難發生,但是官方卻不予理會,而他在發現卡雷可能和這個謎團有關之後,也開始愈來愈害怕了。约翰试图警告相关当局即将有灾难发生,但是官方却不予理会,而他在发现卡雷可能和这个谜团有关之后,也开始愈来愈害怕了。
他找來當年寫下預言女學生的女兒黛安娜韋倫(蘿絲拜恩飾演)和孫女愛碧韋倫(蕾拉羅賓森飾演),協助他阻止這場世界末日的大災難發生。他找来当年写下预言女学生的女儿黛安娜韦伦(萝丝拜恩饰演)和孙女爱碧韦伦(蕾拉罗宾森饰演),协助他阻止这场世界末日的大灾难发生。
sudo gedit /etc/apt/sources.list
## Emesene
deb http://apt.emesene.org/ ./
sudo apt-get update
sudo apt-get install emesene
Type in the terminal:
$sudo apt-get install scim-qtimm im-switch scim-pinyinLog out, then log in again. SCIM should be now the default input for all applications.
$im-switch -z en_US -s scim