Linux Tutorials on the topic “debian”

  • Command-Line Copy&Paste With xclip (Debian/Ubuntu)

    Author: Falko TimmeTags: , Comments: 4

    Command-Line Copy&Paste With xclip (Debian/Ubuntu) xclip is a command line interface to the X11 clipboard. It allows you to put the output of a command directly into the clipboard so that you don't have to copy&paste from the terminal manually (which can be a tedious task especially if the output is very long). It also allows you to put the contents of a file directly into the clipboard.

  • Installing mod_geoip for Apache2 On Debian Lenny

    debian Author: Falko TimmeTags: , Comments: 0

    Installing mod_geoip for Apache2 On Debian Lenny This guide explains how to set up mod_geoip with Apache2 on a Debian Lenny 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.

  • CUDA And Debian Lenny

    debian Author: schniggieTags: Comments: 2

    CUDA And Debian Lenny NVIDIA® CUDA™ is a general purpose parallel computing architecture that leverages the parallel compute engine in NVIDIA graphics processing units (GPUs) to solve many complex computational problems in a fraction of the time required on a CPU. I don't know why but there is still no CUDA Driver/Toolkit/SDK Package for Debian.

  • How To Log Emails Sent With PHP's mail() Function To Detect Form Spam

    php Author: tillTags: , , , , Comments: 56

    How To Log Emails Sent With PHP's mail() Function To Detect Form Spam If you are running a webserver you might have faced the problem already: somewhere on your server is a vulnerable contact form or CMS system written in PHP that gets abused by spammers to send emails trough your server. If you have more than a few websites, it is a pain to detect which of the sites is vulnerable and sends the spam emails. This tutorial explains the installation of a small wrapper script which logs email messages sent trough the PHP mail() function.

  • Installing NVIDIA Drivers On Debian Lenny Manually

    debian Author: kooshaTags: Comments: 15

    Installing NVIDIA Drivers On Debian Lenny Manually Installing NVIDIA drivers on Debian Lenny requires a little extra work compared to doing so in other distributions like Ubuntu, due to the lack of some required packages in the default installation.

  • Set Up A Simple High-Availability Web Server For A Small Company Using Debian Lenny

    debian Author: raxTags: Comments: 1

    Set Up A Simple High-Availability Web Server For A Small Company Using Debian Lenny This tutorial was written for the Debian Lenny distribution and supposes that the user has knowledge about what load balancing is and some basic skills of Linux, our two load balancers consist out of 2 machines that monitor each other [heartbeat], if the master stops responding the secondary one [Backup] will take the master role [Backup -> Master].

  • Install PHP 5.3.0/Lighttpd On Debian (Lenny) With Imap, MySQL, Sqlite3 And ImageMagick Support

    lighttpd Author: zabouthTags: , , Comments: 7

    Install PHP 5.3.0/Lighttpd On Debian (Lenny) With Imap, MySQL, Sqlite3 And ImageMagick Support This tutorial covers the setup of PHP 5.3.0/Lighttpd on Debian (lenny) with imap, mysql, mysqli, sqlite3, ImageMagick and mycrypt support.

  • How To Limit CPU Usage Of A Process With cpulimit (Debian/Ubuntu)

    Author: Falko TimmeTags: , Comments: 3

    How To Limit CPU Usage Of A Process With cpulimit (Debian/Ubuntu) This tutorial shows how you can limit the CPU usage of a process with the tool cpulimit on Debian/Ubuntu. cpulimit is a simple program that attempts to limit the CPU usage of a process (expressed in percentage, not in cpu time). This is useful to control batch jobs, when you don't want them to eat too much CPU. It does not act on the nice value or other scheduling priority stuff, but on the real CPU usage. Also, it is able to adapt itself to the overall system load, dynamically and quickly.

  • Installing Apache2 With PHP5 And MySQL Support On Debian Lenny (LAMP)

    debian Author: Falko TimmeTags: , , , Comments: 11

    Installing Apache2 With PHP5 And MySQL Support On Debian Lenny (LAMP) LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on a Debian Lenny server with PHP5 support (mod_php) and MySQL support.

  • How To Set Up Apache2 With mod_fcgid And PHP5 On Debian Lenny

    apache VMWare Image Download Author: Falko TimmeTags: , , Comments: 18

    How To Set Up Apache2 With mod_fcgid And PHP5 On Debian Lenny This tutorial describes how you can install Apache2 with mod_fcgid and PHP5 on Debian Lenny. mod_fcgid is a compatible alternative to the older mod_fastcgi. It lets you execute PHP scripts with the permissions of their owners instead of the Apache user.