Jedenaste_21

 0    21 Fiche    michalesq
басу ойын өзіңді тексер
 
сұрақ - жауап -
Command to show all atteched storages to the system?
оқуды бастаңыз
blkid
Command to display all physical volumes?
оқуды бастаңыз
pvdisplay
Command to display all volume groups?
оқуды бастаңыз
vgdisplay
Command to display all logical volumes?
оқуды бастаңыз
lvdisplay
Command to make filesystem for logical volume
оқуды бастаңыз
mksf /dev/vgname/lvname
How to create physical volume for LVM?
оқуды бастаңыз
pvcreate /dev/xvdf1 /dev/xvdf2
How to creage virtual group for LVM?
оқуды бастаңыз
vgcreate <vgname> /dev/xvdf1 /dev/xvdf2
How to create logical volume for LVM?
оқуды бастаңыз
lvcreate -n <lvname> -L 10G vgname
How to Remove logical volume?
оқуды бастаңыз
lvremove /dev/volume_name/volume_name_manager
How to Remove volume groups?
оқуды бастаңыз
vgremove <volume_group>
How to Remove physical volumes?
оқуды бастаңыз
pvremove /dev/xvdf1
Extending volume group battlestar by adding new device
оқуды бастаңыз
vgextend battlestar /dev/xvdj
How to extend a logical volume after adding new disks to virtual group for LVM?
оқуды бастаңыз
lvextend -L +20G /dev/vgname/lvname
Command for the operating system and file system to recognize the increase in size on the device?
оқуды бастаңыз
xfs_growfs /mnt/mydir
How to add label for the partition with xfs filesystem?
оқуды бастаңыз
xfs_admin -L <label name> /dev/xvdf1
How to add label for the partition with ext4 filesystem?
оқуды бастаңыз
tune2fs (or e2label) -L <label name> /dev/xvdf2
Create persistent mounts for the system - with UUID?
оқуды бастаңыз
1) blkid to get UUID, 2) add UUID=<UUID> /mnt/mount1 xfs default 1 2 to /etc/fstab
Create persistent mounts for the system - with label?
оқуды бастаңыз
1) blkid to get UUID, 2) LABEL=<label name> /mnt/mount2 ext4 defaults 1 2
How to display how much physical space left?
оқуды бастаңыз
free -m
Creating swap space with LVM
оқуды бастаңыз
1) create partition with LVM type, 2) create pv, vg, lv, 3) mkswap /dev/vgname/swap(lvname)
How to enable swap space?
оқуды бастаңыз
swapon /dev/volume_name/swap

Пікір қалдыру үшін жүйеге кіру керек.