This repository has been archived on 2024-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
ncsa-mosaic/README.md

63 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2010-03-08 11:03:50 +00:00
NCSA Mosaic
===========
2010-03-08 11:02:04 +00:00
2022-04-21 04:34:37 +00:00
![The first Web Page](mosaic.png "The first Web Page")
2010-03-08 11:08:14 +00:00
2021-03-16 23:55:42 +00:00
This is [NCSA Mosaic](https://en.wikipedia.org/wiki/Mosaic_(web_browser)), one
2012-03-16 01:36:21 +00:00
of the first graphical web browsers. This version has barely been modified
since the last official release, version 2.7 beta 6, in 1996. You may also be
interested in [Mosaic-CK](http://www.floodgap.com/retrotech/machten/mosaic/)
2021-03-17 00:00:58 +00:00
and [VMS Mosaic](https://web.archive.org/web/20070911192043/http://www.openvms.org/stories.php?story=07%2F09%2F03%2F1740114), which have
2012-03-16 01:36:21 +00:00
been substantially improved from the original.
2010-03-08 11:02:04 +00:00
2012-03-16 01:36:21 +00:00
If you're on Linux, your time machine is fueled up and ready to go! Follow the
instructions below to build and run.
2021-03-17 00:00:58 +00:00
Many thanks to [Sean MacLennan and Alan Wylie](https://web.archive.org/web/20120915154245/seanm.ca/mosaic/) for
2012-03-16 01:36:21 +00:00
doing the heavy lifting. And, of course, hats off to Marc Andreessen, Eric
Bina, and the rest of the [NCSA](http://www.ncsa.illinois.edu/) team for
kicking things off for us. Thanks!
2021-03-17 00:00:58 +00:00
[Alan Dipert](https://github.com/alandipert) took the last release of Mosaic, put it
2012-03-16 01:36:21 +00:00
on Github, and made some fixes. [Tim Pizey](http://pizey.net/~timp/) modified
it so that in-document javascript is not displayed.
2010-03-08 11:02:04 +00:00
2010-03-08 11:03:50 +00:00
Building
--------
2010-03-08 11:02:04 +00:00
2022-04-21 04:34:37 +00:00
On Arch Linux:
* First, install these packages:
2022-04-22 06:43:34 +00:00
```
sudo pacman -S openmotif base-devel libjpeg6-turbo libpng libxmu libxpm x11proto meson ninja --needed
```
2022-04-21 04:34:37 +00:00
* Next, build with:
2022-04-22 06:43:34 +00:00
```
meson build
ninja -C build
```
2022-04-21 04:34:37 +00:00
* Run!
2022-04-22 06:43:34 +00:00
```
build/src/Mosaic
```
2012-03-16 01:36:21 +00:00
On Ubuntu:
2010-03-08 11:03:50 +00:00
* First, install these packages:
2022-04-22 06:43:34 +00:00
```
sudo apt-get install build-essential libmotif-dev libjpeg62-dev libpng12-dev x11proto-print-dev libxmu-headers libxpm-dev libxmu-dev meson ninja-build
```
2010-03-08 11:02:04 +00:00
* Next, build with:
2022-04-22 06:43:34 +00:00
```
meson build
ninja -C build
```
2010-03-08 11:02:04 +00:00
* Run!
2022-04-22 06:43:34 +00:00
```
build/src/Mosaic
```