Online Users
Sponsors
Tutorial: How to Color Man Pages & How It Works
By Craciun Dan | April 1, 2012 -- 4:08 PM | 14 Comments

In this tutorial I’ll show how to get some nicely colored man pages by adding several lines inside the .bashrc file, explaining what the code means and how it works.

Read more…

Tutorial: Using the ‘find’ Command
By Craciun Dan | March 31, 2012 -- 4:05 PM | 6 Comments

GNU find is a powerful command-line utility that lets you search for files and folders in a hierarchical tree directory structure. It is the backend for all those utilities out there like the graphical searching in KDE or GNOME. However, find can be a little hard to handle at first by beginners. In this tutorial I will try to explain some of the capabilities of find, show some useful one-liners and provide more explanations regarding this command.

Read more…

Tip: Change GRUB 2 Resolution
By Craciun Dan | December 3, 2011 -- 9:27 PM | 1 Comment

The file used to change various GRUB 2 settings is /etc/default/grub. This file also contains options to adjust the timeout in seconds before GRUB boots the default OS (GRUB_TIMEOUT), change which OS should be selected by default (GRUB_DEFAULT, first entry being 0), and also the option to change the resolution used by default – GRUB_GFXMODE.

Read more…

10 More Great Tools for the Terminal
By Craciun Dan | June 16, 2011 -- 6:12 PM | 5 Comments

First of all I’d like to thank TuxArena’s readers for giving good feedback in the first part of this series, which overviews 15 of the tools I consider particularly useful in a console. This article overviews 10 more such tools, and most of them were suggested by you. Screenshots included.

telnet
telnet is a well-known command-line tool which uses sockets to open a TCP connection to the specified hostname and port. telnet can be primarily used for non-secure connections to connect to a HTTP server and get a file or to an IRC server for example. Escape character in telnet is ^] (press Ctrl+])
Homepage

Read more…

PeaZip 3.8 Released – Adds Support for WIM and XZ Archives (Ubuntu Installation)
By Craciun Dan | June 13, 2011 -- 12:21 PM | No Comments

PeaZip is an open-source file archiver with GTK and Qt interfaces, with support for all the major archives out there, including gzip, 7z, bzip2, zip, and arc.

Read more…

Gnac – Simple and Effective Audio Converter for GNOME
By Craciun Dan | June 13, 2011 -- 12:51 AM | No Comments

Gnac is a graphical audio converter for GNOME with support for encoding/decoding to and from various formats, including the free formats FLAC and Ogg, WAV, MP3, M4A or SPX.

Read more…

Tip of the Day: Make Your Own AssaultCube Server
By Craciun Dan | June 11, 2011 -- 10:50 PM | No Comments

AssaultCube is a popular cross-platform first-person shooter with pretty low hardware requirements, with a fast gameplay and many modes – including the classic CTF, TDM, FFA, or the popular TOSOK (Team One Shot One Kill), LSS (Last Swiss Standing), or HTF (Hold the Flag).

Starting a server should be pretty straightforward in Linux, all you have to do is run the server dedicated binary with several parameters, however AssaultCube provided a script, called server.sh for doing it. Here’s an example:

Read more…

Install Firefox 5 Beta in Ubuntu from the Firefox Next PPA
By Craciun Dan | June 11, 2011 -- 2:45 AM | 4 Comments

Not long ago Mozilla changed the release cycle of Firefox, so that major new versions (Firefox 5, 6 and so on) will be released every 2-3 months. Currently, the latest alpha release is Firefox 6 Aurora, while the latest beta development version is Firefox Beta 5, which has made it into the Firefox Next PPA already. Installing this version should be very easy if you follow the next steps.

Read more…

Flash-Aid Add-on – Painless and Proper Flash Installation in Firefox
By Craciun Dan | June 9, 2011 -- 8:50 PM | 2 Comments

I guess this has been around for some time, however I was not aware of it. I bumped into it in a thread on UbuntuForums, and decided to give it a try.

From the add-on page description, Flash-Aid is a Firefox 4 and 3.5 (and maybe 5 Beta too) add-on which was built to “Remove conflicting flash plugins from Ubuntu/Debian Linux systems, install the appropriate version according to system architecture and apply some tweaks to improve performance and fix common issues.”

Well, I must say it sounds promising at least, especially since the page says it’s designed especially for Ubuntu. Let’s see how it works with Firefox 4.

Read more…

8 More Bash Tips for Working Faster With the Shell (Part 2 of 2)
By Craciun Dan | December 23, 2010 -- 6:45 AM | 5 Comments

This is the second article in this series, and brings eight additional tips for working faster with the shell. Here is the first article of the series, containing 10 tips.

Create aliases for quick access to commands or one-liners

Aliases are handy custom commands which can be used to make shortcuts to various commands, scripts or one-liners. Aliases can be added in the ~/.bashrc file like this:

alias name='command'

Read more…