up

ディレクトリの作成

フロッピー ディスク を マウントします

# mount /dev/fd0 /mnt/
# df
Filesystem           1k-blocks      Used Available Use% Mounted on
/dev/hda7              9469148   5136516   3843856  58% /
/dev/hda8              9614116   5154580   3971164  57% /var/data
/dev/fd0                  1412        13      1327   1% /mnt
# ls -al /mnt/
total 17
drwxr-xr-x    3 root     root         1024 Jun 25 12:55 ./
drwxr-xr-x   19 root     root         4096 Jun 25 07:54 ../
drwx------    2 root     root        12288 Jun 25 12:55 lost+found/

ディレクトリ ”lost+found”を 作成し直します。

# rmdir /mnt/lost+found/
# mkdir /mnt/lost+found/
# ls -al /mnt/
total 6
drwxr-xr-x    3 root     root         1024 Jun 25 12:58 ./
drwxr-xr-x   19 root     root         4096 Jun 25 07:54 ../
drwxr-xr-x    2 root     root         1024 Jun 25 12:58 lost+found/

ディレクトリを作成

システムに合わせて ディレクトリを作成します。

# ls /boot/grub/
device.map     ffs_stage1_5    minix_stage1_5     stage2
e2fs_stage1_5  grubimg.xpm.gz  reiserfs_stage1_5  vstafs_stage1_5
fat_stage1_5   jfs_stage1_5    stage1             xfs_stage1_5

つまり

# mkdir -p /mnt/boot/grub
# ls -al /mnt/
total 7
drwxr-xr-x    4 root     root         1024 Jun 25 13:01 ./
drwxr-xr-x   19 root     root         4096 Jun 25 07:54 ../
drwxr-xr-x    3 root     root         1024 Jun 25 13:01 boot/
drwxr-xr-x    2 root     root         1024 Jun 25 12:58 lost+found/
# ls -R /mnt/
/mnt/:
boot/  lost+found/

/mnt/boot:
grub/

/mnt/boot/grub:

/mnt/lost+found:

にゃんたろう 拝!

2009年 6月25日 (木) 21:26:18 JST 作成


up

Copyright © 2004.-2009. nyantarou All Rights Reserved.