N22-第七周作业

1、创建一个10G分区,并格式为ext4文件系统;

   (1) 要求其block大小为2048, 预留空间百分比为2, 卷标为MYDATA, 默认挂载属性包含acl;

   (2) 挂载至/data/mydata目录,要求挂载时禁止程序自动运行,且不更新文件的访问时间戳;

创建一个10G的分区:
    [root@localhost ~]# fdisk /dev/sda    
    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.
    
    Command (m for help): n
    All primary partitions are in use
    Adding logical partition 7
    First sector (196081664-251658239, default 196081664): 
    Using default value 196081664
    Last sector, +sectors or +size{K,M,G} (196081664-251658239, default 251658239): +10G
    Partition 7 of type Linux and of size 10 GiB is set
    
    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: Device or resource busy.
    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
    partx: /dev/sda: error adding partitions 1-6
    [root@localhost ~]# partx -a /dev/sda
    partx: /dev/sda: error adding partitions 1-7  
格式化等操作:    
   ~]# mke2fs -t ext4 -b 2048 -m 2 -L 'MYDATA' /dev/sda7
   ~]# tune2fs -o acl /dev/sda7
   ~]# mount -o noatime,noexec /dev/sda7 /mnt/sda7

2、创建一个大小为1G的swap分区,并创建好文件系统,并启用之;

[root@localhost ~]# fdisk /dev/sda
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.

Command (m for help): n
All primary partitions are in use
Adding logical partition 6
First sector (193982464-251658239, default 193982464): 
Using default value 193982464
Last sector, +sectors or +size{K,M,G} (193982464-251658239, default 251658239): +1G   
Partition 6 of type Linux and of size 1 GiB is set

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: Device or resource busy.
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
partx: /dev/sda: error adding partitions 1-5
[root@localhost ~]# partx -a /dev/sda
partx: /dev/sda: error adding partitions 1-6


[root@localhost ~]#mkswap /dev/sda6
[root@localhost ~]#swapon /dev/sda6

3、写一个脚本

   (1)、获取并列出当前系统上的所有磁盘设备;

   (2)、显示每个磁盘设备上每个分区相关的空间使用信息;

#!/bin/bash
#
echo "disk infomation:"
fdisk -l /dev/[sh]d[z-a]
echo "-----------------------"
echo "partition infomation:"
df -lh

4、总结RAID的各个级别及其组合方式和性能的不同;

raid-0:
	条带卷,读写性能有所提升
	可用空间:N*min(S1,S2...)
	无容错能力
	最少磁盘数:2
raid-1:
	读性能提升、写性能略有下降
	可用空间:1*min(S1,S2...)
	有冗余能力
	最少磁盘数:2
raid-5:
	读,写性能提升
	可用空间:(N-1)*min(S1,S2...)
	有容错能力:1块磁盘
	最少磁盘数:3
raid-6:
	读写性能提升
	可用空间:(N-2)*(S1,S2...)
	有容错能力:2块磁盘
	最少磁盘数:4
JBOD:
	将多块磁盘的空间合并一个大的连续空间使用
	可用空间:sum(S1,S2...)
raid-10:
	读写性能提升
	可用空间:N*min(S1,S2...)
	有容错能力:每组镜像最多只能坏一块
	最少磁盘数:4

5、创建一个大小为10G的RAID1,要求有一个空闲盘,而且CHUNK大小为128k;

[root@localhost ~]# 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 0x9597ecff.

Command (m for help): p

Disk /dev/sdb: 64.4 GB, 64424509440 bytes, 125829120 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: 0x9597ecff

   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-125829119, default 2048): 
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-125829119, default 125829119): +10G
Partition 1 of type Linux and of size 10 GiB is set


Command (m for help): p  

Disk /dev/sdb: 64.4 GB, 64424509440 bytes, 125829120 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: 0x9597ecff

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048    20973567    10485760   83  Linux
/dev/sdb2        20973568    41945087    10485760   83  Linux
/dev/sdb3        41945088    62916607    10485760   83  Linux

