On Monday 14 January 2002 13:09 pm, Ictc-Sprint wrote: > How to start ssh/sftp? is it installed with Mandrake 8.1 ? how to findout?
Mandrake is rpm based, right? check out rpm -qa | grep ssh The RPM is called openssh-server in redhat. Guess it will be the same in mandrake also. If you don't have it installed, install it. Then enable it - does mandrake use chkconfig? chkconfig --add sshd; /etc/rc.d/init.d/sshd start sftp is deprecated (and disabled in redhat at least), so use scp instead. You don't need any additional setup for that. If you need the reget/.reput facility of normal ftp, use rsync over ssh instead. Or do a portforwarding using ssh. Binand _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
