0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

No such file or directory, 今日のshell error(31)

Last updated at Posted at 2019-07-18

docker(26) docker耐久試験
https://qiita.com/kaizen_nagoya/items/83aa733001ae7026bf70

で、shellコマンド、いくつかやらかしました。

ファイル名の途中に空白

docker/ubuntu
# cat data27 data27 data27 > data 81
cat: 81: No such file or directory

「data81」とすべきところを、手がすべって「data 81」と間に空白を入れた。
気がつかずにリターンキーを押した。

結果、dataというファイルが上書きされてしまった。

幸い、作業は1が続くファイルのでかいのを作っていただけだから実害はない。

docker/ubuntu
# ls -al
total 65956
drwxr-xr-x 1 root root     4096 Jul 18 04:01 .
drwxr-xr-x 1 root root     4096 Jul 18 03:54 ..
-rw-r--r-- 1 root root 27206361 Jul 18 04:01 data
-rw-r--r-- 1 root root  9068787 Jul 18 04:00 data27
-rw-r--r-- 1 root root  1007643 Jul 18 04:00 data3
-rw-r--r-- 1 root root 27206361 Jul 18 04:01 data81
-rw-r--r-- 1 root root  3022929 Jul 18 04:00 data9

一時的とはいえ、無駄なファイルを作る時間だけ無駄。
data81作成は1秒くらい。

コマンドを入れ忘れ

docker/ubuntu
# d6561 d6561 d6561 > d19683
bash: d6561: command not found

実際には、

# cat d6561 d6561 d6561 > d19683
root@70f17570ad1c:/opt# ls -al
-rw-r--r-- 1 root root 6611145723 Jul 18 04:09 d19683

この処理約10分。

catでデータ増やさなくても、プログラムで増やしゃいいんですが、
プログラムが動いている最中にディスクいっぱいで止まるのがいやだった。

複写にかかる時間から、もうこれくらいという限界を知ろうかなという作業中。

Reference

Error一覧 error(0)
https://qiita.com/kaizen_nagoya/items/48b6cbc8d68eae2c42b8

<この記事は個人の過去の経験に基づく個人の感想です。現在所属する組織、業務とは関係がありません。>
This article is an individual impression based on the individual's experience. It has nothing to do with the organization or business to which I currently belong.

文書履歴(document history)

ver. 0.01 add URL 20240508

最後までおよみいただきありがとう4ざいました。

いいね 💚、フォローをお願いします。

Thank you very much for reading to the last sentence.

Please press the like icon 💚 and follow me for your happy life.

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?