Linux常用的基本命令10

fdisk
作用:查看与管理磁盘
常用选项:
    -l 列出所有安装的磁盘及分区信息
用法:fdisk [选项] 设备
            m 帮助命令
            n 新建一个分区
            d 删除一个分区
            p 查看当前分区信息
            t 更改分区类型
            L 选择分区类型
            w 保存
            q 退出
实例:

[[email protected] /]# fdisk /dev/sda
WARNING: DOS-compatible mode is deprecated. It‘s strongly recommended to
         switch off the mode (command ‘c‘) and change display units to
         sectors (command ‘u‘).
Command (m for help): n
First cylinder (6929-145032, default 6929): 
Using default value 6929
Last cylinder, +cylinders or +size{K,M,G} (6929-145032, default 145032): +2G
Command (m for help): p
Disk /dev/sda: 1192.9 GB, 1192927166464 bytes
255 heads, 63 sectors/track, 145031 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000617f2
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          39      307200   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2              39        3991    31744000   83  Linux
/dev/sda3            3991        6668    21504000   83  Linux
/dev/sda4            6668      145032  1111411712    5  Extended
/dev/sda5            6668        6929     2097152   82  Linux swap / Solaris
/dev/sda6            6929        7190     2098219+  83  Linux
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.
[[email protected] /]# 
新建立分区后最好重启一下

mkfs
作用:格式化分区
常用选项:
    -t 指定分区类型(默认是ext2)
    -L 建立label
注释:mkfs -t ext3 = mkfs.ext3
      mkfs -t ext4 = mkfs.ext4
实例:

[[email protected] ~]# mkfs.ext4 /dev/sda6
mke2fs 1.41.12 (17-May-2010)
warning: 266 blocks unused.
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
131328 inodes, 524288 blocks
26227 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=536870912
16 block groups
32768 blocks per group, 32768 fragments per group
8208 inodes per group
Superblock backups stored on blocks: 
    32768, 98304, 163840, 229376, 294912
