Feedback Form
Go back to fronty page View most popular entries View latest additions Submit tutorials to UnixTutorials.info
UnixTutorials logo
Linux tutorials
Linux Flexnet License Monitoring With rrdtool
Post date: July 15, 2010, 06:07 Category: Miscellaneous Views: 350 Comments: 0
Tutorial quote: Some of you may know the commercial Flexnet Licencing Application (İMacrovision). It's a client-server based solution for managing the usage of socalled Flexnet-enabled applications. You can hold licenses of more than one product on one license-server. As you typically have to buy licenses and licenses can be expensive it would be nice to have a monitoring solution to see the utilization of the precious licenses, whether they are underutilized (so money is wasted) or are always fully utilized (so that you can suspect that sometimes people cannot do their work, or only delayed) which is also a waste of resources. As far as I know there are commercial applications for performing such reports, but again you have to spend money. Why not build a simple system yourself, which shows the actual and past usage in an "MRTG style"?
Linux Block Ads / Malware / Spyware using hosts file (Windows / Linux)
Post date: January 24, 2010, 00:01 Category: Security Views: 544 Comments: 0
Tutorial quote: The most easy way to block advertisements and other malware sites is to point those site to ip address 127.0.0.1 or 0.0.0.0 (however the zero version may not be compatible with all systems) in your hosts file.
Linux Recursively Encrypt / Decrypt Directories using gpgdir on Linux
Post date: January 24, 2010, 00:01 Category: Security Views: 478 Comments: 0
Tutorial quote: gpgdir is a script that encrypts and decrypts directories using a GPG key. It supports recursively descending through a directory in order to make sure it encrypts or decrypts every file in a directory and all of its subdirectories.
Linux How to Configure Apache as a Forward / Reverse Proxy
Post date: January 24, 2010, 00:01 Category: Network Views: 640 Comments: 0
Tutorial quote: Apache can be configured in both a forward and reverse proxy (also known as gateway) mode.
Linux MySQLTuner - Performance Tunning MySQL on Linux
Post date: January 24, 2010, 00:01 Category: Optimizing Views: 687 Comments: 0
Tutorial quote: MySQLTuner is a script written in Perl that allows you to review a MySQL installation quickly and make adjustments to increase performance and stability. The current configuration variables and status data is retrieved and presented in a brief format along with some basic performance suggestions.
Linux Measuring the Performance of HTTP Web Servers using ApacheBench (ab)
Post date: January 24, 2010, 00:01 Category: Benchmarks Views: 726 Comments: 0
Tutorial quote: ApacheBench is a command line utility for measuring the performance of HTTP web servers, in particular the Apache HTTP Server. It was designed to give an idea of the performance that a given Apache installation can provide. In particular, it shows how many requests per second the server is capable of serving.
Linux shred - Securely delete files in Linux
Post date: January 24, 2010, 00:01 Category: Security Views: 381 Comments: 0
Tutorial quote: In case you want to delete some confidential data from your computer just to make sure that it is no longer accessible to anyone, then do not delete the file using the regular rm command because there will still remain a chance that someone might use a software to recover your deleted data before the specific storage area is overwritten by new data. The proper way to permanently dispose of such data in Linux is the shred command.
Linux How To Modify Your Gnu/Linux Box To Serve As A USB Over IP Server
Post date: January 7, 2010, 07:01 Category: Installing Views: 400 Comments: 0
Tutorial quote: There was a long time that I was looking for a way to put away my old CRM server! But why? Because I had installed a virtualization environment with Xen and all my servers are turned to small VPS on a nice pretty infrastructure. The base point was that the CRM had a USB/Lock and there was no way to take the lock under a virtualized VPS. This tutorial shows how you can set up a USB-over-IP server.
Linux Installing and Using Hadoop
Post date: November 28, 2009, 16:11 Category: System Views: 357 Comments: 0
Tutorial quote: Learn to install configure and use the open source Hadoop framework from the Apache Foundation. Basic installation, configuration, executing jobs, and using the HDFS filesystem and the Web GUI.
Linux Retrieving XML With cURL And Simple XML
Post date: November 20, 2009, 20:11 Category: Programming Views: 840 Comments: 0
Tutorial quote: This tutorial explains how to use Curl and SimpleXML SimpleXML is a php5 extension used to parse XML data. Topics covered include loading XML documents, parsing nodes & attributes, and filtering data with XPath statements.