Executing a Linux command silently or in background While working on terminal we can make a command to execute in background, so that we can work something else on that terminal. There are two ways to do so: 1. Directly executing the command using “&” operator. Command will be executed like $ COMMAND & …
Monthly Archive: March 2014
Mar 20
Koding – Now develop in your browser
Koding provides cloud development environment where developers can come and code in a browser. It provides real servers (Virtual Machines) in which you can create and execute your code. You can do almost everything one can do on a real server. You can code in Ruby, C, C++, Java, Python, PHP ,i.e., in any …
Mar 14
Tor in Android – Orbot
Tor is a network of virtual tunnels that allows people to access internet anonymously without compromising their privacy. Tor bounces your encrypted traffic several times through computers around the world, instead of connecting you directly like VPNs and proxies. It might take longer but security provided by it is worth waiting. Tor is considered …
Mar 08
VMware player installation in OpenSuse
Follow the following steps to install VMware Player 1. Download VMware Player 2. Install the required packages [root]#zypper install kernel-desktop [root]#zypper install kernel-desktop-devel [root]#zypper install gcc make kernel-source 3. Go to the directory containing VMware-Player-[VERSION].bundle [root]#cd PATH_TO_VMware-Player-[VERSION].bundle 4. Make VMware player Bundle EXECUTABLE [root]#chmod +x VMware-Player-[VERSION].bundle 5. Execute the package …