Writing inode tables: done                            
Creating journal (16384 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 36 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.
[[email protected] ~]# mount /dev/sda6 /mnt
[[email protected] ~]# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        30G  3.6G   25G  13% /
tmpfs           495M     0  495M   0% /dev/shm
/dev/sda1       291M   34M  242M  13% /boot
/dev/sda3        21G  172M   19G   1% /home
/dev/sda6       2.0G   67M  1.9G   4% /mnt
[[email protected] ~]#

mount
作用:挂载一个分区
注释:格式 mount [-t vfstype] [-o options] device dir
mount 可以查看已经挂载分区的信息(类型,挂载选项)
mount -a
可以挂载所有/etc/fatsb中的挂载列表
常用选项:
    -t    指定文件系统的类型,通常不必指定mount 会自动选择正确的类型
        iso9660        光盘或者光盘镜像
        msdos        DOS fat16文件系统
        vfat        Windows 9x fat32文件系统
        ntfs        Windows NT ntfs文件系统
        nfs            UNIX(LINUX) 文件网络共享
        cifs        samba共享系统类型
    -o 主要用来描述设备或档案的挂接方式。常用的参数有:
        loop    用来把一个文件当成硬盘分区挂接上系统
        ro    采用只读方式挂接设备
        rw    采用读写方式挂接设备
        iocharset    指定访问文件系统所用字符集
    derive  要挂载的设备(路径)
    dir 挂载点
umoun是卸载,可以卸载挂载点,也可以卸载挂载设备
如:mount /dev/sda5 /mnt
    umout /mnt
或    umout /dev/sda5
当卸载某一文件系统时,当前目录不能在文件系统中。

mke2fs
作用:建立ext2文件系统
常用选项:
    -t 指定创建分区的类型
    -L 设置文件系统的标签名称
    -m 指定给管理员保留区块的比例,预设5%
    -b 指定区块大小,单位为字节
实例:

[[email protected] ~]# mke2fs -b 4096  -t ext3 -m 10 -L hi /dev/sda6
mke2fs 1.41.12 (17-May-2010)
warning: 266 blocks unused.
Filesystem label=hi
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
131328 inodes, 524288 blocks
52455 blocks (10.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=536870912
16 block groups
32768 blocks per group, 32768 fragments per group
8208 inodes per group
Superblock backups stored on blocks: 
    32768, 98304, 163840, 229376, 294912
Writing inode tables: done                            
Creating journal (16384 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 23 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.
[[email protected] ~]# mount /dev/sda6 /mnt
[[email protected] ~]# df -T /dev/sda6
Filesystem     Type 1K-blocks  Used Available Use% Mounted on
/dev/sda6      ext3   2064144 68676   1785648   4% /mnt
[[email protected] ~]# mount -l
/dev/sda2 on / type ext4 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw,rootcontext="system_u:object_r:tmpfs_t:s0")
/dev/sda1 on /boot type ext4 (rw)
/dev/sda3 on /home type ext4 (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
/dev/sda6 on /mnt type ext3 (rw) [hi]

free
作用:查看内存及交换分区情况
常用选项:
    -b  以Byte为单位显示内存使用情况
    -k  以KB为单位显示内存使用情况
    -m  以MB为单位显示内存使用情况
实例:

[[email protected] ~]# free 
             total       used       free     shared    buffers     cached
Mem:       1012352     178908     833444          0      21224      52824
-/+ buffers/cache:     104860     907492
Swap:      2097144          0    2097144
[[email protected] ~]# free -k
             total       used       free     shared    buffers     cached
Mem:       1012352     178908     833444          0      21224      52824
-/+ buffers/cache:     104860     907492
Swap:      2097144          0    2097144
[[email protected] ~]# free -m
             total       used       free     shared    buffers     cached
Mem:           988        174        813          0         20         51
-/+ buffers/cache:        102        886
Swap:         2047          0       2047
[[email protected] ~]#

mkswap
作用:用于设置交换分区
常用选项:
    -c   建立交换区前,先检查是否有损坏的区块。
    -f   在SPARC电脑上建立交换区时,要加上此参数。
    -v0   建立旧式交换区,此为预设值。
    -v1   建立新式交换区。
    [交换区大小]   指定交换区的大小,单位为1024字节。
swapon  启用指定的交换分区(可以是分区或文件)
swapoff 禁用指定的用交换分区(可以是分区或文件)
实例:

[[email protected] ~]# free -m
             total       used       free     shared    buffers     cached
Mem:           988        120        868          0          6         12
-/+ buffers/cache:        101        887
Swap:         2047          0       2047
[[email protected] ~]# mkswap -c /dev/sda6
Setting up swapspace version 1, size = 2098212 KiB
no label, UUID=cf4f2197-1f4c-40f9-aa49-22a7430e6bd3
[[email protected] ~]# swapon /dev/sda6 
[[email protected] ~]# free -m
             total       used       free     shared    buffers     cached
Mem:           988        118        870          0          6          9
-/+ buffers/cache:        102        886
Swap:         4097          0       4097
[[email protected] ~]# swapoff /dev/sda6 
[[email protected] ~]# free -m
             total       used       free     shared    buffers     cached
Mem:           988        117        871          0          6          9
-/+ buffers/cache:        101        887
Swap:         2047          0       2047
[[email protected] ~]#

dd  
作用:创建一定大小的文件
注释:创建一个文件后,不能写入内容,否则文件大小变为实际存储内容的大小
dd if
实例:
创建一个大小为50M的文件,并添加为交换分区

[[email protected] ~]# dd if=/dev/zero of=/tmp/file bs=1M count=50
50+0 records in
50+0 records out
52428800 bytes (52 MB) copied, 0.0439777 s, 1.2 GB/s
[[email protected] ~]# du -sh /tmp/file 
50M    /tmp/file
[[email protected] ~]# free -m
             total       used       free     shared    buffers     cached
Mem:           988        225        763          0          6        115
-/+ buffers/cache:        103        885
Swap:         2047          0       2047
[[email protected] ~]# swapon /tmp/file 
[[email protected] ~]# free -m
             total       used       free     shared    buffers     cached
Mem:           988        225        763          0          6        115
-/+ buffers/cache:        103        885
Swap:         2097          0       2097
[[email protected] ~]#

这种添加交换分区只是临时生效,重启后将失效;
永久生效,在/etc/fstab中添加如下一行即可
/tmp/file  swap  swap default 0  0
swapon -s 查看交换分区组成信息

e2label
作用:查看或设置分区的卷标

[[email protected] ~]# e2label /dev/sda1
[[email protected] ~]# e2label /dev/sda1 boot
[[email protected] ~]# e2label /dev/sda1
boot
[[email protected] ~]# e2label /dev/sda1 boot2
[[email protected] ~]# e2label /dev/sda1
boot2
[[email protected] ~]#

fsck
作用:检查和修复磁盘分区错误
注释:当修复某一磁盘或分区的时候,要处于非挂载状态。
常用选项:
    -a 自动修复文件系统,不询问任何问题。
    -A 依照/etc/fstab配置文件的内容,检查文件内所列的全部文件系统。
    -N 不执行指令,仅列出实际执行会进行的动作
    -r 采用互动模式,在执行修复时询问问题,让用户得以确认并决定处理方式
    -s 依序执行检查作业,而非同时执行
    -t<文件系统类型> 指定要检查的文件系统类型
    -o f 对系统进行强制检查,不论系统是否在clean等状态
    -o p 非交互式检查并修复文件系统,对有的问题则立即退出
    -c 表示以只读方式检查并修复文件系统,剔除损坏的部分
实例:

[[email protected] ~]# df
Filesystem     1K-blocks    Used Available Use% Mounted on
/dev/sda2       31245232 3818244  25839788  13% /
tmpfs             506176       0    506176   0% /dev/shm
/dev/sda3       21165948  176096  19914652   1% /home
/dev/sr0         4363088 4363088         0 100% /mnt
/dev/sda1         297485   34609    247516  13% /boot
/dev/sda6        2064144   68608   1890628   4% /test
[[email protected] ~]# fsck -a /dev/sda6
fsck from util-linux-ng 2.17.2
/dev/sda6 is mounted.
e2fsck: Cannot continue, aborting.
[[email protected] ~]# umount /test
[[email protected] ~]# fsck -a /dev/sda6
fsck from util-linux-ng 2.17.2
hi: clean, 11/131328 files, 25404/524288 blocks
[[email protected] ~]# echo $?
0
[[email protected] ~]#
时间: 2024-10-14 09:53:39

Linux常用的基本命令10的相关文章

Linux常用的基本命令13

uname作用:查看系统相关信息常用选项:    -a或–all 详细输出所有信息,依次为内核名称,主机名,内核版本号,内核版本,硬件名,处理器类型,硬件平台类型,操作系统名称     -m或–machine 显示主机的硬件(CPU)名     -n或-nodename 显示主机在网络节点上的名称或主机名称     -r或–release 显示linux操作系统内核版本号     -s或–sysname 显示linux内核名称     -v 显示显示操作系统是第几个 version 版本   

Linux常用的基本命令14

zip用法:zip [选项] 压缩后文件名 需要压缩的文件或目录常用选项:    -q  不显示压缩过程    -r    递归处理,将指定目录下的所有文件和子目录一并处理    -d    从压缩文件内删除指定的文件    -m    将文件压缩并加入压缩文件后,删除原始文件,即把文件移到压缩文件中    -P    为压缩文件设置密码(明文)    -e    为压缩文件设置密码(隐藏)        -D    压缩文件内不建立目录名称    -F  尝试修复已损坏的压缩文件    -o 

Linux常用的基本命令09

ping作用:常用于测试网络连通性注释:ping 主机或IP 默认一直ping(Ctrl+C停止)常用选项: -i 秒数:设定间隔几秒送一个网络封包给一台机器,预设值是一秒送一次 -f 极限检测.大量且快速地送网络封包给一台机器,看它的回应 -c 设置完成要求回应的次数 -w ping的时间周期实例: [[email protected] /]# ping -f jd.com PING jd.com (211.152.122.55) 56(84) bytes of data. .....^C 

Linux常用的基本命令12

sort作用:将文本排序显示常用选项:    -u 去除重复行    -r 降序(默认升序)    -n 以数值来排序    -t 指定分隔符        -k n以第n列来排序实例: [[email protected] ~]# cat hi  a:2 b:3 b:1 b:1 c:4 d:5 [[email protected] ~]# sort -u hi  a:2 b:1 b:3 c:4 d:5 [[email protected] ~]# sort -r hi  d:5 c:4 b:3

linux 常用的基本命令

$ ls # 查看文件列表 $ ls dir_name | more : 分页查看文件列表 $ ll -h dir_name # 以 KB.MB.GB格式查看文件大小 $ ll -Sh  # --sort[S] 根据文件大小排序,--time[t]修改时间  --reverse[r]逆序排序 cp : 复制文件或文件夹 $ cp -r /var/www/xkzd /home/www/xkzd - r 表示递归复制该目录下所有的子目录和文件至目的地.此时目标文件必须为一个目录名. $ cp -rf

Linux常用的基本命令03

cat作用:一次性显示文件所有内容常用选项: -n 由 1 开始对所有输出的行数编号 -b 和 -n 相似,只不过对于空白行不编号 -s 当遇到有连续两行以上的空白行,就代换为一行的空白行实例: [[email protected] ~]# cat 1 ntp:x:38:38::/etc/ntp:/sbin/nologin apache:x:48:48:Apache:/var/www:/sbin/nologin saslauth:x:498:76:Saslauthd user:/var/empt

Linux常用的基本命令11

chmod作用:更改文件或文件夹权限注释:a 所有用户u 所有者g 所有组o 其它人rwx 对应权限分别为4.2.1常用选项:    -R    可递归遍历子目录,把修改应到目录下所有文件和子目录实例: [[email protected] ~]# touch 123 [[email protected] ~]# mkdir 321 [[email protected] ~]# ll total 4 -rw-r--r-- 1 root root    0 Mar 31 12:39 123 drw

Linux常用的基本命令02

cp作用:复制文件常用选项: -l 对源文件建立硬链接,而非复制文件 -s 对源文件建立符号链接,而非复制文件 -p 保留源文件或目录的属性,包括所有者.所属组.权限与时间 -f 强行复制文件或目录, 不论目的文件或目录是否已经存在注释:echo 是回显 ,>代表代表把回显的东西导出到文件,>会覆盖文件,>>是向文件追加东西  实例: [[email protected] ~]# cp /etc/passwd . [[email protected] ~]# ls passwd [

Linux常用的基本命令01

cd作用:切换目录常用选项: ~  切换到当前用户家目录 .. 切换到上级目录 -  切换到上一个目录所在地注释:当用户登录服务器时,默认目录为用户家目录,pwd显示当前路径.默认普通用户的家目录在/home/username下,root的默认家目录为/root实例: [[email protected] ~]# pwd /root 当前目录为/root [[email protected] ~]# cd /boot/grub/ [[email protected] grub]# pwd /bo