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?

Ubuntuでディスク関連

Last updated at Posted at 2023-11-30
  • 2 TB以下のディスクをマウントするとき:
    fdiskを用いる。
    このサイトがわかりやすい。

  • 2 TB以上のディスクをマウントするとき:
    gdiskを用いる。
    このサイトがわかりやすい。
    ただし、mkfs.ext4でext4にするときには作成したパーティションを指定するほうがよいだろう。

    sudo mkfs.ext4 /dev/sde1
    

    みたいに。
    自動マウントの方法はfdiskの方のサイトに載っている。

  • マウントしてあるディスクのフォーマットを確認するとき

    df -hT
    
  • マウントしていないディスクのフォーマットを確認するとき

    lsblk -f
    
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?