Category Linux

best diff tools

PAYWARE Ultra Edit (win + linux) – Beyond Compare (win + linux) – Araxis Merge (win + osX) – ExamDiff Pro (win) – ECMerge (win, osX, linux) – MergePlant (win) – Changes (OSX) …

grep ifconfig list ips

Linux ifconfig Example Type the following command: ifconfig | grep ‘inet addr:’| grep -v ‘127.0.0.1’ | cut -d: -f2 | awk ‘{ print $1}’ FreeBSD/OpenBSD ifconfig Example Type the following command: ifconfig | grep -E ‘inet.[0-9]’ | grep -v ‘127.0.0.1’…

automate command line linux

How can you automate command line linux ? Using Pexpect of course! Pexpect is a pure Python module that makes Python a better tool for controlling and automating other programs. Pexpect is similar to the Don Libes `Expect` system, but…

howto install gnome centos

howto install gnome centos? yum install groupinstall gnome-desktop alternatively: To install KDE Desktop, type this: yum groupinstall “X Window System” “KDE (K Desktop Environment)”   To install Gnome Desktop, type this: yum groupinstall “X Window System” “GNOME Desktop Environment”  …