我有 ubuntu 12.04,内核为 3.5。我必须安装补丁RT_PREEMPT
我遵循了以下步骤:
sudo apt-get install kernel-package fakeroot build-essential libncurses5-dev
mkdir -p ~/tmp/linux-rt
cd ~/tmp/linux-rt
wget http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.4.tar.bz2
wget http://www.kernel.org/pub/linux/kernel/projects/rt/3.4/older/patch-3.4-rt7.patch.bz2
tar xjvf linux-3.4.tar.bz2
cd linux-3.4
patch -p1 < <(bunzip2 -c ../patch-3.4-rt7.patch.bz2)
cp /boot/config-$(uname -r) .config && make oldconfig
make -j8
sudo make modules_install
sudo make install
但是在启动内核时它显示内核恐慌:
内核崩溃 - 未同步。正在尝试终止 init!
我也尝试安装内核 3.8。但执行make -j8
命令时显示错误。