Category: JeOS

  • Update/patch Ubuntu server

    Update Ubuntu server: 1. Update aptitudes packetlist. # sudo aptitude update 2. Update installed packages. # sudo aptitude full-upgrade -y

  • Configurate the network interface

    1. Configurate the IP-address # sudo nano /etc/network/interfaces/ config example: iface eth0 inet static address 192.168.0.100 netmask 255.255.255.0 gateway192.168.0.1 After the configuration is done restart the network interface: # sudo /etc/init.d/networking restart 2. Configurate the DNS # sudo nano /etc/reslov.conf config example: nameserver 192.168.0.2 nameserver 192.168.0.3

  • Installing a LAMP-server (LinuxApacheMysqlPHP)

    Here are som useful things to install and config when running a LAMP-server under Ubuntu JeOS. 1. Install Ubuntu JeOS. 2. Update aptitudes packetlist. # sudo aptitude update 3. Update/Upgrade the system. # sudo aptitude full-upgrade -y 4. If the kernel was updated, restart the system. # sudo reboot 5.  Install SSH # sudo aptitude…