This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Proftpd-user] Re: configure: error: cannot run C compiled programs | |
From: malena rios <malena.rios@us...> - 2003-08-27 22:45:24 | |
Well inf firts email I wrote: | |
> Hi! | |
> | |
> I have a trouble when I try to compile the proftpd-1.2.8.tar.gz. | |
> My server is a Linux RedHat 8.0, and it has installed. | |
> | |
> glibc-2.2.93-5 glibc-devel-2.2.93-5 glibc-common-2.2.93-5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.unixmen.com/how-to-install-telnet-in-centos-rhel-scientific-linux-6-4/ | |
------------------------------------------------------------------------------------------------------------- | |
Telnet is a network protocol which is used to connect to remote computers over TCP/IP network. You can make a connection to a remote host using telnet. Once you establish a connection to the remote computer, it becomes a virtual terminal and will allow you to communicate with the remote host from your computer. | |
Installing telnet on CentOS 6.4 | |
Open your terminal and type the following command to install telnet: | |
[root@server ~]# yum install telnet telnet-server -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.cyberciti.biz/tips/linux-iptables-examples.html | |
http://www.cyberciti.biz/faq/linux-unix-open-ports/ | |
http://serverfault.com/questions/163244/linux-kernel-not-passing-through-multicast-udp-packets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://ostechnix.wordpress.com/2013/12/15/setup-ftp-server-step-by-step-in-centos-6-x-rhel-6-x-scientific-linux-6-x/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm | |
yum -y install ntfs-3g | |
Ref: http://www.sohailriaz.com/how-to-enable-ntfs-support-in-centos-6-3/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Changing SmartGit Free Trial License to Non-Commercial | |
Some developers might overlook the license selection when using the SmartGit. Instead of choose non-commercial, they by default clicked Next on the “30 days Free Trial”. Worse thing is reinstall the SmartGit won’t get you to change the license. | |
To alter the license. First, go to | |
Windows: %APPDATA%\syntevo\SmartGit\<main-smartgit-version> | |
OS X: ~/Library/Preferences/SmartGit/<main-smartgit-version> | |
Unix/Linux: ~/.smartgit/<main-smartgit-version> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.cyberciti.biz/faq/centos-linux-6-install-java-sdk/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Could not load OpenSSL. | |
You must recompile Ruby with OpenSSL support or change the sources in your | |
Gemfile from 'https' to 'http'. Instructions for compiling with OpenSSL using | |
RVM are available at http://rvm.io/packages/openssl. | |
https://www.digitalocean.com/community/tutorials/how-to-install-ruby-on-rails-on-centos-6-with-rvm | |
http://rvm.io/packages/openssl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When building native ruby gems, sometimes you'll get an error containing "ruby extconf.rb". This is often caused by missing dev libraries for the gem you're installing, or even ruby itself. Do you have apt installed on your machine? If not, I'd recommend installing it, it's a quick and easy way to get a lot of dev libraries. If you see people suggest installing "libmagick9-dev", that's an apt package that you'd install with: | |
$ sudo apt-get install libmagickwand-dev | |
or on centOs: | |
$ yum install ImageMagick-devel | |
On mac, you can use Homebrew: | |
$ brew install imagemagick |
OlderNewer