1
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 Server LTS インストール後の作業(特に全てのディスク領域を割り当てたい)

Posted at

Ubuntu Server LTS のインストール

たまに Ubuntu Server をインストールする機会があり、いつもどうやったかな?と思い出せないので自分メモです。

ISOは、下記からダウンロードする

インストール方法はここが参考になります

全てのディスク領域を割り当てたい

インストール画面でパーティションの割り当てがあります。ここで FREE となっている未使用領域をすべて割り振るのが正しいのですが、あまり気にせずそのまま先に進んでインストールを完了すると全てのディスク領域が使用されていないことがわかります。

全体で 32G あるのに・・・

Filesystem                        1K-blocks    Used Available Use% Mounted on
tmpfs                                400928    1224    399704   1% /run
/dev/mapper/ubuntu--vg-ubuntu--lv  15371208 5670768   8897832  39% /
tmpfs                               2004632       0   2004632   0% /dev/shm
tmpfs                                  5120       0      5120   0% /run/lock
/dev/sda2                           1992552   96644   1774668   6% /boot
tmpfs                                400924      12    400912   1% /run/user/1000

そこで、FREE を /dev/mapper/ubuntu--vg-ubuntu--lv に全て振り分ける

sudo lvextend -l +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv
sudo resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv

すると。。。。!。おお!

Filesystem                        1K-blocks    Used Available Use% Mounted on
tmpfs                                400928    1224    399704   1% /run
/dev/mapper/ubuntu--vg-ubuntu--lv  30849020 5670784  23746664  20% /
tmpfs                               2004632       0   2004632   0% /dev/shm
tmpfs                                  5120       0      5120   0% /run/lock
/dev/sda2                           1992552   96644   1774668   6% /boot
tmpfs                                400924      12    400912   1% /run/user/1000

あとの作業

ロケールを修正したりと。しましょう。

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