If you manage remote machines you have for sure some way to connect to them, to connect to Unix machines I’m used to open a terminal with my favorite terminal emulator (Terminator in these days), and from there ssh to other servers, for Windows RDP protocol as client i use Remmina (perhaps i’ll talk of […]
Top Ten articles for Linuxaria in 2011
The first days of the new year are a good moment to look back at the past year and see what have been the most read articles of the site, this is also a good opportunity for you to read (or re-read) them. And, a bit late, but i wish you all a Happy New […]
Speak Up In Linux Using eSpeak
Article by Ankur Aggarwal, owner of the Blog http://flossstuff.wordpress.com Sometimes we want our Linux box to speak to/for us.This ability is very useful to make announcements and alerts in case of many critical events in our machines or can be used just for sheer fun. There exists a command line synthesized known as eSpeak that […]
Introduction to Unison
I think that a lot of computer user are now used to the concept of copy on the “Cloud”, with tools like Dropbox or Ubuntu One, you can have the same file saved in multiple computers (also with a different operating system) and at the same time have a copy of it on the Cloud. […]
Doing calculations using bash
Sometimes in my small shell script i’ve to do some math, usually nothing too complex but it’s useful to do the math inside the bash script. Bash it’s really complete and among the many builtin functions there are also some mathematical functions. Using the syntax $((expression)) you can evaluate the expression. Operations allowed are quite […]