Assuming, you want to transfer files from system A to system B
- Find IP address of system A (wireless)
ifconfig
- Go to the directory you have the files to share
cd /directory
- Start that directory as HTTP server
python -m SimpleHTTPServer
- Go to system B and install
links
(terminal browser) package
sudo apt-get install links
- Start
links
with system A IP (assuming 192.168.2.1) and port which shows in third step (probably 8000)
links 192.168.2.1:8000
- Download whatever files you want
If security is not your concern and simply want to transfer files without any configuration, this is perfect for you, I guess.