You can manually download the .deb package from the official repository server http://security.ubuntu.com/ubuntu/pool/main/l/linux/
. Just use your web browser. There you have to find the kernel you need. In my case its called linux-image-3.2.0-35-generic_3.2.0-35.55_amd64.deb
. So i made a folder in my home dir.
#mkdir linux-image
#cd linux-image
#wget http://security.ubuntu.com/ubuntu/pool/main/l/linux/linux-image-3.2.0-35-generic_3.2.0-35.55_amd64.deb
#dpkg -x linux-image-3.2.0-35-generic_3.2.0-35.55_amd64.deb .
Now you should see the files from this package extracted in the current directory.
#ls -l boot/
-rw-r--r-- 1 root root 792715 Dez 5 2012 abi-3.2.0-35-generic
-rw-r--r-- 1 root root 140505 Dez 5 2012 config-3.2.0-35-generic
-rw------- 1 root root 2885822 Dez 5 2012 System.map-3.2.0-35-generic
-rw------- 1 root root 4968400 Dez 5 2012 vmlinuz-3.2.0-35-generic
There are your searched files, Now you just need to copy them into the /boot folder from your system.
The initrd needs to be generated. I would recommend to boot from a live system, chroot into your old system, and generate it by update-initramfs -c -k <version>
.