gEdit, an easy to use text editor with many advanced features

gEdit, an easy to use text editor with many advanced features

by Frank Harris-Smith gEdit is a serious text editor in the tradition of many editors that the programmer or code jockey will appreciate – syntax highlighting in many source codes, script formats, markup formats, and even some Scientific formats. I write a lot of HTML code and I find the multiple undo/redo, find, search & […]

ETC - where the config files lurk

ETC – where the config files lurk

by Frank Harris-Smith There are many reasons I prefer Linux. Near the top of the list is that I’m a tweaker. Someone who enjoys making changes and having things “My Way”, like the song by Frank Sinatra. Linux has many configuration files, most of which “lurk” in the “/etc” folder. These files are used to […]

Online Budget with Gnucash + MySQL + SSH

Article by Jimmy, first published on his Blog and the BGLUG in Italian Gnucash  is a great tool to keep the budget of the family, and from the version 2.4.0 supports connection to a database, SQLite, MySQL or PostgreSQL for data storage. Using a local database, however, tie to a specific computer for its use. Instead I want to be able to open a GnuCash session from any computer and connect to a single, remote, […]

Protect your server with SSHGuard

Protect your server with SSHGuard

I’ve already talked about fail2ban and logcheck, 2 tools that can scan your logs and do actions, based on rules that you can give/modify, usually modify your iptables rules to stop active attacks against your server or simply send you a warning if some thing is found in the logs. Today we’ll see a similar […]

Tac and Rev to see files in reverse order

After many years of administration of Unix/Linux systems and using bash for many tasks i’ve discovered the command tac, the contrary of cat, What this command do it’s to concatenate and print files in reverse order, it writes each file to standard output, last line first. bash$ cat file1.txt This is the line 1. This […]