linux基础之文件系统管理

自己以为本来分区应该在刚装系统的时候说的,其实我也挺纳闷为啥老师讲课不先讲这个?

1文件系统常用命令

1.1查看文件系统

df [-a-h-T-m-k] [挂载点]
-a 显示所有的文件系统信息,包括特殊文件系统 /proc /sysfs
-h 使用习惯单位显示容量 ,KB MB GB等
-T 显示文件系统类型
-m 以MB为单位显示容量
-k 以KB为单位显示容量,默认就是KB

1.2统计目录或者文件大小

du [-a-h-s] [目录或者文件名]
-a 显示每个子文件的磁盘占用量
-h 使用习惯单位显示磁盘占用量
-s 统计总占用量,而不是列出子目录和子文件占用量

1.3文件系统修复

fsck [-a-y] [分区设备文件名]
-a 不用显示用户提示,自动修复文件系统
-y 自动修复,特殊文件才能用到

1.4查询指定分区详细文件系统信息

dumpe2fs -h /dev/sda1   
-h 仅显示超级块中信息,而不显示磁盘块组的详细信息

1.5查询与自动挂载

mount [-l]  #查询系统中已经挂载的设备,-l会显示卷标名称
mount -a  #按照配置文件/etc/fstab自动挂载

mount [-t-L-o] [设备文件名] [挂载点]
-t 文件系统,加入文件系统类型来指定挂载的类型 ext3/ext4/iso9660等
-L 卷标名 挂载指定卷标的分区,而不是安装设备文件名挂载
-o 特殊选项,可以指定挂载的额外选项

1.6挂载u盘

fdisk -l    #查看u盘设备文件名
mount -t vfat /dev/sdb1 /mnt/usb/  #默认不支持NTFS文件系统
#fat32=vfat   fat16=fat

支持NTFS文件系统
http://www.tuxera.com/community/ntfs-3g-download
[root@MiWiFi-R3L-srv ~]# tar -zxvf ntfs-3g_ntfsprogs-2017.3.23.tgz
[root@MiWiFi-R3L-srv ~]# cd ntfs-3g_ntfsprogs-2017.3.23/
[root@MiWiFi-R3L-srv ntfs-3g_ntfsprogs-2017.3.23]# ./configure 
[root@MiWiFi-R3L-srv ntfs-3g_ntfsprogs-2017.3.23]# make && make install
使用
mount -t ntfs-3g 分区设备文件名  挂载点

2fdisk分区

fdisk -l #查看设备分区,root权限

使用步骤:1.先分主分区2.在分扩展分区3.保存退出4.重新读取分区表信息5.格式化分区6.挂载7.设置分区自动挂载

fdisk /dev/sdb #按m提示如下

