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 3 years have passed since last update.

まっさらな状態から「Ubuntu」で「grepコマンド」を使って文字検索をするまでにやったことメモ

Last updated at Posted at 2020-12-20

初めに

実行環境

  • OS:Windous10 Home
  • Ubuntu:Verison 20.04 LTS

Ubuntuのインストール

Ubuntuのバージョン確認コマンド

  • Ubuntuのバージョン確認をする際、以下のコマンドを実行しました。
Ubuntuのバージョン確認コマンド
$ cat /etc/issue

自分の場合は以下のように出力されました。

Ubuntu 20.04 1 LTS \n \l

sudoコマンドのパスが通っていないことに気づいた

  1. 以下のディレクトリに移動する。
C:\Users\<ユーザ名>\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu20.04onWindows_79rhkp1fndgsc\LocalState\rootfs\etc\sudoers.d

2.つき当たりのsudoers.dフォルダ内にある99-snapd.confというファイルをメモ帳などで開き、secure_pathの部分を以下のように編集した。

# Allow snap-provided applications to work with sudo
Defaults    secure_path += /usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

※一応バックアップは取って!

「Permission Denied」エラーを解消するために

  • catとgrepコマンドを実行しようとしたら出てきたエラー。
  • 用意した検索対象のテキストファイルを開く権限がなかったため発生。
  • 用意したテキストファイルを編集する権限を与えるため、以下のコマンドを実行した。
$ chmod 764 -c <ファイル名>

※ この「Permission Denied」エラー時に権限を与える方法については、以下のサイトがわかり易いです。
https://lpic.hatenablog.com/entry/chmod%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95

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?