Published by ThePinguin on December 23rd, 2011
Today I’ve opened a rarely used file on my computer. And got the weirdest message in ages: ”file is locked because you haven’t made any changes to it recently”. After a quick search I became apparent Apple has a new feature to auto-lock files.
How to disable the feature
Goto the System Preference menu;
Click the Time Machine settings menu;
Click the [...]
Tags: auto-lock, disable, feature, file, fix, lion, lock, osx, remove, settings, time-machine
Posted in: OSX | No Comments »
Published by ThePinguin on November 6th, 2011
My MacBook pro with Os X Lion is very slow when coming out off suspension.
I’ve got a new Apple MacBook pro with Os X Lion last week. After the upgrade i’ve noticed a problem after suspension (sleep/ wakeup) with the internet connection. Compared with my older Apple MacBook pro (early 2008) with Snow Leopard, internet [...]
Tags: bug, error, fix, internet, issue, lag, lion, macbook, network, osx, osx lion, sleep, slow, suspension
Posted in: OSX | 2 Comments »
Published by ThePinguin on June 4th, 2011
How to fix the Google Chrome “update server not available (error: 11)” problem.
sudo rm -r /Library/Google
sudo rm -r ~/Library/Google
I suppose it’s a versioning problem, there are still old config (plist) files present on the system. By removing these, and others, Chrome can reconnect to the proper server again.
Note: I’m just using the Chrome product of [...]
Posted in: OSX, Software | 2 Comments »
Published by ThePinguin on March 23rd, 2011
A typical VMware Virtual Machine stores data in “.vmwarevm” containers. These are directories with .vmdk images. To convert them to the VirtualBox, KVM image format the container needs to be flattened first.
Flatten vmdk
vmware-vdiskmanager -r source.vmwarevm/source.vmdk -t 0 flat.vmdk
Convert
Convert your flat image to another format.
Convert VMDK to Qemu
qemu-img convert flat.vmdk -O qcow2 target.qemu
VMDK to VDI
qemu-img convert flat.vmdk -O [...]
Posted in: Linux, OSX | No Comments »
Published by ThePinguin on October 27th, 2010
To install Boost on Snow Leopard using a package manager, like Fink, makes life very easy. Problem when ‘making’ a Cpp or C file using the G++ (gcc), shipped with Xcode (3.2.4), it creates binaries using the x86_64 architecture, and boost of Fink is not. The default installation and packages of Fink are 32-bit or [...]
Tags: 32bit, 64bit, boost, C/C++, compiler, cpp, dylib, fink, gcc, GCC, i386, install, libboost, library, linker, not found, o, setup, snow leopard, so, solution, x84_64
Posted in: C/C++, GCC, OSX, OpenSource | No Comments »