Tuesday, 16 March 2010
VMWare Workstation
After installing VMWare workstation 7 on SLES, we can create or open existing virtual machines. But, once you reboot the SLES and try to load existing virtual machines (which previously loaded), it throws error saying "Unable to find /dev/vmmon" module.
Do the following steps:
mv /usr/lib/vmware/modules/binary /usr/lib/vmware/modules/binary.old
vmware-modconfig --console --install-all
The reason is:
VMware comes with some pre-built binaries which somehow don't work on SLES. So we are deleting them, and by running that tool they are built again, this time for this OS.
Courtesy:
http://communities.vmware.com/message/1436964
http://forums.fedoraforum.org/showthread.php?t=206983
Do the following steps:
mv /usr/lib/vmware/modules/binary /usr/lib/vmware/modules/binary.old
vmware-modconfig --console --install-all
The reason is:
VMware comes with some pre-built binaries which somehow don't work on SLES. So we are deleting them, and by running that tool they are built again, this time for this OS.
Courtesy:
http://communities.vmware.com/message/1436964
http://forums.fedoraforum.org/showthread.php?t=206983
Wireless issue
You are in Windows and using your wireless connection. If you hibernate / suspend and switch it on again, wireless won't work. When you try to "View Available Connections", it says "Some other application is controlling and so, cannot be displayed" type of message.
Friday, 15 January 2010
Google Moving out of China
China government performing cyber attacks to access few Human Right group's gmail accounts. So, Google decided to come out of China. Many other companies are also targeted in China.
Attacks are done against group of people who have access to core Intellectual Propery. They exploited the vulnerability in Microsoft's Internet Explorer 6. McAffe's CTO's blog gives more information on this attack which they call as "Operation Aurora" to solve this.
Attacks are done against group of people who have access to core Intellectual Propery. They exploited the vulnerability in Microsoft's Internet Explorer 6. McAffe's CTO's blog gives more information on this attack which they call as "Operation Aurora" to solve this.
Saturday, 25 April 2009
One more puzzle!
A person goes to his house from office in car. Car with driver starts from his house at 7p.m. and reaches office and picks him up and drops him at his home. One day, he is done with his work at 5.30p.m. and starts walking to his home instead of waiting for car. He finds the car on his way and goes to his house. He reaches his house 20 minutes eariler than his usual time. At what time, he usually reaches his home?
Friday, 10 April 2009
Some Puzzles
- Producer Consumer Problem:
Scenario 1: Traditional Problem
Scenario 2: Producer should produce and puts in the shared buffer. Every consumer should consume the item before we delete it from the shared buffer.
- In race court, there are 5 tracks and 25 horses to race. We need to find the top 3 from the 25 horses. Assumption is - Horses perform in the same way during all the races and we can't record the times. You can make horses to participate any number of times. In how many races, you can find the top 3?
Scenario 1: Traditional Problem
Scenario 2: Producer should produce and puts in the shared buffer. Every consumer should consume the item before we delete it from the shared buffer.
- In race court, there are 5 tracks and 25 horses to race. We need to find the top 3 from the 25 horses. Assumption is - Horses perform in the same way during all the races and we can't record the times. You can make horses to participate any number of times. In how many races, you can find the top 3?
Tuesday, 21 October 2008
Difference between prototypes
Wats the difference between prototypes
- T &operator[](size_t index);
- const T &operator[](size_t index) const;
?
- T &operator[](size_t index);
- const T &operator[](size_t index) const;
?
Subscribe to:
Posts (Atom)