Window11 Ubuntu双系统安装

一、制作启动盘

ubuntu下载:https://cn.ubuntu.com/download

启动盘工具:https://cdimage.deepin.com/applications/deepin-boot-maker/windows/deepin-boot-maker.exehttps://cdimage.deepin.com/applications/deepin-boot-maker/windows/deepin-boot-maker.exe

二、安装

预留安装磁盘

在windown上单独划分一个磁盘,我这里大小100GB。

安装

1.重启电脑、点击F12 进入 BIOS,选择盘启动

2.选择语言:中文简体

3.选择安装方式:最小安装

4.安装类型:其他选项 --- 自己分区

挂在分区 分区类型 大小 用于
逻辑分区 500M EFI系统分区
逻辑分区 电脑物理分区的2倍: 4G * 2 swap交换分区
/ 主分区 30G ext4文件系统
/home 逻辑分区 剩余 ext4文件系统

三、软件安装

1.更新系统

$ sudo apt dist-upgrade
$ sudo apt upgrade

2.安装搜狗输入法

下载常见格式搜狗 :https://shurufa.sogou.com/linux/
 

下载amd64格式:https://gitee.com/zhushengle/os_data/blob/master/tools/ubuntu/sogoupinyin_4.2.1.145_amd64.deb

安装指导:https://shurufa.sogou.com/linux/guide 

3.基本开发环境准备

// git
$ sudo apt install git
$ git config --global user.name "yourname"
$ git config --global user.email "your-email-address"
$ git config --global credential.helper store
$ git config --global core.quotepath false
$ git config --global core.editor vim

// ssh
$ ssh-keygen -t ed25519 -C "Gitee SSH Key"
$ cat .ssh/id_ed25519.pub

4.vim安装

安装指导: https://gitee.com/zhushengle/os_data/blob/master/tools/vim/README.md

5. google浏览器

下载浏览器:http://www.google.cn/intl/zh-CN/chrome/

$ sudo dpkg -i google-chrome-stable_current_amd64.deb

你可能感兴趣的:(ubuntu,linux,运维)