Linux Tutorials on the topic “fedora”
-
How To Set Up MySQL Database Replication On Fedora 10
Author: Falko Timme • Tags: fedora, mysql • 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.
-
Mirror Your Web Site With rsync On Fedora 10
Author: Falko Timme • Tags: backup, fedora • Comments: 4
Mirror Your Web Site With rsync On Fedora 10 This tutorial shows how you can mirror your web site from your main web server to a backup server (both running Fedora 10) that can take over if the main server fails. We use the tool rsync for this, and we make it run through a cron job that checks every x minutes if there is something to update on the mirror. Thus your backup server should usually be up to date if it has to take over.
-
Virtual Users And Domains With Postfix, Courier, MySQL And SquirrelMail (Fedora 10)
Author: Falko Timme • Tags: antivirus, fedora, postfix • Comments: 6
Virtual Users And Domains With Postfix, Courier, MySQL And SquirrelMail (Fedora 10) This document describes how to install a mail server based on Postfix 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 (quota is not built into Postfix by default, I'll 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. 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 Fedora 10
Author: Falko Timme • Tags: apache, fedora • Comments: 1
How To Set Up WebDAV With Apache2 On Fedora 10 This guide explains how to set up WebDAV with Apache2 on a Fedora 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 Install Hamachi On Fedora 9
Author: webtechy • Tags: fedora, networking • Comments: 4How To Install Hamachi On Fedora 9 This tutorial explains how to install Hamachi on a Fedora 9 server. Hamachi is a VPN service that easily sets up in 10 minutes, and enables secure remote access to your business network, anywhere there's an Internet connection. It works with your existing firewall, and requires no additional configuration. Hamachi is the first networking application to deliver an unprecedented level of direct peer-to-peer connectivity. It is simple, secure, and cost-effective.
-
The Perfect Desktop - Fedora 10 (GNOME)
Author: Falko Timme • Tags: desktop, fedora • Comments: 34
The Perfect Desktop - Fedora 10 (GNOME) This tutorial shows how you can set up a Fedora 10 desktop (GNOME) that is a full-fledged replacement for a Windows desktop, i.e. that has all the software that people need to do the things they do on their Windows desktops. The advantages are clear: you get a secure system without DRM restrictions that works even on old hardware, and the best thing is: all software comes free of charge.
-
How To Upgrade From Fedora 9 To Fedora 10 (Desktop & Server)
Author: Falko Timme • Tags: fedora • Comments: 3
How To Upgrade From Fedora 9 To Fedora 10 (Desktop & Server) This article describes how you can upgrade your Fedora 9 system to Fedora 10 (which was released yesterday - November 25, 2008). The upgrade procedure works for both desktop and server installations.
-
Automatic And Up-To-Date Fedora 9 Installations With Kickstart And Novi
Author: Falko Timme • Tags: fedora • Comments: 2
Automatic And Up-To-Date Fedora 9 Installations With Kickstart And Novi Kickstart allows you to do automatic Fedora/RedHat/CentOS installations (i.e., you do not have to sit in front of the computer and answer the questions of the installer). This is useful and time-saving if you have to deploy tens or hundreds of similar systems (e.g. workstations). Kickstart reads the installation settings from a Kickstart configuration file. The problem with Kickstart is that it usually uses the distribution's packages from the time the distribution was released, i.e., it does not consider updates which means you would have to update each system manually after the Kickstart installation. This guide explains how you can do up-to-date Kickstart installations with the help of a tool called novi.
-
Installing Xbox Media Center (XBMC) On Fedora 9 (i386)
Author: Falko Timme • Tags: desktop, fedora • Comments: 11
Installing Xbox Media Center (XBMC) On Fedora 9 (i386) The Xbox Media Center (XBMC) is a media center application for Linux, Mac, and Windows that allows you to manage/watch/listen to/view your videos, music, and pictures. It has a nice interface, can be controlled from the desktop or a remote control or via its built-in web interface, and it can be extended by custom scripts. This guide shows how you can install XBMC on a Fedora 9 desktop (i386).
-
Integrating APC (Alternative PHP Cache) Into PHP5 And Lighttpd (Fedora 9)
Author: Falko Timme • Tags: fedora, lighttpd, php • Comments: 2
Integrating APC (Alternative PHP Cache) Into PHP5 And Lighttpd (Fedora 9) This guide explains how to integrate APC (Alternative PHP Cache) into PHP5 and lighttpd on a Fedora 9 system. APC is a free and open PHP opcode cacher for caching and optimizing PHP intermediate code. It's similar to other PHP opcode cachers, such as eAccelerator and XCache.