Linux Tutorials on the topic “ubuntu”

  • Installing KVM Guests With virt-install On Ubuntu 12.10 Server

    ubuntu Author: Falko TimmeTags: , , Comments: 0

    Installing KVM Guests With virt-install On Ubuntu 12.10 Server Unlike virt-manager, virt-install is a command line tool that allows you to create KVM guests on a headless server. You may ask yourself: "But I can use vmbuilder to do this, why do I need virt-install?" The difference between virt-install and vmbuilder is that vmbuilder is for creating Ubuntu-based guests, whereas virt-install lets you install all kinds of operating systems (e.g. Linux, Windows, Solaris, FreeBSD, OpenBSD) and distributions in a guest, just like virt-manager. This article shows how you can use it on an Ubuntu 12.10 KVM server.

  • How To Install XFCE On Linux Mint 14

    linux_mint Author: Falko TimmeTags: , Comments: 8

    How To Install XFCE On Linux Mint 14 XFCE is a lightweight desktop environment. For Linux Mint 13, the was an XFCE edition in addition to the Cinnamon and Mate editions, but for Linux Mint 14, there isn't. This short guide explains how to install XFCE on your Linux Mint 14 desktop.

  • How To Integrate ClamAV Into PureFTPd For Virus Scanning On Ubuntu 12.10

    ubuntu Author: Falko TimmeTags: , , Comments: 0

    This tutorial explains how you can integrate ClamAV into PureFTPd for virus scanning on an Ubuntu 12.10 system. In the end, whenever a file gets uploaded through PureFTPd, ClamAV will check the file and delete it if it is malware.

  • The Perfect Desktop - Ubuntu Studio 12.10

    ubuntustudio Author: Falko TimmeTags: , Comments: 1

    This tutorial shows how you can set up an Ubuntu Studio 12.10 desktop 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. Please note that Ubuntu Studio 12.10 uses XFCE as the default desktop environment.

  • Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On Ubuntu 12.10

    ubuntu Author: Falko TimmeTags: , Comments: 2

    This document describes how to install a PureFTPd server that uses virtual users from a MySQL database instead of real system users. This is much more performant and allows to have thousands of ftp users on a single machine. In addition to that I will show the use of quota and upload/download bandwidth limits with this setup. Passwords will be stored encrypted as MD5 strings in the database. This tutorial is based on Ubuntu 12.10.

  • Running concrete5 On Nginx (LEMP) On Debian Squeeze/Ubuntu 12.10

    nginx Author: Falko TimmeTags: , , , Comments: 0

    This tutorial shows how you can install and run a concrete5 web site on a Debian Squeeze or Ubuntu 12.10 system that has nginx installed instead of Apache (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP). nginx is a HTTP server that uses much less resources than Apache and delivers pages a lot of faster, especially static files. concrete5 is a free and open-source content management system (CMS).

  • Encrypt Your Data With EncFS (Ubuntu 12.10)

    ubuntu Author: Falko TimmeTags: , Comments: 1

    Encrypt Your Data With EncFS (Ubuntu 12.10) EncFS provides an encrypted filesystem in user-space. It runs without any special permissions and uses the FUSE library and Linux kernel module to provide the filesystem interface. It is a pass-through filesystem, not an encrypted block device, which means it is created on top of an existing filesystem. This tutorial shows how you can use EncFS on Ubuntu 12.10 to encrypt your data.

  • The Perfect Desktop - Linux Mint 14 (Nadia)

    linux_mint Author: CSchTags: , Comments: 5

    The Perfect Desktop - Linux Mint 14 (Nadia) This tutorial shows how you can set up a Linux Mint 14 (Nadia) desktop 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 Linux Mint 13 (Maya) To 14 (Nadia) With apt

    linux_mint Author: Falko TimmeTags: , Comments: 17

    This tutorial shows how you can upgrade from Linux Mint 13 (Maya) to Linux Mint 14 (Nadia) with apt. Please note that this is not the recommended way, and it might break your system, however, for me it worked fine.

  • Creating Simple Virtual Hosts With mod_mysql_vhost On Lighttpd (Ubuntu 12.10)

    lighttpd Author: Falko TimmeTags: , , Comments: 0

    This guide explains how you can use mod_mysql_vhost to create simple virtual hosts on a lighttpd web server on Ubuntu 12.10. With mod_mysql_vhost, lighttpd can read the vhost configuration from a MySQL database. Currently, you can store the domain and the document root in the MySQL database which results in very simple virtual hosts. If you need more directives for your vhosts, you'd have to configure them in the global section of lighttpd.conf, which means they'd be valid for all vhosts. Therefore, mod_mysql_vhost is ideal if your vhosts differ only in the domain and document root.