摘要:
zip压缩工具,unzip解压缩工具 [root@aminglinux tmp]# yum install -y zip[root@aminglinux tmp]# yum install -y unzip 示例: [root@aminglinux yasuo]# ls1.txt 2.txt 3.t 阅读全文
摘要:
tar工具(打包,压缩) tar打包工具 -c:表示建立一个tar包或者压缩文件包-x:表示解包或者解压缩-v:表示可视化-f: 后面跟文件名(即-f filename,表示打包后(压缩后)的文件名为filename,或者解包(解压缩)的文件名为filename)-z;表示同时用gzip压缩-j;表 阅读全文
摘要:
gzip,bzip2,xz压缩工具 gzip压缩工具 示例:[root@aminglinux yasuo]# ls1.txt 2.txt 3.txt[root@aminglinux yasuo]# gzip 1.txt[root@aminglinux yasuo]# ls1.txt.gz 2.txt 阅读全文
摘要:
文本编辑器vim (参考于千锋教育教学笔记) 命令模式a. 光标定位 h 左 j 下 k 上 l 右 0 行首 $行尾 gg 移动到首行 G移动到尾行 nG 移动到第n行 /字符串 (n N可以循环 ) 快速定位到出现字符串的一行 /^d 以d开头的行 /txt$ 以txt结尾的行 ctrl+b 文 阅读全文
摘要:
LVM(扩展) [root@aminglinux newdir]# fdisk -l /dev/sdb磁盘 /dev/sdb:10.7 GB, 10737418240 字节,20971520 个扇区Units = 扇区 of 1 * 512 = 512 bytes扇区大小(逻辑/物理):512 字节 阅读全文
摘要:
挂载/卸载磁盘 mount命令 NAME mount - mount a filesystem (挂载一个文件系统)umount命令NAME umount - unmount file systems (卸载文件系统)示例:[root@aminglinux ~]# df -h |grep -v tm 阅读全文
摘要:
格式化磁盘 mkfs.xfs命令 NAME mkfs.xfs - construct an XFS filesystem (构建一个XFS文件系统)示例:[root@aminglinux ~]# fdisk -l /dev/sdb磁盘 /dev/sdb:10.7 GB, 10737418240 字节 阅读全文
摘要:
磁盘分区操作 fdisk命令 NAME fdisk - manipulate disk partition table (操纵磁盘分区表)示例:[root@aminglinux ~]# fdisk -l //-l,后面不加设备,会直接列出系统中所有磁盘设备以及分区表;加设备名称,只会列出该设备的分区 阅读全文