Skip to content

Tag: linux

Genymotion on VMWare

I’m on Xubuntu running with VMWare on Windows 7. I’m developing an android app’ and use genymotion to run virtual android device. But from few days, when I try to run my virtual device genymotion show me this error : (translated from French) Impossible to run the Genymotion virtual terminal.…

What’s the difference between insmod and modprobe?

I know insmod and modprobe are used to insert module into the kernel. But, what’s the difference between them? And, why is it dangerous to insert modules with force option in modprobe? Answer modprobe is the intelligent version of insmod. insmod simply adds a module where modprobe looks for any dependen…

How to delete duplicated rows based in a column value?

Given the following table Using a bash shell script based in Linux, I’d like to delete all the rows based on the value of column 1 (The one with the long number). Having into consideration that this number is a variable number I’ve tried with awk ‘{a[$3]++}!(a[$3]-1)’ file But I am not…