August13
In Ubuntu, just open a terminal window and install macchanger if needed..
sudo apt-get install macchanger
OK, now use macchanger..
sudo macchanger eth1 -r
This will change the wifi address, as your physical CAT 5 port is prolly eth0. The command above will change the MAC address to a random MAC address.
If you need to find out what the name of your ethernet ports are, including wireless, look no further…
sudo ifconfig
Sweet!
August13
In Ubuntu, just open a terminal window and type
sudo dhclient -r
That should drop (release) the address. To renew it…
sudo dhclient
Simples!
August8
Sometimes, when you get long .conf files wit long commentaries, it’s handy just to see the actual meat in the file. Here’S how, suing grep with a simple regular expression.
grep ^[^#] /etc/thefile.conf
You can also use…
cat /etc/thefile.conf | egrep -v "^\s*(#|$)")
June15
In Ubuntu, just open a terminal window and type
cat /proc/cpuinfo
Compare it here.
Simples!
May11
This is a long and detailed topic, and there’s plenty to read on the interweb, but you should definitely consider items such as….
which dynamically update your firewall rules when your machine is attacked amongst other features.
For hardening, try Bastille Linux. RTFM first, as this could be problematic if you screw up.
May5
Good question, and an annoying one as I can never remember the command. It is..
lsb_release -a
Sweet!