Welcome to fdisk (util-linux 2.32.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

Device does not contain a recognized partition table.
Created a new DOS disklabel with disk identifier 0xf257cad3.

Command (m for help): m

Help:

  DOS (MBR)
   a   toggle a bootable flag  #活动分区记号/引导分区
   b   edit nested BSD disklabel  #编辑bsd磁盘标签
   c   toggle the dos compatibility flag  #设置dos操作系统兼容标记

  Generic
   d   delete a partition  #删除分区
   F   list free unpartitioned space  
   l   list known partition types  #列出已知分区类型
   n   add a new partition #新建分区
   p   print the partition table  #显示分区信息
   t   change a partition type  #设置分区号
   v   verify the partition table #分区检查
   i   print information about a partition

  Misc
   m   print this menu  #菜单
   u   change display/entry units  #改变显示记录单位
   x   extra functionality (experts only)  #扩展应用

  Script
   I   load disk layout from sfdisk script file
   O   dump disk layout to sfdisk script file

  Save & Exit
   w   write table to disk and exit  #保存修改
   q   quit without saving changes  #退出

  Create a new label
   g   create a new empty GPT partition table
   G   create a new empty SGI (IRIX) partition table
   o   create a new empty DOS partition table
   s   create a new empty Sun partition table  #新建空白sun磁盘标签

使用方法:

#第一步先分主分区

Command (m for help): n
Partition type
   p   primary (0 primary, 0 extended, 4 free)   #主分区
   e   extended (container for logical partitions)  #扩展分区
Select (default p): p   #第一步先分主分区
Partition number (1-4, default 1): 1  #主分区号1-4任意选
First sector (2048-41943039, default 2048): 
Last sector, +sectors or +size{K,M,G,T,P} (2048-41943039, default 41943039): +5G  #设置主分区大小为5G

Created a new partition 1 of type 'Linux' and of size 5 GiB. 

Command (m for help): p   #查看分区信息,可以看到/dev/sdb1已经分好了
Disk /dev/sdb: 20 GiB, 21474836480 bytes, 41943040 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xf257cad3

Device     Boot Start      End  Sectors Size Id Type
/dev/sdb1        2048 10487807 10485760   5G 83 Linux

#第二步分扩展分区

Command (m for help): n    #第二步分扩展分区
Partition type
   p   primary (1 primary, 0 extended, 3 free)
   e   extended (container for logical partitions)
Select (default p): e
Partition number (2-4, default 2):  #直接回车,将剩下所有的都分为扩展分区
First sector (10487808-41943039, default 10487808): 
Last sector, +sectors or +size{K,M,G,T,P} (10487808-41943039, default 41943039): 

Created a new partition 2 of type 'Extended' and of size 15 GiB.

Command (m for help): n   #在扩展分区里面继续分区,这个看自己规划,可以在分一个也可以多个
就好比在windows中一块硬盘给启动分120G(对应linux主分区sdb1),剩下的所有空间分为D盘或者分为D F G盘(对应linux的扩展分区sdb5/sdb6)
All space for primary partitions is in use.
Adding logical partition 5
First sector (10489856-41943039, default 10489856): 
Last sector, +sectors or +size{K,M,G,T,P} (10489856-41943039, default 41943039): +10G

Created a new partition 5 of type 'Linux' and of size 10 GiB.

Command (m for help): p   #最后在查看一次分区信息
Disk /dev/sdb: 20 GiB, 21474836480 bytes, 41943040 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xf257cad3

Device     Boot    Start      End  Sectors Size Id Type
/dev/sdb1           2048 10487807 10485760   5G 83 Linux
/dev/sdb2       10487808 41943039 31455232  15G  5 Extended
/dev/sdb5       10489856 31461375 20971520  10G 83 Linux

#第三步保存退出

Command (m for help): wq
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

#第四步重新读取分区表信息

[kali@root~] partprobe

#第五步格式化分区

#可以格式化sdb1或者sdb5就是不能格式化sdb2
mkfs -t ext4 /dev/sdb1
mkfs -t ext4 /dev/sdb5

#第六步建立挂载点并且挂载

mkdir /disk1   #任意空目录即可
mount /dev/sdb1 /disk1
mount /dev/sdb5 /disk5

#第七步设置分区自动挂载,因为每次开机都需要手动挂载,所以需要写入文件设置自动挂载

修改/etc/fstab
UUID=1a0b2bc7-847f-49d8-baa7-2903e818cf75 /boot    ext4    defaults    1  2
UUID:分区设备文件名
/boot:挂载点
ext4:文件系统类型
defaults:挂载参数
1:指定分区是否被备份,0代表不备份,1代表每天备份,2代表不定期备份
2::指定分区是否被检测,0代表不检测,其他数字代表检测优先级,1高于2

添加以下配置
/dev/sdb1               /disk1                  exp4    defaults        1 2
/dev/sdb5               /disk5                  exp5    defaults        1 2
执行mount -a按照/etc/fstab检测,如果有报错那就是配置文件写错了,到此为止分区就算完成

/etc/fstab文件修复 #仅适用在添加配置文件写错的情况下
mount -o remount,rw /

3分配swap分区

free #查看内存以及swap分配

#新建swap分区,在以前的swap交换分区容量不足的时候适用

fdisk /dev/sdb #修改分区id为82

Command (m for help): t     #修改分区id
Partition number (1,2,5,6, default 6):  
Hex code (type L to list all codes): 82

Changed type of partition 'Linux' to 'Linux swap / Solaris'.

Command (m for help): p
Disk /dev/sdb: 20 GiB, 21474836480 bytes, 41943040 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xf257cad3

Device     Boot    Start      End  Sectors Size Id Type
/dev/sdb1           2048 10487807 10485760   5G 83 Linux
/dev/sdb2       10487808 41943039 31455232  15G  5 Extended
/dev/sdb5       10489856 31461375 20971520  10G 83 Linux
/dev/sdb6       31463424 33560575  2097152   1G 82 Linux swap / Solaris

Command (m for help): wq 
The partition table has been altered.
Syncing disks.

#格式化 mkswap /dev/sdb6

#加入分区 swapon /dev/sdb6

#取消分区 swapoff /dev/sdb6

[root@MiWiFi-R3L-srv boot]# free -m    #加入前
              total        used        free      shared  buff/cache   available
Mem:           1806        1151         207           8         446         482
Swap:          2095          14        2081
[root@MiWiFi-R3L-srv boot]# free -m    #加入后
              total        used        free      shared  buff/cache   available
Mem:           1806        1153         179           9         472         479
Swap:          3119          14        3105
#设置swap分区开机自动挂载
vim  /etc/fstab
/dev/sdb6               swap                  swap    defaults        0  0

 #mount -a 检测,没有出任何报错的话说明swap分区已经建立好了。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值