Teamviewer SourceCode C++
Team viewer is a remote desktop sharing program that allows you to view remote desktops. Its source is in C++ and is available at
http://www.teamviewer.com/download/TeamViewer_Source.zip
Enjoy !!!
74 68 65 20 64 69 67 69 74 61 6C 20 6D 65
It just means "the digital me" (written in hex)
Team viewer is a remote desktop sharing program that allows you to view remote desktops. Its source is in C++ and is available at
http://www.teamviewer.com/download/TeamViewer_Source.zip
Enjoy !!!
Posted by Arun Prabhakar at 5:28 AM 0 comments
Crontab would not be installed by default on CentOS 5 custom installation, as happened with my new prgmr.com server. So to install cron you would do a yum search cron and you are not quiet sure what to install.
yum install -y vixie-cron.x86_64
The Vixie cron daemon for executing specified programs at set times.
sudo /etc/init.d/crond start
Posted by Arun Prabhakar at 3:21 AM 0 comments
So you just set up a keypair in Amazon EC2 and got a PEM file, Now how do you login to using Putty ?
Posted by Arun Prabhakar at 8:17 PM 0 comments
Labels:
amazon
Bookmark me on :
This error is created mostly on a CentOs / similar linux operating systems with SELinux On.
By default SELinux does not allow you to listen on non standard http ports such as 8983 in which SOLR listens on. To fix this run the following command as root:
semanage port -a -t http_port_t -p tcp 8983
Posted by Arun Prabhakar at 12:34 AM 0 comments
To install you have to run the following command:
sudo yum groupinstall "Development Tools"
Posted by Arun Prabhakar at 11:48 AM 1 comments