LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
楼主: menglianjing

xfce4的终端乱码解决方案!!

[复制链接]
发表于 2004-1-1 13:06:43 | 显示全部楼层

回复: re

最初由 menglianjing 发表
帅哥们!先别什么字体了,如果要我可以给你们,好像是FZCCHJW.ttf,FZMHJW.ttf,FZPWJW.ttf,FZCSJW.ttf,Fzlsjw.ttf,FZPHTJW.ttf,Fzxkjw.ttf其中的一种!如果要的话可以发给你们!
   还是先看看怎么解决乱码问题吧!谢谢了,环境变量在哪设置?初用xfce4还有好多迷茫的地方!Thanks


字体给我。。。然后我告诉你。。。
 楼主| 发表于 2004-1-1 13:12:06 | 显示全部楼层

re

怎么给你呀!你的邮箱多少?
发表于 2004-1-1 13:19:15 | 显示全部楼层

回复: re

最初由 menglianjing 发表
怎么给你呀!你的邮箱多少?



qing@linuxsir.cn
 楼主| 发表于 2004-1-1 13:24:16 | 显示全部楼层

re

http://www.founder.com.cn/support/font/LT-DL.htm
给你地址,自己慢慢挑吧!!但是不要设置成同样的!! ;)
发表于 2004-1-1 13:38:48 | 显示全部楼层
你就不能发给我。。。找麻烦。。。
发表于 2004-1-1 13:41:33 | 显示全部楼层
告你吧。。。

xfterm4关键词  自己 上google
发表于 2004-1-1 13:46:39 | 显示全部楼层
xfterm4

    This is a convenient terminal script. It uses the $TERMCMD environmental variable as terminal command if available and falls back to using xterm. Especially useful in the panel where you can drag file or directories to it that will be viewed by the appropriate console application (less for text files, lynx for html).




[PHP]#!/bin/sh
# Xfterm script revsed in order to make it easier to expand and to be
# more compatible with applications such as gnome-terminal

if [ "x$TERMCMD" = "x" ]; then
        TERMCMD=xterm
fi

if [ "$1" = "-e" ]; then
        if [ -n "$2" ]; then
                ESTRING="$2"
                shift; shift
        else
                shift
        fi
fi       

# Add an entry for your own strange non-standard xterm replacement here
case "$TERMCMD" in
        "powershell")
                EXEC="--execute="
                # The following dosen't seem to work, but it's the best
                # equalient to a title switch powershell has
                TITLE="--name="
                ;;
        "gnome-terminal"|"gnome2-terminal")
                EXEC="-x "
                TITLE="--title "
                ;;
        "Eterm")
                EXEC="-e "
                TITLE="-T "
                ;;
        *)
                EXEC="-e "
                TITLE="-title "
                ;;
esac

if [ ! "x$ESTRING" = "x" ]; then
        TSTRING="$ESTRING"
elif [ "x$1" = "x" ]; then
        TSTRING="Terminal"
        ESTRING=""
        unset EXEC
elif [ -d "$*" ]; then
        cd "$*"
        TSTRING="Terminal"
        ESTRING=""
        unset EXEC
elif [ -x "$*" ]; then
        cd `dirname "$*"`
        TSTRING=`basename "$*"`
        ESTRING="`which pauseme`"
        MSTRING="$*"
elif [ -f "$*" ]; then
        TSTRING="Viewing $*"
        ESTRING="`which less`"
        MSTRING="$*"
elif [ "`echo $* | grep "http:/"`" -o "`echo $* | grep "ftp:"`" ]; then
        # This requires lynx. If you don't have it, don't drop URLs.
        TSTRING="Lynx: $*"
        ESTRING="`which lynx`"
        MSTRING="$*"
else
        exec $TERMCMD $@
fi


# Ugly, why can't they just make all terms work the same way?
# Note that you cannot feed this script with a text file which
# contains spaces in its name and/or path if your $TERMCMD = powershell
if [ "$TERMCMD" = "powershell" ]; then
        exec $TERMCMD $TITLE"$TSTRING" $EXEC"$ESTRING $MSTRING"
elif [ "x$MSTRING" = "x" ]; then
        exec $TERMCMD $TITLE"$TSTRING" $EXEC$ESTRING
else
        exec $TERMCMD $TITLE"$TSTRING" $EXEC$ESTRING "$MSTRING"
fi

exit 0                       
[/PHP]
 楼主| 发表于 2004-1-1 14:12:41 | 显示全部楼层

re

你怎么这么懒?已经帮你精确定位了,而且上面都有字体样式。想要什么样的就有什么样的!
发表于 2004-1-1 17:42:58 | 显示全部楼层
xfce4默认的term是xterm,xterm显示中文需要设置合适的字体,可以自己改成rxvt或mlterm之类的。
 楼主| 发表于 2004-1-2 09:52:09 | 显示全部楼层

re

哦?请问到哪改?我没有找到xfce4的配置文件?Thanks
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表