- How To Run ASP.NET applications (mono) on Ubuntu Linux - Ubuntu 10.10 (Maverick Meerkat)

Mono is a software platform designed to allow developers to easily create cross platform applications. It is an open source implementation of Microsoft's .Net Framework based on the ECMA standards for C# and the Common Language Runtime.

There are several components that make up Mono:
C# Compiler - The C# compiler is feature complete for compiling C# 1.0 and 2.0 (ECMA), and also contains many of the C# 3.0 features.

Mono Runtime - The runtime implements the ECMA Common Language Infrastructure (CLI). The runtime provides a Just-in-Time (JIT) compiler, an Ahead-of-Time compiler (AOT), a library loader, the garbage collector, a threading system and interoperability functionality.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/10/13578167756051.html

- How to Change Grub2 Splash Image on Ubuntu 10.10

Ubuntu 10.10 uses the default Splash for grub2 which is console mode black background, in this post we will change the grub Splash from its black and white to something more refreshing.

First we’ll have to download the grub2 splash image package for Ubuntu. Open up the terminal Application > Accessories > Terminal and type following command:
sudo apt-get install grub2-splashimages
This will install the splash image package under direcotry /usr/share/images/grub/, navigate to this directory and check out some Grub2 splash Images that you can use.
Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/13578167756858.html

- How to Limit network access by user / group using iptables - Owner Match

Iptables and netfilter is a Linux kernel 2.4+ iptables administration tool. netfilter and iptables provide a Linux kernel framework for stateful and stateless packet filtering, network and port addresss translation, and other IP packet manipulation. The framework is the successor to ipchains.iptables is built on top of netfilter, the packet alteration framework for Linux 2.4.x and 2.6.x. It is a major rewrite of its predecessor ipchains, and is used to control packet filtering, Network Address Translation (masquerading, portforwarding, transparent proxying), and special effects such as packet mangling.

Owner match:
The owner match extension is used to match packets based on the identity of the process that created them. The owner can be specified as the process ID either of the user who issued the command in question, that of the group, the process, the session, or that of the command itself. The owner match only works within the OUTPUT chain, for obvious reasons: This module attempts to match various characteristics of the packet creator, for locally-generated packets. It is only valid in the OUTPUT chain, and even this some packets (such as ICMP ping responses) may have no owner, and hence never match.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/13578167757321.html

- GNOME Gconf Registry Cleaner - Gconf Cleaner

GConf is a system of storing preferences of most of the installed applications, as well as the environment and desktop for GNOME for Linux, It is intended for user preferences; not configuration of something like Apache, or arbitrary data storage.

GConf involves a few new concepts, but no rocket science. Essentially GConf provides a preferences database, which is like a simple filesystem. The filesystem contains keys organized into a hierarchy. Each key is either a directory containing more keys, or has a value. For example, the key /apps/metacity/general/titlebar_font contains an integer value giving the size of the titlebar font for the Metacity window manager.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/135781677514637.html

- Speed up Internet access by using Persistent DNS caching with Pdns - Ubuntu Linux

pdnsd is a proxy DNS server with permanent caching (the cache contents are written to hard disk on exit) that is designed to cope with unreachable or down DNS servers (for example in dial-in networking).

pdns installation:
Open up the terminal Application > Accessories > Terminal and type following command:
sudo apt-get install pdnsd
Once installed the software is configured via the file /etc/pdnsd.conf.

The next thing to do is to edit the pdnsd configuration file /etc/pdnsd.conf to specify which DNS servers the cache should use for its own lookups.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/13578167753641.html

- How to change the GRUB 2 Default Timeout and Boot Order - Ubuntu

GRUB 2 is the next generation of GNU GRUB, using version numbers 1.90 and above. GRUB 2 is a complete rewrite. The most important goal is to make GNU GRUB cleaner, safer, more robust, more portable and more powerful.

If you're already familiar with GRUB Legacy, you'll find that the GRUB 2 configuration file is similar in broad strokes, but it varies in many details. You should be aware of alternative means of configuring GRUB 2, as well.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/135781677511201.html

- How to speed up the booting process for Grub2 boot loader using profiling

When you boot up your machine Grub does a search for all the necessary drivers to load. This takes time. Instead of making Grub search for these drivers, the profiling actually makes Grub remember every driver necessary to work, thereby cutting down all of the driver load times.

Profiling is a way of indexing IDes required for Grub during its part of the boot process. This allows it to locate required files quicker in the subsequent boots and thus accelerate the boot process.


Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/135781677513462.html

- Security Scanner for Debian and Ubuntu Linux Servers - Buck-security

Buck-Security is a security scanner for Debian and Ubuntu Linux. It runs a couple of important checks and helps you to harden your Linux system. This enables you to quickly overview the security status of your Linux system.

As a system administrator you often get into situations where you have to take care of a server, that has been maintained by other people before. In this situation it is useful to get an idea of the security status of the system immediately. Buck Security was designed exactly for this. It runs a few important checks and returns the results. It was desigend to be extremly easy to install, use and configure.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/135781677519835.html

- How to debug Shell Scripts

