• Ubuntu20详细安装步骤


    镜像下载、域名解析、时间同步请点击 阿里云开源镜像站

    Ubuntu20.04服务器版安装

    下载地址:https://ubuntu.com/download/desktop

    一、语言选择:English(按Done确认,Done按钮在安装窗口的最下面)

    file

    二、Installer update available选择Continue without updating

    三、Keyboard configuration(键盘布局)选择Done默认即可

    四、Network connections(网络配置)选择默认的动态获取IP地址,成功获取IP地址后,选择Done

    五、Configure Proxy(配置代理服务):默认空白即可,选择Done

    六、configure Ubuntuu archive mirror(设置软件源的地址)修改为:http://mirrors.aliyun.com/ubuntu,然后点击Done

    file

    6.1Installer update available(安装器的更新)选择Update to the new installer{有的安装会出现这个界面}

    七、Guided storage configuration(磁盘分区设置) 默认选择use an entire disk 然后选择Done

    八、Storage configuration(分区预览),选择Done,然后会弹出警告:是否确认,点击Continue

    file

    九、Profile setup(创建用户配置),然后点击Done

    file

    十、SSH Setup(弹出是否安装open ssh),选择安装,然后点击Done

    file

    十一、Featured Server Snaps(其他功能软件列表),选一个docker表示安装docker,什么都不选表示不安装任何工具,直接移动到最后,选择Done

    file

    十二、installing system(系统开始安装),然后等待让他安装,当View full log和Cancel update and reboot变成reboot 说明已经安装完成,点击重启

    启动成功后,根据安装时设置的账户密码登录

    file

    VMware网络需要改为桥接

    启动docker

    sudo service docker start

      设置docker开启自启动

      sudo systemctl enable docker

        将当前用户加入到docker用户组中,那么当前用户就有权限访问Unix socket了,进而也就可以执行docker相关命令。

        sudo groupadd docker            #添加docker用户组
        sudo gpasswd -a $USER docker    #将登陆用户加入到docker用户组中
        newgrp docker                   #更新用户组
        docker ps                       #测试docker命令是否可以使用sudo正常使用
        • 1
        • 2
        • 3

        Ubunto20同步网络时间

        1、使用timedatectl命令修改时区

        sudo timedatectl set-timezone Asia/Shanghai

          2、运行命令,验证修改

          timedatectl

            3、修改时间为24小时制显示

            sudo vi /etc/default/locale
            #文中添加一行
            echo "LC_TIME=en_DK.UTF-8" >> /etc/default/locale
            • 1
            • 2

            4、如果未生效重启服务器

            原文链接:https://blog.csdn.net/weixin_48427667/article/details/123581646

          • 相关阅读:
            卡尔曼滤波的推导
            Redis常用配置详解
            [运维|系统] go程序设置开机启动踩坑笔记
            初识RxJS
            一文学会Docker+Jenkins一键自动化部署~
            从平面设计转行软件测试,喜提11K+13薪,回头看看我很幸运
            RHCE之路网盘搭建
            RFC(Remote function call)
            为什么短时傅里叶变换无法实现小波等优秀时频方法对时频分布的提取效果?
            C语言函数体 计算10个学生的平均成绩
          • 原文地址:https://blog.csdn.net/m0_60028455/article/details/125620227