Grub rescue:
http://askubuntu.com/questions/139121/grub-rescue-after-install-of-ubuntu-12-04-dual-boot
Partition:
http://www.psychocats.net/ubuntu/separatehome
Thursday, July 19, 2012
Sunday, June 10, 2012
Make 32-bit Applications Work on a 64-bit Operating System
This is what I encountered when trying to run Prof. David Lowe's SIFT detector in 64-bit ubuntu. The binary code of sift is compiled in 32-bit machine. So, you need to do the following things to make his code run for you.
It is possible to install and use 32-bit software on a 64-bit computer in different ways:
- Installation of 32-bit compatibility libraries (ia32-libs or Multiarch support)
- A 32-bit chroot
- Full virtualization through KVM or VirtualBox
Wednesday, June 6, 2012
Run C executable code in MATLAB m file
use system() to run it, but usually you will get the following error:
so you need to do the following things to fix it.
http://www.mathworks.se/matlabcentral/answers/8079-how-to-get-working-matlab-coder-in-linux
This link is much clearer:
http://judsonsnotes.com/notes/index.php?option=com_content&view=article&id=659%3ainstalling-matlab-in-ubuntu-1110&catid=37%3atech-notes&Itemid=59
/MATLAB/R2011a/sys/os/glnxa64/libstdc++.so.6: version `GLIBCXX_3.4.14' not found (required by /usr/lib/libppl_c.so.4)
so you need to do the following things to fix it.
cd $MATLAB cd sys/os/glnx86 mkdir old mv libstdc++.* libg2c.* libgcc_s* oldAfter i have to add /usr/lib to the enviroment variables
export LD_LIBRARY_PATH=/usr/lib32:/usr/lib:$LD_LIBRARY_PATH
Take a reference to the link:
http://www.mathworks.se/matlabcentral/answers/8079-how-to-get-working-matlab-coder-in-linux
This link is much clearer:
http://judsonsnotes.com/notes/index.php?option=com_content&view=article&id=659%3ainstalling-matlab-in-ubuntu-1110&catid=37%3atech-notes&Itemid=59
Friday, June 1, 2012
Friday, May 25, 2012
kinect calibration
I found this source is good for beginners.
http://www.informatik.uni-freiburg.de/~engelhar/calibration.html
Although the code is written under xcode. You only need to make slight changes to work under other os.
Matt's codes:
http://graphics.stanford.edu/~mdfisher/Kinect.html
ROS technical documents:
http://www.ros.org/wiki/kinect_calibration/technical
http://www.ros.org/wiki/kinect_node/Calibration
Nicolas codes:
http://nicolas.burrus.name/index.php/Research/KinectCalibration#tocLink0
Programming tilts:
https://groups.google.com/forum/?fromgroups#!topic/openkinect/AxNRhG_TPHg
http://www.informatik.uni-freiburg.de/~engelhar/calibration.html
Although the code is written under xcode. You only need to make slight changes to work under other os.
Matt's codes:
http://graphics.stanford.edu/~mdfisher/Kinect.html
ROS technical documents:
http://www.ros.org/wiki/kinect_calibration/technical
http://www.ros.org/wiki/kinect_node/Calibration
Nicolas codes:
http://nicolas.burrus.name/index.php/Research/KinectCalibration#tocLink0
Programming tilts:
https://groups.google.com/forum/?fromgroups#!topic/openkinect/AxNRhG_TPHg
Wednesday, May 16, 2012
Install JAVA JDK7 on Ubuntu
How to install from archive binary file?
http://askubuntu.com/questions/55848/how-do-i-install-oracle-java-jdk-7
Instructions in official website?
http://docs.oracle.com/javase/7/docs/webnotes/install/linux/linux-jdk.html#general
http://askubuntu.com/questions/55848/how-do-i-install-oracle-java-jdk-7
Instructions in official website?
http://docs.oracle.com/javase/7/docs/webnotes/install/linux/linux-jdk.html#general
Saturday, April 21, 2012
compile GICP implemented by Alex
1. add ANN library in your system
2. add boost c++ library in your system
3. make changes to the Makefile to make sure the headers and libraries are linked correctly
some problems I encountered...
1) error while loading shared libraries: libboost_program_options.so.1.49.0: cannot open shared object file: No such file or directory
solution: http://codelikezell.com/how-to-modify-the-gnu-linkers-default-search-path/
2. add boost c++ library in your system
3. make changes to the Makefile to make sure the headers and libraries are linked correctly
some problems I encountered...
1) error while loading shared libraries: libboost_program_options.so.1.49.0: cannot open shared object file: No such file or directory
solution: http://codelikezell.com/how-to-modify-the-gnu-linkers-default-search-path/
Subscribe to:
Posts (Atom)