Linux Tutorials on the topic “debian”
-
Creating a read-only mirror of your SVN repository with SVK
Author: GSMD • Tags: debian, ubuntu • Comments: 0Creating a read-only mirror of your SVN repository with SVK Say, you've got an SVN for your OpenSource project and would like to mirror it to some remote location that hosts opensource projects (such as SourceForge.net or dev.java.net). I'll skip the phase of an account and project registration and assume you've already got your credentials and SVN repo url. I also assume you are on Debian or Ubuntu and your SVN is up and running under Apache httpd.
-
How to make a small change to a Debian tool and repackage it?
Author: martinfst • Tags: debian, ubuntu • Comments: 1How to make a small change to a Debian tool and repackage it? This mini-tutorial shows how to modify a small option of a standard Debian/Ubuntu package to accomodate your personal preferences and rebuild and install this package on your system.
-
Run Your Own Webradio Station With Icecast2 And Ices2
Author: Falko Timme • Tags: other, debian, ubuntu • Comments: 25Run Your Own Webradio Station With Icecast2 And Ices2 This tutorial describes how to set up an audio streaming server with Icecast2. In order that Icecast2 can stream audio to listeners we install Ices2. Ices2 is a program that sends audio data to an Icecast2 server to broadcast to clients. Ices2 can either read audio data from disk (Ogg Vorbis files), or sample live audio from a sound card and encode it on the fly. In this article we will let Ices2 read .ogg files from the local hard disk.
-
-
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!