Ubuntuインストール後に設定すべきこと

f:id:tworks55:20200506182216j:plain:w300


先日Ubuntu 20.04 LTSをインストールしましたが、インストール後に以下のような設定をしたのでブログに残しておきます。


1. Download and Install Latest Updates
> sudo apt-get update && sudo apt-get upgrade -y
2. Install GNOME Tweak Tool
> sudo apt-get install gnome-tweak-tool -y
3.Chromeをインストール

Google Chrome ウェブブラウザ

4. Software Centerから各種アプリケーションをインストール



5.Improve Battery Performance
> sudo apt-get install tlp tlp-rdw
> sudo systemctl enable tlp
6.To clean partial packages
> sudo apt-get autoclean
7.To remove unused dependencies
> sudo apt-get autoremove
8. To auto cleanup apt-cache
> sudo apt-get clean
9. Install Flatpak
> sudo apt-get install gnome-software-plugin-flatpak
> flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
10. Install SimpleScreenRecorder
sudo apt-get install simplescreenrecorder
11. SDKMANでJDKをインストール

SDKMANで複数のJDKを管理 - Software Engineering Blog

12. IMEの操作をMacと統一

Ubuntu、Mac、Windowsの半角 / 全角の切り替えをキーを統一する - Software Engineering Blog

13. Default Shellをzshに変更し、Oh My Zshをインストール

UbuntuでOh My Zsh - Software Engineering Blog

14. VS CodeへPowerlineフォントの設定

UbuntuでVSCode TerminalでPowerlineフォントを利用する - Software Engineering Blog

15.Install Multimedia Codecs
> sudo apt-get install ubuntu-restricted-extras
16. sudo apt-get install synaptic
> sudo apt-get install synaptic


参考サイト

40 Things to do After Installing Ubuntu – Linux Hint