Command (m for help): t
Partition number (1-3, default 3): 1
Hex code (type L to list all codes): fd
Changed type of partition 'Linux' to 'Linux raid autodetect'

Command (m for help): p

Disk /dev/sdb: 64.4 GB, 64424509440 bytes, 125829120 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: 0x9597ecff

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048    20973567    10485760   fd  Linux raid autodetect
/dev/sdb2        20973568    41945087    10485760   fd  Linux raid autodetect
/dev/sdb3        41945088    62916607    10485760   fd  Linux raid autodetect

Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.
Syncing disks.

[root@localhost ~]# partx -a /dev/sdb
partx: /dev/sdb: error adding partitions 1-3

[root@localhost ~]# mdadm -C /dev/md0 -a yes -c 128K -n 2 -l 1 -x 1 /dev/sdb{1,2,3}
[root@localhost ~]# mdadm -D /dev/md0
/dev/md0:
        Version : 1.2
  Creation Time : Thu Dec  1 16:27:49 2016
     Raid Level : raid1
     Array Size : 10477568 (9.99 GiB 10.73 GB)
  Used Dev Size : 10477568 (9.99 GiB 10.73 GB)
   Raid Devices : 2
  Total Devices : 3
    Persistence : Superblock is persistent

    Update Time : Thu Dec  1 16:28:41 2016
          State : clean 
 Active Devices : 2
Working Devices : 3
 Failed Devices : 0
  Spare Devices : 1

           Name : localhost.localdomain:0  (local to host localhost.localdomain)
           UUID : 76db81c7:812deaf4:a8679005:cd602505
         Events : 17

    Number   Major   Minor   RaidDevice State
       0       8       17        0      active sync   /dev/sdb1
       1       8       18        1      active sync   /dev/sdb2

       2       8       19        -      spare   /dev/sdb3

6、创建一个大小为4G的RAID5设备,chunk大小为256k,格式化ext4文件系统,要求可开机自动挂载至/backup目录,而且不更新访问时间戳,且支持acl功能;

[root@localhost ~]# 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.

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): 
First sector (2048-125829119, default 2048): 
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-125829119, default 125829119): +4G
Partition 1 of type Linux and of size 4 GiB is set

Command (m for help): t
Partition number (1-3, default 3): 1
Hex code (type L to list all codes): fd
Changed type of partition 'Linux' to 'Linux raid autodetect'

Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.
Syncing disks.

[root@localhost ~]# partx -a /dev/sdb

[root@localhost ~]# mdadm -C /dev/md1 -a yes  -c 256k -n 3 -l 5 /dev/sdb{1,2,3}

[root@localhost ~]# mke2fs -t ext4 /dev/md1
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=128 blocks, Stripe width=256 blocks
524288 inodes, 2095104 blocks
104755 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=2145386496
64 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks: 
	32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632

Allocating group tables: done                            
Writing inode tables: done                            
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
[root@localhost ~]# echo "/dev/md1        /backup ext4    defaults,acl,noatime    0 0" >>/etc/fstab

[root@localhost ~]# tail -1 /etc/fstab 
/dev/md1	/backup	ext4	defaults,acl,noatime	0 0

7、写一个脚本

   (1) 接受一个以上文件路径作为参数;

   (2) 显示每个文件拥有的行数;

   (3) 总结说明本次共为几个文件统计了其行数;

