HowtoForge provides user-friendly Linux tutorials.

  • Using Built-In Revision Control In Firewall Builder

    Author: vkfwbTags: , Comments: 0

    Using Built-In Revision Control In Firewall Builder Firewall Builder GUI has built-in revision control system that can be used to keep track of changes in the objects and policy rules. If data file has been added to the revision control system, every time it is saved, the system asks the user to enter a comment that describes changes done in the file in this session and stores it along with the data. The program also assigns new revision number to the data file using standard software versioning system whith major and minor version numbers separated by a dot. When you open this data file next time, the program presents a list of revisions alongside with dates and comments, letting you choose which revision you want to use. You can open the latest revision and continue working with the file from the point where you left off last time, or open one of the older revisions to inspect how the configuration looked like in the past and possibly create a branch in the revision control system. Here we take a closer look at the built-in revision control system.

  • How To Set Up Apache2 With mod_fcgid And PHP5 On Ubuntu 8.10

    php Author: Falko TimmeTags: , , Comments: 3

    How To Set Up Apache2 With mod_fcgid And PHP5 On Ubuntu 8.10 This tutorial describes how you can install Apache2 with mod_fcgid and PHP5 on Ubuntu 8.10. mod_fcgid is a compatible alternative to the older mod_fastcgi. It lets you execute PHP scripts with the permissions of their owners instead of the Apache user.

  • Drupal + Postfix Integration Under Ubuntu 8.04 (Hardy)

    ubuntu Author: asaavedraTags: , , , , , , Comments: 6

    Drupal + Postfix Integration Under Ubuntu 8.04 (Hardy) This document  will guide you through the necessary steps to configure a Drupal driven mail server. It provides the following features: Drupal managed email accounts, support for virtual domains, automatic forwarding, Postfix quota support, silent BCC monitoring, anti-spam, anti-virus.

  • Retrieving Emails From Remote Servers With getmail (Debian Etch)

    Author: Falko TimmeTags: , Comments: 1

    Retrieving Emails From Remote Servers With getmail (Debian Etch) Getmail is a program for retrieving emails from remote servers; it is very similar to fetchmail, but more flexible. For example, it can be configured to deliver mails directly to a Maildir or mbox mailbox without the need for an MTA such as Postfix, but of course it can also pipe the mails through an MTA if you want. Getmail can use so called filters such as SpamAssassin and ClamAV to scan the mails, and you can even tell getmail to delete mails on the original server only after a certain number of days.

  • Mail Server Setup With Exim, MySQL, Cyrus-Imapd, Horde Webmail On Centos 5.1

    Author: topdogTags: , Comments: 8

    Mail Server Setup With Exim, MySQL, Cyrus-Imapd, Horde Webmail On Centos 5.1 This how to describes the installation and configuration of a mail system on Centos 5.1 with selinux enabled for enhanced security. This system will be able to service HTTP, HTTPS, SMTP, TLS, SMTP-AUTH, IMAP, POP3 clients and is virtual enabled allowing more than one domain to be served from the system.

  • Virtual Users And Domains With Postfix, Courier, MySQL And SquirrelMail (Debian Lenny)

    debian VMWare Image Download Author: Falko TimmeTags: , , Comments: 45

    Virtual Users And Domains With Postfix, Courier, MySQL And SquirrelMail (Debian Lenny) This document describes how to install a Postfix mail server that is based on virtual users and domains, i.e. users and domains that are in a MySQL database. I'll also demonstrate the installation and configuration of Courier (Courier-POP3, Courier-IMAP), so that Courier can authenticate against the same MySQL database Postfix uses. The resulting Postfix server is capable of SMTP-AUTH and TLS and quota. Passwords are stored in encrypted form in the database. In addition to that, this tutorial covers the installation of Amavisd, SpamAssassin and ClamAV. I will also show how to install SquirrelMail as a webmail interface so that users can read and send emails and change their passwords.

  • How To Set Up WebDAV With Apache2 On Ubuntu 8.10

    apache Author: Falko TimmeTags: , Comments: 8

    How To Set Up WebDAV With Apache2 On Ubuntu 8.10 This guide explains how to set up WebDAV with Apache2 on an Ubuntu 8.10 server. WebDAV stands for Web-based Distributed Authoring and Versioning and is a set of extensions to the HTTP protocol that allow users to directly edit files on the Apache server so that they do not need to be downloaded/uploaded via FTP. Of course, WebDAV can also be used to upload and download files.

  • How To Set Up MySQL Database Replication On Fedora 10

    mysql Author: Falko TimmeTags: , Comments: 5

    How To Set Up MySQL Database Replication On Fedora 10 This tutorial describes how to set up database replication in MySQL. MySQL replication allows you to have an exact copy of a database from a master server on another server (slave), and all updates to the database on the master server are immediately replicated to the database on the slave server so that both databases are in sync. This is not a backup policy because an accidentally issued DELETE command will also be carried out on the slave; but replication can help protect against hardware failures though. I will use Fedora 10 for the master and slave in this tutorial.

  • Set Up Ubuntu Server With EHCP (LAMP, DNS, FTP, Mail)

    ubuntu Author: deconectatTags: , Comments: 12

    Set Up Ubuntu Server With EHCP (LAMP, DNS, FTP, Mail) This tutorial will help you setup a web server to host multiple domains. We will use EHCP, a free control panel, to manage the server. The tutorial should be easy to follow even for beginners and you'll probably need about an hour to have your server up & running. You will need a unique static ip address for your server. This can be behind your nat router as long as you set up port forwarding. You will need to know the ip address you want to assign to the server, it's subnet mask, the default gateway and the ip for the dns server.

  • Virtual Hosting With Proftpd And MySQL (Incl. Quota) On Ubuntu 8.10

    ubuntu Author: Falko TimmeTags: , Comments: 3

    This document describes how to install a Proftpd server that uses virtual users from a MySQL database instead of real system users. This is much more performant and allows to have thousands of ftp users on a single machine. In addition to that I will show the use of quota with this setup.