Linux_Debian学习笔记

这篇具有很好参考价值的文章主要介绍了Linux_Debian学习笔记。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

系统管理

软件源

Debian11

debian11 ustc中国科技大学软件源
  1. 生成软件源
    # 备份软件源
    mv /etc/apt/sources.list /etc/apt/sources.list.backup.$(date "+%Y-%m-%d_%H:%M")
    cat > /etc/apt/sources.list << 'EOF'
    deb http://mirrors.ustc.edu.cn/debian stable main contrib non-free
    # deb-src http://mirrors.ustc.edu.cn/debian stable main contrib non-free
    deb http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free
    # deb-src http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free
    
    # deb http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
    # deb-src http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
    EOF
    
    
debian11 清华大学软件源
  1. 生成软件源
    # 备份软件源
    mv /etc/apt/sources.list /etc/apt/sources.list.backup.$(date "+%Y-%m-%d_%H:%M")
    cat > /etc/apt/sources.list << 'EOF'
    # 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
    deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
    # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
    deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
    # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
    
    deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
    # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
    
    deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
    # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
    EOF
    
debian11 阿里云软件源
  1. 生成软件源
    # 备份软件源
    mv /etc/apt/sources.list /etc/apt/sources.list.backup.$(date "+%Y-%m-%d_%H:%M")
    cat > /etc/apt/sources.list << 'EOF'
    deb http://mirrors.aliyun.com/debian/ bullseye main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ bullseye main non-free contrib
    deb http://mirrors.aliyun.com/debian-security/ bullseye-security main
    deb-src http://mirrors.aliyun.com/debian-security/ bullseye-security main
    deb http://mirrors.aliyun.com/debian/ bullseye-updates main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ bullseye-updates main non-free contrib
    deb http://mirrors.aliyun.com/debian/ bullseye-backports main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ bullseye-backports main non-free contrib
    EOF
    

Debian12

debian12 清华大学软件源
  1. 生成软件源
    # 备份软件源
    mv /etc/apt/sources.list /etc/apt/sources.list.backup.$(date "+%Y-%m-%d_%H:%M")
    cat > /etc/apt/sources.list << 'EOF'
    # 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
    deb http://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free non-free-firmware
    # deb-src http://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free non-free-firmware
    
    deb http://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware
    # deb-src http://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware
    
    deb http://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
    # deb-src http://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
    
    # deb http://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware
    # # deb-src http://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware
    
    deb http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
    # deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
    EOF
    

系统全局设置

