can someone help me on to write my yaws webserver configuration file in the Linux terminal. when i follow the yaws tutorials i get errors. thanks a lot.
Asked
Active
Viewed 572 times
0
-
What errors do you get? What commands do you run? – Jonas Mar 19 '11 at 11:33
1 Answers
2
This is how I installed Yaws 1.89 on Ubuntu Server 10.10.
1. Update your Ubuntu system
sudo apt-get update
sudo apt-get upgrade
2. Install the tools you need to compile
sudo apt-get install gcc
sudo apt-get install libpam0g-dev
3. Download, compile and install Yaws 1.89
wget http://yaws.hyber.org/download/yaws-1.89.tar.gz
tar xfz yaws-1.89.tar.gz
cd yaws
./configure && make
sudo make install

Jonas
- 121,568
- 97
- 310
- 388
-
You can more generally use `apt-get build-dep yaws` to install the dependencies you need in order to build Yaws. – Steve Vinoski Apr 16 '11 at 21:11
-
`apt-get build-dep yaw` fails with the below error : `E: You must put some 'source' URIs in your sources.list` – Tarun Patel Apr 23 '21 at 13:46