HOWTO: Remove Older Kernels via command line
// February 2nd, 2012 // No Comments » // Ubuntu
Found out today that the /boot partion was filling up with older kernels
dpkg -l | grep linux-image-2; echo; uname -a
This is the personal blog and thoughts of a guy that lives in Colorado. Browse around to see my stuff or follow my thoughts…
// February 2nd, 2012 // No Comments » // Ubuntu
Found out today that the /boot partion was filling up with older kernels
dpkg -l | grep linux-image-2; echo; uname -a
// January 30th, 2012 // No Comments » // Ubuntu
sudo netstat --tcp --udp --listening --program
More at
http://www.go2linux.org/which_service_or_program_is_listening_on_port
// January 30th, 2012 // No Comments » // Ubuntu
Missing network interface after cloning a Ubuntu template on ESX vmware server. I was cloning some Ubuntu 10.04 LTS machines from a template and the kernal couldn’t find eth0. (Weird, because eth0 was there when I BUILT the VM, and the clone now had eth1) After some digging I found that that the device manager’s had the old MAC address in the udev rules file.
Rules file located here: /etc/udev/rules.d/70-persistent-net.rules Edit out the duplicate interface, and wulaaa, after a reboot, networking is running as expected. More on udev: http://www.linuxformat.co.uk/includes/download.php?PDF=LXF66.tut_udev.pdf