我们先在超级用户模式下用fdisk -l命令查看挂载的硬盘设备,假设设备号为/dev/sdb,接下来我们使用parted命令来进行GPT分区:1. yum install parted -y# parted /dev/sdbGNU Parted 1.8.1Using /dev/sdbWelcome to GNU Parted! Type ‘help’ to view a list of commands. 2. 将MBR磁盘格式化为GPT(parted) mklabel gpt 3. 划分所有空…
1 linux下的usb抓包方法 1.配置内核使能usb monitor: make menuconfig Device Drivers --> USB Support --> USB Monitor --> Select * not M2.build kernel sudo insmod /lib/modules/3.2…
1 linux下的usb抓包方法1.配置内核使能usb monitor: make menuconfig Device Drivers --> USB Support --> USB Monitor --> Select * not M2.build kernel sudo insmod /lib/modules/3.2.…
linux下生成core dump文件方法及设置 from:http://www.cppblog.com/kongque/archive/2011/03/07/141262.html core dump的概念: A core dump is the recorded state of the working memory of a computer program at a specific time, generally when the program has terminated a…