同社のコンピューターは窓です。 Linuxの独自の機能が通常使用されるためです。シューレなど。そこで、ubuntuを仮想マシンにインストールしました。
まあ、あまり意味がありません。自動インストールを使用しており、インストール前にログインアカウントのパスワードが設定されています。インストールの完了後、sshサービスはインストールされません。
最初に次のコマンドを実行してopensshをインストールします
sudo apt install openssh-server -y
サービスを開始し、起動するように設定します
sudo systemctl start ssh
sudo systemctl enable ssh
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
これは、AlibabaCloudのヘルプファイルからコピーしたソースのコンテンツです。
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 **であることがわかります
上記のすべての量子を巧妙なに置き換えることができます。置き換えは次のように完了します。
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 **の先頭に追加します。
このようにして、**:x **を保存できます。
それは実際には本当に簡単です。最初にソースを更新します。
sudo apt update
以下は、出力メッセージの最後の行に出力されます。
46 packages can be upgraded. Run 'apt list --upgradable' to see them.
これは、更新するパッケージが46個あることを意味します。次に、次のコマンドを実行して更新します。
sudo apt upgrade -y
さて、初期インストール環境はセットアップされました。
Recommended Posts