标题: 经验分享:成功在FC3下(UTF-8 local)下安装了cce[更新:支持FC4]

代码:
tar zxvf cce-0.51-02132004-dist.tgza
然后修改3处代码
代码:
$vi src/term/term.c 630 #elif defined(__SunOS__) || defined(__WINDOWS__) || 1 655 #elif defined(__SunOS__) || defined(__WINDOWS__) || 1 659 #if defined(__SunOS__) || defined(__WINDOWS__) || 1 :wq

好了,现在就可以了:-)
代码:
$./configure --enable-fb --enable-gpmmouse
第一个打开的是framebuffer的支持,第二个支持的是fc3使用的console mouse service
代码:
$make #make install
一切ok后,如果你在X下面,ctrl+alt+F1,回到console后(注意!确定已经支持了framebuffer)运行
代码:
cce --filter UTF8
好了,一个清爽的console工作环境就准备好了!

更新,FC4下gcc4的workround:
在FC4下,用gcc4编译会出问题。可以这么做:

代码:
#yum install compat-gcc-32 $./configure --enable-fb --enable-gpmmouse CC=gcc3 $make #make install

另外,如果你不想手工改代码,我已经给了patch了(附件里)。

相关文章:

  • 2021-06-17
  • 2021-10-12
  • 2022-02-09
  • 2021-11-16
  • 2021-10-13
  • 2021-10-21
  • 2021-05-29
  • 2022-12-23
猜你喜欢
  • 2021-05-16
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2021-04-07
  • 2021-10-09
  • 2021-11-30
相关资源
相似解决方案