2 unit 4

###unit.4管理系统存储###

###1.分区划分

fdisk /dev/vdb

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 0x6490d17b.

Command (m for help): m##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##修改分区功能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): n

Partition type:

p   primary (0 primary, 0 extended, 4 free)##分区类型为主分区

e   extended##分区类型为扩展分区

Select (default p):

Using default response p

Partition number (1-4, default 1): 1##主分区id

First sector (2048-20971519, default 2048): ##此分区起始位置

Using default value 2048

Last sector, +sectors or +size{K,M,G} (2048-20971519, default 20971519): +100M##主分区大小

Partition 1 of type Linux and of size 100 MiB is set

Command (m for help): p

Disk /dev/vdb: 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: 0x6490d17b

Device Boot      Start         End      Blocks   Id  System

/dev/vdb1            2048      206847      102400   83  Linux

Command (m for help): wq##保存退出,如果按q表示放弃更改退出

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

[[email protected] ~]# partprobe ##同步分区表

[[email protected] ~]# cat /proc/partitions ##查看

mkfs.xfs /dev/vdb5##格式化

mount /dev/vdb5 /mnt##挂载

###2.swap

swapon -s##查看系统中的swap分区

建立swap分区

mkswap/dev/vdb1##把/dev/vdb1格式化成swap格式

swapon -a /dev/vdb1##激活

vim /etc/fstab##开机自动激活

/dev/vdb1swapswapdefautls0 0

删除/etc/fstab中的swap自动激活条目

swapoff /dev/vdb1##关闭激活的swap分区

###3.磁盘加密

1.磁盘加密

fdisk/dev/vdb##分区

cryptestup luksFormat /dev/vdb1##加密磁盘

cryptestup open /dev/vdb1 westos##打开磁盘

mkfs.xfs /dev/mapper/westos##格式化

mount /dev/mapper/westos /mnt##挂载

umount /mnt##卸载

cryptestuo close westos##关闭

2.加密磁盘的永久挂载

vim /etc/crypttab##加密磁盘配置文件

解密后设备管理文件设备加密字符存放文件##格式

westos/dev/vdb1/root/lukspsfile

vim /root/lukspsfile

密码

chmod 600 /root/lukspsfile

cryptsetup luksAddKey /dev/vdb1 /root/lukspsfile

vim /etc/fstab

/dev/mapper/westos/mntxfsdefaults0 0

reboot

###加密清除

vim /etc/fstab

> /etc/crypttab

rm -fr /root/lukspsdile

umount /mnt

cryptsetup close wesstos

mkfs.xfs /dev/vdb1 -f

###4.磁盘阵列

fdisk /dev/vdb

mdadm -C /dev/md0 -a yes -l 1 -n 2 -x 1 /dev/vdb{1..3}

mkfs.xfs /dev/md0

mount /dev/md0 /mnt

watch -n 1 cat /proc/mdstat

mdadm -f /dev/md0 /dev/vdb1

mdadm -D /dev/md0

mdadm -r /dev/md0 /dev/vdb1

mdadm -a /dev/md0 /dev/vdb1

umoun /mnt

mdadm -S /dev.md0

mdadm-C##建立

mdadm-a##文件不存在建立文件

mdadm-l##raid级别

mdadm-n##设备个数

mdadm-x##闲置设备个数

mdadm-r##删除

mdadm-f##破坏

mdadm-D##查看使用情况

mdadm-S##停止

###5.配额

fdisk /dev/vdb

mkdir /pub

mkfs.xfs /dev/vdb1 -f

mount -o usrquota /dev/vdb1 /pub

quotaon -uv /dev/vdb1

edquota -u student

Disk quotas for user student (uid 1000):

Filesystem                   blocks       soft       hard     inodes     soft     hard

/dev/vdb1                         0          0      40000          0        0        0

su - student

dd if=/dev/zero of=/pub/file1 bs=1M count=500

dd: error writing ‘/pub/file1’: Disk quota exceeded

40+0 records in

39+0 records out

40960000 bytes (41 MB) copied, 0.0517844 s, 791 MB/s

qupta

Disk quotas for user student (uid 1000):

