Feb 192014
 

Original article by http://blog.shineservers.com/

Sometime a process “hang” both if you are using Gnu/Linux on your desktop (maybe a game ?) or as server, in these cases the best thing to do it’s to terminate that process, that probably is using precious resources, the basic commands to do this from a terminal are kill and killall.

killall is a tool for ending running processes on your system based on name. In contrast, kill terminates processes based on process ID number or “PID.” kill and killallcan also send specific system signals to processes. Use killall and kill in conjunction with tools including ps to manage processes and end processes that have become stuck or unresponsive when necessary.

Continue reading »

Flattr this!

Feb 102014
 

An old article by Todd Partridge (Gently) but still really useful if you are writing some bash scripts and want them more readable with some colors:

Users who have been using Linux for awhile often learn that creating a basic script is a good way to run multiple, often-repeated commands. Adding a little color to scripts can additionally provide nice feedback. This can be done in a fairly straight-forward way by using the tput command.

Continue reading »

Flattr this!

Feb 102014
 

At the end of 90`s Mandrake Linux was the most popular distribution out there. Most thing that are today said about Ubuntu where first said about Mandrake. It was the number one distro from 1998 util 2004. User friendly, easy to use, easy to install, lot of preinstalled software, most popular by new users and Mandrake made at that point most users to change on Linux. All that is today said about Ubuntu. Yeah, Mandrake had also free shipping for DVDs back then. But soon the empire started to fall apart. In 2004 Mandrake had died. In 2005 Conectiva, the company who bought Mandrakesoft announced and released Mandriva and in 2006 they fired Gael Duval. Duval was the author of Mandrake. The new distribution, Mandriva, was nothing like good old Mandrake and it made lot of users to change their system. Fast forward to 2014 and let us have a look on the legacy of Mandrake Linux. Last stable release of Mandriva was in 2011 and it was not really stable. But in last 10 years Mandriva inspired many users and developers and new distributions popped out. One of them is Rosa Linux. Rosa Linux is a Russian Linux distribution.

Continue reading »

Flattr this!

Feb 032014
 

estranged1

Recently (16 Jan 2014 ) this free to play game has been released for Linux on Steam.

Estranged tells the story of a lone fisherman, whose ship is stranded on a mysterious island during a violent storm.

Explore the rich environments and meet the curious inhabitants of the island as you find a way back to the mainland.

Estranged: Act I is an action adventure game featuring horror elements.
The game features both puzzles and combat, as you try to make your way across to another part of the island. Estranged runs on the Source Engine with a few graphical extras.
Continue reading »

Flattr this!

Jan 292014
 

Often one wants a shared access to files across machines. Traditionally one uses the network file system (nfs). The network file server works as follows: There is an nfs server that exports some directories in its filesystem hiearchy to various nfs clients that mount these directory over the network into their file system hierarchy. As a result, each of the clients shares the directories exported by the nfs server.

However a lot of times you just have to mount a directory from a server to your local computer and in these cases NFS it’s not so useful, sshfs it’s much better

Sshfs is a filesystem client based on the SSH File Transfer Protocol. Since most SSH servers already support this protocol it is very easy to set up: i.e. on the server side there’s nothing to do.  On the client side mounting the filesystem is as easy as logging into the server with ssh.

Continue reading »

Flattr this!