g87616758 发表于 2015-5-30 04:44:47

在Windows上使用telnet和ftp连接openSUSE的步骤

  在Windows上使用telnet和ftp连接openSUSE的步骤
  地狱门神
  
  我使用的Mono发布的带Mono的openSUSE。
  使用YaST安装xinetd、telnet-server和vsftpd。
修改/etc/xinetd.d/telnet中的disable为no,以便打开telnet-server。
修改/etc/vsftpd.conf,取消#write_enable=YES和#local_enable=YES的注释,以便以本地用户账号登陆。还可注释掉anonymous_enable=YES,以便禁用匿名用户。
  若要将服务加入启动项。可在su後运行
chkconfig xinetd on
chkconfig vsftpd on
  也可直接将後面的命令添加到/etc/init.d/boot.local。
  这样就配置完成了。
  重新启动或在命令行中su後执行
/etc/init.d/xinetd start
/etc/init.d/vsftpd start
即可运行两个服务。
  
  有了telnet和ftp以後,就可以在Windows上编写C代码,而在linux上编译运行了。参见
  Minix自动交叉编译工具 http://www.iyunv.com/Rex/archive/2009/03/23/1419732.html
页: [1]
查看完整版本: 在Windows上使用telnet和ftp连接openSUSE的步骤