November 20th, 2006 at 9:21 pm (Linux)
editplus是我非常喜欢的一款开发工具,可惜没有for linux版本。
今天无意中google了一下”editplus for linux”收获不小,以前光顾着用wine模拟qq,ie什么的,居然忘记了这么个好东东。
安装方法:http://editplus.info/wiki/Running_on_Linux
效果非常的不错,虽然没有windows下面那么极速清爽,但是比起gedit来强多了。
250 Comments
September 7th, 2006 at 9:31 pm (Linux)
1.apache2安装:
sudo apt-get install apache2
2.php安装:
sudo apt-get install php5
sudo /etc/init.d/apache2 restart
安装php4类似
最后测试一下安装成功了没有:
sudo gedit /var/www/test.php
输入:
< ?php phpinfo(); ?>
(’<'和'?'之间多了一个空格,请删除)
访问:
http://localhost/test.php
1 Comments