红联Linux门户
Linux帮助

Ubuntu安装samba-swat

发布时间:2007-03-15 01:05:30来源:红联作者:XLooking
  1、apt-get install xinetd swat依赖xineed才能正常工作

  2、sudo apt-get samba samba-common smbfs smbclient swat

  3、修改inetd.conf

  将 ## swat stream tcp nowait.400 root /usr/sbin/tcpd \ /usr/sbin/swat
  改为
  swat stream tcp nowait.400 root /usr/sbin/tcpd \ /usr/sbin/swat

  4、新建swat文件 sudo vi /etc/xinetd.d/swat

  内容如下:

  # description: SAMBA SWAT
  service swat
  {
  disable = no
  socket_type = stream
  protocol = tcp
  #should use a more limited user here
  user = root
  wait = no
  server = /usr/sbin/swat
  }


  5、sudo dpkg-reconfigure xinetd

  6、查看swat是否运行

  运行命令: netstat -lt

  如果出现tcp 0 0 *:swat *:* LISTEN,表示swat配置运行成功,正在监听

  7、 http://localhost:901 大功告成!
文章评论

共有 0 条评论