• ubuntu基本配置


    记录一下每次重新安装系统之后都要进程的操作

    更新源

    更新源的教程

    sudo bash -c "cat << EOF > /etc/apt/sources.list && apt update 
    deb http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse
    deb-src http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse
    deb http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse
    deb-src http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse
    deb http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse
    deb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse
    deb http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse
    deb-src http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse
    deb http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse
    deb-src http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse
    EOF"
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    安装软件

    • gcc
    • g++
    • gdb
    • git
    • vim

    安装

    spacevim

    美化

    1. zsh

      sudo apt install git zsh -y 
      
      
      • 1
      • 2
    2. oh-my-zsh,主题默认为’ys’

      sh -c "$(curl -fsSL https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)"
      
      • 1
    3. 切换默认 shell

      chsh -s $(which zsh)
      
      • 1

      注销之后登录

    4. spaceVim

      修改tab为4

      默认的代码缩进值是 2,缩进的大小由选项 default_indent 设置, 如果希望使用 4 个空格作为缩进,只需要在 SpaceVim 配置文件中加入如下内容:

      [options]
          default_indent = 4
      
      • 1
      • 2

      default_indent 这一选项的值,将被赋值到 Vim 的选项:&tabstop&softtabstop&shiftwidth。默认情况下,输入的 会被自动展开成对应缩进数量的空格, 可通过设置选项 expand_tab 的值为 false 来禁用这一特性:

      [options]
          default_indent = 4
          expand_tab = true
      
      • 1
      • 2
      • 3

      1694527194821.png

    vscode ssh

    使用体验更好
    gcc、g++保证了头文件
    gdb 支持了运行和调试

  • 相关阅读:
    博客系统(页面设计)
    AddressSanitizer(ASan)
    【java】JVM内存区域管理
    什么是继承和选择器的权重
    MySQL技能树学习总结
    深入理解JVM虚拟机第二十三篇:详解JVM当中的栈顶缓存技术
    BurpSuite靶场系列之OS命令注入
    Transformer12
    今天让你知道PMP考试通过率达97%,可信不可信
    C语言——自定义类型之结构体
  • 原文地址:https://blog.csdn.net/qq_47164203/article/details/132844423