Questions tagged [pv]

OS-assisted paravirtualization

Para is an English affix that means "beside" "with" or "alongside". Paravirtualization refers to the communication between the guest operating system and the hypervisor to improve performance and efficiency. It requires that the guest os be explicitly ported for the para API - a conventional os distribution which is not paravirtualization-aware can not run on top of a paravirtualization virtual host.

17 questions
72
votes
4 answers

What is the difference between PV and HVM virtualization types in ec2?

AWS EC2 offers two types of virtualization of Ubuntu Linux EC2 machines - PV and HVM. PV: HVM: What is the difference between these types?
Adam Matan
  • 12,504
  • 19
  • 54
  • 73
27
votes
3 answers

How to mount volume with specific UID in Kubernetes Pod?

So, I'm trying to get Nexus running based off of this image in Kubernetes, but it's failing with: mkdir: cannot create directory '../sonatype-work/nexus3/log': Permission denied mkdir: cannot create directory '../sonatype-work/nexus3/tmp':…
srkiNZ84
  • 531
  • 1
  • 6
  • 10
18
votes
2 answers

Is there a binary of Pipe Viewer (`pv`) for Windows?

I read about the Pipe Viewer (pv) Linux utility, and it sounds really useful. I use plenty of Linux tools on Windows, but this one doesn't seem to be part of the msysgit suite that I use. How can I get a Windows binary of it?
Ram Rachum
  • 5,011
  • 6
  • 33
  • 44
11
votes
6 answers

Grep progress bar using pv (pipe viewer)

I've got a huge directory on my computer and I need to search in every ruby file inside for a string. I could have done it like this : grep -R "string" *.rb but it takes really long and I'd like to use pv (pipe viewer) to show a progress bar to be…
Cydonia7
  • 233
  • 1
  • 2
  • 6
10
votes
5 answers

Device /dev/sdb1 not found (or ignored by filtering)

I am trying to add a physical volume for use to add volume groups and thus LV inside them. Sadly I am getting the following error. [root@server ~]# pvcreate /dev/sdb1 Device /dev/sdb1 not found (or ignored by filtering). [root@server ~]# fdisk -l…
awmusic12635
  • 255
  • 2
  • 4
  • 16
4
votes
4 answers

Allocated Memory difference in xen guests with Linux 2.6.18 and 2.6.32

Can some one explain me why there is difference in available memory on Guests with same configuration: Hypervisor:xen 4.2 64 bit VM1: Centos 5.7 with 2.6.18-274.el5xen, Assigned memory from xen is exactly same as memory inside guest 524288k…
ananthan
  • 1,490
  • 1
  • 17
  • 27
3
votes
0 answers

Amazon EC2: How to convert an existing PV AMI to HVM - CentOS - Wont boot

I've now tried every guide I've found on Google, some are posts on this forum. The instances always end up not booting with every guide/method I've tried. Probably spent about 4 days trying out different guides. I follow them to the greatest detail,…
3
votes
1 answer

Is there a way to redirect the output of pv command to a file?

I need to redirect the output of pv command to a file so i get read it's progress from another process. Or is it any other way i could do that?
daniels
  • 1,195
  • 5
  • 15
  • 26
2
votes
3 answers

Why does VNC viewer on Mac Book Pro report RFB protocol error when connecting to AWS over L2TP?

There is a small group of us working on Amazon Web Services (AWS), we use mac books as our desktop machines and VNC into servers running on AWS. The problem started when we upgraded our VPN from PPTP to L2TP (Centos 6 with Openswan). My colleague…
Ross Addinall
  • 41
  • 1
  • 1
  • 4
1
vote
0 answers

Convert AWS EC2 AMI from PV to HVM

I'm trying to convert EC2 AMI from PV to HVM (To use some new instance_types). I did some actions as @tolgamorf said here. Instance started and work. But sometime, there 're some logs in /var/log/messages as: Dec 22 16:47:56 modprobe: FATAL: Could…
Quyen Le
  • 13
  • 5
1
vote
0 answers

issue in increasing disk size in ubuntu guest vmware

Have followed link I was trying to increase the size of my disk allocated to ubuntu guest in vmware below are the things i have already done Increased max setting in vmware settings - Done Partition the new disk space - Done fdisk /dev/sda …
pkm
  • 203
  • 1
  • 2
  • 7
1
vote
0 answers

Force the GPL/PV driver to a lower link speed

I'm running Xen 4.4.0 on Ubuntu 14.04. On this Dom0 I am running: 1 DomU Ubuntu 14.04 with Shorewall 1 DomU Windows Web Server 2008 R2 with GPL/PV drivers Both domUs connect to the same bridge interface: em1 -> vlan20 -> br20 The Ubuntu VM also…
KvH
  • 133
  • 2
  • 6
1
vote
0 answers

Convert an HVM ec2 instance into something that can be run on a PV instance

I have a linux VM running on an esx-i server at home, and I would like to import the vmdk to aws using the ec2-import-instance command. However I really don't need this to be any larger of an instance then an m1.small but because it's a linux image,…
DanielS
  • 11
  • 4
1
vote
2 answers

Remove a duplicate lvm physical volume uuid?

After upgrading a rhel 5 server today I rebooted to the new kernel: curr=2.6.18-371.el5PAE prev=2.6.18-348.18.1.el5PAE. In the boot sequence I saw a message indicating Logical Volume Management was starting and then almost immediately I saw this and…
Jeff Holt
  • 11
  • 1
  • 3
1
vote
1 answer

How Can I Capture Output From Programs That Use curses?

For example, the pv utility shows me the current rate of data transfer and updates every second. I'd like to save that output to a file, so that I can see at what rate data was being transferred second by second. I can't use a simple redirect like…
1
2