2021-07-01から1ヶ月間の記事一覧

Ubuntuでファイル、ディスク、ディレクトリ(フォルダ)の容量を確認する

以下にファイル、ディスク、ディレクトリ(フォルダ)の容量を確認する方法を示す。特定のファイルの容量確認$ ls -l /path/to/directoryディスクの容量確認$ df -hディレクトリの容量確認$ du -hs /path/to/directory

TabError: inconsistent use of tabs and spaces in indentationの解決法

pythonのコードをサイトからコピー&ペーストし、そのコードに行を追加した際、 TabError: inconsistent use of tabs and spaces in indentation というエラーが出てしまった。 この対処法としてこのファイル内のタブを全てスペースに変換する、という方法が…