Clear the clipboard
Since I’m running remote sessions within a VirtualBoxed OS on my workstation I find I have to do this with some regularity, so I may as well document it here.
cmd /c echo off | clip
Since I’m running remote sessions within a VirtualBoxed OS on my workstation I find I have to do this with some regularity, so I may as well document it here.
cmd /c echo off | clip
When I created my vmdk for my work virt in VirtualBox I made the mistaken assumption that by “dynamic” they meant the drive size would expand as necessary. What they really meant was that the drive would expand as necessary within the limits of the initial drive size setting – which I stupidly set to 20 gig.
Expanding your vmdk for VirtualBox is really a misnomer. You have to create a new one of the size you want and then clone your old one over to it. It’s a little time consuming, but not hard. Disclosure: My host is running Windows 7 64 and my VM is running Windows 7 32. Why bother? It’s a security thing.
1 |
vboxmanage clonehd "C:\Users\USER\VirtualBox VMs\Work\Work-disk1.vmdk" "C:\Users\USER\VirtualBox VMs\Work\Work-disk2.vmdk" --existing |