博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
虚拟机安装ubuntu
阅读量:6004 次
发布时间:2019-06-20

本文共 2997 字,大约阅读时间需要 9 分钟。

本文首发于

公司的电脑是windows的。因为平常要用到linux的独有特性。比如swoole等等。所以,我在虚拟机中安装ubuntu。

好了,废话不多说,我是使用的自动安装,在安装之前就已经设定了登录的账号密码。安装完成是没有安装ssh服务的。

开启ssh服务

首先执行以下命令安装openssh

sudo apt install openssh-server -y

启动服务并且设置开机启动

sudo systemctl start sshsudo systemctl enable ssh

查看IP,并使用xshell连接

查看ip

ip addr

查看你的网卡信息,发现我的IP是192.168.110.128.

因为直接使用虚拟机内部的终端并不好用,不能够进行复制粘贴啥的,所以我使用外部的终端程序。我在这里使用的是xshell。

新建会话属性,输入主机ip(就是刚才我们获得的),在用户身份验证输入用户名和密码。

然后点击最下面的连接。会出现一个弹出框,选择“接口并保存”。

修改源

进入后第一件事就是修改apt源。

在修改源之前,我们先安装VIM编辑器:

sudo apt install vim -y

安装完成之后,我们要编辑apt源文件去除cd源。

sudo vi /etc/apt/sources.list

将第5行的配置进行注释:

# deb cdrom:[Ubuntu-Server 17.10 _Artful Aardvark_ - Release amd64 (20171017.1)]/ artful main restricted

修改源为阿里源

这是我从阿里云的帮助文件中复制到的源的内容。

deb http://mirrors.aliyun.com/ubuntu/ quantal main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ quantal-security main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ quantal-updates main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ quantal-proposed main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ quantal-backports main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ quantal main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ quantal-security main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ quantal-updates main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ quantal-proposed main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ quantal-backports main restricted universe multiverse

首先我们需要对该内容进行修改。

我们查看版本信息:

baoguoxiao@ubuntu:~$ sudo lsb_release -aNo LSB modules are available.Distributor ID:    UbuntuDescription:    Ubuntu 17.10Release:    17.10Codename:    artful

可以看到codename的值是artful

我们可以把上面quantal全部替换为artful,替换完成如下:

deb http://mirrors.aliyun.com/ubuntu/ artful main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ artful-security main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ artful-updates main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ artful-proposed main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ artful-backports main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ artful main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ artful-security main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ artful-updates main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ artful-proposed main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ artful-backports main restricted universe multiverse

然后将替换好的内容添加到/etc/apt/sources.list开头。

这样就可以:x进行保存了。

更新包

其实很简单。首先更新源:

sudo apt update

在输出的消息的最后一行会输出以下内容:

46 packages can be upgraded. Run 'apt list --upgradable' to see them.

这就表示我有46个包需要更新。那么就执行运行以下命令进行更新吧:

sudo apt upgrade -y

好了,最开始的安装环境就已经搭建完成了。

转载地址:http://zspmx.baihongyu.com/

你可能感兴趣的文章
Shell命令-文件压缩解压缩之gzip、zip
查看>>
The Unique MST
查看>>
个人总结
查看>>
uva 673 Parentheses Balance
查看>>
申请Let’s Encrypt免费证书,给自己网站增加https访问
查看>>
javascript+html 实现隐藏 显示
查看>>
BZOJ 2120 数颜色
查看>>
正则表达式学习笔记——基础知识
查看>>
织梦如何实现二级栏目导航的仿制
查看>>
网上购物系统(Task010)——FormView编辑更新商品详细信息
查看>>
Struts2 技术全总结 (正在更新)
查看>>
PowerShell_零基础自学课程_5_自定义PowerShell环境及Powershell中的基本概念
查看>>
Bzoj 2252: [2010Beijing wc]矩阵距离 广搜
查看>>
《编程之美》——寻找发帖“水王”学习与扩展 转surymj博客
查看>>
Linux 虚拟机VMware安装失败,提示没有选择磁盘
查看>>
LeetCode-Permutations
查看>>
SpringMVC的REST风格的四种请求方式
查看>>
漫谈 Clustering (1): k-means(转)
查看>>
从零搭建mongo分片集群的简洁方法
查看>>
J2EE环境配置与工具使用
查看>>