When things in your script don't go according to plan, you need to determine what exactly causes the script to fail. Bash provides extensive debugging features. The most common is to start up the subshell with the -x option, which will run the entire script in debug mode. Traces of each command plus its arguments are printed to standard output after the commands have been expanded but before they are executed.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/135781677512091.html

- Offline Package Management for Ubuntu / Debian Systems - Keryx

Keryx provides a way to download software and updates for Ubuntu systems that have little or no connectivity to the Internet. Simply put Keryx on your pen drive, use it to create a new project file (which retains a copy of your software sources and other system details), then take the pen drive to a computer with a better connection. Via its Synaptic-like interface, users can then select all updates for download, plus select any other software they may want to install, complete with dependency resolution.

The most interesting part of Keryx is that you can install or upgrade the package for your Ubuntu or Debian system from another Linux or Windows system which got better Internet connection.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/13578167759260.html

- UI Application for create and verify md5, crc32 and other checksum - PySum

PySum is an application for calculate and verify checksums.

PySum Support:
 * MD5
 * CRC32
 * SHA1
 * SHA224
 * SHA256
 * SHA384
 * SHA512

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/13578167755652.html

- Resize, Rename and Convert Images on Linux - EasyImageSizer

EasyImageSizer is a simple application to compress, resize and rename Images. EasyImageSizer can reduce file size of most Photos because it uses a better compression than most Photo Cameras. Additional you can also reduce file size by reducing quality. Image transformation is also possible

To install EasyImageSizer on Ubuntu / Debian / openSUSE / Mandriva / Fedora / Windows, go to this page and download the proper installer for your distribution.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/135781677516536.html

- UI Application for Viewing and Analysing the contents of music audio file - Sonic Visualiser

The essential requisite for analysing recordings is a system that allows you to listen to them closely and flexibly, and for this purpose there is a application call - Sonic Visualiser, this free program (Sonic Visualiser is Free Software, distributed under the GNU General Public License (v2 or later) and available for Linux, OS/X, and Windows) is a highly customisable playback and visualisation environment.

A particularly attractive feature is the ability to synchronise a number of recordings so that you can jump from one to the corresponding point in another. There is a range of built-in visualisations such as spectrograms, again highly customisable, but an essential strength of Sonic Visualiser is its ability to support third-party plug-ins.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/135781677518178.html

- Create Movies out of your pictures on Ubuntu Linux - PhotoFilmStrip

PhotoFilmStrip creates movies out of your pictures in just 3 steps. First select your photos, customize the motion path and render the video. There are several output possibilities for VCD, SVCD, DVD up to FULL-HD.

The effect of the slideshow is known as "Ken Burns". Comments of the pictures are generated into a subtitle file. Furthermore an audio file can be specified to setup the background musice for the slide show.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/135781677514053.html

- Linux kernel patch makes desktop faster

These are great news, and are spreading all over the Linux world.

The patch, created by Linux kernel developer Mike Galbraith, is 233 lines long and tweaks the kernel scheduler and cutting down latency by a whopping factor of ten.

Phoronix has some demo videos showing the improvements the patch offers. Here is the video:

Below is the video of the Linux desktop when running the Linux Git kernel and the patch in question was applied but the auto-group scheduler was disabled via its sysfs interface.

Continue Reading...


source:http://linuxpoison.blogspot.com/2010/11/135781677514624.html

Labels

Web Search Gmail Google Docs Mobile YouTube Google Maps Google Chrome User interface Tips iGoogle Social Google Reader Traffic Making Devices cpp programming Ads Image Search Google Calendar tips dan trik Google Video Google Translate web programming Picasa Web Albums Blogger Google News Google Earth Yahoo Android Google Talk Google Plus Greasemonkey Security software download info Firefox extensions Google Toolbar Software OneBox Google Apps Google Suggest SEO Traffic tips Book Search API Acquisitions InOut Visualization Web Design Method for Getting Ultimate Traffic Webmasters Google Desktop How to Blogging Music Nostalgia orkut Google Chrome OS Google Contacts Google Notebook SQL programming Google Local Make Money Windows Live GDrive Google Gears April Fools Day Google Analytics Google Co-op visual basic Knowledge java programming Google Checkout Google Instant Google Bookmarks Google Phone Google Trends Web History mp3 download Easter Egg Google Profiles Blog Search Google Buzz Google Services Site Map for Ur Site game download games trick Google Pack Spam cerita hidup Picasa Product's Marketing Universal Search FeedBurner Google Groups Month in review Twitter Traffic AJAX Search Google Dictionary Google Sites Google Update Page Creator Game Google Finance Google Goggles Google Music file download Annoyances Froogle Google Base Google Latitude Google Voice Google Wave Google Health Google Scholar PlusBox SearchMash teknologi unik video download windows Facebook Traffic Social Media Marketing Yahoo Pipes Google Play Google Promos Google TV SketchUp WEB Domain WWW World Wide Service chord Improve Adsence Earning jurnalistik sistem operasi AdWords Traffic App Designing Tips and Tricks WEB Hosting linux How to Get Hosting Linux Kernel WEB Errors Writing Content award business communication ubuntu unik