关于ubuntu开发环境配置

关于ubuntu开发环境配置

首先是开发环境

可以在旁边的softwate市场中搜索你需要的插件

关于ubuntu开发环境配置_第1张图片

然后安装docker,在ubuntu中可以简单的按照官方的教程

Install using the Apt repository

Before you install Docker Engine for the first time on a new host machine, you need to set up the Docker repository. Afterward, you can install and update Docker from the repository.

    Set up Docker's Apt repository.

    # Add Docker's official GPG key:
    sudo apt-get update
    sudo apt-get install ca-certificates curl gnupg
    sudo install -m 0755 -d /etc/apt/keyrings
    curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
    sudo chmod a+r /etc/apt/keyrings/docker.gpg

    # Add the repository to Apt sources:
    echo \
      "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
      "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
      sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
    sudo apt-get update

        Note

        If you use an Ubuntu derivative distro, such as Linux Mint, you may need to use UBUNTU_CODENAME instead of VERSION_CODENAME.

    Install the Docker packages.

    To install the latest version, run:

    $ sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

    Verify that the Docker Engine installation is successful by running the hello-world image.

    $ sudo docker run hello-world

    This command downloads a test image and runs it in a container. When the container runs, it prints a confirmation message and exits.

You have now successfully installed and started Docker Engine.

关于ubuntu开发环境配置_第2张图片

docker-compose可以参考我之前写的文章

为Linux安装软件包时后面标注的arm,aarch到底是什么玩意儿以二进制安装docker-compose为例_生生世世是所说的的博客-CSDN博客

![端口er/snap/marktext/9/.config/marktext/images/2023-09-23-12-25-19-image.png)

接下来是主题和终端的美化

最终效果如

默认的终端长这样,简直是不堪入目

关于ubuntu开发环境配置_第3张图片

本人使用ohmyzsh

首先确保已经安装了zsh

关于ubuntu开发环境配置_第4张图片

这边直接使用wget脚本

sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

提醒是否要把默認終端接換成,這邊選是

关于ubuntu开发环境配置_第5张图片

然后设置下终端主题

这边设置ZSH_THEME=“agnoster”

Image7

点击右上角的三条缸,配置下首选项,把背景色改成透明

关于ubuntu开发环境配置_第6张图片

系统主题的配置

  • 安装美化工具
    sudo apt-get install -y gnome-tweaks gnome-shell-extensions gnome-tweak-tool
    安装过后应用程序里会出现tweak(优化),在工具文件夹里,还有一个扩展程序。

  • Image9

  • 软件商店搜索安装如下图:

  • 关于ubuntu开发环境配置_第7张图片

  • 打开后点击,可以设置系统主题

  • Image11

  • 本人就是简单的设了下背景图片的展现方式,我还怪喜欢这只小水母的

谷歌拼音繁體的解決辦法

本人習慣用fctix使用google拼音後打出來的全市繁體字

把光标放到文本输入栏中,然后输入 ctrl+shift+f,即可看到简繁转换的提示

关于ubuntu开发环境配置_第8张图片

你可能感兴趣的:(ubuntu调教,ubuntu,eureka,linux)