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?

More than 5 years have passed since last update.

inode

0
Posted at

パーミッション、owner、group、サイズ等を管理する領域
後から増やす事はできない

OSインストール時の設定
part /boot --asprimary --bytes-per-inode=4096 --fstype="ext3" --size=512
part / --bytes-per-inode=4096 --fstype="ext3" --grow --size=1
part swap --asprimary --bytes-per-inode=4096 --fstype="swap" --size=2048

inode確認
[root@local-vm03 ~]# df -i 
Filesystem            Inodes   IUsed   IFree IUse% Mounted on
/dev/sda3            1442880   41827 1401053    3% /
/dev/sda1             130560      35  130525    1% /boot
tmpfs                  96041       1   96040    1% /dev/shm
OSインストール時の設定
part /boot --asprimary --bytes-per-inode=8192 --fstype="ext3" --size=512
part / --bytes-per-inode=8192 --fstype="ext3" --grow --size=1
part swap --asprimary --bytes-per-inode=8192 --fstype="swap" --size=2048

inode確認
[root@local-vm03 ~]# df -i
Filesystem            Inodes   IUsed   IFree IUse% Mounted on
/dev/sda3             722304   42025  680279    6% /
/dev/sda1              65536      35   65501    1% /boot
tmpfs                  96041       1   96040    1% /dev/shm
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?