Linux Tutorials on the topic “debian”

  • Using Old Debian Versions In Your sources.list

    debian Author: Falko TimmeTags: Comments: 14

    Using Old Debian Versions In Your sources.list You might be in a situation where you have a sytem with an old Debian version that has reached end of life, like Etch, Sarge, Woody, etc., and a distribution upgrade is not an option for you (maybe because you have customized the system so much that you fear breaking the system by doing a distribution upgrade). The "normal" repositories for these old versions do not exist anymore, which means you cannot install new software or update existing packages using apt. This tutorial shows how you can modify your /etc/apt/sources.list to still get packages for your old Debian version using apt.

  • How To Create A Debian Wheezy (Testing) OpenVZ Template

    openvz Author: Falko TimmeTags: , , Comments: 2

    How To Create A Debian Wheezy (Testing) OpenVZ Template This tutorial explains how to create an OpenVZ template for Debian Wheezy (Debian Testing) that you can use to create virtual Debian Wheezy machines under OpenVZ. I searched for a Debian Wheezy OpenVZ template, but couldn't find one, that's why I decided to create it myself. This guide can also be used for creating Debian Lenny templates and templates for recent Ubuntu versions.

  • Installing MySQL Administrator Tool To Connect To Remote Databases

    Author: SamTzuTags: , , Comments: 4

    Installing MySQL Administrator Tool To Connect To Remote Databases This tutorial provides step-by-step instructions on how to install MySQL Admin tool on an Ubuntu 11.04 system and how to connect to a remote host with it. This should also work on most Debian based operating systems.

  • How To Set Up SSL Vhosts Under Nginx + SNI Support (Ubuntu 11.04/Debian Squeeze)

    nginx Author: Falko TimmeTags: , , , , Comments: 3

    How To Set Up SSL Vhosts Under Nginx + SNI Support (Ubuntu 11.04/Debian Squeeze) This article explains how you can set up SSL vhosts under nginx on Ubuntu 11.04 and Debian Squeeze so that you can access the vhost over HTTPS (port 443). SSL is short for Secure Sockets Layer and is a cryptographic protocol that provides security for communications over networks by encrypting segments of network connections at the transport layer end-to-end. In addition to that I will show how to make use of SNI (Server Name Indication) to allow multiple SSL vhosts per IP address.

  • Restricting Users To SFTP Plus Setting Up Chrooted SSH/SFTP (Debian Squeeze)

    debian Author: Falko TimmeTags: , Comments: 12

    Restricting Users To SFTP Plus Setting Up Chrooted SSH/SFTP (Debian Squeeze) This tutorial describes how to give users chrooted SSH and/or chrooted SFTP access on Debian Squeeze. With this setup, you can give your users shell access without having to fear that they can see your whole system. Your users will be jailed in a specific directory which they will not be able to break out of. I will also show how to restrict users to SFTP so that they cannot use SSH (this part is independent from the chroot part of this tutorial).

  • Installing PowerDNS (With MySQL Backend) And Poweradmin On Debian Squeeze

    debian Author: Falko TimmeTags: , , Comments: 4

    Installing PowerDNS (With MySQL Backend) And Poweradmin On Debian Squeeze This article shows how you can install the PowerDNS nameserver (with MySQL backend) and the Poweradmin control panel for PowerDNS on a Debian Squeeze system. PowerDNS is a high-performance, authoritative-only nameserver - in the setup described here it will read the DNS records from a MySQL database (similar to MyDNS), although other backends such as PostgreSQL are supported as well. Poweradmin is a web-based control panel for PowerDNS.

  • Using scponly To Allow SCP/SFTP Logins And Disable SSH Logins On Debian Squeeze

    debian Author: Falko TimmeTags: , Comments: 4

    Using scponly To Allow SCP/SFTP Logins And Disable SSH Logins On Debian Squeeze scponly is an alternate shell that restricts users to SCP and SFTP logins, but disallows SSH logins. It is a wrapper to the OpenSSH suite of applications. With the help of scponly, you can allow your users to use clients such as WinSCP or FileZilla to upload/download files, but you refuse SSH logins (e.g. with PuTTY) so that your users cannot execute files/programs. This tutorial shows how to install and use scponly on Debian Squeeze.

  • Server Monitoring With Icinga On Debian Squeeze

    debian Author: Falko TimmeTags: , Comments: 7

    Server Monitoring With Icinga On Debian Squeeze Icinga is an enterprise grade open source monitoring system which keeps watch over networks and any conceivable network resource, notifies the user of errors and recoveries and generates performance data for reporting. It is a fork of Nagios. This tutorial explains how to install Icinga on a Debian Squeeze server to monitor this server and another Debian Squeeze server.

  • Setting Up Network RAID1 With DRBD On Debian Squeeze

    debian Author: Falko TimmeTags: , , Comments: 4

    Setting Up Network RAID1 With DRBD On Debian Squeeze This tutorial shows how to set up network RAID1 with the help of DRBD on two Debian Squeeze systems. DRBD stands for Distributed Replicated Block Device and allows you to mirror block devices over a network. This is useful for high-availability setups (like a HA NFS server) because if one node fails, all data is still available from the other node.

  • How To Speed Up Drupal 7.7 With Boost And nginx (Debian Squeeze)

    nginx Author: Falko TimmeTags: , , , Comments: 2

    How To Speed Up Drupal 7.7 With Boost And nginx (Debian Squeeze) This tutorial shows how you can speed up your Drupal 7.7 installation on a LAMP stack (Debian Squeeze) with the help of Boost and nginx. Boost provides static page caching for Drupal enabling a very significant performance and scalability boost for sites that receive mostly anonymous traffic. Boost makes sure that your logged-in users always get fresh content by not caching pages for logged-in users. In a first step I will show how to make your site faster by enabling Boost on a normal LAMP stack (Apache2, PHP, MySQL), and in a second step I explain how to make your site even faster by using nginx as a reverse proxy sitting in front of Apache and delivering the static HTML pages cached by Boost. nginx delivers static files a lot of faster than Apache and uses less memory/CPU.