Here is the link tells you how to set up such stuff.
http://ubuntu-tutorials.com/2007/02/05/unattended-ssh-login-public-key-ssh-authorization-ssh-automatic-login/
Thursday, October 11, 2012
Monday, September 3, 2012
set up printers in guest machine
I will put all the problems I encountered when set up a guest machine either win7 or Ubuntu here.
1. set up printers
http://download.parallels.com/desktop/v6/docs/en/Parallels_Desktop_Users_Guide/23529.htm
1. set up printers
http://download.parallels.com/desktop/v6/docs/en/Parallels_Desktop_Users_Guide/23529.htm
Thursday, August 30, 2012
opencv all version and install instructions
This link contains all versions of OpenCV.
http://sourceforge.net/projects/opencvlibrary/files/
This link discusses the installation of opencv 2.3.1.
http://www.ozbotz.org/opencv-installation-2.3.1/ (this is for 32-bit. for 64-bit refer to the third link)
http://thebitbangtheory.wordpress.com/2011/10/23/how-to-install-opencv-2-3-1-in-ubuntu-11-10-oneiric-ocelot-with-python-support/
http://www.ozbotz.org/opencv-installation/
http://sourceforge.net/projects/opencvlibrary/files/
This link discusses the installation of opencv 2.3.1.
http://www.ozbotz.org/opencv-installation-2.3.1/ (this is for 32-bit. for 64-bit refer to the third link)
http://thebitbangtheory.wordpress.com/2011/10/23/how-to-install-opencv-2-3-1-in-ubuntu-11-10-oneiric-ocelot-with-python-support/
http://www.ozbotz.org/opencv-installation/
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
Subscribe to:
Posts (Atom)