LoginSignup
1
2

More than 5 years have passed since last update.

Ubuntu18.04インストール後の初期設定

Posted at

コマンド

#update & upgrade
sudo apt update && sudo apt upgrade

#不要パッケージの削除
sudo apt autoremove

#日本語入力
sudo apt install ibus-mozc
killall ibus-demon
ibus-demon -d -x &

#vim
sudo apt install vim

#Git
sudo apt install git

##generate ssh-key
ssh-keygen -t rsa

#default Editor
update-alternatives --config editor

#Python Warnings表示
echo "export PYTHONWARNINGS=default" >> ~/.bashrc
source ~/.bashrc

参考サイト

ubuntu 16.04 LTS インストール後の設定
Ubuntu 18.04の初期設定をしてみた
Ubuntu 18.04 LTSのセットアップ

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