Linux Setup Server

Installation Ubuntu server

Common setup (LTS 10.04)

Just execute the standard setup.
Servers: DNS server, LAMP server, Mail server, OpenSSH server, PostgreSQL database, Print server, Samba file server, Tomcat Java server, Virtual Machine Host, Manual Package selection.
Check OpenSSH.
Install GRUB bootloader in MBR.
Clock to UTC.

Install Midnight commander

sudo apt-get install mc

Setup network to use a fixed IP address

Add following lines to /etc/network/interfaces:
auto eth0
iface eth0 inet static
address 192.168.1.10 #ip adress you want to give to the server
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1

Restart network:
sudo /etc/init.d/networking restart

Ubuntu server 10.10

Loading boot log. Graphics initialization failed.
Error setting up gfx boot.
Behind 'boot:' type help.
But won't install on Via Epia 6000 anyway because instruction missing.
10.04 does, maybe because this is a LTS version?

Apache2

Common setup

Apache2 installeren.
To have ssl (https://)
sudo a2enmod ssl
/usr/share/doc/
Configure SSL and create self-signed signatures.
sudo a2ensite default-ssl

Tooling for Terminal in browser

- Install tool
- sudo a2enmod proxy

Links

https://help.ubuntu.com/6.06/ubuntu/serverguide/C/httpd.html
https://help.ubuntu.com/community/ApacheMySQLPHP#To%20install%20the%20default%20LAMP%20stack%20in%20Ubuntu%207.04%20(Feisty%20Fawn)%20Ubuntu%207.10%20(Gutsy%20Gibbon)%20Ubuntu%208.04%20LTS%20(Hardy%20Heron),%208.10%20(Intrepid%20Ibex),%209.04%20(Jaunty%20Jackalope),%209.10%20(Karmic%20Koala)%20and%2010.04%20(Lucid%20Lynx)

Wikidot

http://www.wikidot.org/howto:ubuntu-8-04-local-install

Terminal Server

http://www.reallylinux.com/docs/setupltsp.shtml
http://www.tech-faq.com/setup-linux-file-server.shtml

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License