public marks

PUBLIC MARKS from falko with tag fedora

July 2008

Embedding Python In Apache2 With mod_python (Debian/Ubuntu, Fedora/CentOS, Mandriva, OpenSUSE) | HowtoForge - Linux Howtos and Tutorials

(via)
This tutorial shows how to install and use mod_python on various distributions (Debian/Ubuntu, Fedora/CentOS, Mandriva, OpenSUSE) with Apache2. mod_python is an Apache module that embeds the Python interpreter within the server. It allows you to write web-based applications in Python that will run many times faster than traditional CGI and will have access to advanced features such as ability to retain database connections and other data between hits and access to Apache internals.

Installing And Using OpenVZ On Fedora 9 | HowtoForge - Linux Howtos and Tutorials

(via)
In this HowTo I will describe how to prepare a Fedora 9 server for OpenVZ. With OpenVZ you can create multiple Virtual Private Servers (VPS) on the same hardware, similar to Xen and the Linux Vserver project. OpenVZ is the open-source branch of Virtuozzo, a commercial virtualization solution used by many providers that offer virtual servers. The OpenVZ kernel patch is licensed under the GPL license, and the user-level tools are under the QPL license.

Virtual Hosting With Proftpd And MySQL (Incl. Quota) On Fedora 9 | HowtoForge - Linux Howtos and Tutorials

(via)
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.

June 2008

Installing mod_geoip For Apache2 On Fedora 9 | HowtoForge - Linux Howtos and Tutorials

(via)
This guide explains how to set up mod_geoip with Apache2 on a Fedora 9 system. mod_geoip looks up the IP address of the client end user. This allows you to redirect or block users based on their country. You can also use this technology for your OpenX (formerly known as OpenAds or phpAdsNew) ad server to allow geo targeting.

Back Up Your Files With Areca On Fedora 9 | HowtoForge - Linux Howtos and Tutorials

(via)
Areca is a personal file backup software developed in Java. It allows you to select files or directories to back up, filter, encrypt and compress their content, and store them on your backup location. Areca supports incremental backups and generates backup reports, which can be stored on your disk or sent by email. This guide explains how to install and use it on a Fedora 9 desktop (GNOME).

May 2008

Setting Up PHPlist (Open-Source Newsletter Manager) | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to set up PHPlist on Fedora, CentOS, Ubuntu and Debian. This howto should also work for other distributions with little modifications. Taken from the phplist page: "phplist is an open-source newsletter manager. phplist is free to download, install and use, and is easy to integrate with any website. phplist is downloaded more than 10 000 times per month and is listed in the top open source projects for vitality score on Freshmeat."

Upgrade Your Desktop From Fedora 8 To Fedora 9 With PreUpgrade | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to upgrade your desktop from Fedora 8 to Fedora 9 via PreUpgrade. PreUpgrade provides a frontend that allows the user to easily download all packages that are needed for the distribution upgrade, and then perform the distribution upgrade.

The Perfect Desktop - Fedora 9 | HowtoForge - Linux Howtos and Tutorials

This document describes step-by-step how to set up a Fedora 9 desktop (GNOME). The result is a fast, secure and extendable system that provides all you need for daily work and entertainment.

The Perfect Server - Fedora 9 | HowtoForge - Linux Howtos and Tutorials

(via)
This is a detailed description about how to set up a Fedora 9 server that offers all services needed by ISPs and hosters: Apache web server (SSL-capable) with PHP5 and Ruby, Postfix mail server with SMTP-AUTH and TLS, BIND DNS server, Proftpd FTP server, MySQL server, Dovecot POP3/IMAP, Quota, Firewall, etc. This tutorial is written for the 32-bit version of Fedora 9, but should apply to the 64-bit version with very little modifications as well.

April 2008

Unattended Fedora 8 Installation With NFS And Kickstart

(via)
This document describes how to set up an installation environment with kickstart and NFS on Fedora 8. With the resulting system you will be able run unattended Fedora 8 installations on the client systems in your LAN - additionally, you will save lots of Internet bandwidth. The whole client configuration can be included into the kickstart file (especially the post-installation script) so you, the admin, will also save a vast amount of time.

March 2008

Installing The Open Source Ticket Request System (OTRS) On Fedora 8 | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to set up the Open Ticket Request System (OTRS) on Fedora 8. Taken from the OTRS page: "OTRS is an Open source Ticket Request System (also well known as trouble ticket system) with many features to manage customer telephone calls and e-mails. The system is built to allow your support, sales, pre-sales, billing, internal IT, helpdesk, etc. department to react quickly to inbound inquiries."

Speed Up Your System With Preload On Fedora 8 | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to install preload on Fedora 8. preload is an adaptive readahead daemon. It monitors applications that users run, and by analyzing this data, predicts what applications users might run, and fetches those binaries and their dependencies into memory for faster startup times.

Setting Up A High-Availability Load Balancer (With Failover and Session Support) With HAProxy/Heartbeat On Fedora 8 | HowtoForge - Linux Howtos and Tutorials

by 1 other (via)
This document describes how to set up a two-node load balancer in an active/passive configuration with HAProxy and heartbeat on Fedora 8. The load balancer acts between the user and two (or more) Apache web servers that hold the same content. The load balancer passes the requests to the web servers and it also checks their health. If one of them is down, all requests will automatically be redirected to the remaining web server(s). In addition to that, the two load balancer nodes monitor each other using heartbeat. If the master fails, the slave becomes the master - users will not notice any disruption of the service. HAProxy is session-aware - you can use it with any web application that makes use of sessions like forums, shopping carts, etc.