debian12 修改静态IP地址

  1. eth0为dhcp获取ip,eth1为静态ip,使用"systemctl restart networking.service"命令生效
  2. debian12 修改静态IP地址
    # 备份配置文件
    sudo mv /etc/network/interfaces /etc/network/interfaces.backup.$(date "+%Y-%m-%d_%H:%M")
    sudo cat > /etc/network/interfaces << 'EOF'
    # This file describes the network interfaces available on your system
    # and how to activate them. For more information, see interfaces(5).
    
    source /etc/network/interfaces.d/*
    
    # The loopback network interface
    auto lo
    iface lo inet loopback
    
    # The primary network interface
    allow-hotplug eth0 eth1
    iface eth0 inet dhcp
    iface eth1 inet static
      address 10.10.10.10/24
      broadcast 10.10.10.255
      network 10.10.10.0
    EOF
    

修改语言环境成中文

  1. 修改语言环境成中文
    dpkg-reconfigure locales
    #设置成zh_CN.UTF-8后,重启
    

系统输入法

Debian11 fcxe 安装rime中州韵五笔输入法

  1. 安装rime输入法
    sudo apt -y install fcitx5-rime
    
  2. 下载安装五笔输入方案
    # 下载五笔输入法
    wget https://github.com/rime/rime-wubi/archive/refs/heads/master.zip -O rime-wubi.zip
    # 五笔拼音反查依赖pinyin-simp
    wget https://github.com/rime/rime-pinyin-simp/archive/refs/heads/master.zip -O rime-pinyin-simp.zip
    unzip rime-wubi.zip
    unzip rime-pinyin-simp.zip
    在GUI界面注销,再登录用户
    在输入法中调出中州韵输入法
    cp rime-wubi-master/wubi* ~/.local/share/fcitx5/rime/
    cp rime-pinyin-simp-master/pinyin_simp* ~/.local/share/fcitx5/rime/
    vi ~/.local/share/fcitx5/rime/build/default.yaml
    # 编辑文件,在schema_list:下增加五笔输入法
    - schema: wubi_pinyin
    保存退出,重新启动中州韵输入法,按F4切换输入法
    在五笔拼音输入法下,可直接输入拼音,反查五笔编码
    
    

常用软件安装

Docker安装

  1. Docker官方文档
  2. 使用apt仓库安装,国内网络可能非常慢
    # Add Docker's official GPG key:
    sudo apt-get update
    sudo apt-get install ca-certificates curl
    sudo install -m 0755 -d /etc/apt/keyrings
    sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
    sudo chmod a+r /etc/apt/keyrings/docker.asc
    
    # Add the repository to Apt sources:
    echo \
      "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
      $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
      sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
    sudo apt-get update
    sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
    
  3. 使用离线包安装
    1. 打开网页
    2. 选择Debian的版本
    3. 进入pool/stable/,选择平台
    4. 下载以下deb文件
      containerd.io_<version>_<arch>.deb
      docker-ce_<version>_<arch>.deb
      docker-ce-cli_<version>_<arch>.deb
      docker-buildx-plugin_<version>_<arch>.deb
      docker-compose-plugin_<version>_<arch>.deb
      
    5. 以Debian12(bookworm)为例,下载链接
      1. containerd.io_1.6.28-2
      2. docker-ce_26.0.0-1
      3. docker-ce-cli_26.0.0-1
      4. docker-buildx-plugin_0.13.1-1
      5. docker-compose-plugin_2.25.0-1
    6. 安装离线包
      # 如果没有iptables,需要先安装iptables:apt install -y iptables
      sudo dpkg -i ./containerd.io_1.6.28-2_amd64.deb \
        ./docker-ce_26.0.0-1~debian.12~bookworm_amd64.deb \
        ./docker-ce-cli_26.0.0-1~debian.12~bookworm_amd64.deb \
        ./docker-buildx-plugin_0.13.1-1~debian.12~bookworm_amd64.deb \
        ./docker-compose-plugin_2.25.0-1~debian.12~bookworm_amd64.deb
      
    7. 验证是否安装成功
    docker ps
    

文章来源地址https://www.toymoban.com/news/detail-850696.html

到了这里,关于Linux_Debian学习笔记的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【linux】debian10安装vim

    debian10.0上用apt vim安装vim提示依赖的版本冲突。后来发现是软件源没有添加更新源buster-updates。 以下是问答。 答: 在 Debian 10 系统上安装 Vim 的方法很简单,主要有以下两种: 1. 使用 apt 命令安装 这会安装 vim 和 vim-runtime 包,获取最新版本的 Vim。 2. 从源代码编译安装 - 安装编译

    2024年02月11日
    浏览(44)
  • 【linux】Debian挂起和休眠

    在Debian桌面系统中,挂起和休眠是两种不同的状态,它们之间有一些区别。 挂起(Suspend)是将当前系统的状态保存到RAM(内存)中,然后关闭所有硬件设备,除了RAM之外。在这种状态下,系统几乎不耗电,因为RAM也需要很少的电量。当您重新打开计算机时,系统会从RAM中恢

    2024年02月21日
    浏览(36)
  • Linux 发行版 Debian 12.1 发布

    在今年 6 月初,Debian 12“bookworm”发布,而日前 Debian 迎来了 12.1 版本,主要修复系统用户创建等多个安全问题。 Debian 是最古老的 GNU / Linux 发行版之一,也是许多其他基于 Linux 的操作系统的基础,包括 Ubuntu、Kali、MX 和树莓派 OS 等。这个操作系统以稳定性为重,不追求花哨

    2024年02月13日
    浏览(45)
  • kkfileview安装部署Linux(CentOS、Debian)

    运行启动程序 观察日志, kkFileView 服务启动完成 http://ip:8081/index https://kkfileview.keking.cn/LibreOffice_7.1.4_Linux_x86-64_deb.tar.gz 解压.tar.gz文件后,你会在文件夹下看到一个新的 LibreOffice Deb 文件夹。 运行上面的命令后,LibreOffice 将被安装并可以使用了 至此可继续上面CentOS RPM中的第三

    2024年02月07日
    浏览(40)
  • Debian(Linux)局域网共享文件-NFS

    NFS (Network File system) 是一种客户端-服务器文件系统协议,允许多个系统或用户访问相同的共享文件夹或文件。最新版本是 NFS-V4,共享文件就像存储在本地一样。它提供了中央管理,可以使用防火墙和 Kerberos 身份验证进行保护。 本文将指导您在 Debian 10 中安装 NFS 服务器,并将

    2024年01月18日
    浏览(52)
  • Linux debian利用ifconfig查看IP地址

    net-tools工具箱包括arp,hostname, ifconfig, netstat, rarp, route, plipconfig, slattach, mii-tool and iptunnel and ipmaddr等命令。 debian系统使用 ifconfig 命令查看IP 地址时,出现如下提示: 一、查看debian系统是否安装 ifconfig 命令 使用 whereis ifconfig 可以看到没有安装 ifconfig 命令。 二、安装ifconfig命令

    2024年02月11日
    浏览(60)
  • linux | RK3568 Debian AIC8800移植

    一、WiFi        1.看RK的文档,把DTS节点配好 然后直接从安卓13的项目中把驱动给移过来,文件位置是 kernel/drivers/net/wireless/rockchip_wlan/,然后在Makefile和Kconfig中加入对应的宏 然后再在rockchip_linux_defconfig中加入对应的宏: 然后编译,编译后出错: 然后编译就成功了 先手动将

    2024年01月17日
    浏览(53)
  • Linux Debian上快速安装Docker并运行

    要在Debian上安装Docker,可以按照以下步骤进行: 在终端中执行以下命令,更新系统软件包: 在终端中执行以下命令,安装Docker需要的依赖包: 在终端中执行以下命令,添加Docker官方GPG密钥: 在终端中执行以下命令,添加Docker源: 在终端中执行以下命令,更新软件包缓存:

    2024年02月12日
    浏览(36)
  • Linux Debian11创建新用户和删除用户

    一、 Debian 创建 新用户 1.创建新用户 首先,要创建用户,当前用户必须是 root 用户或者 sudo 用户。 使用下面adduser 命令创建一个用户名为test的sudo用户,按照提示输入密码,使用 adduser 命令,还会创建用户的主目录。 sudo adduser test 2.将用户成为 sudo 用户 创建test用户后,可以

    2024年02月11日
    浏览(51)
  • Linux/Debian下 root 用户没有声音的解决

    问题:新装的Debian11.5 下root用户一直没有声音 背景:Debian11.5 为U盘dvd-iso 版本, root用户下pulse audio 服务一直无法正常运行,在/gnome界面查看声音时,发现系统没有检测到输入和输出设备 (net-iso 好像可以检测到输入输出设备,之前安装过,但是没有做好笔记,待补充) 解决步

    2024年02月09日
    浏览(35)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包