博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How To Install Kernel 3.10 On Ubuntu, Linux Mint, Debian and Derivates
阅读量:5774 次
发布时间:2019-06-18

本文共 2623 字,大约阅读时间需要 8 分钟。

n this article I will show you how to install Linux Kernel 3.10 on Ubuntu 13.10 Saucy Salamander, Ubuntu 13.04 Raring Ringtail, Ubuntu 12.10 Quantal Quetzal, Ubuntu 12.04 Precise Pangolin, Linux Mint 16 Petra, Linux Mint 15 Olivia, Linux Mint 14 Nadia, Linux Mint 13 Maya, Debian Jessie, Debian Sid, Debian Wheezy, Debian Squeeze, Knoppix 7.2.0, Knoppix 7.1.0, Crunchbang OS and many other derivates.

Instructions for installing Kernel 3.10 on 32 bit Debian / Ubuntu based systems:

Download the needed packages:

$ wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.10-saucy/linux-headers-3.10.0-031000_3.10.0-031000.201306301935_all.deb

$ wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.10-saucy/linux-headers-3.10.0-031000-generic_3.10.0-031000.201306301935_i386.deb
$ wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.10-saucy/linux-image-3.10.0-031000-generic_3.10.0-031000.201306301935_i386.deb

Install Kernel 3.10 on 32 bit Debian / Ubuntu based systems:

$ sudo dpkg -i *.deb

Instructions for installing Kernel 3.10 on 64 bit Debian / Ubuntu based systems:

Download the needed packages:

$ wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.10-saucy/linux-headers-3.10.0-031000_3.10.0-031000.201306301935_all.deb

$ wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.10-saucy/linux-headers-3.10.0-031000-generic_3.10.0-031000.201306301935_amd64.deb
$ wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.10-saucy/linux-image-3.10.0-031000-generic_3.10.0-031000.201306301935_amd64.deb

Install Kernel 3.10 on 64 bit Debian / Ubuntu based systems:

$ sudo dpkg -i *.deb

---------------------------------------------------------------------------------------------------------------------

Linux Kernel 3.10.1 Released For Ubuntu/Linux Mint

 

Linux Kernel 3.10.1 is the first maintenance release of the kernel 3.10 series which has been made available recently bringing some minor updates and fixes.

Kernel 3.10.1 Fixes:

  •     cpufreq: Fix cpufreq regression after suspend/resume
  •     SCSI: sd: Fix parsing of 'temporary ' cache mode prefix
  •     nfsd4: fix decoding of compounds across page boundaries
  •     libceph: Fix NULL pointer dereference in auth client code

In this article, we will see how to install Linux 3.10.1 under Ubuntu/Linux Mint using a simple bash script that will facilitate the installation process, but if you want to install it manually go .

Linux Kernel 3.10.1 Installation
Via the terminal, enter these commands:

cd /tmp 
wget http://dl.dropboxusercontent.com/u/47950494/upubuntu/kernel-3.10.1 -O kernel-3.10.1 
chmod +x kernel-3.10.1 
sudo sh kernel-3.10.1 
sudo reboot

To remove it, run this:

sudo apt-get purge linux-image-3.10.1*

 

 

 

转载地址:http://cnaux.baihongyu.com/

你可能感兴趣的文章
Web框架的常用架构模式(JavaScript语言)
查看>>
如何用UPA优化性能?先读懂这份报告!
查看>>
这些Java面试题必须会-----鲁迅
查看>>
Linux 常用命令
查看>>
NodeJS 工程师必备的 8 个工具
查看>>
CSS盒模型
查看>>
ng2路由延时加载模块
查看>>
使用GitHub的十个最佳实践
查看>>
全面了解大数据“三驾马车”的开源实现
查看>>
脱离“体验”和“安全”谈盈利的游戏运营 都是耍流氓
查看>>
慎用!BLEU评价NLP文本输出质量存在严重问题
查看>>
基于干净语言和好奇心的敏捷指导
查看>>
Node.js 2017企业用户调查结果发布
查看>>
“软”苹果水逆的一周:杂志服务崩溃,新机型遭泄露,芯片首架离职
查看>>
JAVA的优势就是劣势啊!
查看>>
ELK实战之logstash部署及基本语法
查看>>
帧中继环境下ospf的使用(点到点模式)
查看>>
BeanShell变量和方法的作用域
查看>>
LINUX下防恶意扫描软件PortSentry
查看>>
由数据库对sql的执行说JDBC的Statement和PreparedStatement
查看>>