0
0

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 1 year has passed since last update.

Linux初期設定

Last updated at Posted at 2022-07-16

Linux初期設定の便利メモ

vi初期設定

homeディレクトリのユーザフォルダ配下にvi用の設定ファイルを作成する。

これで、日本語キーボードでもBackSpaceキーなどなどまともに使えるようになる
ついでに行の表示やインデントの調整も入れておく。

YYY@XXX:~$ cat /home/YYY/.vimrc
set backspace=indent,eol,start
set nocompatible
set number
set autoindent
set tabstop=4
set shiftwidth=4

start up 起動用シェルの中身

以下のファイルをデスクトップ等に配置しておくと、イチイチコマンドを実行させる手間がなくて便利

sh .bash_profile
echo 'passwod' | sudo -S chmod 777 /var/run/docker.sock
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?