linux学习笔记第八天
作者:互联网
Linux就该这么学 第八天——学习笔记
Linux里一切都是文件
Linux系统中的一切文件都是从“根(/)”目录开始的,并按照文件系统层次化标准(FHS)采用树形结构来存放文件,以及定义了常见目录的用途。
目录名称 | 应放置文件的内容 |
---|---|
/boot | 开机所需文件—内核、开机菜单以及所需配置文件等 |
/dev | 以文件形式存放任何设备与接口 |
/etc | 配置文件 |
/home | 用户主目录 |
/bin | 存放单用户模式下还可以操作的命令 |
/lib | 开机时用到的函数库,以及/bin与/sbin下面的命令要调用的函数 |
/sbin | 开机过程中需要的命令 |
/media | 用于挂载设备文件的目录 |
/opt | 放置第三方的软件 |
/root | 系统管理员的家目录 |
/srv | 一些网络服务的数据文件目录 |
/tmp | 任何人均可使用的“共享”临时目录 |
/proc | 虚拟文件系统,例如系统内核、进程、外部设备及网络状态等 |
/usr/local | 用户自行安装的软件 |
/usr/sbin | Linux系统开机时不会使用到的软件/命令/脚本 |
/usr/share | 帮助与说明文件,也可放置共享文件 |
/var | 主要存放经常变化的文件,如日志 |
/lost+found | 当文件系统发生错误时,将一些丢失的文件片段存放在这里 |
物理设备的命名规则
在Linux系统中一切都是文件,硬件设备也不例外。既然是文件,就必须有文件名称。udev服务会把硬件设备命名规范起来,以下是常见的硬件设备名称
硬件设备 | 文件名称 |
---|---|
IDE设备 | /dev/hd[a-d] |
SCSI/SATA/U盘 | /dev/sd[a-p] |
软驱 | /dev/fd[0-1] |
打印机 | /dev/lp[0-15] |
光驱 | /dev/cdrom |
鼠标 | /dev/mouse |
磁带机 | /dev/st0或/dev/ht0 |
主分区和拓展分区编号:1-4
逻辑分区编号:5开始
挂载硬件设备
mount:mount命令用于挂载文件系统,格式为“mount 文件系统 挂载目录”。
umount:umount命令用于卸载挂载的文件系统,格式为“umount 文件系统”
参数 | 作用 |
---|---|
-a | 挂载所有在/etc/fstab中定义的文件系统 |
-t | 指定文件系统的类型 |
[root@zxl ~]# mount /dev/sdb1 /test 挂载
[root@zxl ~]# umount /dev/sdb4 卸载
fdisk命令
fdisk:fdisk命令用于管理磁盘分区,格式为“fdisk [磁盘名称]”。
参数 | 作用 |
---|---|
m | 查看全部可用的参数 |
n | 添加新的分区 |
d | 删除某个分区信息 |
l | 列出所有可用的分区类型 |
t | 改变某个分区的类型 |
p | 查看分区表信息 |
w | 保存并退出 |
q | 不保存直接退出 |
[root@zxl ~]# fdisk /dev/sdb
Welcome to fdisk (util-linux 2.23.2).
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
Building a new DOS disklabel with disk identifier 0xdda3896a.
Command (m for help): m 查看全部参数信息
Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
g create a new empty GPT partition table
G create an IRIX (SGI) partition table
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
Command (m for help): p 查看分区表
Disk /dev/sdb: 10.7 GB, 10737418240 bytes, 20971520 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
Disk label type: dos
Disk identifier: 0xdda3896a
Device Boot Start End Blocks Id System
Command (m for help): n 新建分区
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p): p 主分区
Partition number (1-4, default 1):
First sector (2048-20971519, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-20971519, default 20971519): +4G 大小为4G
Partition 1 of type Linux and of size 4 GiB is set
Command (m for help): p 再次查看分区表
Disk /dev/sdb: 10.7 GB, 10737418240 bytes, 20971520 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
Disk label type: dos
Disk identifier: 0xdda3896a
Device Boot Start End Blocks Id System
/dev/sdb1 2048 8390655 4194304 83 Linux
Command (m for help): w 保存退出
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
交换分区
SWAP(交换)分区是一种通过在硬盘中预先划分一定的空间,然后将把内存中暂时不常用的数据临时存放到硬盘中,以便腾出物理内存空间让更活跃的程序服务来使用的技术,其设计目的是为了解决真实物理内存不足的问题。但由于交换分区毕竟是通过硬盘设备读写数据的,速度肯定要比物理内存慢,所以只有当真实的物理内存耗尽后才会调用交换分区的资源。
用之前fdisk分区的sdb1做实验
[root@zxl ~]# ls /dev/sdb*
/dev/sdb /dev/sdb1
[root@zxl ~]# mkswap /dev/sdb1 格式化成swap
Setting up swapspace version 1, size = 4194300 KiB
no label, UUID=3ba281b0-9ef4-4ab0-a827-f6e1809bebd5
[root@zxl ~]# free -m
total used free shared buffers cached
Mem: 979 840 139 5 0 139
-/+ buffers/cache: 700 279
Swap: 2047 8 2039
[root@zxl ~]# swapon /dev/sdb1 挂载
[root@zxl ~]# free -m
total used free shared buffers cached
Mem: 979 843 136 5 0 140
-/+ buffers/cache: 703 276
Swap: 6143 8 6135
[root@zxl ~]#
磁盘容量配额
硬盘空间总有一天会被占满。针对这种情况,root管理员就需要使用磁盘容量配额服务来限制某位用户或某个用户组针对特定文件夹可以使用的最大硬盘空间或最大文件个数,一旦达到这个最大值就不再允许继续使用。
[root@zxl ~]# vim /etc/fstab
# 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/rhel-root / xfs defaults 1 1
UUID=580bcbcd-ca51-492d-9ef0-8bfdf0aee5d7 /boot xfs defaults,uquota 1 2
[root@zxl boot]# xfs_quota -x -c 'limit bsoft=3m bhard=6m isoft=3 ihard=6 zxl' /boot/
[root@zxl boot]# su zxl
[zxl@zxl boot]$ touch a b c d e f
[zxl@zxl boot]$ touch g
touch: cannot touch ‘g’: Disk quota exceeded
[zxl@zxl boot]$
[zxl@zxl boot]$ rm a b c d e f -rf
[zxl@zxl boot]$ dd if=/dev/zero of=test bs=3m count=1
dd: invalid number ‘3m’
[zxl@zxl boot]$ dd if=/dev/zero of=test bs=3M count=1
1+0 records in
1+0 records out
3145728 bytes (3.1 MB) copied, 0.00431214 s, 730 MB/s
[zxl@zxl boot]$ rm -rf test
[zxl@zxl boot]$ dd if=/dev/zero of=test bs=7M count=1
dd: error writing ‘test’: Disk quota exceeded
1+0 records in
0+0 records out
6291456 bytes (6.3 MB) copied, 0.00685948 s, 917 MB/s
[zxl@zxl boot]$
isoft 对创建文件软限制 ihard 对创建文件硬限制
bsoft 对创建的文件大小软限制 bhard 对创建的文件大小硬限制
以下是书本笔记
标签:第八天,boot,bytes,zxl,dev,笔记,linux,512,root 来源: https://blog.csdn.net/hatestrawberry/article/details/90341883