Filesystem  blocks   quota   limit   grace   files   quota   limit   grace

/dev/vdb1   40000*      0   40000               1       0       0

开机自动挂载

vim /etc/fstab

/dev/vdb1/mntxfsdefaults,usrquota0 0

时间: 2024-10-06 11:37:47

2 unit 4的相关文章

mysqld服务启动失败, Failed to restart mysqld.service: Unit not found.

-bash-4.2# service mysqld restart Redirecting to /bin/systemctl restart mysqld.serviceFailed to restart mysqld.service: Unit not found. 并不存在 mysqld 的服务, -bash-4.2# -bash-4.2# chkconfig -list -list: unknown option -bash-4.2# chkconfig --list Note: Thi

10.23 linux任务计划cron10.24chkconfig工具10.25 systemd管理服务10.26 unit介绍 10.27 target介绍

- 10.23 linux任务计划cron - 10.24 chkconfig工具 - 10.25 systemd管理服务 - 10.26 unit介绍 - 10.27 target介绍 - 扩展 1. anacron http://blog.csdn.net/strikers1982/article/details/4787226  2. xinetd服(默认机器没有安装这个服务,需要yum install xinetd安装) http://blog.sina.com.cn/s/blog_46

CentOS 7 防火墙 出现Failed to start iptables.service: Unit iptables.service failed to load

错误信息如下: [root]# service iptables start Redirecting to /bin/systemctl start iptables.service Failed to start iptables.service: Unit iptables.service failed to load: No such file or directory.解决方法如下: 一直用CentOS 6 习惯了,一下没适应过来.防火墙配置后执行service iptables sav

GRU(Gated Recurrent Unit) 更新过程推导及简单代码实现

GRU(Gated Recurrent Unit) 更新过程推导及简单代码实现 RNN GRU matlab codes RNN网络考虑到了具有时间数列的样本数据,但是RNN仍存在着一些问题,比如随着时间的推移,RNN单元就失去了对很久之前信息的保存和处理的能力,而且存在着gradient vanishing问题. 所以有些特殊类型的RNN网络相继被提出,比如LSTM(long short term memory)和GRU(gated recurrent unit)(Chao,et al. 20

2 unit 5

###unit.5 LVM### ###1.LVM建立 1.划分物理分区并把分区id修改为8e [[email protected] ~]# fdisk /dev/vdb 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

(4.5.4)Android测试TestCase单元(Unit test)测试和instrumentationCase单元测试

Android单元和instrumentation单元测试 Developing Android unit and instrumentation tests Android的单元测试是基于JUnit的.可分为: 1.本地单元测试 - 可以在JVM上运行测试(速度快,优先考虑). 2.Instrumented单元测试 - 需要Android系统 Android的Gradle插件支持在JVM上执行Andr??oid单元测试.它使用特殊版本的android.jar(也称为 Android mocka

ABP领域层——工作单元(Unit Of work)

ABP领域层——工作单元(Unit Of work) 点这里进入ABP系列文章总目录 基于DDD的现代ASP.NET开发框架--ABP系列之12.ABP领域层——工作单元(Unit Of work) ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)”的简称. ABP的官方网站:http://www.aspnetboilerplate.com ABP在Github上的开源项目:https://github.com/aspnetboilerplate 通用

Karma install steps for unit test of Angular JS app

npm install -g karma npm install –g karma-cli Install the plugins (optional)           # Install plugins that your project needs:  npm install karma-jasmine karma-chrome-launcher --save-dev Run following command to do unit test:           C:\Users\Br

.NET MVC4 实训记录之四(Unit of work + Repository)

今日后开启进阶模式! 谈到MVC与EntityFramework,则不得不说一说事务与仓储(Unit of work + Repository). 仓储(Repository):领域对象集合.用于操作领域对象与数据库上下文(DbContext)的交互(在此不得不说一声,领域对象和数据库表对象还是有区别的.领域对象实际上是一组有业务关系的数据库对象的抽象.最简单的形式就是主表.关系表在同一个领域对象中进行定义.例如我们前几章看到的UserProfile,它即定义了用户信息,又定义了用户角色关系信息