体验ubuntu,windows双系统

简介: 体验ubuntu,windows双系统

大家好,这里是七七,今天来分享一下安装双系统的经历,这不是用虚拟机来运行哦。


一、安装过程


首先是下载一个ubuntu(对于新手建议下载ubuntu kylin,这是国产的哦)的镜像,并且对内存进行压缩、分区。然后用Win30 Disk Imager来将系统搞到自己的U盘,之后就是进入BIOS模式设置U盘优先读取,再后就是安装Ubuntu了,根据先前分好的区来安装。详细可以看B站的这个视频:下载安装镜像工具_哔哩哔哩_bilibili


二、使用Ubuntu过程


1、下载Docker


先来下载Docker的原因是之前我在windows下载过一次Docker,下载过程很繁琐,不是很友好,因此想在Linux下再一次Docker,对比一下两个环境的差别。


有两种方式都可以下载


方法一: 这种方式是从apt源安装docker.io,但版本比较旧

sudo apt-get install docker.io


方法二:用官方提供的安装脚本,可以安装最新的Docker.安装命令如下

sudo apt-get install curl
curl -sSl https://get.docker.com/ | sh


安装完成后,通过如下命令启动Docker的守护进程

sudo service docker start docker start/running. process 3050


然后,通过如下脚本检查Docker是否安装成功

sudo docker run hello-world


若成功,则会出现下列代码

Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
c1ec31eb5944: Pull complete 
Digest: sha256:ac69084025c660510933cca701f615283cdbb3aa0963188770b54c31c8962493
Status: Downloaded newer image for hello-world:latest
 
Hello from Docker!
This message shows that your installation appears to be working correctly.
 
To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.
 
To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash
 
Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/
 
For more examples and ideas, visit:
 https://docs.docker.com/get-started/


如果不想每次运行Docker都是用sudo权限,可以把用户加到Docker组中。例如我的用户名为a,则添加命令如下

sudo usermod -aG docker a


充气后生效,再次执行Docker的指令,直接输入“docker xx”,不需要加“sudo”了。


现在在Ubuntu下的Docker已经安装成功了。


三、对比两个系统的差距


对于日常生活来说,WIndows确实更好,Linux系统的优势在于其优雅的操作方式以及一些功能,软件的简易实现性。

相关文章
|
5月前
|
XML Ubuntu Linux
部署08---扩展-Win10配置WSL(Ubuntu)环境,WSL系统是什么意思,是Windows系统上的一个子系统, xml的一大特点是直链系统,直接链接你的CPU,硬盘和内存,如何用 WSL部署
部署08---扩展-Win10配置WSL(Ubuntu)环境,WSL系统是什么意思,是Windows系统上的一个子系统, xml的一大特点是直链系统,直接链接你的CPU,硬盘和内存,如何用 WSL部署
|
2月前
|
监控 Ubuntu Linux
视频监控笔记(五):Ubuntu和windows时区同步问题-your clock is behind
这篇文章介绍了如何在Ubuntu和Windows系统中通过设置相同的时区并使用ntp服务来解决时间同步问题。
77 4
视频监控笔记(五):Ubuntu和windows时区同步问题-your clock is behind
|
6月前
|
Ubuntu
【亲测有效】装了双系统后在ubuntu下耳机没有声音的解决方法
【亲测有效】装了双系统后在ubuntu下耳机没有声音的解决方法
|
2月前
|
Ubuntu Linux Python
如何利用wsl-Ubuntu里conda用来给Windows的PyCharm开发
如何在WSL(Windows Subsystem for Linux)的Ubuntu环境中使用conda虚拟环境来为Windows上的PyCharm开发设置Python解释器。
183 0
|
2月前
|
Ubuntu Linux 开发工具
windows11安装WLS2+Ubuntu
windows11安装WLS2+Ubuntu
|
4月前
|
Ubuntu 安全 Linux
Windows——安装Ubuntu 18.04 LTS
Windows——安装Ubuntu 18.04 LTS
87 1
Windows——安装Ubuntu 18.04 LTS
|
4月前
|
Windows
Windows——windows10下如何和子系统Ubuntu18.04互传文件
Windows——windows10下如何和子系统Ubuntu18.04互传文件
64 1
|
4月前
|
Linux Go
Linux——windows10下的Ubuntu18.04安装并配置go环境
Linux——windows10下的Ubuntu18.04安装并配置go环境
58 1
|
4月前
|
Ubuntu Linux 开发工具
Windows11 WSL2 Ubuntu编译安装perf工具
Windows11 WSL2 Ubuntu编译安装perf工具
192 0
|
6月前
|
Ubuntu Linux Docker
windows 安装docker 安装Ubuntu linux
windows 安装docker 安装Ubuntu linux
145 3