Tag Archives: error
November 26, 2008 How to downgrade the Kernel in Ubuntu 8.10 the easy way
In case you need to use an older kernel version in your new all shiny Ubuntu 8.10 preloaded with kernel version 2.6.27, there’s a very easy way to do it.
Instead of compiling it yourself and have to build a god forsaken config file for the compilation, you can install a linux-image package from the repositories. If you do a quick
sudo aptitude search linux-image
You can see the fine result:
p linux-image-2.6.25-2-386 – Linux kernel image for version 2.6.25 on i386
so if you install the package with
sudo aptitude install linux-image-2.6.25-2-386
You’re all set. The kernel will be automatically added to your grub menu.
Want a specific kernel version? No worries, checking the package details page you see a list of related packages further down to the right. Shitload of kernel versions, if you manually download the package and install it afterwards, I’m guessing it should work ok.
Follow-up: The package I suggest you install suffers from Bug #291487 in launchpad. If you try to compile something booted in this kernel it won’t work. The error if you try to run make should be something like
make[1]: Entering directory `/usr/src/linux-headers-2.6.25-2-386′
make[1]: Makefile: No such file or directory
make[1]: *** No rule to make target `Makefile’. Stop.
make[1]: Leaving directory `/usr/src/linux-headers-2.6.25-2-386′
make: *** [all] Error 2
Following the somewhat stupid workaround suggest in the bug report solves the issue.
Tags: 8.10, can't, compilation, compile, different, downgrade, error, fail, fails, header, headers, install, kernel, linux-image, make, package, ubuntu, version
- Leave a comment
- Posted under software
October 7, 2008 Winetricks and cabextract
For future reference, more than anything else really, if you’re trying to use winetricks to install something anf you get an error similar to:
Note: command ‘cabextract -q –directory=/home/ceno/.wine/drive_c/winetrickstmp /home/ceno/.winetrickscache/arial32.exe’ returned status 127. Aborting.
You need to install the package cabextract .
And if you notice, a couple of lines before that error it reads
Cannot find cabextract. Please install it (e.g. ‘sudo apt-get install cabextract’ or ‘sudo yum install cabextract’).
So yeah, this whole post is stupid. More stupid than that is that I never got winetricks to work properly because I’d never noticed that before. Me stupid.hm.
To install winetricks and run winetricks
wget http://kegel.com/wine/winetricks
winetricks
Tags: cabextract, error, install, wine, winetricks
- Leave a comment
- Posted under software