configure: error:
You must have libxml2 >= 2.6.0 development headers installed to build.
解决方法
sudo apt-get install libxml2-dev
Written by 小锋 on 07-10-30 2:17 PM
configure: error:
You must have libxml2 >= 2.6.0 development headers installed to build.
解决方法
sudo apt-get install libxml2-dev
Written by 小锋 on 07-10-30 2:15 PM
configure: error:
You must have the GTK+ 2.0 development headers installed to compile pidgin.
If you only want to build Finch then specify --disable-gtkui when running configure.
解决方法
sudo apt-get install libgtk2.0-dev
Written by 小锋 on 07-10-30 2:12 PM
configure: error:
You must have the GLib 2.0 development headers installed to build.
解决方法
sudo apt-get install libglib2.0-dev
Written by 小锋 on 07-10-30 2:09 PM
The msgfmt command is required to build libpurple. If it is installed
on your system, ensure that it is in your path. If it is not, install
GNU gettext to continue.
If you have msgfmt installed, but for some reason this error message
is still displayed, you have encountered what appears to be a bug in
third-party configure macros. Try setting the MSGFMT environment
variable to the absolute path to your msgfmt binary and trying
configure again, like this:
MSGFMT=/path/to/msgfmt ./configure ...
刚编译的时候出现了上面这个错误
在终端下输入sudo apt-get install gettext安装完即可解决
Written by 小锋 on 07-10-29 8:50 PM
今天才发现ubuntu的默认支持默认安装的效果是这样的。。。
今天下午去学校帮朋友装Ubuntu的系统~
中途没什么大问题的~~装完了之后发现的是和我的电脑装完后是不一样的
他的系统直接识别显卡分辨率和显卡驱动还有就是默认装上了compiz哇塞~~~
省了好多事~~~~~但是compiz effects destop setting还是要自己装的不然
默认开启了compiz fusion后 那些快捷按钮都可以按~~~~但是不能修改???在哪儿修改呢?
控制的东西呢???呵呵当然是compiz effects desktop setting的那个啦。
然后进打开新立得 搜了compiz 然后找到给装上了。~~~
一切很都很顺利 只是有两件事情让我头疼了一下一个是open office和输入法
到最后只能卸载了openoffice的那个才解决了问题
但是小企鹅输入法就是应用不上去-_-由于时间问题就没弄了~~~
Ubuntu系统还有好多地方值得去学的去玩的~!更要去挖掘~~~
注意:后来看了一下他的电脑不是ATI也不是NVIDIA 是Inter的怪不得直接给装上compiz了
Written by 小锋 on 07-10-25 1:52 AM
在编译fusion 0.6.0的时候碰到了下面这个问题
error: Can't find X libraries. Please check your installation and add the correct paths!
使用了下面这个命令就可以得到解放了
sudo apt-get install xorg-dev
Written by 小锋 on 07-10-25 1:14 AM
从源码编译安装东东,不是很容易,想想在使用lfs之前,源码编译安装软件从来没
成功过,甚至出现错误都无从下手,只能放弃
经过lfs的洗礼,总算对源码编译安装有了一点认识,可惜当初没有把这些经验写下来
不过现在开始写也不迟 将编译中遇到的问题及解决的方法记下来,积累经验
» 阅读全文
Written by 小锋 on 07-10-25 12:20 AM
configure: error: C compiler cannot create executables
和音符一起在编译Compiz fusion 0.6.0的时候
碰到这个问题 只要安装基础包即可
sudo apt-get install build-essential
再重新编译一下通过了 现在compiz 0.6.0还没编译完成呢~~~
Written by 小锋 on 07-10-24 12:54 PM
附件:vnc-4_1_1-x86_win32_viewer.rar (119.17 K, 下载次数:1495)
Written by 小锋 on 07-10-24 1:06 AM
本文章 经过反复的测试和修改已经完成了所有的工作了走了步少多余的路
1、安装 Apache2+PHP5+MySQL
sudo apt-get install apache2 libapache2-mod-php5 php5 php5-gd mysql-server php5-mysql phpmyadmin
在下载来自动安装配置的时候 会出现一个框子让你输入密码哦!!记住是密码
2、启用 mod_rewrite 模块
sudo a2enmod rewrite
3、配置 网站的目录了
sudo gedit /etc/apache2/sites-available/default
------------------默认情况下你会看到
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
------------------我们把它改到别处去~~也就是自定义位置
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /home/felix/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/felix/www/>
------------------看到了把?这个就是放在了home下你的用户名的www文件夹里面
4、重启服务器
sudo /etc/init.d/apache2 restart
5 、检查是否成功
到你的目录下新建一个index.php文件
在里面输入<?=phpinfo()?>
然后打开浏览器输入localhost看看是否phpinfo的信息出来了
如果出来了表示你成功拉 恭喜你哈~
对啦不要忘记了phpmyadmin哦
在浏览器里面输入localhost/phpmyadmin哦
就能控制mysql啦~~~