美文网首页linux redhat & Oracle
使用bash -x 调试信息查看lvextend -r的调用

使用bash -x 调试信息查看lvextend -r的调用

作者: 重庆思庄 | 来源:发表于2019-10-21 15:34 被阅读0次

--1.打开调试:

[root@db01 storage]# set -x

--2.执行命令:

[root@db01 storage]# /usr/sbin/lvextend -r -L 710M /dev/shazam/storage

+ /usr/sbin/lvextend -r -L 710M /dev/shazam/storage

Rounding size to boundary between physical extents: 712.00 MiB.

Size of logical volume shazam/storage changed from 700.00 MiB (175 extents) to 712.00 MiB (178 extents).

Logical volume shazam/storage successfully resized.

resize2fs 1.42.9 (28-Dec-2013)

Filesystem at /dev/mapper/shazam-storage is mounted on /storage; on-line resizing required

old_desc_blocks = 6, new_desc_blocks = 6

The filesystem on /dev/mapper/shazam-storage is now 729088 blocks long.

++ __vte_prompt_command

+++ HISTTIMEFORMAT=

+++ history 1

+++ sed 's/^ *[0-9]\+ *//'

++ local 'command=/usr/sbin/lvextend -r -L 710M /dev/shazam/storage '

++ command='/usr/sbin/lvextend -r -L 710M /dev/shazam/storage '

++ local 'pwd=~'

++ '[' /storage '!=' /root ']'

++ pwd=/storage

+++ __vte_osc7

++++ __vte_urlencode /storage

++++ LC_ALL=C

++++ str=/storage

++++ '[' -n /storage ']'

++++ safe=/storage

++++ printf %s /storage

++++ str=

++++ '[' -n '' ']'

++++ '[' -n '' ']'

+++ printf '\033]7;file://%s%s\007' db01 /storage

++ printf '\033]777;notify;Command completed;%s\007\033]0;%s@%s:%s\007%s' '/usr/sbin/lvextend -r -L 710M /dev/shazam/storage ' root db01 /storage ''

--通过以上命令可以看到,在加了 -r 选项后,自动调用了 resize2fs

--3.关闭 调试信息

[root@db01 storage]# set -x

之后就没有信息调试信息了。

相关文章

  • 使用bash -x 调试信息查看lvextend -r的调用

    --1.打开调试: [root@db01 storage]# set -x --2.执行命令: [root@db0...

  • 破壳漏洞(cve-2014-6271)

    0x01本地漏洞验证 Bash版本小于等于4.3可能存在漏洞 可以使用如下命令查看bash版本: root...

  • Swift 调试小技巧

    调用堆栈 在调试阶段,除了打断点查看当前线程的调用堆栈外,也可以使用 Thread 的方法 callStackSy...

  • shell

    生成随机数 !/bin/bash bash脚本调试 •sh –x script这将执行该脚本并显示所有变量的值 •...

  • shell脚本调试

    脚本调试 脚本调试 1 使用 -x 启动脚本跟踪调试功能 2 脚本进行部分调试 1 使用 -x 启动脚本跟踪调试功...

  • Linux小技巧

    使用htop替代top查看任务进程 使用Ctril+r来调用历史代码取代history 在linux下快速生成当前...

  • 5、基本权限

    基本权限 r, w, x (一) 1.文件: r:可读,可以使用类似cat等命令查看文件内容; w:可写,可以编辑...

  • ffmpeg android 移植2018-06-27

    编译x264 #!/bin/bash NDK=/Users/li/Documents/android-ndk-r1...

  • Xcode 使用汇总

    功能使用 1、Xcode 无线真机调试[https://mp.weixin.qq.com/s/V9ZY62r_4x...

  • 系统调用处理过程

    使用gdb跟踪系统调用内核函数sys_time 查看 linux-3.18.6/arch/x86/syscalls...

网友评论

    本文标题:使用bash -x 调试信息查看lvextend -r的调用

    本文链接:https://www.haomeiwen.com/subject/ramtvctx.html