3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ubuntu18.04での環境構築

Last updated at Posted at 2018-04-30

Ubuntu18.04が正式リリースしたのでPC2台セットアップしたときのメモです。

※日本語化のやり方がわからなかったので、日本語設定でインストールしています。

1. Ubuntuのインストール

2. UPDATE + UPGRADE

ターミナルで

$ sudo apt-get update
$ sudo apt-get upgrade -y

3. Google Chromeのインストール

  • Google Chromeをダウンロード
  • debファイルを実行
  • ユーザ同期で、別PCとブックマークと検索履歴を共有

4. sshのインストール

ターミナルで

$ sudo apt-get install openssh-server

5. OpenGLのインストール

ターミナルで

$ sudo apt-get install mesa-utils

6. Dockerのインストール

※まだ公式の方法ではインストールできないので
ココを参考にインストール

ターミナルで

$ sudo apt install docker.io
$ sudo systemctl start docker
$ sudo systemctl enable docker

バージョン確認

$ docker --version

7. 基本的な使うものをインストール

$ sudo apt-get update
$ sudo apt install apt-transport-https ca-certificates curl git software-properties-common

8. Dockerをsudoなし実行する設定

ターミナルで

$ sudo usermod -aG docker $USER

一度ログアウト

9. Python環境のインストール

anacondaPython3をダウンロード

ダウンロードしたファイルがあるフォルダでターミナルを開き

sh Anaconda3-5.1.0-Linux-x86_64.sh

※ファイル名は2018.4.28現在

※いろいろ聞いてくるけど、デフォルトで

※VSCodeもこのときにインストールする

とりあえず,こんなところです。

3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?