2015年9月01日課程做業(練習)

1、做業(練習)內容:node

一、複習本次課程所講的內容;vim

       Linux磁盤管理及文件系統bash

二、總結整理磁盤管理及文件系統管理中設計的各類命令的使用,並附註必定的示例;app

       Linux磁盤管理及文件系統ide

三、建立一個10G的文件系統,類型爲ext4,要求開機可自動掛載至/mydata目錄
ui

答:spa

[root@localhost ~]# fdisk /dev/sda

WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
         switch off the mode (command 'c') and change display units to
         sectors (command 'u').

Command (m for help): n     #建立新的分區
First cylinder (13321-15665, default 13321):
Using default value 13321
Last cylinder, +cylinders or +size{K,M,G} (13321-15665, default 15665): +10G     #大小10G

Command (m for help): w     #保存並退出
The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: 設備或資源忙.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
Syncing disks.
[root@localhost ~]# partx -a /dev/sda     #刷新分區表
BLKPG: Device or resource busy
error adding partition 1
BLKPG: Device or resource busy
error adding partition 2
BLKPG: Device or resource busy
error adding partition 3
BLKPG: Device or resource busy
error adding partition 4
BLKPG: Device or resource busy
error adding partition 5
BLKPG: Device or resource busy
error adding partition 6
BLKPG: Device or resource busy
error adding partition 7
[root@localhost ~]# mkfs.ext4 /dev/sda8     #格式化爲ext4
mke2fs 1.41.12 (17-May-2010)
文件系統標籤=
操做系統:Linux
塊大小=4096 (log=2)
分塊大小=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
655776 inodes, 2622603 blocks
131130 blocks (5.00%) reserved for the super user
第一個數據塊=0
Maximum filesystem blocks=2688548864
81 block groups
32768 blocks per group, 32768 fragments per group
8096 inodes per group
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632

正在寫入inode表: 完成
Creating journal (32768 blocks): 完成
Writing superblocks and filesystem accounting information: 完成

This filesystem will be automatically checked every 28 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.
[root@localhost ~]# mkdir /mydata
[root@localhost ~]# blkid /dev/sda8     #查看磁盤uuid
/dev/sda8: UUID="3d8c6632-8881-4c72-81d4-1e64ad4265e5" TYPE="ext4"
[root@localhost ~]# vim /etc/fstab     #編輯fstab文件實現開啓掛載,完畢
# /etc/fstab
# Created by anaconda on Tue Aug 25 21:09:00 2015
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
/dev/mapper/VolGroup-LogVol02 /                       ext4    defaults        1 1
UUID=dbde3019-886c-4eb3-8a79-b15825f7f929 /boot                   ext4    defaults        1 2
/dev/mapper/VolGroup-LogVol00 /usr                    ext4    defaults        1 2
/dev/mapper/VolGroup-LogVol01 /var                    ext4    defaults        1 2
UUID=4bb4b88a-0a7c-42d7-8e28-d6eb5ce64bb8 swap                    swap    defaults        0 0
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
UUID=3d8c6632-8881-4c72-81d4-1e64ad4265e5 /mydata       ext4    defaults,acl    0 0
[root@localhost ~]# mount /mydata/
[root@localhost ~]# df -h     #查看當前分區使用狀況
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup-LogVol02
                       39G  545M   37G   2% /
tmpfs                 495M   72K  495M   1% /dev/shm
/dev/sda1             477M   37M  415M   9% /boot
/dev/mapper/VolGroup-LogVol00
                      9.8G  3.3G  6.0G  36% /usr
/dev/mapper/VolGroup-LogVol01
                      9.8G  214M  9.1G   3% /var
/dev/sda8             9.8G   23M  9.3G   1% /mydata
相關文章
相關標籤/搜索