Tag Archives: server

Setup ssh server on Fedora Linux platform

It could be useful to set up a SSH server on your Linux box. For instance, once set up, you can copy files from a Windows machine to your Linux box using ssh/ftp protocol. It is actually quite easy. Here, … Continue reading

Posted in Linux | Tagged , | Leave a comment

Python: how to share a local directory on the web

A simple way to share a local directory on internet (temporarily) can be performed with Python. First, go to the directory you want to share and then type: [admin@localhost Work] python -m SimpleHTTPServer 7000 Serving HTTP on 0.0.0.0 port 7000 … Continue reading

Posted in Python | Tagged | Leave a comment