我的内核升级是从2.6.32.5到2.6.38.2。 开始这几部分是跟着下面这个文章做的: http://blog.csdn.net/ctbinzi/article/details/6006931 先安装好所需软件,以及下载最新内核: #apt-get #cd linux-2.6.36 为了节省时间,请执行以下命令从现有内核中获得配置 #make oldconfig 执行完此条命令后,会根据新老内核的差异情况,询问你一些问题,如果不确定的话请都是用默认 以上步骤完成后,执行内核配置程序 #make menuconfig(这里会出现问题就是不知道menuconfig的操作。但是一般的就不用管。 debian卸载旧内核: debian卸载旧内核要先看看有哪些旧的内核,用命令: dpkg –get-selections |grep linux 如果你的内核是以
Debian 升级内核 添加内核源 deb http://mirrors.aliyun.com/debian buster-backports main 安装新内核 apt -t buster-backports install linux-image-amd64 apt -t buster-backports install linux-headers-amd64 apt update-grub 然后 重启 并查看内核是否已经更新 reboot uname -r 截止目前 Debian 的最新内核是:5.10.0-11-amd64,返回形如此的内容及更新成功。 卸载旧内核 dpkg --list | grep linux-image 输出格式 在确保剩余至少一个最新内核下,删除旧内核: apt purge linux-image-4.19.0-11-amd64 注意:卸载了旧内核后一定要确保剩余至少一个最新内核 参考文章 [1] https://blog.dov.moe/posts/32240/
个人网站、项目部署、开发环境、游戏服务器、图床、渲染训练等免费搭建教程,多款云服务器20元起。
摘要 没什么说的,就是单纯的升级Linux内核,具体操作请看下文。 /debian/ bullseye-backports main contrib non-free # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian bullseye-security main contrib non-free 更新 添加为软件源地址后,进行如下命令 sudo apt-get update && sudo apt-get dist-upgrade 内核安装 然后使用以下命令进行内核安装 apt -t bullseye-backports install linux-image-amd64 apt -t bullseye-backports install linux-headers-amd64 重启服务器 安装完成后执行重启服务器操作 reboot 检测内核版本 uname -r 完结 以上就是Debian 11 升级Linux内核的全部内容,欢迎伙伴们一起来讨论
随着 Debian 8 进入 old stable 分支,Debian 9 开始成为了新的稳定版,不过随之而来的是锐速开心版的内核匹配问题。 不过感谢 Vicer 大佬的及时更新,现在 Debian 9 也可以手动更换内核来安装锐速了。 具体来说 Debian 9 上匹配锐速的内核是 4.9.0-4-amd64,下面我们就来手动更换内核安装锐速。 1.下载内核到 VPS: wget http://security.debian.org/debian-security/pool/updates/main/l/linux/linux-image-4.9.0 -4-amd64_4.9.65-3+deb9u1_amd64.deb 2.安装内核: dpkg -i linux-image-4.9.0-4-amd64_4.9.65-3+deb9u1_amd64.deb
喜欢折腾的同学,会豪气如何升级 Debian Stretch 的内核到新版。 遗憾的是现在能搜到的升级 Debian Linux 内核的文章多数是使用Ubuntu的deb安装包,其实这样装上去是有问题,常见的问题是,总会提示需要 apt --fix-broken install 这里简单记录一下,如何使用Debian官方源更新到最新的内核;以及如何是用 Kernel.org 的deb源,更新内核到最新的 5.x 版本。 main 更新package name@debian.cn:~$ sudo apt-get update && sudo apt-get dist-upgrade 安装新版内核镜像 name@debian.cn name@debian.cn:~$ sudo apt-get autoremove 到此,我们已成功通过官方安装源,升级内核至最新的 4.19.0 的版本了。
注: 更新内核有一定风险,请注意备份。 执行, sysctl net.ipv4.tcp_available_congestion_control 如果结果是这样 root@debian:~# sysctl net.ipv4.tcp_available_congestion_control lsmod | grep bbr Debian/Ubuntu 升级内核 查看当前系统内核: uname -a 下载最新内核,最新内核查看这里 wget http://kernel.ubuntu.com/ -i linux-image-4.9*.deb Debian 和 Ubuntu 默认会以 4.9 启动。 因为BBR是集成在内核中的,所以不能卸载,除非更换其他的内核。
grep -q "backports main" /etc/apt/sources.list; then echo "deb http://deb.debian.org/debian $ bullseye-backports zfs-dkms zfsutils-linux zpool import -o altroot=/mnt -f -a zpool list 参考文档: https://wiki.debian.org
博主决定重新选一个轻量级的linux发行版,最后锁定到debian,没想到出奇的好用。 下面就记录一下安装使用过程,做个笔记吧。 1.忘记root密码怎么办? 默认情况下debian是不允许以root用户登录的,只能以其他用户登录系统中,然后su到root用户下进行操作。白忙活,不过之前设置的密码博主也不喜欢,改了更好,^_^。 发现debian下的vi并不能通过退格键进行删除操作,不能使用光标进行上下行移动,仅仅只能通过左右移动光标在一行文本中进行移动,使用命令进行操作,博主能马上记得的命令就是dd:删除当前整行。
Debian 项目近日发布了针对 Debian GNU/Linux 9 “ Stretch ” 系列操作系统新的 Linux 内核安全更新,修复了最近发现的几个漏洞 。 根据最新的 DSA 4073-1 Debian 安全通报,在 Debian GNU/Linux 9 “ Stretch ” 操作系统的 Linux 4.9 LTS 内核中,共有 18 个安全漏洞,其中包括信息泄露 另外,Linux 内核的 HMAC 实现、KEYS 子系统、Intel 处理器的 KVM 实现、蓝牙子系统和扩展 BPF 验证器也受到某种影响。 (adsbygoogle = window.adsbygoogle || []).push({}); 建议用户立即更新系统 为了解决所有这些问题,Debian 敦促用户尽快将运行 Linux 内核 4.9 LTS 的 Debian GNU / Linux 9 “ Stretch ” 安装更新到 4.9.65-3 + deb9u1 版本,并且在安装新内核更新后重新启动计算机。
在经历25个月的等待后,Linux最流行的发行版之一Debian终于迎来最新版本Debian 10 “buster”,该版本一如既往将提供5年的长期支持。 Debian 10加入了许多新的特性:基于Linux 4.19内核,UEFI安全启动终于得到支持,默认启用安全模块AppArmor,通过cups-browsed自动设置和管理网络打印队列。等等。 Debian在发行说明中表示,将坚持作为通用操作系统的目标。Debian 10 buster包含许多更新软件包,从上代5.2万个增加到现在的近5.9万个。 网友评价 “缓慢”更新的Debian系统让不少网友非常期待。2年一更新的速度,经常会让人批评Debian stable版的软件太过陈旧。 但稳定是Debian系统的重要特性,就行像Red Hat一样。 最后附上Debian 10 的下载地址: https://www.debian.org/CD/live/ ?
边策 发自 凹非寺 量子位 报道 | 公众号 QbitAI 在经历25个月的等待后,Linux最流行的发行版之一Debian终于迎来最新版本Debian 10 “buster”,该版本一如既往将提供5 Debian 10加入了许多新的特性:基于Linux 4.19内核,UEFI安全启动终于得到支持,默认启用安全模块AppArmor,通过cups-browsed自动设置和管理网络打印队列。等等。 Debian在发行说明中表示,将坚持作为通用操作系统的目标。Debian 10 buster包含许多更新软件包,从上代5.2万个增加到现在的近5.9万个。 网友评价 “缓慢”更新的Debian系统让不少网友非常期待。2年一更新的速度,经常会让人批评Debian stable版的软件太过陈旧。 但稳定是Debian系统的重要特性,就行像Red Hat一样。 最后附上Debian 10 的下载地址: https://www.debian.org/CD/live/ — 完 —
wheezy/updates main contrib non-free deb http://http.us.debian.org/debian wheezy main contrib non-free deb http://non-us.debian.org/debian-non-US wheezy/non-US main contrib non-free Debian Archive Signing Keys下载页面:http://ftp-master.debian.org/keys.html # wget http://ftp-master.debian.org 2、 apt-get install debian-keyring debian-archive-keyring 再重新更新软件包 # apt-get update 没有提示了,问题解决。 四、升级内核 # apt-get dist-upgrade 五、重启系统 # reboot 六、验证系统 # lsb_release -a # cat /etc/debian_version 七、检查内核
Example: FROM STRECTH: deb http://httpredir.debian.org/debian stretch main deb http://httpredir.debian.org /debian stretch-updates main deb http://security.debian.org stretch/updates main TO BUSTER: deb http ://httpredir.debian.org/debian buster main deb http://httpredir.debian.org/debian buster-updates main to Debian Buster 10. Debian系统中删除过时/不需要的软件包。
全新的 debian 9发布 Debian9 已于2017.6.1正式发布,这几天终于将Debian8.7进行了升级,这一次更新是一个重大的版本升级,值得一试,但原来的系统中安装了很多软件与设置,于是 当然,在升级时可以查看一下自己的版本号: uname -a ##查看内核信息 cat /etc/issue ##查看发行版本号 方法1:利用网络更新 更新Debian 8到最新(其实可以不用这一步,但为了软件更新还是进行一次 ): $ sudo aptitude update && sudo aptitude upgrade 将软件源改为Debian 9的stretch,禅宗原来的Debian 8是用jessie表示的: $ tee /etc/apt/sources.list 升级系统版本 $ sudo aptitude update && sudo aptitude dist-upgrade 特点:方便、简洁、有效,也是Debian fdisk -l 查看U盘分区,比如我的U盘为/dev/sdc1,将iso挂载到 /cdrom 文件夹 mount /dev/sdc1 /mnt mount -t iso9660 -o loop /mnt/debian
deb http://security.debian.org/ squeeze/updates main deb-src http://security.debian.org/ squeeze/ updates main deb http://mirrors.163.com/debian/ stable main contrib non-free deb-src http://mirrors .163.com/debian/ stable main contrib non-free 版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。
Debian10 / 11 默认的内核就是 4.19 版本的内核而且编译了 TCP BBR 模块,所以可以直接通过参数开启。
最近,我根据Ubuntu提供的标准开发了一套云工具,并将它们移植到了Debian系统中。下面让我们来看看如何在云端使用debian! 所以Ubuntu在很久以前就已经实现了这些功能,但不幸的是,Debian很晚才实现,直到现在。 我一直在努力将这些软件包移植到Debian中,现在您可以找到这3个软件包,然后上传到Debian sid。 你需要做的,就是创建一个Debian镜像然后运行: apt-get install cloud-init cloud-tools cloud-initiramfs-growroot 而且:在下一次重新启动时 另外,可以在debian sid 直接使用cloud-init。 接下来的计划可能是构建或提升vmbuilder这样的工具,以便能够使用简单的命令行来创建兼容云的debian镜像。
提示信息如下: W: There is no public key available for the following key IDs:EF0F382A1A7B6500 此问题是由于系统没有debian-key 文件所导致的,解决方法如下: apt install debian-keyring debian-archive-keyring 安装完毕之后,再使用apt update则不会报错。
Debian 在开源领域拥有非常高的知名度和影响力,包括 Ubuntu 在内的诸多 GNU/Linux 系统都是基于 Debian 的。 Debian 系统于 1993 年 8 月 16 日上线发布,因此今天 Debian 系统迎来历史上重要的里程碑时刻 --25 周岁生日。 Debian 的 Ana Guerrero Lopez 说道:“25 年前伊恩 · 默多克启动了 comp.os.linux.development 的,部署和引入了全新的 Linux 版本,当时的‘Debian 除了面向电脑的免费系统 Debian 之外,很多发行版本也基于该系统改造来提升桌面环境。” Lopez 继续说道:“今天,Debian 项目是庞大且蓬勃发展的组织,由诸多志愿者组成的自制团队。 Debian 25岁,你正在使用 Debian 吗? 评论区留下你对 Debian 的祝福或吐槽吧~
作者:Canbus 转自:http://blog.csdn.net/canbus/article/details/8438089 Debian 6配置GNOME桌面环境 1.安装xorg root @debian:~# apt-get install xorg 2.安装gdm(GNOME Display Manager) root@debian:~# apt-get install gdm 3.安装最小化的GNOME桌面环境 root@debian:~# apt-get install gnome-core 4.安装中文字体支持 root@debian:~# apt-get install ttf-wqy-zenhei 备注: 1.Debian 6 GNOME桌面环境默认不允许root用户登录 2.没有安装中文字体之前,网页上的中文都是方框框 原文:http://godontop.com
扫码关注腾讯云开发者
领取腾讯云代金券