Linux Tutorials on the topic “debian”
-
How To Search For Missing Packages With apt-file On Debian and Ubuntu
Author: Falko Timme • Tags: debian, ubuntu • Comments: 1How To Search For Missing Packages With apt-file On Debian and Ubuntu This short article describes how you can search for missing packages with apt-file on Debian and Ubuntu systems. apt-file allows you to search for a file name, and it gives back the name(s) of the package(s) containing that file so that you can install the appropriate package.
-
Install and Configure Auth Shadow on Debian/Ubuntu
Author: Thanatos • Tags: apache, debian, linux, security, ubuntu • Comments: 3Install and Configure Auth Shadow on Debian/Ubuntu Auth Shadow or mod-auth-shadow is a module for apache (and apache2, sort of) that enables authentication against /etc/shadow. The benefits being that any system user with a password can be authenticated for web_dav, subversion or simply an https server. The only other way to do this is with PAM. That method is dangerous because the apache user (www-data in my case) must be able to read /etc/shadow. Obviously, not a good idea. Auth Shadow accomplishes this safely by using a intermediate program called validate. This works because validate can be owned by root but executable by everyone. In the event that your server is compromised through apache, your password file will not be readable.
-
How To Set Up A Ubuntu/Debian LAMP Server
Author: olddocks • Tags: apache, php, mysql, debian, ubuntu • Comments: 43How To Set Up A Ubuntu/Debian LAMP ServerThis tutorial shows a quick way to set up your own LAMP server (Linux + Apache + MySQL + PHP/Perl) on a Ubuntu or Debian system.
-
-
How To Create A Local Debian/Ubuntu Mirror With apt-mirror
Author: Falko Timme • Tags: debian, ubuntu • Comments: 27
How To Create A Local Debian/Ubuntu Mirror With apt-mirror This tutorial shows how to create a Debian/Ubuntu mirror for your local network with the tool apt-mirror. Having a local Debian/Ubuntu mirror is good if you have to install multiple systems in your local network because then all needed packages can be downloaded over the fast LAN connection, thus saving your internet bandwidth.
-
Linux-Vserver on Debian Testing (Etch), the easy way
Author: Daniel15 • Tags: debian, virtualization • Comments: 2Linux-Vserver on Debian Testing (Etch), the easy way In this tutorial, I'll show you how to install Linux-Vserver on Debian Testing (Etch). Basically, Linux-Vserver is an open-source system used to separate a single physical server into multiple virtual servers. From the Linux-Vserver website: "Linux-VServer allows you to create virtual private servers and security contexts which operate like a normal Linux server, but allow many independent servers to be run simultaneously in one box at full speed."
-
Virtual Users And Domains With Postfix, Courier And MySQL (+ SMTP-AUTH, Quota, SpamAssassin, ClamAV)
Author: Falko Timme • Tags: antivirus, debian, postfix • Comments: 71
Virtual Users And Domains With Postfix, Courier And MySQL (+ SMTP-AUTH, Quota, SpamAssassin, ClamAV) 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.
-
Creating .deb-Packages With Checkinstall
Author: Falko Timme • Tags: linux, debian, ubuntu • Comments: 3Creating .deb-Packages With Checkinstall Checkinstall is a nice tool to create simple .deb-packages that you can use in your local network (e.g. if you have to install the same piece of software on multiple computers running Debian). It lets you compile and install software from the sources like before, but with the difference that you end up with a simple Debian package which also means that you can easily uninstall the software you just compiled by running dpkg -r!
-
Converting .rpm Packages To Debian/Ubuntu .deb Format With Alien
Author: Falko Timme • Tags: debian, ubuntu • Comments: 5Converting .rpm Packages To Debian/Ubuntu .deb Format With Alien This article shows how you can convert .rpm packages to .deb packages with a tool called alien so that you can easily install them on Debian and Ubuntu systems. Sometimes this is quite convenient as not all software projects release their software as Debian/Ubuntu packages.
-
MySQL Backup And Recovery With mysql-zrm On Debian Sarge
Author: Falko Timme • Tags: backup, debian, mysql • Comments: 5MySQL Backup And Recovery With mysql-zrm On Debian Sarge This guide describes how to back up and recover your MySQL databases with mysql-zrm on a Debian Sarge system. mysql-zrm is short for Zmanda Recovery Manager for MySQL, it is a new tool that lets you create full logical or raw backups of your databases (regardless of your storage engine and MySQL configuration), generate reports about the backups, verify the integrity of the backups, and recover your databases. It can also send email notifcations about the backup status, and you can implement multiple backup policies (based on your applications and based on time (e.g. daily, weekly, etc.)).
-
How To Set Up A DHCP Server For Your LAN
Author: Falko Timme • Tags: other, debian • Comments: 3How To Set Up A DHCP Server For Your LAN This tutorial describes how to set up a DHCP server (ISC-DHCP) for your local network. DHCP is short for "Dynamic Host Configuration Protocol", it's a protocol that handles the assignment of IP addresses, subnet masks, default routers, and other IP parameters to client PCs that don't have a static IP address. Such computers try to find a DHCP server in their local network which in turn assigns them an IP address, gateway, etc. so that they can connect to the internet or other computers from the local network.