#!/bin/bash
#
#define a value of all_line
declare -i linesum=0
if [ $# -lt 1 ] ;then
	 echo "At least one file." && exit 1
fi

for i in $*;do
	if ! [ -a $i ];then
		echo "file $i not exists." && exit 2
	fi
	line=$(cat $i |wc -l)
	echo "$i file have $line line."
	let linesum+=$line
done

echo "the bash count $# files,all the lines is $linesum."

8、写一个脚本

   (1) 传递两个以上字符串当作用户名;

   (2) 创建这些用户;且密码同用户名;

   (3) 总结说明共创建了几个用户;

#!/bin/bash
#
declare -i count=0

if [ $# -le 0 ] ;then
	echo "At least one username." && exit 1
fi

for username in $@ ;do
	if ! id $username &>/dev/null;then
		let count+=1
		useradd $username 
		echo "$username" | passwd --stdin $username
		echo "$username add finished."
	else
		echo "$username exist."
	fi
done

echo "Finally,add user $count."

9、写一个脚本,新建20个用户,visitor1-visitor20;计算他们的ID之和;

#!/bin/bash
#
declare -i useridsum=0

for i in {1..20};do
	if id visitor$i &>/dev/null;then
		echo "visitor$i exist."
	else
		useradd visitor$i
	fi

	userid=$(id -u visitor$i)
	let useridsum+=$userid
done
echo $useridsum

10、写一脚本,分别统计/etc/rc.d/rc.sysinit、/etc/rc.d/init.d/functions和/etc/fstab文件中以#号开头的行数之和,以及总的空白行数;

#!/bin/bash
#
declare -i jinlinesum=0
declare -i splinesum=0

for value in /etc/rc.d/rc.sysinit /etc/rc.d/init.d/functions /etc/fstab ;do
	if ! [ -a $value ] ;then
		echo "$value not exist."
	else
		jinline=$(grep "^#.*" $value | wc -l )
		spline=$(grep  "^[[:space:]]*$" $value| wc -l)
		
		let jinlinesum+=$jinline
		let splinesum+=$spline
	fi
done
echo "jinhao lines are $jinlinesum"
echo "space lines are $splinesum"

11、写一个脚本,显示当前系统上所有默认shell为bash的用户的用户名、UID以及此类所有用户的UID之和;

#!/bin/bash
#
declare -i useridsum=0

for value in `grep "/bin/bash$" /etc/passwd`;do

	userid=$(echo $value | cut -d: -f3)
	username=$(echo $value |cut -d: -f1)
	
	let useridsum+=$userid

	echo "$username   $userid"
done


echo "all the shell is bash user's id_sum:$useridsum."

12、写一个脚本,显示当前系统上所有,拥有附加组的用户的用户名;并说明共有多少个此类用户;

#!/bin/bash
#
declare groupsum=0

for username in $(cut -d: -f1 /etc/passwd);do
#判断tmp是否大于等于2,如果是则证明此user拥有附加组
	tmp=$(id -G $username | wc -w)
	if [ $tmp -ge 2 ];then
		let groupsum+=1
	fi
done
echo $groupsum

13、创建一个由至少两个物理卷组成的大小为20G的卷组;要求,PE大小为8M;而在卷组中创建一个大小为5G的逻辑卷mylv1,格式化为ext4文件系统,开机自动挂载至/users目录,支持acl;

[root@localhost ~]# fdisk /dev/sda
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.
Command (m for help): n
All primary partitions are in use
Adding logical partition 6
First sector (193982464-251658239, default 193982464): 
Using default value 193982464
Last sector, +sectors or +size{K,M,G} (193982464-251658239, default 251658239): +10G
Partition 6 of type Linux and of size 10 GiB is set

Command (m for help): n
All primary partitions are in use
Adding logical partition 7
First sector (214956032-251658239, default 214956032): 
Using default value 214956032
Last sector, +sectors or +size{K,M,G} (214956032-251658239, default 251658239): +10G  
Partition 7 of type Linux and of size 10 GiB is set

Command (m for help): t
Partition number (1-7, default 7): 6
Hex code (type L to list all codes): 8e
Changed type of partition 'Linux' to 'Linux LVM'

Command (m for help): t
Partition number (1-7, default 7): 
Hex code (type L to list all codes): 8e
Changed type of partition 'Linux' to 'Linux LVM'

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: Device or resource busy.
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
partx: /dev/sda: error adding partitions 1-5
[root@localhost ~]# partx -a /dev/sda
partx: /dev/sda: error adding partitions 1-7

[root@localhost ~]# pvcreate /dev/sda{6,7}
  Physical volume "/dev/sda6" successfully created
  Physical volume "/dev/sda7" successfully created
  
 [root@localhost ~]# vgcreate myvg -s 8M /dev/sda{6,7}
  Volume group "myvg" successfully created
[root@localhost ~]# vgdisplay myvg
  --- Volume group ---
  VG Name               myvg
  System ID             
  Format                lvm2
  Metadata Areas        2
  Metadata Sequence No  1
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                0
  Open LV               0
  Max PV                0
  Cur PV                2
  Act PV                2
  VG Size               19.98 GiB
  PE Size               8.00 MiB
  Total PE              2558
  Alloc PE / Size       0 / 0   
  Free  PE / Size       2558 / 19.98 GiB
  VG UUID               rx2dvs-hc2o-y0Za-w4oa-jaQk-AM7G-VLXkqn 
  
 [root@localhost ~]# lvcreate -L 5G -n mylv1 myvg
  Logical volume "mylv1" created. 
  
  [root@localhost ~]# lvs
  LV    VG     Attr       LSize Pool Origin Data%  Meta%  Move Log Cpy%Sync Convert
                                                  
  mylv1 myvg   -wi-a----- 5.00g      
  
[root@localhost ~]# mke2fs -t ext4 /dev/myvg/mylv1
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
327680 inodes, 1310720 blocks
65536 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=1342177280
40 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks: 
	32768, 98304, 163840, 229376, 294912, 819200, 884736

Allocating group tables: done                            
Writing inode tables: done                            
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done 



[root@localhost ~]# mkdir /users
[root@localhost ~]# echo "/dev/myvg/mylv1 /users  ext4    defaults,acl    0 0">>/etc/fstab

14、新建用户magedu;其家目录为/users/magedu,而后su切换至此用户,复制多个文件至家目录;

[root@localhost users]# useradd -d /users/magedu magedu
[root@localhost users]# su - magedu
[magedu@localhost ~]$ pwd
/users/magedu
[magedu@localhost ~]$ cp /etc/fstab /etc/inittab ./
[magedu@localhost ~]$ ls
fstab  inittab

15、扩展mylv1至9G,确保扩展完成后原有数据完全可用;

[root@localhost users]# lvextend -L 9G /dev/myvg/mylv1
  Size of logical volume myvg/mylv1 changed from 5.00 GiB (640 extents) to 9.00 GiB (1152 extents).
  Logical volume mylv1 successfully resized
[root@localhost users]# resize2fs /dev/myvg/mylv1
resize2fs 1.42.9 (28-Dec-2013)
Filesystem at /dev/myvg/mylv1 is mounted on /users; on-line resizing required
old_desc_blocks = 1, new_desc_blocks = 2
The filesystem on /dev/myvg/mylv1 is now 2359296 blocks long.

[root@localhost users]# df -h 
Filesystem              Size  Used Avail Use% Mounted on
/dev/sda5                50G  5.0G   46G  10% /
devtmpfs                481M     0  481M   0% /dev
tmpfs                   490M   84K  490M   1% /dev/shm
tmpfs                   490M   14M  477M   3% /run
tmpfs                   490M     0  490M   0% /sys/fs/cgroup
/dev/sda2                40G   36M   40G   1% /home
/dev/sda1               497M  124M  373M  25% /boot
/dev/mapper/myvg-mylv1  8.8G   23M  8.3G   1% /users

16、缩减mylv1至7G,确保缩减完成后原有数据完全可用;

[root@localhost /]# umount /users
[root@localhost /]# e2fsck -f /dev/myvg/mylv1
e2fsck 1.42.9 (28-Dec-2013)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
/dev/myvg/mylv1: 26/589824 files (0.0% non-contiguous), 75566/2359296 blocks

[root@localhost /]# resize2fs /dev/myvg/mylv1 7G
resize2fs 1.42.9 (28-Dec-2013)
Resizing the filesystem on /dev/myvg/mylv1 to 1835008 (4k) blocks.
The filesystem on /dev/myvg/mylv1 is now 1835008 blocks long.

[root@localhost /]# lvreduce -L 7G /dev/myvg/mylv1
  WARNING: Reducing active logical volume to 7.00 GiB
  THIS MAY DESTROY YOUR DATA (filesystem etc.)
Do you really want to reduce mylv1? [y/n]: y
  Size of logical volume myvg/mylv1 changed from 9.00 GiB (1152 extents) to 7.00 GiB (896 extents).
  Logical volume mylv1 successfully resized

[root@localhost /]# mount /dev/myvg/mylv1 /users
[root@localhost /]# cd /users
[root@localhost users]# ls
lost+found  magedu

17、对mylv1创建快照,并通过备份数据;要求保留原有的属主属组等信息;

[root@localhost users]# lvcreate -s -L 512M -n mylv1-snap -pr /dev/myvg/mylv1
  Logical volume "mylv1-snap" created.
  
  [root@localhost users]# mkdir /mnt/mylv1-snap

[root@localhost mnt]# mount /dev/myvg/mylv1-snap /mnt/mylv1-snap/
mount: /dev/mapper/myvg-mylv1--snap is write-protected, mounting read-only

原创文章,作者:N22-成都-stephen,如若转载,请注明出处:http://www.178linux.com/63860

(0)
上一篇 2016-12-18 13:38
下一篇 2016-12-18 15:47

相关推荐

  • 马哥教育网络第20期第八周课程练习

    1、 请描述网桥、集线器、二层交换机、三层交换机、路由器的功能、使用场景与区别。在局域网内,大量主机之间的通信通过arp广播来连接目的主机地址的,为减少在共享环境里的介质,网桥的作用是将广播域划分为多个小的冲突域,但广播域没有变。工作在OSI数据链路层,端口很少。基于软件。可以处理上层事务。 集线器:对接收到的信号进行再生整形放大,扩大网络传输距离,工作在O…

    Linux干货 2016-08-15
  • 从LongAdder看更高效的无锁实现

    接触到AtomicLong的原因是在看guava的LoadingCache相关代码时,关于LoadingCache,其实思路也非常简单清晰:用模板模式解决了缓存不命中时获取数据的逻辑,这个思路我早前也正好在项目中使用到。 言归正传,为什么说LongAdder引起了我的注意,原因有二: 作者是Doug lea ,地位实在举足轻重。 他说这个比AtomicLon…

    Linux干货 2016-06-01
  • VimTutor中文版

        欢  迎   阅   读   《 V I M  教  程 》           …

    Linux干货 2016-08-24
  • Apache配置压缩优化时报错——undefined symbol: inflateEnd

    原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://nolinux.blog.51cto.com/4824967/1345264    圣诞都过了,好久没来51发博文了。最近一直在忙考试和其他一些私人事务,感觉长期不发博文,有点不好。不是不发,实在是最近…

    Linux干货 2016-08-15
  • N22-第十二周作业

    1、请描述一次完整的http请求处理过程; (1)建立或处理连接:接受请求或拒绝请求 (2)接收请求:接收来自于网络上的主机请求报文中对某特定资源的一次请求的过程 (3)处理请求:对请求报文进行解析,获取客户端请求的资源及请求方法等相关信息 (4)访问资源:获取请求报文中请求的资源 (5)构建响应报文 (6)发送响应报文 (7)记录日志:访问日志和错误日志 …

    Linux干货 2016-11-04
  • iptables基础详解

    一.iptables基础认知二.iptables使用格式  一.iptables简介   1.Iptabels是与Linux内核集成的包过滤防火墙系统,几乎所有的linux发行版本都会包含Iptables的功能。如果 Linux 系统连接到因特网或LAN、服务器或连接 LAN 和因特网的代理服务器, 则Iptables有利于在 …

    2017-05-03

评论列表(1条)

  • 马哥教育
    马哥教育 2016-12-23 00:27

    赞,总结的很认真~~整体看下来很舒服~继续加油~