虛擬機器安裝ubuntu

魔王卷子發表於2018-01-02

本文首發於我的部落格

公司的電腦是windows的。因為平常要用到linux的獨有特性。比如swoole等等。所以,我在虛擬機器中安裝ubuntu。

好了,廢話不多說,我是使用的自動安裝,在安裝之前就已經設定了登入的賬號密碼。安裝完成是沒有安裝ssh服務的。

開啟ssh服務

首先執行以下命令安裝openssh

sudo apt install openssh-server -y

啟動服務並且設定開機啟動

sudo systemctl start ssh
sudo 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 multiverse
deb http://mirrors.aliyun.com/ubuntu/ quantal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ quantal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ quantal-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ quantal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ quantal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ quantal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ quantal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ quantal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ quantal-backports main restricted universe multiverse

首先我們需要對該內容進行修改。

我們檢視版本資訊:

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

可以看到codename的值是artful

我們可以把上面quantal全部替換為artful,替換完成如下:

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

然後將替換好的內容新增到/etc/apt/sources.list開頭。

這樣就可以?進行儲存了。

更新包

其實很簡單。首先更新源:

sudo apt update 

在輸出的訊息的最後一行會輸出以下內容:

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

這就表示我有46個包需要更新。那麼就執行執行以下命令進行更新吧:

sudo apt upgrade -y

好了,最開始的安裝環境就已經搭建完成了。

相關文章