1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Linux Mint20 初期設定

Last updated at Posted at 2020-09-30

Linux Mint 21.1 導入後に実施する作業の覚書

初期設定

ホームディレクトリの英語化

LANG=C xdg-user-dirs-gtk-update

日本語入力の設定

sudo apt install fcitx-mozc --install-recommends
im-config -n fcitx

ターミナルのカレントディレクトリの表示を省略形にする

/.bashrcでPS1の値を設定している箇所を編集する(working directoryを表すwを大文字にする)

~/.bashrc

if [ "$color_prompt" = yes ]; then
#    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
     PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\W\[\033[00m\]\$ '
else
#    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\W\$ '
fi

時計の調整

Windows とLinux の時計のズレを修正

timedatectl set-local-rtc 1

Chrome を導入

  • インターネットからchromeのdebパッケージをダウンロード
  • インストール

VLC Media Player を導入

ソフトウェアの管理からFlatPakのVLCを導入

podman のインストール

sudo apt install podman podman-toolbox podman-compose  podman-remote 

Docker, Docker Compose を導入

podmanに変更

sudo apt install docker.io docker-compose docker-buildx

Docker hub へのログイン

sudo docker login -u [ユーザー名] -p [パスワード]

Visual Studio Code を導入

  • インターネットからUbuntu版はダウンロード(debパッケージ)
  • インストール

Virtual Box を導入

  • インターネットからLinux 64bit版のdebファイルをダウンロード
  • インストール

VMware Workstation Player を導入

Kdenlive を導入

ソフトウェアの管理からFlatPakのKdenliveを導入

remminaのインストール

remmina-plugin-rdpをインストール
※Flathubじゃない方をインストール
(Flathubのは日本語が文字化けした)

Discordのインストール

flathub のページで検索してインストール

GitKrakenのインストール

flathub のページで検索してインストール

fsearchのインストール

ソフトウェアマネージャーから検索してflatpakからのインストール

LibreOfficeをほぼ最新にする

sudo add-apt-repository ppa:libreoffice/ppa
sudo apt update && sudo apt upgrade -y

タッチパッドON・OFF切り替え

1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?