Quantcast
Channel: SpiderSoft » Linux
Browsing all 20 articles
Browse latest View live

JavaScript Lint compilation

JavaScript Lint allows you to validate JavaScript files from command line. For Windows and Mac OS Boxex we can download precompiled binaries. I don’t know why authors missed part in documentation which...

View Article



CentOS 6.2 php-mcrypt and EPEL repo

You will find plenty of “how-to” tutorials, but usually with not working url to EPEL repo. So this is mine:

View Article

How to Install GeoIP extension on CentOS

GeoIP from PECL is powerful extension used to determine geographical locations of IP addresses and domain names. This is useful if you want to set a language or redirection based on location of your...

View Article

Apache PHP config boilerplate

In this extremly simply tutorial I’m going to show, how you can deploy basic LAMP stack on EC2 instance. Instruction are pretty basic, without extra comments. You can just copy and paste command to get...

View Article

EC2 Instance and SWAP space

So simple Let’s check how much free space we have: free Let’s make swapfile sudo dd if=/dev/zero of=/var/swap bs=1M count=1024 sudo mkswap /var/swap sudo swapon /var/swap safe it to /etc/fstab sudo...

View Article


How to install node.js on AWS AMI Linux instance

It’s even simpler than more tutorials are saying. After login to instance, just enable EPEL repository change enabled to 1 update your repo (could take a minute) and install npm (will also add nodejs)...

View Article

Utilizing multi core for tar+gzip/bzip compression/decompression

We have couple options: pigz and pbzip2. tar -c --use-compress-program=pigz -f my_archive.tar.gz /home/archive The other trick useful trick is that you can exclude some directories or files tar -zcvf...

View Article

PHPUnit and PEAR install on MacOS

There is a plenty of tutorials how to install PEAR and  PHP, but there is always something “missing” in this configuration. So this time, i’m going to “sing the same song again”. Let’s start – PEAR...

View Article


Shuttle XS35 V2 and CentOs drivers

Some time ago I bought extremely quiet Shuttle XS35 V2 device to have something “seperate” for my web development work. Right now this awesome fan less device has many purposes. Works as full web dev...

View Article


Gearman PHP extension and AMPPS

AMPPS is my favourite stack on Mac OS. It has plenty of build in extensions, but from time to time I would like to use one more PHP extension. Gearman is one of them....

View Article

Apache 2.4, PHP 5.4 on EC2 instance

This tutorial just updated version of my previous one. This time we are going to install newer version of apache (httpd 2.4), PHP 5.4 but as a PHP-FPM. Instructions are pretty simple. You can...

View Article

How to install node.js on AWS AMI Linux instance

It’s even simpler than more tutorials are saying. After login to instance, just enable EPEL repository change enabled to 1 update your repo (could take a minute) and install npm (will also add nodejs)...

View Article

VPN server on EC2 instance

The easiest way to setup VPN server on Amazon EC2 instance. We need pptpd deamon – POPTOP is our choice. Let’s pull it, and install: wget...

View Article


CentoOS 7 NFS support

CentOS is pretty new, and some default stuff is just missing. Like NFS suport out of the box. We have to install package called nfs-utils yum -y install nfs-utils we can mount using standard...

View Article

Sending emails from commandline

Pretty easy but annoying task. Especially when you want to send email using specific SMTP server, or from GMAIL using SSL or add some attachment, or send RAW emails. Solution is there – mailsend....

View Article


MongoDB vs MySQL using golang

I’m the guy who like to test. Benchmark is my… middle name. You can find dozens articles about speed one or other solution. I mean MongoDB and MySQL. I tried MongoDB couple times, and...

View Article

HHVM on Amazon EC2 in 2 minutes

Probably you already heard about HHVM. As on their website: HHVM is an open-source virtual machine designed for executing programs written in Hack and PHP. HHVM uses a just-in-time (JIT) compilation...

View Article


PHP 5.4.x on CentOS 6.5

Quick copy and paste list of commands to get PHP 5.4 on CentOS boxes wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm wget...

View Article

unrar on AMU Linux / CentOS boxes

From time to time you have to decompress .rar archives on your Linux. It’s pretty easy. Just download proper RPM package from repoforge repository. In my case it was wget...

View Article

FFmpeg on AMI Linux and CentOS the easy way

FFmpeg is a complete, cross-platform solution to record, convert and stream audio and video. All you need to do is just install one more repository: http://rpmfusion.org/Configuration wget...

View Article
Browsing all 20 articles
Browse latest View live




Latest Images