February 2008

Back Up Your Files With Fwbackups On Fedora 8 | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to set up, configure and use Fwbackups on a Fedora 8 desktop. The result is an easy-to-use backup system for desktop usage. Fwbackups creates partial backups which can be stored locally or on a removable device. You have also the option to run scheduled backups.

Master-Master Replication With MySQL 5 On Fedora 8 | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to set up master-master replication with MySQL 5 on Fedora 8. Since version 5, MySQL comes with built-in support for master-master replication, solving the problem that can happen with self-generated keys. In former MySQL versions, the problem with master-master replication was that conflicts arose immediately if node A and node B both inserted an auto-incrementing key on the same table. The advantages of master-master replication over the traditional master-slave replication are that you do not have to modify your applications to make write accesses only to the master, and that it is easier to provide high-availability because if the master fails, you still have the other master.

How To Install mod_ruby On Various Linux Distributions For Use With ISPConfig (2.2.20 And Above) | HowtoForge - Linux Howtos and Tutorials

(via)
Starting with version 2.2.20, ISPConfig has built-in support for Ruby. Instead of using CGI/FastCGI, ISPConfig depends on mod_ruby being available in the server's Apache. This article explains how to install mod_ruby on various Linux distributions supported by ISPConfig.

December 2007

Samba Domaincontroller For Small Workgroups With SWAT On Fedora 8 | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to set up and configure a Samba Domaincontroller for small workgroups (up to 250 users) on Fedora 8 with the Samba Web Administration Tool. The resulting system provides an easy-to-manage domaincontroller for your Windows network.

Installing MyDNS And The MyDNSConfig Control Panel On Fedora 8 | HowtoForge - Linux Howtos and Tutorials

(via)
In this tutorial I will describe how to install and configure MyDNS and MyDNSConfig on Fedora 8. MyDNS is a DNS server that uses a MySQL database as backend instead of configuration files like, for example, Bind or djbdns. The advantage is that MyDNS simply reads the records from the database, and it does not have to be restarted/reloaded when DNS records change or zones are created/edited/deleted. A secondary nameserver can be easily set up by installing a second instance of MyDNS that accesses the same database or, to be more redundant, uses the MySQL master / slave replication features to replicate the data to the secondary nameserver.

Back Up Your Files With Pybackpack On Fedora 8 | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to set up, configure and use Pybackpack on Fedora 8. The result is an easy to use backup system for desktop usage. Pybackpack creates incremental backups which can be stored locally or remotely (SSH) - the usage of removable devices is supported. You also have the option to burn the backup(s) directly on a CD/DVD.

November 2007

Virtual Users And Domains With Postfix, Courier And MySQL (Fedora 8) | HowtoForge - Linux Howtos and Tutorials

(via)
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 will 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 (quota is not built into Postfix by default, I will show how to patch your Postfix appropriately). Passwords are stored in encrypted form in the database (most documents I found were dealing with plain text passwords which is a security risk). In addition to that, this tutorial covers the installation of Amavisd, SpamAssassin and ClamAV so that emails will be scanned for spam and viruses.

Installation Guide: Fedora 8 Desktop (a.k.a. The Perfect Desktop) | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to set up a Fedora desktop - including how to enable special mouse buttons, improve laptop support (depending on your model), set up printers (especially HP) and the usage of Compiz Fusion. The result is a fast, secure and extendable system that provides all you need for daily work an entertainment.

Enabling Compiz Fusion On A Fedora 8 GNOME Desktop (ATI Mobility Radeon 9200) | HowtoForge - Linux Howtos and Tutorials

(via)
This tutorial shows how you can enable Compiz Fusion on a Fedora 8 GNOME desktop (the system must have a 3D-capable graphics card - I'm using an ATI Mobility Radeon 9200 here). With Compiz Fusion you can use beautiful 3D effects like wobbly windows or a desktop cube on your desktop.

Fedora 8 Server Setup: LAMP, Email, DNS, FTP, ISPConfig (a.k.a. The Perfect Server) | HowtoForge - Linux Howtos and Tutorials

(via)
This is a detailed description about how to set up a Fedora 8 server that offers all services needed by ISPs and hosters: Apache web server (SSL-capable), Postfix mail server with SMTP-AUTH and TLS, BIND DNS server, Proftpd FTP server, MySQL server, Dovecot POP3/IMAP, Quota, Firewall, etc. This tutorial is written for the 32-bit version of Fedora 8, but should apply to the 64-bit version with very little modifications as well.

October 2007

Using The Avant Window Navigator (AWN) On Fedora 7 | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to set up the Avant Window Navigator (AWN) on Fedora 7. The result is an eye candy, dock-like bar at the bottom of the screen as a replacement for the standard gnome-panel. The Avant Window Manager provides an easy to use interface where you can configure/customize it to your needs. Launchers, task lists, and third party applets are supported.

Chrooted SSH/SFTP On Fedora 7 | HowtoForge - Linux Howtos and Tutorials

(via)
This document describes how to set up a chrooted SSH/SFTP environment on Fedora 7. The chrooted users will be jailed in a specific directory where they cannot break out. They will be able to access their jail via SSH and SFTP.