LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 930|回复: 1

技巧:安装SimpServer for Unix 加密你的MSN会话

[复制链接]
发表于 2006-12-20 12:51:56 | 显示全部楼层 |阅读模式
平常,我们在windows下加密msn会话,可以通过simp lite for msn来达到目的。在linux下使用msn的时候,我们也要一个对应的simp方法,才能够达到加密会话的目的。

我的方法是在自己的技巧上装一个SimpServer for Unix,来达到加密msn会话的目的。

1,下载。
http://www.secway.fr/us/products/simpserver/download.php下载。
2,安装。
下载完成之后,我解压到了/usr/local/simp。
3,配置为服务。
这样做,是为了让我的simp随着操作系统启动而启动。我做了一个脚本。

ncowboy@geisha:/tmp> cat /etc/init.d/simp
#! /bin/sh
#
#
### BEGIN INIT INFO
# Provides:       simp
# Required-Start: $network
# X-UnitedLinux-Should-Start:
# Required-Stop:
# Default-Start:  3 5
# Default-Stop:   0 1 2 6
# Description:    SimpServer, the Unix instant messengers security solution
### END INIT INFO

SIMP_BIN="/usr/local/simp/bin/simpserver";
SIMP_CONF="/usr/local/simp/etc/simp.conf";

. /etc/rc.status
rc_reset

# Check for missing binary
if [ ! -x ${SMBD_BIN} ]; then
        echo -n >&2 "SimpServer, ${SIMP_BIN} is not installed. "
        rc_status -s
        exit 5
fi

case "$1" in
        start)
                nohup ${SIMP_BIN} ${SIMP_CONF} > /tmp/simp.log &
                rc_status -v
                ;;
        stop)
                killall ${SIMP_BIN};
                rc_status -v
                ;;
        *)
                echo "Usage: $0 {start|stop}"
                exit 1
                ;;

esac
rc_exit
ncowboy@geisha:/tmp>                                            


4,启动。
ncowboy@geisha:/usr/local/simp> /etc/init.d/simp
Usage: /etc/init.d/simp {start|stop}
ncowboy@geisha:/usr/local/simp>
发表于 2007-4-13 17:26:13 | 显示全部楼层
msn不是加密的吗?
-_-||
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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