Ubuntu 20.04 LTS Serverを使用したGUI環境セットアップ手順



ここはCUI

IPアドレスを確認するためのツール

[Update]
sudo apt-get update

[Using "ifconfig"]
sudo apt-get install net-tools

最初はCUIで起動するので、まず、GUI設定

[Using GUI(startx)]
sudo apt-get install xinit
sudo shutdown -r now


ここからGUI

Google Cromeブラウザ

[Crome Browser (Google)]
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
sudo apt-get install google-chrome-stable

[Cromium Browser (Google open source)]
sudo apt-get install chromium-browser
sudo apt-get install fonts-ipafont-gothic

ファイルマネージャ

[File Manager]
sudo apt-get install nautilus

テキストエディタ

[Text Editor]
sudo apt-get install gedit
sudo apt-get install gedit-plugins

音が出ないので

[Enable Audio]
sudo apt-get install alsa

youtubeのコンテンツダウンローダ(おまけ)

[Download youtube content]
sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+x /usr/local/bin/youtube-dl

オフィス(MS-Office互換フリーソフト)

[Install LibreOffice]
Download deb package from LibreOffice website.
(e.g.LibreOffice_6.4.3_Linux_x86-64_deb.tar.gz)
Extract tar.gz file.
Go to DEBS folder.
$ sudo apt install ./*.deb

[Uninstall LibreOffice]
$ sudo apt remove libreoffice6.4* libobasis6.4*

機械学習用ライブラリ

[Install numpy and matplotlib]
sudo apt-get install python3-numpy
sudo apt-get install python3-matplotlib

[Install ML libraries]
sudo apt-get install python3-scipy
sudo apt-get install python3-sklearn

日本語入力

[Japanese Language]
Run "Language Support"
Select "Install / Remove Languages..." -> "Japanese"
Press [Apply] button

sudo apt-get install anthy
sudo apt-get install ibus-anthy
最終更新:2021年01月05日 02:24