Skip to content
Archive of posts tagged Linux

qemu manager for Windows to run your linux distribution

If you are into virtualization, then you must have heard about Qemu. And if you are on windows then this is a must: http://www.davereyn.co.uk/download.htm Related articles Political Hotsheet Herman Cain drops out 1 of 9 – CBS News (cbsnews.com) Romney, Gingrich Proceed Carefully in GOP Showdown – ABC News (abcnews.go.com) Wisconsin rallies to beat Michigan [...]

Rekursive Grep on Solaris or AIX Systems without GNU egrep -r funcionality

If you work regularly on a Solaris or systems which do not have the “-r” (recursive grep) for grep, then you know what a lifesaver this command can be. Here is one from command line fu: find . -type f -exec awk ‘/linux/ { printf “%s %s: %s\n”, FILENAME, NR, $0; }’ {} \; The [...]

Consistent ethernet device names in Verne

Fedora now supports consistent device names across the network with bios device names for the ethernet devices. If you upgraded your earlier version of Fedora then you may need to go to root access to get this working. Here is what you need to do: sudo yum install biosdevice After installing this you would need [...]