Windows: Support NTFS, FAT Linux supports file formats: Run cat /etc/filesystems to view the file formats supported by Centos 7. xfs Centos 7 default file system name is xfs Mount view /dev/vda1 on / type ext4 (rw,relatime,data=ordered) Disk formatting mke2fs -t exet4 specifies the file system format to be formatted For example: mke2fs -t ext4 -b 2048 /dev/sdb1 #Specify the file system format as ext4, the block size as 2048k, and format the /dev/sdb1 disk (the principle is the same as Windows formatting) blkid View unmounted partitions mkfs.ext4 = mke2fs -t ext4 mke2fs -b 8192 /dev/sdb1 Note: Regarding the distinction between 8192 and 4096: When storing large files such as videos, 8192 is recommended to speed up reading and writing. When formatting the hard disk, 5% of the space will be reserved for the root user, which will take up a lot of space. Set the reserved space: mke2fs -m 1 /dev/sdb1 Set the reserved space to 1% If the file system format is not specified, the default is ext2. mke2fs -i 8192 ext4 /dev/sdb1 sets 8192 bytes as one inode Set the file format to xfs mkfs.xfs /dev/sdb1 Swap space: up to 8G 1. Simulate disk dd if=/dev/zero of=/newdisk bs=1M count=100 Check the swap disk sizeCheck the swap disk size 2. Formatting swap format Add the newly created swap space to the original swap space. First check the current swap space. free -m Hang it on the original swap space. Tip: unsafe permission 0644, it is recommended to use 0600. Although the prompt appears, it will still be mounted to the original swap space. To ensure security, you can modify permissions chmod 0600 /newdisk Uninstall the swap space and delete it directly to restore the original space. 1 swapoff /newdisk blkid View file format You may also be interested in:
|
<<: js to implement collision detection
>>: A brief discussion on whether MySQL can have a function similar to Oracle's nvl
1. Use the shortcut Ctrl + Shift + P to call out ...
The ps command in Linux is the abbreviation of Pr...
DPlayer.js video player plug-in is easy to use Ma...
Note: The third method is only used in XSell and ...
In the previous article "Understanding UID a...
If a div sets background-color and background-ima...
Table of contents DOMContentLoaded and load What ...
Table of contents A brief overview of the replica...
Table of contents 1. Usage of keep-alive Example ...
The MySQL slow query log is very useful for track...
Table of contents background 1. The query conditi...
MySQL 5.7.8 introduced the json field. This type ...
Table of contents A simple component example More...
Optgroup is used in the select tag to make the dro...
Preface Arrays are a special kind of object. Ther...