Agilo's Weblog (text-based version for ancient browsers) ------------------------------------------------------------------------------- You are seeing this page in the technology best suited for your browser. Enjoy your stay here and if at any time you feel the urge to see this page in its full glory I kindly and friendly suggest you to get a better browser. ------------------------------------------------------------------------------- --- Entry title: Webserver on TOMSRTBT. Date added: Monday, January 26 2004, 10:52PM Written by: Agilo (agilo3@gmail.com) Entry ID: 26 --- I've set up a httpd (asmutils) webserver on my old PentiumMMX through TOMSRTBT. TOMSRTBT is Linux on 1 floppy disk, it loads itself into the memory of a PC. It's Minix under the shell. Anyway, check it out here (when it's up -- since it's not dedicated): http://24.132.55.70/ And, since TOMSRTBT is resetted after each boot, I've created a small setup shell script to get it going, nothing big, at all, but it works: #/bin/sh cd /tmp/; sleep 1; echo "Fetching the index.html file.."; wget ftp://24.132.55.70:21/index.html; sleep 1; echo "Setting up the server.."; httpd /tmp/ 80; -------------------------------------------------------------------------------