How to browse gopherspace on OSX ------------------------------------------------------------------- < intro > There are many browsers and browser extensions that support gopher, as well as proxy http websites. I haven't tested OSX, but 'nix was the birthplace of gopher so it should be rather compatible. Personally, I think the most lightweight and fitting options are lynx and the original gopher client. < index > /p1 Lynx /p2 Original Gopher Client < p1 > Lynx is a text-based browser for linux. According to my googling, it should also be available on OSX through homebrew. If you don't have brew, install it: http://brew.sh/ Then install lynx through brew: =================================================================== $ brew install lynx =================================================================== Alternatively, you can also get a free shell account at sdf.org which comes with lynx preinstalled (aliased as "gopher") and browse through ssh (which actually loads faster than running the browser locally if you are far from sdf's servers or your internet is slow). You are now ready to surf the gopherspace. Simply type: =================================================================== lynx gopher://sdf.org/1/users/loli =================================================================== To visit this gopherspace. The controls you will be using the most for gopherspace are: - g: lets you enter a new url (confirm with enter) - Up/Down: navigate links or scroll text files - Enter: follow a link - Right/Left: go forward and back - CTRL+R: refresh page - q: quit (confim with y and enter) For a nice index of most gopher content, visit gopher://gopher.floodgap.com You can customize your homepage and other things by editing /etc/lynx.cfg with your favorite editor (remember to run it as sudo/root). The homepage can be changed from the STARTFILE value. Personally, I find it cleaner to copy /etc/lynx.cfg to my home folder and =================================================================== export LYNX_CFG="$HOME/lynx.cfg =================================================================== In my ~/.bash_profile so I don't have to sudo every time I need to tweak the config file. < p2 > The original gopher client is open-source and can still be easily compiled on linux and mac, however it has a bug with displaying the 10th line of every document, so I will add instructions on patching and compiling it only when I fix that. [TODO]