知行迭代
导航
首页
最近更改
随机页面
常用
分类目录
Linux命令
Mediawiki常用
电脑技巧
工具
链入页面
相关更改
特殊页面
页面信息
登录
查看“Debian”的源代码
←
Debian
页面
讨论
阅读
查看源代码
查看历史
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:[
[1]
]
您可以查看和复制此页面的源代码。
Debian是完全由自由软件组成的[[Linux]]发行版,由Debian社区维护。[[Ubuntu]]、[[Kali Linux]]和[[Deepin]]等众多知名发行版都是基于Debian构建。 ==简介== ===时间轴=== *1993年8月16日,一名美国普渡大学学生伊恩·默多克(Ian Murdock)发布Debian 0.01。 *1996年,发布Debian 1.0。 {{了解更多 |[https://zh.wikipedia.org/zh-cn/Debian#历史 维基百科:Debian - 历史] }} ==软件== ===软件管理=== ===常用软件=== ==安装驱动== ===安装Nvidia显卡驱动=== {| class="wikitable" style="width: 100%; ! 方法 ! 描述 |- | Debian软件库安装 | 推荐方法,简单快捷可更新。 <br \><br \>步骤:<br \>1.安装Kernel headers,NVIDIA驱动构建时要用到。可以使用<code>lscpu</code>查看操作系统类型。一般为64位操作系统,使用命令安装:<code>sudo apt install linux-headers-amd64</code> <br \>2.添加contrib non-free 软件仓库源。编辑sources.list <code>sudo vim /etc/apt/sources.list</code>加入如下内容:<br \><code><nowiki>deb http://deb.debian.org/debian/ sid main contrib non-free</nowiki></code> <br \>3.更新软件库,安装[https://packages.debian.org/search?keywords=nvidia-driver nvidia-driver]包和必要固件:<br \><code>apt update</code><br \><code>apt install nvidia-driver firmware-misc-nonfree</code> <br \>4.如果UEFI模式,需要导入签名。 <br \>5.重启系统 <code>reboot</code>,验证是否安装成功 <code>sudo nvidia-smi</code> |- | NVIDIA官网驱动安装 | 可以安装最新版本的Nvidia驱动程序,适合新出的显卡或需要最新版驱动。<br \><br \>步骤:<br \>1.查看显卡信号 <code><nowiki>lspci | grep -E "VGA|3D"</nowiki></code>,如GeForce GTX 980 Ti <br \>2.官网对应信号下载驱动:https://www.nvidia.com/drivers 。下载好的文件移动到<code>~</code>目录下,因为中文的下载目录在终端显示乱码<br \>3.安装Kernel headers,NVIDIA驱动构建时要用到。可以使用<code>lscpu</code>查看操作系统类型。一般为64位操作系统,使用命令安装:<code>sudo apt install linux-headers-amd64</code> <br \>4.禁用默认的 nouveau 驱动,创建并编辑配置文件<code>sudo vim /etc/modprobe.d/blacklist-nouveau.conf</code>,添加如下内容: <br \><code>blacklist nouveau</code><br \><code>options nouveau modeset=0</code> <br \>5.更新initramfs,<code>sudo update-initramfs -u</code> <br \>6.按<code>Ctrl+Alt+F1</code>切换到命令终端并登陆,关闭图形界面<code>sudo service lightdm stop</code> <br \>7.安装驱动,<code>sudo bash NVIDIA-Linux-x86_64-470.94.run</code> |} 常见问题: <syntaxhighlight lang="text"> ERROR: Unable to find the kernel source tree for the currently running kernel. Please make sure you have installed the kernel source files for your kernel and that they are properly configured; on Red Hat Linux systems, for example, be sure you have the 'kernel-source' or 'kernel-devel' RPM installed. If you know the correct kernel source files are installed, you may specify the kernel source path with the '--kernel-source-path' command line option. </syntaxhighlight> 没有安装正确的Kernel headers,可以使用<code>lscpu</code>查看操作系统类型。一般为64位操作系统,使用命令安装:<code>sudo apt install linux-headers-amd64</code> <syntaxhighlight lang="text"> WARNING: Unable to determine the path to install the libglvnd EGL vendor library config files. Check that you have pkg-config and the libglvnd development libraries installed, or specify a path with --glvnd-egl-config-path. </syntaxhighlight> 警告,可以不安装 {{了解更多 |[https://wiki.debian.org/NvidiaGraphicsDrivers Debian wiki:NVIDIA图形驱动] |[https://www.linuxcapable.com/zh-CN/如何在-debian-11-Bullseye-上安装或升级-nvidia-驱动程序/ linuxcapable.com:如何在-debian-11-Bullseye-上安装或升级-nvidia-驱动程序] |[https://medium.com/@SocraticDatum/getting-started-with-gpu-driven-deep-learning-part-2-environment-setup-fd1947aab29 medium.com:Socratic Datum - Setting up Ubuntu and Docker for deep learning] }} == 常见设置 == 将用户添加到sudo组 <syntaxhighlight lang="bash"> # 切换到root su # 添加用户到sudo组,重启系统 usermod -aG sudo 用户名 # 检查是否添加成功 id 用户名 </syntaxhighlight> ==资源== ===官网=== * Debian 官网:https://www.debian.org/ * Debian 文档:https://www.debian.org/doc/ * Debian 源代码:https://sources.debian.org/ ===相关网站=== ===相关文章=== *[https://zh.wikipedia.org/wiki/Debian 维基百科:Debian] [[分类:操作系统]] [[分类:系统软件]]
本页使用的模板:
模板:了解更多
(
查看源代码
)
返回至“
Debian
”。