Questions tagged «pv»

2
使用cat,dd,pv或其他过程复制CD / DVD更好吗?
背景 我正在将一些数据CD / DVD复制到ISO文件中,以便以后在驱动器中不需要它们时使用它们。 我在网上寻找程序,发现了很多东西: 使用的cat复制介质:http://www.yolinux.com/TUTORIALS/LinuxTutorialCDBurn.html cat /dev/sr0 > image.iso 使用dd这样做(显然使用最广泛):http : //www.linuxjournal.com/content/archiving-cds-iso-commandline dd if=/dev/cdrom bs=blocksize count=count of=/path/to/isoimage.iso 使用just pv来完成此任务:请参见man pv以获取更多信息,尽管以下是其摘录: Taking an image of a disk, skipping errors: pv -EE /dev/sda > disk-image.img Writing an image back to a disk: pv disk-image.img > /dev/sda Zeroing a disk: pv < …
22 linux  dd  cat  disk-image  pv 

1
如何获得平均管道流速
如果myfile随着时间增加,我可以使用 tail -f | pv -lr > /dev/null 它给出的是瞬时速度,而不是平均速度。 如何获得平均速度(即速度函数v(t)在监视时间内的积分)。
16 pipe  monitoring  tail  fifo  pv 

1
创建没有unetbootin的可引导Linux安装USB
我想从USB安装Scientific Linux。我不知道为什么unetbootin无法正常工作,但我不奇怪要找出答案:毕竟,我是从Windows转到Linux的,以了解和学习底层程序。我将USB驱动器格式化为FAT32并以root身份运行此命令: # pv -tpreb /path/to/the/downloaded/iso | sudo dd of=/path/to/the/USB/device 虽然它适用于Live-CD或网络安装(小于1GB),但不适用于约4GB的实际安装DVD。如果有人可以帮助我解决此问题,我将非常感谢。 考虑到它适用于较小的.iso文件,我想这与文件系统有关,对吗?我还有什么其他选择?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.