web-dev-qa-db-ja.com

cfdisk内の1つのパーティションの前にあるバッククォート( `)の意味

パーティションが不良である可能性のあるディスクがあります(特定のディレクトリのdu -sh *からStructure needs cleaningが返されます)。 cfdisk /dev/sdaを起動してパーティションを確認しましたが、次のように表示されます。

Disk: /dev/sda
Size: 232.9 GiB, 250059350016 bytes, 488397168 sectors
Label: dos, identifier: 0x00000000

    Device Boot Start                        End Sectors                   Size                 Id Type
>>  Free space 2048                       8191 6144 3M
    /dev/sda1 * 8192                      90111 81920                    40M                  e W95 FAT16 (LBA)
    /dev/sda2 90112                     729087 638976                   312M                 83 Linux
    /dev/sda3 729088                    1368063 638976                   312M                 83 Linux
    /dev/sda4 1368064                  488397167 487029104                 232.2G                  f W95 Ext'd (LBA)
    |-Free space 1370112                    1376256 6145 3M
    |-/dev/sda5 1376256                    1417215 40960                    20M                 83 Linux
    |-Free space 1419264                    1425408 6145 3M
    `-/dev/sda6 1425408                  488397167 486971760                 232.2G                 83 Linux

/dev/sda6の前の `は何の略ですか?

1
stdcerr

これは、/dev/sda4とその下の行との関係を説明しようとする文字ベースのツリー表現の一部です。これは、treeコマンドを使用して取得できるディレクトリツリーの表現に似ていますが、基本的なASCII文字セットのみを使用します。

プレーンなASCIIと固定幅フォント)だけを使用してツリーのような構造を記述する必要がある状況では、同様のことが見られる場合があります。

This is the main unit
|- this is a sub-unit inside the main unit
|- this is another sub-unit inside the main unit
`- this is the last sub-unit inside the main unit

このテキストベースのツリー表現には多くのバリエーションがあります。バッククォートの代わりにバックスラッシュが使用されている場合があります。

This is the main unit
|--- this is a sub-unit
|    \--- this is a sub-sub-unit for the first sub-unit  
|-+- this is a sub-unit that might have sub-sub-units inside it (hidden for now)
\--- this is the last sub-unit inside the main unit

これは、メインユニットから下がる線のように見え、サブユニットの分岐があり、最後のサブユニットで90度の角度があり、このメインユニット内のサブユニットのグループがここで終了することを示しています。 。それ以外は、特定の文字は特に何も意味しません。それらは、ツリーグラフの適切な形状のピースとして機能するように選択されているだけです。

4
telcoM